blob: 9eba2713eaef7f9ab073b779a6b8d7dd438f58c5 [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>
Tom Rinib2fb47f2011-12-15 08:40:51 -070031#include <asm/unaligned.h>
Grant Likely735dd972007-02-20 09:04:34 +010032#include <part.h>
wdenke887afc2002-08-27 09:44:07 +000033#include <usb.h>
wdenke887afc2002-08-27 09:44:07 +000034
wdenk1968e612005-02-24 23:23:29 +000035#ifdef CONFIG_USB_STORAGE
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +020036static int usb_stor_curr_dev = -1; /* current device */
wdenk1968e612005-02-24 23:23:29 +000037#endif
Simon Glass89d48362011-02-16 11:14:33 -080038#ifdef CONFIG_USB_HOST_ETHER
39static int usb_ether_curr_dev = -1; /* current ethernet device */
40#endif
wdenke887afc2002-08-27 09:44:07 +000041
wdenka2663ea2003-12-07 18:32:37 +000042/* some display routines (info command) */
Michael Trimarchide39f8c2008-11-26 17:41:34 +010043char *usb_get_class_desc(unsigned char dclass)
wdenke887afc2002-08-27 09:44:07 +000044{
Michael Trimarchide39f8c2008-11-26 17:41:34 +010045 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 "";
wdenke887afc2002-08-27 09:44:07 +000066 }
67}
68
Michael Trimarchide39f8c2008-11-26 17:41:34 +010069void usb_display_class_sub(unsigned char dclass, unsigned char subclass,
70 unsigned char proto)
wdenke887afc2002-08-27 09:44:07 +000071{
Michael Trimarchide39f8c2008-11-26 17:41:34 +010072 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");
wdenke887afc2002-08-27 09:44:07 +000081 break;
Michael Trimarchide39f8c2008-11-26 17:41:34 +010082 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;
wdenke887afc2002-08-27 09:44:07 +000097 }
98 break;
99 default:
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100100 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");
139 break;
140 default:
141 printf("reserved");
142 break;
143 }
144 break;
145 default:
146 printf("%s", usb_get_class_desc(dclass));
147 break;
wdenke887afc2002-08-27 09:44:07 +0000148 }
149}
150
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100151void usb_display_string(struct usb_device *dev, int index)
wdenke887afc2002-08-27 09:44:07 +0000152{
153 char buffer[256];
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100154 if (index != 0) {
155 if (usb_string(dev, index, &buffer[0], 256) > 0)
156 printf("String: \"%s\"", buffer);
wdenke887afc2002-08-27 09:44:07 +0000157 }
158}
159
160void usb_display_desc(struct usb_device *dev)
161{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100162 if (dev->descriptor.bDescriptorType == USB_DT_DEVICE) {
163 printf("%d: %s, USB Revision %x.%x\n", dev->devnum,
Tom Rix8f8bd562009-10-31 12:37:38 -0500164 usb_get_class_desc(dev->config.if_desc[0].desc.bInterfaceClass),
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100165 (dev->descriptor.bcdUSB>>8) & 0xff,
166 dev->descriptor.bcdUSB & 0xff);
167
168 if (strlen(dev->mf) || strlen(dev->prod) ||
169 strlen(dev->serial))
170 printf(" - %s %s %s\n", dev->mf, dev->prod,
171 dev->serial);
wdenke887afc2002-08-27 09:44:07 +0000172 if (dev->descriptor.bDeviceClass) {
173 printf(" - Class: ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100174 usb_display_class_sub(dev->descriptor.bDeviceClass,
175 dev->descriptor.bDeviceSubClass,
176 dev->descriptor.bDeviceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000177 printf("\n");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100178 } else {
179 printf(" - Class: (from Interface) %s\n",
180 usb_get_class_desc(
Tom Rix8f8bd562009-10-31 12:37:38 -0500181 dev->config.if_desc[0].desc.bInterfaceClass));
wdenke887afc2002-08-27 09:44:07 +0000182 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100183 printf(" - PacketSize: %d Configurations: %d\n",
184 dev->descriptor.bMaxPacketSize0,
185 dev->descriptor.bNumConfigurations);
186 printf(" - Vendor: 0x%04x Product 0x%04x Version %d.%d\n",
187 dev->descriptor.idVendor, dev->descriptor.idProduct,
188 (dev->descriptor.bcdDevice>>8) & 0xff,
189 dev->descriptor.bcdDevice & 0xff);
wdenke887afc2002-08-27 09:44:07 +0000190 }
191
192}
193
Tom Rix8f8bd562009-10-31 12:37:38 -0500194void usb_display_conf_desc(struct usb_configuration_descriptor *config,
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100195 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000196{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100197 printf(" Configuration: %d\n", config->bConfigurationValue);
198 printf(" - Interfaces: %d %s%s%dmA\n", config->bNumInterfaces,
199 (config->bmAttributes & 0x40) ? "Self Powered " : "Bus Powered ",
200 (config->bmAttributes & 0x20) ? "Remote Wakeup " : "",
Tom Rix8f8bd562009-10-31 12:37:38 -0500201 config->bMaxPower*2);
wdenke887afc2002-08-27 09:44:07 +0000202 if (config->iConfiguration) {
203 printf(" - ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100204 usb_display_string(dev, config->iConfiguration);
wdenke887afc2002-08-27 09:44:07 +0000205 printf("\n");
206 }
207}
208
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100209void usb_display_if_desc(struct usb_interface_descriptor *ifdesc,
210 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000211{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100212 printf(" Interface: %d\n", ifdesc->bInterfaceNumber);
213 printf(" - Alternate Setting %d, Endpoints: %d\n",
214 ifdesc->bAlternateSetting, ifdesc->bNumEndpoints);
wdenke887afc2002-08-27 09:44:07 +0000215 printf(" - Class ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100216 usb_display_class_sub(ifdesc->bInterfaceClass,
217 ifdesc->bInterfaceSubClass, ifdesc->bInterfaceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000218 printf("\n");
219 if (ifdesc->iInterface) {
220 printf(" - ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100221 usb_display_string(dev, ifdesc->iInterface);
wdenke887afc2002-08-27 09:44:07 +0000222 printf("\n");
223 }
224}
225
226void usb_display_ep_desc(struct usb_endpoint_descriptor *epdesc)
227{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100228 printf(" - Endpoint %d %s ", epdesc->bEndpointAddress & 0xf,
229 (epdesc->bEndpointAddress & 0x80) ? "In" : "Out");
230 switch ((epdesc->bmAttributes & 0x03)) {
231 case 0:
232 printf("Control");
233 break;
234 case 1:
235 printf("Isochronous");
236 break;
237 case 2:
238 printf("Bulk");
239 break;
240 case 3:
241 printf("Interrupt");
242 break;
wdenke887afc2002-08-27 09:44:07 +0000243 }
Tom Rinib2fb47f2011-12-15 08:40:51 -0700244 printf(" MaxPacket %d", get_unaligned(&epdesc->wMaxPacketSize));
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100245 if ((epdesc->bmAttributes & 0x03) == 0x3)
246 printf(" Interval %dms", epdesc->bInterval);
wdenke887afc2002-08-27 09:44:07 +0000247 printf("\n");
248}
249
250/* main routine to diasplay the configs, interfaces and endpoints */
251void usb_display_config(struct usb_device *dev)
252{
Tom Rix8f8bd562009-10-31 12:37:38 -0500253 struct usb_config *config;
254 struct usb_interface *ifdesc;
wdenke887afc2002-08-27 09:44:07 +0000255 struct usb_endpoint_descriptor *epdesc;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100256 int i, ii;
wdenke887afc2002-08-27 09:44:07 +0000257
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100258 config = &dev->config;
Tom Rix8f8bd562009-10-31 12:37:38 -0500259 usb_display_conf_desc(&config->desc, dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100260 for (i = 0; i < config->no_of_if; i++) {
261 ifdesc = &config->if_desc[i];
Tom Rix8f8bd562009-10-31 12:37:38 -0500262 usb_display_if_desc(&ifdesc->desc, dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100263 for (ii = 0; ii < ifdesc->no_of_ep; ii++) {
264 epdesc = &ifdesc->ep_desc[ii];
wdenke887afc2002-08-27 09:44:07 +0000265 usb_display_ep_desc(epdesc);
266 }
267 }
268 printf("\n");
269}
270
Stefan Roesef1c1f542009-01-22 10:11:21 +0100271static inline char *portspeed(int speed)
272{
273 if (speed == USB_SPEED_HIGH)
274 return "480 Mb/s";
275 else if (speed == USB_SPEED_LOW)
276 return "1.5 Mb/s";
277 else
278 return "12 Mb/s";
279}
280
wdenke887afc2002-08-27 09:44:07 +0000281/* shows the device tree recursively */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100282void usb_show_tree_graph(struct usb_device *dev, char *pre)
wdenke887afc2002-08-27 09:44:07 +0000283{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100284 int i, index;
Wolfgang Denk10f4dd72011-10-05 23:01:59 +0200285 int has_child, last_child;
wdenke887afc2002-08-27 09:44:07 +0000286
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100287 index = strlen(pre);
288 printf(" %s", pre);
wdenke887afc2002-08-27 09:44:07 +0000289 /* check if the device has connected children */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100290 has_child = 0;
291 for (i = 0; i < dev->maxchild; i++) {
292 if (dev->children[i] != NULL)
293 has_child = 1;
wdenke887afc2002-08-27 09:44:07 +0000294 }
295 /* check if we are the last one */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100296 last_child = 1;
297 if (dev->parent != NULL) {
298 for (i = 0; i < dev->parent->maxchild; i++) {
wdenke887afc2002-08-27 09:44:07 +0000299 /* search for children */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100300 if (dev->parent->children[i] == dev) {
301 /* found our pointer, see if we have a
302 * little sister
303 */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100304 while (i++ < dev->parent->maxchild) {
305 if (dev->parent->children[i] != NULL) {
wdenke887afc2002-08-27 09:44:07 +0000306 /* found a sister */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100307 last_child = 0;
wdenke887afc2002-08-27 09:44:07 +0000308 break;
309 } /* if */
310 } /* while */
311 } /* device found */
312 } /* for all children of the parent */
313 printf("\b+-");
314 /* correct last child */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100315 if (last_child)
316 pre[index-1] = ' ';
wdenke887afc2002-08-27 09:44:07 +0000317 } /* if not root hub */
318 else
319 printf(" ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100320 printf("%d ", dev->devnum);
321 pre[index++] = ' ';
322 pre[index++] = has_child ? '|' : ' ';
323 pre[index] = 0;
324 printf(" %s (%s, %dmA)\n", usb_get_class_desc(
Tom Rix8f8bd562009-10-31 12:37:38 -0500325 dev->config.if_desc[0].desc.bInterfaceClass),
Stefan Roesef1c1f542009-01-22 10:11:21 +0100326 portspeed(dev->speed),
Tom Rix8f8bd562009-10-31 12:37:38 -0500327 dev->config.desc.bMaxPower * 2);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100328 if (strlen(dev->mf) || strlen(dev->prod) || strlen(dev->serial))
329 printf(" %s %s %s %s\n", pre, dev->mf, dev->prod, dev->serial);
330 printf(" %s\n", pre);
331 if (dev->maxchild > 0) {
332 for (i = 0; i < dev->maxchild; i++) {
333 if (dev->children[i] != NULL) {
334 usb_show_tree_graph(dev->children[i], pre);
335 pre[index] = 0;
wdenke887afc2002-08-27 09:44:07 +0000336 }
337 }
338 }
339}
340
341/* main routine for the tree command */
342void usb_show_tree(struct usb_device *dev)
343{
344 char preamble[32];
345
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100346 memset(preamble, 0, 32);
347 usb_show_tree_graph(dev, &preamble[0]);
wdenke887afc2002-08-27 09:44:07 +0000348}
349
350
wdenke887afc2002-08-27 09:44:07 +0000351/******************************************************************************
352 * usb boot command intepreter. Derived from diskboot
353 */
354#ifdef CONFIG_USB_STORAGE
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200355int do_usbboot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenke887afc2002-08-27 09:44:07 +0000356{
357 char *boot_device = NULL;
358 char *ep;
Mike Frysinger67d668b2011-06-05 13:43:02 +0000359 int dev, part = 1;
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100360 ulong addr, cnt;
wdenke887afc2002-08-27 09:44:07 +0000361 disk_partition_t info;
362 image_header_t *hdr;
363 block_dev_desc_t *stor_dev;
Marian Balakowicz09475f72008-03-12 10:33:01 +0100364#if defined(CONFIG_FIT)
Marian Balakowicz3bab76a2008-06-06 23:07:40 +0200365 const void *fit_hdr = NULL;
Marian Balakowicz09475f72008-03-12 10:33:01 +0100366#endif
wdenke887afc2002-08-27 09:44:07 +0000367
368 switch (argc) {
369 case 1:
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200370 addr = CONFIG_SYS_LOAD_ADDR;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100371 boot_device = getenv("bootdevice");
wdenke887afc2002-08-27 09:44:07 +0000372 break;
373 case 2:
374 addr = simple_strtoul(argv[1], NULL, 16);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100375 boot_device = getenv("bootdevice");
wdenke887afc2002-08-27 09:44:07 +0000376 break;
377 case 3:
378 addr = simple_strtoul(argv[1], NULL, 16);
379 boot_device = argv[2];
380 break;
381 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000382 return CMD_RET_USAGE;
wdenke887afc2002-08-27 09:44:07 +0000383 }
384
385 if (!boot_device) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100386 puts("\n** No boot device **\n");
wdenke887afc2002-08-27 09:44:07 +0000387 return 1;
388 }
389
390 dev = simple_strtoul(boot_device, &ep, 16);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100391 stor_dev = usb_stor_get_dev(dev);
Kim B. Heinoaaad1082010-03-12 15:46:56 +0200392 if (stor_dev == NULL || stor_dev->type == DEV_TYPE_UNKNOWN) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100393 printf("\n** Device %d not available\n", dev);
wdenke887afc2002-08-27 09:44:07 +0000394 return 1;
395 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100396 if (stor_dev->block_read == NULL) {
wdenke887afc2002-08-27 09:44:07 +0000397 printf("storage device not initialized. Use usb scan\n");
398 return 1;
399 }
400 if (*ep) {
401 if (*ep != ':') {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100402 puts("\n** Invalid boot device, use `dev[:part]' **\n");
wdenke887afc2002-08-27 09:44:07 +0000403 return 1;
404 }
405 part = simple_strtoul(++ep, NULL, 16);
406 }
407
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100408 if (get_partition_info(stor_dev, part, &info)) {
wdenke887afc2002-08-27 09:44:07 +0000409 /* try to boot raw .... */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100410 strncpy((char *)&info.type[0], BOOT_PART_TYPE,
411 sizeof(BOOT_PART_TYPE));
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200412 strncpy((char *)&info.name[0], "Raw", 4);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100413 info.start = 0;
414 info.blksz = 0x200;
415 info.size = 2880;
wdenke887afc2002-08-27 09:44:07 +0000416 printf("error reading partinfo...try to boot raw\n");
417 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100418 if ((strncmp((char *)info.type, BOOT_PART_TYPE,
419 sizeof(info.type)) != 0) &&
420 (strncmp((char *)info.type, BOOT_PART_COMP,
421 sizeof(info.type)) != 0)) {
422 printf("\n** Invalid partition type \"%.32s\""
wdenke887afc2002-08-27 09:44:07 +0000423 " (expect \"" BOOT_PART_TYPE "\")\n",
424 info.type);
425 return 1;
426 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100427 printf("\nLoading from USB device %d, partition %d: "
wdenke887afc2002-08-27 09:44:07 +0000428 "Name: %.32s Type: %.32s\n",
429 dev, part, info.name, info.type);
430
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100431 debug("First Block: %ld, # of blocks: %ld, Block Size: %ld\n",
wdenke887afc2002-08-27 09:44:07 +0000432 info.start, info.size, info.blksz);
433
434 if (stor_dev->block_read(dev, info.start, 1, (ulong *)addr) != 1) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100435 printf("** Read error on %d:%d\n", dev, part);
wdenke887afc2002-08-27 09:44:07 +0000436 return 1;
437 }
438
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100439 switch (genimg_get_format((void *)addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100440 case IMAGE_FORMAT_LEGACY:
441 hdr = (image_header_t *)addr;
wdenke887afc2002-08-27 09:44:07 +0000442
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100443 if (!image_check_hcrc(hdr)) {
444 puts("\n** Bad Header Checksum **\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100445 return 1;
446 }
447
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100448 image_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100449
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100450 cnt = image_get_image_size(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100451 break;
452#if defined(CONFIG_FIT)
453 case IMAGE_FORMAT_FIT:
Marian Balakowicz09475f72008-03-12 10:33:01 +0100454 fit_hdr = (const void *)addr;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100455 puts("Fit image detected...\n");
Marian Balakowicz09475f72008-03-12 10:33:01 +0100456
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100457 cnt = fit_get_size(fit_hdr);
Marian Balakowicz09475f72008-03-12 10:33:01 +0100458 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100459#endif
460 default:
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100461 puts("** Unknown image type\n");
wdenke887afc2002-08-27 09:44:07 +0000462 return 1;
463 }
464
wdenk1a344f22005-02-03 23:00:49 +0000465 cnt += info.blksz - 1;
466 cnt /= info.blksz;
467 cnt -= 1;
468
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100469 if (stor_dev->block_read(dev, info.start+1, cnt,
wdenke887afc2002-08-27 09:44:07 +0000470 (ulong *)(addr+info.blksz)) != cnt) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100471 printf("\n** Read error on %d:%d\n", dev, part);
wdenke887afc2002-08-27 09:44:07 +0000472 return 1;
473 }
Marian Balakowicz09475f72008-03-12 10:33:01 +0100474
475#if defined(CONFIG_FIT)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100476 /* This cannot be done earlier, we need complete FIT image in RAM
477 * first
478 */
479 if (genimg_get_format((void *)addr) == IMAGE_FORMAT_FIT) {
480 if (!fit_check_format(fit_hdr)) {
481 puts("** Bad FIT image format\n");
Marian Balakowicz3bab76a2008-06-06 23:07:40 +0200482 return 1;
483 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100484 fit_print_contents(fit_hdr);
Marian Balakowicz3bab76a2008-06-06 23:07:40 +0200485 }
Marian Balakowicz09475f72008-03-12 10:33:01 +0100486#endif
487
wdenke887afc2002-08-27 09:44:07 +0000488 /* Loading ok, update default load address */
489 load_addr = addr;
490
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100491 flush_cache(addr, (cnt+1)*info.blksz);
wdenke887afc2002-08-27 09:44:07 +0000492
Mike Frysinger67d668b2011-06-05 13:43:02 +0000493 return bootm_maybe_autostart(cmdtp, argv[0]);
wdenke887afc2002-08-27 09:44:07 +0000494}
495#endif /* CONFIG_USB_STORAGE */
496
497
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100498/******************************************************************************
wdenke887afc2002-08-27 09:44:07 +0000499 * usb command intepreter
500 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200501int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenke887afc2002-08-27 09:44:07 +0000502{
503
504 int i;
505 struct usb_device *dev = NULL;
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200506 extern char usb_started;
wdenk1968e612005-02-24 23:23:29 +0000507#ifdef CONFIG_USB_STORAGE
wdenke887afc2002-08-27 09:44:07 +0000508 block_dev_desc_t *stor_dev;
wdenk1968e612005-02-24 23:23:29 +0000509#endif
wdenke887afc2002-08-27 09:44:07 +0000510
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200511 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000512 return CMD_RET_USAGE;
Serge Ziryukin65d34252010-04-25 21:32:36 +0300513
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200514 if ((strncmp(argv[1], "reset", 5) == 0) ||
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100515 (strncmp(argv[1], "start", 5) == 0)) {
Simon Glass573f14f2011-12-10 11:08:06 +0000516 bootstage_mark_name(BOOTSTAGE_ID_USB_START, "usb_start");
wdenke887afc2002-08-27 09:44:07 +0000517 usb_stop();
518 printf("(Re)start USB...\n");
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200519 i = usb_init();
Simon Glass89d48362011-02-16 11:14:33 -0800520 if (i >= 0) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200521#ifdef CONFIG_USB_STORAGE
Simon Glass89d48362011-02-16 11:14:33 -0800522 /* try to recognize storage devices immediately */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200523 usb_stor_curr_dev = usb_stor_scan(1);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200524#endif
Simon Glass89d48362011-02-16 11:14:33 -0800525#ifdef CONFIG_USB_HOST_ETHER
526 /* try to recognize ethernet devices immediately */
527 usb_ether_curr_dev = usb_host_eth_scan(1);
528#endif
529 }
wdenke887afc2002-08-27 09:44:07 +0000530 return 0;
531 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100532 if (strncmp(argv[1], "stop", 4) == 0) {
wdenke887afc2002-08-27 09:44:07 +0000533#ifdef CONFIG_USB_KEYBOARD
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100534 if (argc == 2) {
535 if (usb_kbd_deregister() != 0) {
536 printf("USB not stopped: usbkbd still"
537 " using USB\n");
wdenke887afc2002-08-27 09:44:07 +0000538 return 1;
539 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100540 } else {
541 /* forced stop, switch console in to serial */
542 console_assign(stdin, "serial");
wdenke887afc2002-08-27 09:44:07 +0000543 usb_kbd_deregister();
544 }
545#endif
546 printf("stopping USB..\n");
547 usb_stop();
548 return 0;
549 }
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200550 if (!usb_started) {
551 printf("USB is stopped. Please issue 'usb start' first.\n");
552 return 1;
553 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100554 if (strncmp(argv[1], "tree", 4) == 0) {
wdenke887afc2002-08-27 09:44:07 +0000555 printf("\nDevice Tree:\n");
556 usb_show_tree(usb_get_dev_index(0));
557 return 0;
558 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100559 if (strncmp(argv[1], "inf", 3) == 0) {
wdenke887afc2002-08-27 09:44:07 +0000560 int d;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100561 if (argc == 2) {
562 for (d = 0; d < USB_MAX_DEVICE; d++) {
563 dev = usb_get_dev_index(d);
564 if (dev == NULL)
wdenke887afc2002-08-27 09:44:07 +0000565 break;
566 usb_display_desc(dev);
567 usb_display_config(dev);
568 }
569 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100570 } else {
wdenke887afc2002-08-27 09:44:07 +0000571 int d;
572
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100573 i = simple_strtoul(argv[2], NULL, 16);
574 printf("config for device %d\n", i);
575 for (d = 0; d < USB_MAX_DEVICE; d++) {
576 dev = usb_get_dev_index(d);
577 if (dev == NULL)
wdenke887afc2002-08-27 09:44:07 +0000578 break;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100579 if (dev->devnum == i)
wdenke887afc2002-08-27 09:44:07 +0000580 break;
581 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100582 if (dev == NULL) {
Loïc Minier6052cba2011-02-03 22:04:26 +0100583 printf("*** No device available ***\n");
wdenke887afc2002-08-27 09:44:07 +0000584 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100585 } else {
wdenke887afc2002-08-27 09:44:07 +0000586 usb_display_desc(dev);
587 usb_display_config(dev);
588 }
589 }
590 return 0;
591 }
592#ifdef CONFIG_USB_STORAGE
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100593 if (strncmp(argv[1], "stor", 4) == 0)
Aras Vaichasf6b44e02008-03-25 12:09:07 +1100594 return usb_stor_info();
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200595
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100596 if (strncmp(argv[1], "part", 4) == 0) {
Christian Eggersd4b5f3f2008-06-27 19:46:51 +0200597 int devno, ok = 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100598 if (argc == 2) {
Kim B. Heinoaaad1082010-03-12 15:46:56 +0200599 for (devno = 0; ; ++devno) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100600 stor_dev = usb_stor_get_dev(devno);
Kim B. Heinoaaad1082010-03-12 15:46:56 +0200601 if (stor_dev == NULL)
602 break;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100603 if (stor_dev->type != DEV_TYPE_UNKNOWN) {
Christian Eggersd4b5f3f2008-06-27 19:46:51 +0200604 ok++;
605 if (devno)
606 printf("\n");
Wolfgang Denk060f2852010-03-25 14:07:23 +0100607 debug("print_part of %x\n", devno);
Christian Eggersd4b5f3f2008-06-27 19:46:51 +0200608 print_part(stor_dev);
609 }
610 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100611 } else {
612 devno = simple_strtoul(argv[2], NULL, 16);
613 stor_dev = usb_stor_get_dev(devno);
Kim B. Heinoaaad1082010-03-12 15:46:56 +0200614 if (stor_dev != NULL &&
615 stor_dev->type != DEV_TYPE_UNKNOWN) {
wdenke887afc2002-08-27 09:44:07 +0000616 ok++;
Wolfgang Denk060f2852010-03-25 14:07:23 +0100617 debug("print_part of %x\n", devno);
wdenke887afc2002-08-27 09:44:07 +0000618 print_part(stor_dev);
619 }
620 }
621 if (!ok) {
622 printf("\nno USB devices available\n");
623 return 1;
624 }
625 return 0;
626 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100627 if (strcmp(argv[1], "read") == 0) {
628 if (usb_stor_curr_dev < 0) {
wdenke887afc2002-08-27 09:44:07 +0000629 printf("no current device selected\n");
630 return 1;
631 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100632 if (argc == 5) {
wdenke887afc2002-08-27 09:44:07 +0000633 unsigned long addr = simple_strtoul(argv[2], NULL, 16);
634 unsigned long blk = simple_strtoul(argv[3], NULL, 16);
635 unsigned long cnt = simple_strtoul(argv[4], NULL, 16);
636 unsigned long n;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100637 printf("\nUSB read: device %d block # %ld, count %ld"
638 " ... ", usb_stor_curr_dev, blk, cnt);
639 stor_dev = usb_stor_get_dev(usb_stor_curr_dev);
640 n = stor_dev->block_read(usb_stor_curr_dev, blk, cnt,
641 (ulong *)addr);
642 printf("%ld blocks read: %s\n", n,
643 (n == cnt) ? "OK" : "ERROR");
644 if (n == cnt)
wdenke887afc2002-08-27 09:44:07 +0000645 return 0;
646 return 1;
647 }
648 }
Mahavir Jain127e1082009-11-03 12:22:10 +0530649 if (strcmp(argv[1], "write") == 0) {
650 if (usb_stor_curr_dev < 0) {
651 printf("no current device selected\n");
652 return 1;
653 }
654 if (argc == 5) {
655 unsigned long addr = simple_strtoul(argv[2], NULL, 16);
656 unsigned long blk = simple_strtoul(argv[3], NULL, 16);
657 unsigned long cnt = simple_strtoul(argv[4], NULL, 16);
658 unsigned long n;
659 printf("\nUSB write: device %d block # %ld, count %ld"
660 " ... ", usb_stor_curr_dev, blk, cnt);
661 stor_dev = usb_stor_get_dev(usb_stor_curr_dev);
662 n = stor_dev->block_write(usb_stor_curr_dev, blk, cnt,
663 (ulong *)addr);
664 printf("%ld blocks write: %s\n", n,
665 (n == cnt) ? "OK" : "ERROR");
666 if (n == cnt)
667 return 0;
668 return 1;
669 }
670 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200671 if (strncmp(argv[1], "dev", 3) == 0) {
672 if (argc == 3) {
wdenke887afc2002-08-27 09:44:07 +0000673 int dev = (int)simple_strtoul(argv[2], NULL, 10);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100674 printf("\nUSB device %d: ", dev);
Kim B. Heinoaaad1082010-03-12 15:46:56 +0200675 stor_dev = usb_stor_get_dev(dev);
676 if (stor_dev == NULL) {
wdenke887afc2002-08-27 09:44:07 +0000677 printf("unknown device\n");
678 return 1;
679 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100680 printf("\n Device %d: ", dev);
wdenke887afc2002-08-27 09:44:07 +0000681 dev_print(stor_dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100682 if (stor_dev->type == DEV_TYPE_UNKNOWN)
wdenke887afc2002-08-27 09:44:07 +0000683 return 1;
wdenke887afc2002-08-27 09:44:07 +0000684 usb_stor_curr_dev = dev;
685 printf("... is now current device\n");
686 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100687 } else {
688 printf("\nUSB device %d: ", usb_stor_curr_dev);
689 stor_dev = usb_stor_get_dev(usb_stor_curr_dev);
wdenke887afc2002-08-27 09:44:07 +0000690 dev_print(stor_dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100691 if (stor_dev->type == DEV_TYPE_UNKNOWN)
wdenke887afc2002-08-27 09:44:07 +0000692 return 1;
wdenke887afc2002-08-27 09:44:07 +0000693 return 0;
694 }
695 return 0;
696 }
697#endif /* CONFIG_USB_STORAGE */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000698 return CMD_RET_USAGE;
wdenke887afc2002-08-27 09:44:07 +0000699}
700
wdenk8bde7f72003-06-27 21:31:46 +0000701#ifdef CONFIG_USB_STORAGE
wdenk0d498392003-07-01 21:06:45 +0000702U_BOOT_CMD(
703 usb, 5, 1, do_usb,
Peter Tyser2fb26042009-01-27 18:03:12 -0600704 "USB sub-system",
Veli-Pekka Peltola1af9f962011-11-02 16:59:56 +0200705 "start - start (scan) USB controller\n"
706 "usb reset - reset (rescan) USB controller\n"
Veli-Pekka Peltolab3813a22011-11-02 16:59:55 +0200707 "usb stop [f] - stop USB [f]=force stop\n"
708 "usb tree - show USB device tree\n"
wdenk5cf91d62004-04-23 20:32:05 +0000709 "usb info [dev] - show available USB devices\n"
Veli-Pekka Peltolab3813a22011-11-02 16:59:55 +0200710 "usb storage - show details of USB storage devices\n"
wdenk342717f2005-06-27 13:30:03 +0000711 "usb dev [dev] - show or set current USB storage device\n"
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100712 "usb part [dev] - print partition table of one or all USB storage"
713 " devices\n"
wdenk5cf91d62004-04-23 20:32:05 +0000714 "usb read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n"
Sergei Poselenov842404e2010-08-09 16:01:42 +0400715 " to memory address `addr'\n"
Mahavir Jain127e1082009-11-03 12:22:10 +0530716 "usb write addr blk# cnt - write `cnt' blocks starting at block `blk#'\n"
717 " from memory address `addr'"
wdenk8bde7f72003-06-27 21:31:46 +0000718);
719
720
wdenk0d498392003-07-01 21:06:45 +0000721U_BOOT_CMD(
722 usbboot, 3, 1, do_usbboot,
Peter Tyser2fb26042009-01-27 18:03:12 -0600723 "boot from USB device",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200724 "loadAddr dev:part"
wdenk8bde7f72003-06-27 21:31:46 +0000725);
726
727#else
wdenk0d498392003-07-01 21:06:45 +0000728U_BOOT_CMD(
729 usb, 5, 1, do_usb,
Peter Tyser2fb26042009-01-27 18:03:12 -0600730 "USB sub-system",
Veli-Pekka Peltola1af9f962011-11-02 16:59:56 +0200731 "start - start (scan) USB controller\n"
732 "usb reset - reset (rescan) USB controller\n"
Veli-Pekka Peltolab3813a22011-11-02 16:59:55 +0200733 "usb tree - show USB device tree\n"
734 "usb info [dev] - show available USB devices"
wdenk8bde7f72003-06-27 21:31:46 +0000735);
736#endif