blob: 181e727f00a6196b8eb9c9e0605a79f847f3cb0e [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{
Puneet Saxenaf5766132012-04-03 14:56:06 +0530153 ALLOC_CACHE_ALIGN_BUFFER(char, buffer, 256);
154
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100155 if (index != 0) {
156 if (usb_string(dev, index, &buffer[0], 256) > 0)
157 printf("String: \"%s\"", buffer);
wdenke887afc2002-08-27 09:44:07 +0000158 }
159}
160
161void usb_display_desc(struct usb_device *dev)
162{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100163 if (dev->descriptor.bDescriptorType == USB_DT_DEVICE) {
164 printf("%d: %s, USB Revision %x.%x\n", dev->devnum,
Tom Rix8f8bd562009-10-31 12:37:38 -0500165 usb_get_class_desc(dev->config.if_desc[0].desc.bInterfaceClass),
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100166 (dev->descriptor.bcdUSB>>8) & 0xff,
167 dev->descriptor.bcdUSB & 0xff);
168
169 if (strlen(dev->mf) || strlen(dev->prod) ||
170 strlen(dev->serial))
171 printf(" - %s %s %s\n", dev->mf, dev->prod,
172 dev->serial);
wdenke887afc2002-08-27 09:44:07 +0000173 if (dev->descriptor.bDeviceClass) {
174 printf(" - Class: ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100175 usb_display_class_sub(dev->descriptor.bDeviceClass,
176 dev->descriptor.bDeviceSubClass,
177 dev->descriptor.bDeviceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000178 printf("\n");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100179 } else {
180 printf(" - Class: (from Interface) %s\n",
181 usb_get_class_desc(
Tom Rix8f8bd562009-10-31 12:37:38 -0500182 dev->config.if_desc[0].desc.bInterfaceClass));
wdenke887afc2002-08-27 09:44:07 +0000183 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100184 printf(" - PacketSize: %d Configurations: %d\n",
185 dev->descriptor.bMaxPacketSize0,
186 dev->descriptor.bNumConfigurations);
187 printf(" - Vendor: 0x%04x Product 0x%04x Version %d.%d\n",
188 dev->descriptor.idVendor, dev->descriptor.idProduct,
189 (dev->descriptor.bcdDevice>>8) & 0xff,
190 dev->descriptor.bcdDevice & 0xff);
wdenke887afc2002-08-27 09:44:07 +0000191 }
192
193}
194
Tom Rix8f8bd562009-10-31 12:37:38 -0500195void usb_display_conf_desc(struct usb_configuration_descriptor *config,
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100196 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000197{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100198 printf(" Configuration: %d\n", config->bConfigurationValue);
199 printf(" - Interfaces: %d %s%s%dmA\n", config->bNumInterfaces,
200 (config->bmAttributes & 0x40) ? "Self Powered " : "Bus Powered ",
201 (config->bmAttributes & 0x20) ? "Remote Wakeup " : "",
Tom Rix8f8bd562009-10-31 12:37:38 -0500202 config->bMaxPower*2);
wdenke887afc2002-08-27 09:44:07 +0000203 if (config->iConfiguration) {
204 printf(" - ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100205 usb_display_string(dev, config->iConfiguration);
wdenke887afc2002-08-27 09:44:07 +0000206 printf("\n");
207 }
208}
209
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100210void usb_display_if_desc(struct usb_interface_descriptor *ifdesc,
211 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000212{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100213 printf(" Interface: %d\n", ifdesc->bInterfaceNumber);
214 printf(" - Alternate Setting %d, Endpoints: %d\n",
215 ifdesc->bAlternateSetting, ifdesc->bNumEndpoints);
wdenke887afc2002-08-27 09:44:07 +0000216 printf(" - Class ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100217 usb_display_class_sub(ifdesc->bInterfaceClass,
218 ifdesc->bInterfaceSubClass, ifdesc->bInterfaceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000219 printf("\n");
220 if (ifdesc->iInterface) {
221 printf(" - ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100222 usb_display_string(dev, ifdesc->iInterface);
wdenke887afc2002-08-27 09:44:07 +0000223 printf("\n");
224 }
225}
226
227void usb_display_ep_desc(struct usb_endpoint_descriptor *epdesc)
228{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100229 printf(" - Endpoint %d %s ", epdesc->bEndpointAddress & 0xf,
230 (epdesc->bEndpointAddress & 0x80) ? "In" : "Out");
231 switch ((epdesc->bmAttributes & 0x03)) {
232 case 0:
233 printf("Control");
234 break;
235 case 1:
236 printf("Isochronous");
237 break;
238 case 2:
239 printf("Bulk");
240 break;
241 case 3:
242 printf("Interrupt");
243 break;
wdenke887afc2002-08-27 09:44:07 +0000244 }
Tom Rinib2fb47f2011-12-15 08:40:51 -0700245 printf(" MaxPacket %d", get_unaligned(&epdesc->wMaxPacketSize));
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100246 if ((epdesc->bmAttributes & 0x03) == 0x3)
247 printf(" Interval %dms", epdesc->bInterval);
wdenke887afc2002-08-27 09:44:07 +0000248 printf("\n");
249}
250
251/* main routine to diasplay the configs, interfaces and endpoints */
252void usb_display_config(struct usb_device *dev)
253{
Tom Rix8f8bd562009-10-31 12:37:38 -0500254 struct usb_config *config;
255 struct usb_interface *ifdesc;
wdenke887afc2002-08-27 09:44:07 +0000256 struct usb_endpoint_descriptor *epdesc;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100257 int i, ii;
wdenke887afc2002-08-27 09:44:07 +0000258
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100259 config = &dev->config;
Tom Rix8f8bd562009-10-31 12:37:38 -0500260 usb_display_conf_desc(&config->desc, dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100261 for (i = 0; i < config->no_of_if; i++) {
262 ifdesc = &config->if_desc[i];
Tom Rix8f8bd562009-10-31 12:37:38 -0500263 usb_display_if_desc(&ifdesc->desc, dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100264 for (ii = 0; ii < ifdesc->no_of_ep; ii++) {
265 epdesc = &ifdesc->ep_desc[ii];
wdenke887afc2002-08-27 09:44:07 +0000266 usb_display_ep_desc(epdesc);
267 }
268 }
269 printf("\n");
270}
271
Stefan Roesef1c1f542009-01-22 10:11:21 +0100272static inline char *portspeed(int speed)
273{
274 if (speed == USB_SPEED_HIGH)
275 return "480 Mb/s";
276 else if (speed == USB_SPEED_LOW)
277 return "1.5 Mb/s";
278 else
279 return "12 Mb/s";
280}
281
wdenke887afc2002-08-27 09:44:07 +0000282/* shows the device tree recursively */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100283void usb_show_tree_graph(struct usb_device *dev, char *pre)
wdenke887afc2002-08-27 09:44:07 +0000284{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100285 int i, index;
Wolfgang Denk10f4dd72011-10-05 23:01:59 +0200286 int has_child, last_child;
wdenke887afc2002-08-27 09:44:07 +0000287
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100288 index = strlen(pre);
289 printf(" %s", pre);
wdenke887afc2002-08-27 09:44:07 +0000290 /* check if the device has connected children */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100291 has_child = 0;
292 for (i = 0; i < dev->maxchild; i++) {
293 if (dev->children[i] != NULL)
294 has_child = 1;
wdenke887afc2002-08-27 09:44:07 +0000295 }
296 /* check if we are the last one */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100297 last_child = 1;
298 if (dev->parent != NULL) {
299 for (i = 0; i < dev->parent->maxchild; i++) {
wdenke887afc2002-08-27 09:44:07 +0000300 /* search for children */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100301 if (dev->parent->children[i] == dev) {
302 /* found our pointer, see if we have a
303 * little sister
304 */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100305 while (i++ < dev->parent->maxchild) {
306 if (dev->parent->children[i] != NULL) {
wdenke887afc2002-08-27 09:44:07 +0000307 /* found a sister */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100308 last_child = 0;
wdenke887afc2002-08-27 09:44:07 +0000309 break;
310 } /* if */
311 } /* while */
312 } /* device found */
313 } /* for all children of the parent */
314 printf("\b+-");
315 /* correct last child */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100316 if (last_child)
317 pre[index-1] = ' ';
wdenke887afc2002-08-27 09:44:07 +0000318 } /* if not root hub */
319 else
320 printf(" ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100321 printf("%d ", dev->devnum);
322 pre[index++] = ' ';
323 pre[index++] = has_child ? '|' : ' ';
324 pre[index] = 0;
325 printf(" %s (%s, %dmA)\n", usb_get_class_desc(
Tom Rix8f8bd562009-10-31 12:37:38 -0500326 dev->config.if_desc[0].desc.bInterfaceClass),
Stefan Roesef1c1f542009-01-22 10:11:21 +0100327 portspeed(dev->speed),
Tom Rix8f8bd562009-10-31 12:37:38 -0500328 dev->config.desc.bMaxPower * 2);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100329 if (strlen(dev->mf) || strlen(dev->prod) || strlen(dev->serial))
330 printf(" %s %s %s %s\n", pre, dev->mf, dev->prod, dev->serial);
331 printf(" %s\n", pre);
332 if (dev->maxchild > 0) {
333 for (i = 0; i < dev->maxchild; i++) {
334 if (dev->children[i] != NULL) {
335 usb_show_tree_graph(dev->children[i], pre);
336 pre[index] = 0;
wdenke887afc2002-08-27 09:44:07 +0000337 }
338 }
339 }
340}
341
342/* main routine for the tree command */
343void usb_show_tree(struct usb_device *dev)
344{
345 char preamble[32];
346
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100347 memset(preamble, 0, 32);
348 usb_show_tree_graph(dev, &preamble[0]);
wdenke887afc2002-08-27 09:44:07 +0000349}
350
351
wdenke887afc2002-08-27 09:44:07 +0000352/******************************************************************************
353 * usb boot command intepreter. Derived from diskboot
354 */
355#ifdef CONFIG_USB_STORAGE
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200356int do_usbboot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenke887afc2002-08-27 09:44:07 +0000357{
Rob Herring7405a132012-09-21 04:02:30 +0000358 return common_diskboot(cmdtp, "usb", argc, argv);
wdenke887afc2002-08-27 09:44:07 +0000359}
360#endif /* CONFIG_USB_STORAGE */
361
362
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100363/******************************************************************************
wdenke887afc2002-08-27 09:44:07 +0000364 * usb command intepreter
365 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200366int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenke887afc2002-08-27 09:44:07 +0000367{
368
369 int i;
370 struct usb_device *dev = NULL;
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200371 extern char usb_started;
wdenk1968e612005-02-24 23:23:29 +0000372#ifdef CONFIG_USB_STORAGE
wdenke887afc2002-08-27 09:44:07 +0000373 block_dev_desc_t *stor_dev;
wdenk1968e612005-02-24 23:23:29 +0000374#endif
wdenke887afc2002-08-27 09:44:07 +0000375
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200376 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000377 return CMD_RET_USAGE;
Serge Ziryukin65d34252010-04-25 21:32:36 +0300378
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200379 if ((strncmp(argv[1], "reset", 5) == 0) ||
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100380 (strncmp(argv[1], "start", 5) == 0)) {
Simon Glass573f14f2011-12-10 11:08:06 +0000381 bootstage_mark_name(BOOTSTAGE_ID_USB_START, "usb_start");
wdenke887afc2002-08-27 09:44:07 +0000382 usb_stop();
383 printf("(Re)start USB...\n");
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200384 i = usb_init();
Simon Glass89d48362011-02-16 11:14:33 -0800385 if (i >= 0) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200386#ifdef CONFIG_USB_STORAGE
Simon Glass89d48362011-02-16 11:14:33 -0800387 /* try to recognize storage devices immediately */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200388 usb_stor_curr_dev = usb_stor_scan(1);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200389#endif
Simon Glass89d48362011-02-16 11:14:33 -0800390#ifdef CONFIG_USB_HOST_ETHER
391 /* try to recognize ethernet devices immediately */
392 usb_ether_curr_dev = usb_host_eth_scan(1);
393#endif
394 }
wdenke887afc2002-08-27 09:44:07 +0000395 return 0;
396 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100397 if (strncmp(argv[1], "stop", 4) == 0) {
wdenke887afc2002-08-27 09:44:07 +0000398#ifdef CONFIG_USB_KEYBOARD
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100399 if (argc == 2) {
400 if (usb_kbd_deregister() != 0) {
401 printf("USB not stopped: usbkbd still"
402 " using USB\n");
wdenke887afc2002-08-27 09:44:07 +0000403 return 1;
404 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100405 } else {
406 /* forced stop, switch console in to serial */
407 console_assign(stdin, "serial");
wdenke887afc2002-08-27 09:44:07 +0000408 usb_kbd_deregister();
409 }
410#endif
411 printf("stopping USB..\n");
412 usb_stop();
413 return 0;
414 }
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200415 if (!usb_started) {
416 printf("USB is stopped. Please issue 'usb start' first.\n");
417 return 1;
418 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100419 if (strncmp(argv[1], "tree", 4) == 0) {
wdenke887afc2002-08-27 09:44:07 +0000420 printf("\nDevice Tree:\n");
421 usb_show_tree(usb_get_dev_index(0));
422 return 0;
423 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100424 if (strncmp(argv[1], "inf", 3) == 0) {
wdenke887afc2002-08-27 09:44:07 +0000425 int d;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100426 if (argc == 2) {
427 for (d = 0; d < USB_MAX_DEVICE; d++) {
428 dev = usb_get_dev_index(d);
429 if (dev == NULL)
wdenke887afc2002-08-27 09:44:07 +0000430 break;
431 usb_display_desc(dev);
432 usb_display_config(dev);
433 }
434 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100435 } else {
wdenke887afc2002-08-27 09:44:07 +0000436 int d;
437
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100438 i = simple_strtoul(argv[2], NULL, 16);
439 printf("config for device %d\n", i);
440 for (d = 0; d < USB_MAX_DEVICE; d++) {
441 dev = usb_get_dev_index(d);
442 if (dev == NULL)
wdenke887afc2002-08-27 09:44:07 +0000443 break;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100444 if (dev->devnum == i)
wdenke887afc2002-08-27 09:44:07 +0000445 break;
446 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100447 if (dev == NULL) {
Loïc Minier6052cba2011-02-03 22:04:26 +0100448 printf("*** No device available ***\n");
wdenke887afc2002-08-27 09:44:07 +0000449 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100450 } else {
wdenke887afc2002-08-27 09:44:07 +0000451 usb_display_desc(dev);
452 usb_display_config(dev);
453 }
454 }
455 return 0;
456 }
457#ifdef CONFIG_USB_STORAGE
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100458 if (strncmp(argv[1], "stor", 4) == 0)
Aras Vaichasf6b44e02008-03-25 12:09:07 +1100459 return usb_stor_info();
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200460
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100461 if (strncmp(argv[1], "part", 4) == 0) {
Christian Eggersd4b5f3f2008-06-27 19:46:51 +0200462 int devno, ok = 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100463 if (argc == 2) {
Kim B. Heinoaaad1082010-03-12 15:46:56 +0200464 for (devno = 0; ; ++devno) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100465 stor_dev = usb_stor_get_dev(devno);
Kim B. Heinoaaad1082010-03-12 15:46:56 +0200466 if (stor_dev == NULL)
467 break;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100468 if (stor_dev->type != DEV_TYPE_UNKNOWN) {
Christian Eggersd4b5f3f2008-06-27 19:46:51 +0200469 ok++;
470 if (devno)
471 printf("\n");
Wolfgang Denk060f2852010-03-25 14:07:23 +0100472 debug("print_part of %x\n", devno);
Christian Eggersd4b5f3f2008-06-27 19:46:51 +0200473 print_part(stor_dev);
474 }
475 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100476 } else {
477 devno = simple_strtoul(argv[2], NULL, 16);
478 stor_dev = usb_stor_get_dev(devno);
Kim B. Heinoaaad1082010-03-12 15:46:56 +0200479 if (stor_dev != NULL &&
480 stor_dev->type != DEV_TYPE_UNKNOWN) {
wdenke887afc2002-08-27 09:44:07 +0000481 ok++;
Wolfgang Denk060f2852010-03-25 14:07:23 +0100482 debug("print_part of %x\n", devno);
wdenke887afc2002-08-27 09:44:07 +0000483 print_part(stor_dev);
484 }
485 }
486 if (!ok) {
487 printf("\nno USB devices available\n");
488 return 1;
489 }
490 return 0;
491 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100492 if (strcmp(argv[1], "read") == 0) {
493 if (usb_stor_curr_dev < 0) {
wdenke887afc2002-08-27 09:44:07 +0000494 printf("no current device selected\n");
495 return 1;
496 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100497 if (argc == 5) {
wdenke887afc2002-08-27 09:44:07 +0000498 unsigned long addr = simple_strtoul(argv[2], NULL, 16);
499 unsigned long blk = simple_strtoul(argv[3], NULL, 16);
500 unsigned long cnt = simple_strtoul(argv[4], NULL, 16);
501 unsigned long n;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100502 printf("\nUSB read: device %d block # %ld, count %ld"
503 " ... ", usb_stor_curr_dev, blk, cnt);
504 stor_dev = usb_stor_get_dev(usb_stor_curr_dev);
505 n = stor_dev->block_read(usb_stor_curr_dev, blk, cnt,
506 (ulong *)addr);
507 printf("%ld blocks read: %s\n", n,
508 (n == cnt) ? "OK" : "ERROR");
509 if (n == cnt)
wdenke887afc2002-08-27 09:44:07 +0000510 return 0;
511 return 1;
512 }
513 }
Mahavir Jain127e1082009-11-03 12:22:10 +0530514 if (strcmp(argv[1], "write") == 0) {
515 if (usb_stor_curr_dev < 0) {
516 printf("no current device selected\n");
517 return 1;
518 }
519 if (argc == 5) {
520 unsigned long addr = simple_strtoul(argv[2], NULL, 16);
521 unsigned long blk = simple_strtoul(argv[3], NULL, 16);
522 unsigned long cnt = simple_strtoul(argv[4], NULL, 16);
523 unsigned long n;
524 printf("\nUSB write: device %d block # %ld, count %ld"
525 " ... ", usb_stor_curr_dev, blk, cnt);
526 stor_dev = usb_stor_get_dev(usb_stor_curr_dev);
527 n = stor_dev->block_write(usb_stor_curr_dev, blk, cnt,
528 (ulong *)addr);
529 printf("%ld blocks write: %s\n", n,
530 (n == cnt) ? "OK" : "ERROR");
531 if (n == cnt)
532 return 0;
533 return 1;
534 }
535 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200536 if (strncmp(argv[1], "dev", 3) == 0) {
537 if (argc == 3) {
wdenke887afc2002-08-27 09:44:07 +0000538 int dev = (int)simple_strtoul(argv[2], NULL, 10);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100539 printf("\nUSB device %d: ", dev);
Kim B. Heinoaaad1082010-03-12 15:46:56 +0200540 stor_dev = usb_stor_get_dev(dev);
541 if (stor_dev == NULL) {
wdenke887afc2002-08-27 09:44:07 +0000542 printf("unknown device\n");
543 return 1;
544 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100545 printf("\n Device %d: ", dev);
wdenke887afc2002-08-27 09:44:07 +0000546 dev_print(stor_dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100547 if (stor_dev->type == DEV_TYPE_UNKNOWN)
wdenke887afc2002-08-27 09:44:07 +0000548 return 1;
wdenke887afc2002-08-27 09:44:07 +0000549 usb_stor_curr_dev = dev;
550 printf("... is now current device\n");
551 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100552 } else {
553 printf("\nUSB device %d: ", usb_stor_curr_dev);
554 stor_dev = usb_stor_get_dev(usb_stor_curr_dev);
wdenke887afc2002-08-27 09:44:07 +0000555 dev_print(stor_dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100556 if (stor_dev->type == DEV_TYPE_UNKNOWN)
wdenke887afc2002-08-27 09:44:07 +0000557 return 1;
wdenke887afc2002-08-27 09:44:07 +0000558 return 0;
559 }
560 return 0;
561 }
562#endif /* CONFIG_USB_STORAGE */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000563 return CMD_RET_USAGE;
wdenke887afc2002-08-27 09:44:07 +0000564}
565
wdenk8bde7f72003-06-27 21:31:46 +0000566#ifdef CONFIG_USB_STORAGE
wdenk0d498392003-07-01 21:06:45 +0000567U_BOOT_CMD(
568 usb, 5, 1, do_usb,
Peter Tyser2fb26042009-01-27 18:03:12 -0600569 "USB sub-system",
Veli-Pekka Peltola1af9f962011-11-02 16:59:56 +0200570 "start - start (scan) USB controller\n"
571 "usb reset - reset (rescan) USB controller\n"
Veli-Pekka Peltolab3813a22011-11-02 16:59:55 +0200572 "usb stop [f] - stop USB [f]=force stop\n"
573 "usb tree - show USB device tree\n"
wdenk5cf91d62004-04-23 20:32:05 +0000574 "usb info [dev] - show available USB devices\n"
Veli-Pekka Peltolab3813a22011-11-02 16:59:55 +0200575 "usb storage - show details of USB storage devices\n"
wdenk342717f2005-06-27 13:30:03 +0000576 "usb dev [dev] - show or set current USB storage device\n"
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100577 "usb part [dev] - print partition table of one or all USB storage"
578 " devices\n"
wdenk5cf91d62004-04-23 20:32:05 +0000579 "usb read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n"
Sergei Poselenov842404e2010-08-09 16:01:42 +0400580 " to memory address `addr'\n"
Mahavir Jain127e1082009-11-03 12:22:10 +0530581 "usb write addr blk# cnt - write `cnt' blocks starting at block `blk#'\n"
582 " from memory address `addr'"
wdenk8bde7f72003-06-27 21:31:46 +0000583);
584
585
wdenk0d498392003-07-01 21:06:45 +0000586U_BOOT_CMD(
587 usbboot, 3, 1, do_usbboot,
Peter Tyser2fb26042009-01-27 18:03:12 -0600588 "boot from USB device",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200589 "loadAddr dev:part"
wdenk8bde7f72003-06-27 21:31:46 +0000590);
591
592#else
wdenk0d498392003-07-01 21:06:45 +0000593U_BOOT_CMD(
594 usb, 5, 1, do_usb,
Peter Tyser2fb26042009-01-27 18:03:12 -0600595 "USB sub-system",
Veli-Pekka Peltola1af9f962011-11-02 16:59:56 +0200596 "start - start (scan) USB controller\n"
597 "usb reset - reset (rescan) USB controller\n"
Veli-Pekka Peltolab3813a22011-11-02 16:59:55 +0200598 "usb tree - show USB device tree\n"
599 "usb info [dev] - show available USB devices"
wdenk8bde7f72003-06-27 21:31:46 +0000600);
601#endif