wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1 | /* |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 2 | * Most of this source has been derived from the Linux USB |
Wolfgang Denk | 460c322 | 2005-08-04 01:14:12 +0200 | [diff] [blame] | 3 | * project: |
| 4 | * (C) Copyright Linus Torvalds 1999 |
| 5 | * (C) Copyright Johannes Erdfelt 1999-2001 |
| 6 | * (C) Copyright Andreas Gal 1999 |
| 7 | * (C) Copyright Gregory P. Smith 1999 |
| 8 | * (C) Copyright Deti Fliegl 1999 (new USB architecture) |
| 9 | * (C) Copyright Randy Dunlap 2000 |
| 10 | * (C) Copyright David Brownell 2000 (kernel hotplug, usb_device_id) |
| 11 | * (C) Copyright Yggdrasil Computing, Inc. 2000 |
| 12 | * (usb_device_id matching changes by Adam J. Richter) |
| 13 | * |
| 14 | * Adapted for U-Boot: |
| 15 | * (C) Copyright 2001 Denis Peter, MPL AG Switzerland |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 16 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 17 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 18 | */ |
| 19 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 20 | /* |
| 21 | * How it works: |
| 22 | * |
| 23 | * Since this is a bootloader, the devices will not be automatic |
| 24 | * (re)configured on hotplug, but after a restart of the USB the |
| 25 | * device should work. |
| 26 | * |
| 27 | * For each transfer (except "Interrupt") we wait for completion. |
| 28 | */ |
| 29 | #include <common.h> |
| 30 | #include <command.h> |
| 31 | #include <asm/processor.h> |
Mike Frysinger | 66cf641 | 2012-04-04 18:44:53 +0000 | [diff] [blame] | 32 | #include <linux/compiler.h> |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 33 | #include <linux/ctype.h> |
Christian Eggers | c918261 | 2008-05-21 22:12:00 +0200 | [diff] [blame] | 34 | #include <asm/byteorder.h> |
Tom Rini | b2fb47f | 2011-12-15 08:40:51 -0700 | [diff] [blame] | 35 | #include <asm/unaligned.h> |
Marek Vasut | 97b9eb9 | 2014-08-01 03:09:53 +0200 | [diff] [blame] | 36 | #include <errno.h> |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 37 | #include <usb.h> |
| 38 | #ifdef CONFIG_4xx |
Stefan Roese | 3048bcb | 2007-10-03 15:01:02 +0200 | [diff] [blame] | 39 | #include <asm/4xx_pci.h> |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 40 | #endif |
| 41 | |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 42 | #define USB_BUFSIZ 512 |
| 43 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 44 | static struct usb_device usb_dev[USB_MAX_DEVICE]; |
| 45 | static int dev_index; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 46 | static int asynch_allowed; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 47 | |
Bartlomiej Sieka | e51aae3 | 2006-08-03 23:20:13 +0200 | [diff] [blame] | 48 | char usb_started; /* flag for the started/stopped USB status */ |
| 49 | |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 50 | #ifndef CONFIG_USB_MAX_CONTROLLER_COUNT |
| 51 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 1 |
| 52 | #endif |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 53 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 54 | /*************************************************************************** |
| 55 | * Init USB Device |
| 56 | */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 57 | int usb_init(void) |
| 58 | { |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 59 | void *ctrl; |
| 60 | struct usb_device *dev; |
| 61 | int i, start_index = 0; |
Hans de Goede | d906bbc | 2015-01-11 20:34:46 +0100 | [diff] [blame] | 62 | int controllers_initialized = 0; |
Marek Vasut | 97b9eb9 | 2014-08-01 03:09:53 +0200 | [diff] [blame] | 63 | int ret; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 64 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 65 | dev_index = 0; |
| 66 | asynch_allowed = 1; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 67 | usb_hub_reset(); |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 68 | |
| 69 | /* first make all devices unknown */ |
| 70 | for (i = 0; i < USB_MAX_DEVICE; i++) { |
| 71 | memset(&usb_dev[i], 0, sizeof(struct usb_device)); |
| 72 | usb_dev[i].devnum = -1; |
| 73 | } |
| 74 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 75 | /* init low_level USB */ |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 76 | for (i = 0; i < CONFIG_USB_MAX_CONTROLLER_COUNT; i++) { |
| 77 | /* init low_level USB */ |
| 78 | printf("USB%d: ", i); |
Marek Vasut | 97b9eb9 | 2014-08-01 03:09:53 +0200 | [diff] [blame] | 79 | ret = usb_lowlevel_init(i, USB_INIT_HOST, &ctrl); |
| 80 | if (ret == -ENODEV) { /* No such device. */ |
| 81 | puts("Port not available.\n"); |
Hans de Goede | d906bbc | 2015-01-11 20:34:46 +0100 | [diff] [blame] | 82 | controllers_initialized++; |
Marek Vasut | 97b9eb9 | 2014-08-01 03:09:53 +0200 | [diff] [blame] | 83 | continue; |
| 84 | } |
| 85 | |
| 86 | if (ret) { /* Other error. */ |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 87 | puts("lowlevel init failed\n"); |
| 88 | continue; |
| 89 | } |
| 90 | /* |
| 91 | * lowlevel init is OK, now scan the bus for devices |
| 92 | * i.e. search HUBs and configure them |
| 93 | */ |
Hans de Goede | d906bbc | 2015-01-11 20:34:46 +0100 | [diff] [blame] | 94 | controllers_initialized++; |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 95 | start_index = dev_index; |
| 96 | printf("scanning bus %d for devices... ", i); |
Simon Glass | 79b5888 | 2015-03-25 12:22:01 -0600 | [diff] [blame] | 97 | ret = usb_alloc_new_device(ctrl, &dev); |
| 98 | if (ret) |
Paul Kocialkowski | 8879be8 | 2015-04-04 15:12:28 +0200 | [diff] [blame] | 99 | break; |
| 100 | |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 101 | /* |
| 102 | * device 0 is always present |
| 103 | * (root hub, so let it analyze) |
| 104 | */ |
Paul Kocialkowski | 8879be8 | 2015-04-04 15:12:28 +0200 | [diff] [blame] | 105 | ret = usb_new_device(dev); |
| 106 | if (ret) |
Simon Glass | 79b5888 | 2015-03-25 12:22:01 -0600 | [diff] [blame] | 107 | usb_free_device(dev->controller); |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 108 | |
Paul Kocialkowski | 8879be8 | 2015-04-04 15:12:28 +0200 | [diff] [blame] | 109 | if (start_index == dev_index) { |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 110 | puts("No USB Device found\n"); |
Paul Kocialkowski | 8879be8 | 2015-04-04 15:12:28 +0200 | [diff] [blame] | 111 | continue; |
| 112 | } else { |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 113 | printf("%d USB Device(s) found\n", |
| 114 | dev_index - start_index); |
Paul Kocialkowski | 8879be8 | 2015-04-04 15:12:28 +0200 | [diff] [blame] | 115 | } |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 116 | |
Bartlomiej Sieka | e51aae3 | 2006-08-03 23:20:13 +0200 | [diff] [blame] | 117 | usb_started = 1; |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 118 | } |
| 119 | |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 120 | debug("scan end\n"); |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 121 | /* if we were not able to find at least one working bus, bail out */ |
Hans de Goede | d906bbc | 2015-01-11 20:34:46 +0100 | [diff] [blame] | 122 | if (controllers_initialized == 0) |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 123 | puts("USB error: all controllers failed lowlevel init\n"); |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 124 | |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 125 | return usb_started ? 0 : -ENODEV; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | /****************************************************************************** |
| 129 | * Stop USB this stops the LowLevel Part and deregisters USB devices. |
| 130 | */ |
| 131 | int usb_stop(void) |
| 132 | { |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 133 | int i; |
Remy Bohmer | eba1f2f | 2008-08-20 11:22:02 +0200 | [diff] [blame] | 134 | |
| 135 | if (usb_started) { |
| 136 | asynch_allowed = 1; |
| 137 | usb_started = 0; |
| 138 | usb_hub_reset(); |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 139 | |
| 140 | for (i = 0; i < CONFIG_USB_MAX_CONTROLLER_COUNT; i++) { |
| 141 | if (usb_lowlevel_stop(i)) |
| 142 | printf("failed to stop USB controller %d\n", i); |
| 143 | } |
Remy Bohmer | eba1f2f | 2008-08-20 11:22:02 +0200 | [diff] [blame] | 144 | } |
Lucas Stach | 93c2582 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 145 | |
| 146 | return 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | /* |
| 150 | * disables the asynch behaviour of the control message. This is used for data |
| 151 | * transfers that uses the exclusiv access to the control and bulk messages. |
Simon Glass | 89d4836 | 2011-02-16 11:14:33 -0800 | [diff] [blame] | 152 | * Returns the old value so it can be restored later. |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 153 | */ |
Simon Glass | 89d4836 | 2011-02-16 11:14:33 -0800 | [diff] [blame] | 154 | int usb_disable_asynch(int disable) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 155 | { |
Simon Glass | 89d4836 | 2011-02-16 11:14:33 -0800 | [diff] [blame] | 156 | int old_value = asynch_allowed; |
| 157 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 158 | asynch_allowed = !disable; |
Simon Glass | 89d4836 | 2011-02-16 11:14:33 -0800 | [diff] [blame] | 159 | return old_value; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | |
| 163 | /*------------------------------------------------------------------- |
| 164 | * Message wrappers. |
| 165 | * |
| 166 | */ |
| 167 | |
| 168 | /* |
| 169 | * submits an Interrupt Message |
| 170 | */ |
| 171 | int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe, |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 172 | void *buffer, int transfer_len, int interval) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 173 | { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 174 | return submit_int_msg(dev, pipe, buffer, transfer_len, interval); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | /* |
| 178 | * submits a control message and waits for comletion (at least timeout * 1ms) |
| 179 | * If timeout is 0, we don't wait for completion (used as example to set and |
| 180 | * clear keyboards LEDs). For data transfers, (storage transfers) we don't |
| 181 | * allow control messages with 0 timeout, by previousely resetting the flag |
| 182 | * asynch_allowed (usb_disable_asynch(1)). |
| 183 | * returns the transfered length if OK or -1 if error. The transfered length |
| 184 | * and the current status are stored in the dev->act_len and dev->status. |
| 185 | */ |
| 186 | int usb_control_msg(struct usb_device *dev, unsigned int pipe, |
| 187 | unsigned char request, unsigned char requesttype, |
| 188 | unsigned short value, unsigned short index, |
| 189 | void *data, unsigned short size, int timeout) |
| 190 | { |
Puneet Saxena | f576613 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 191 | ALLOC_CACHE_ALIGN_BUFFER(struct devrequest, setup_packet, 1); |
Marek Vasut | e159e48 | 2012-02-13 18:58:18 +0000 | [diff] [blame] | 192 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 193 | if ((timeout == 0) && (!asynch_allowed)) { |
| 194 | /* request for a asynch control pipe is not allowed */ |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 195 | return -EINVAL; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 196 | } |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 197 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 198 | /* set setup command */ |
Puneet Saxena | f576613 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 199 | setup_packet->requesttype = requesttype; |
| 200 | setup_packet->request = request; |
| 201 | setup_packet->value = cpu_to_le16(value); |
| 202 | setup_packet->index = cpu_to_le16(index); |
| 203 | setup_packet->length = cpu_to_le16(size); |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 204 | debug("usb_control_msg: request: 0x%X, requesttype: 0x%X, " \ |
| 205 | "value 0x%X index 0x%X length 0x%X\n", |
| 206 | request, requesttype, value, index, size); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 207 | dev->status = USB_ST_NOT_PROC; /*not yet processed */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 208 | |
Ilya Yanok | fd06028 | 2012-07-15 04:43:51 +0000 | [diff] [blame] | 209 | if (submit_control_msg(dev, pipe, data, size, setup_packet) < 0) |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 210 | return -EIO; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 211 | if (timeout == 0) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 212 | return (int)size; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 213 | |
Remy Bohmer | 84d36b3 | 2010-02-01 19:40:47 +0100 | [diff] [blame] | 214 | /* |
| 215 | * Wait for status to update until timeout expires, USB driver |
| 216 | * interrupt handler may set the status when the USB operation has |
| 217 | * been completed. |
| 218 | */ |
| 219 | while (timeout--) { |
| 220 | if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC)) |
| 221 | break; |
Mike Frysinger | 5b84dd6 | 2012-03-05 13:47:00 +0000 | [diff] [blame] | 222 | mdelay(1); |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 223 | } |
Remy Bohmer | 84d36b3 | 2010-02-01 19:40:47 +0100 | [diff] [blame] | 224 | if (dev->status) |
| 225 | return -1; |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 226 | |
| 227 | return dev->act_len; |
Remy Bohmer | 84d36b3 | 2010-02-01 19:40:47 +0100 | [diff] [blame] | 228 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | /*------------------------------------------------------------------- |
| 232 | * submits bulk message, and waits for completion. returns 0 if Ok or |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 233 | * negative if Error. |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 234 | * synchronous behavior |
| 235 | */ |
| 236 | int usb_bulk_msg(struct usb_device *dev, unsigned int pipe, |
| 237 | void *data, int len, int *actual_length, int timeout) |
| 238 | { |
| 239 | if (len < 0) |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 240 | return -EINVAL; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 241 | dev->status = USB_ST_NOT_PROC; /*not yet processed */ |
Ilya Yanok | fd06028 | 2012-07-15 04:43:51 +0000 | [diff] [blame] | 242 | if (submit_bulk_msg(dev, pipe, data, len) < 0) |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 243 | return -EIO; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 244 | while (timeout--) { |
| 245 | if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC)) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 246 | break; |
Mike Frysinger | 5b84dd6 | 2012-03-05 13:47:00 +0000 | [diff] [blame] | 247 | mdelay(1); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 248 | } |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 249 | *actual_length = dev->act_len; |
| 250 | if (dev->status == 0) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 251 | return 0; |
| 252 | else |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 253 | return -EIO; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | |
| 257 | /*------------------------------------------------------------------- |
| 258 | * Max Packet stuff |
| 259 | */ |
| 260 | |
| 261 | /* |
| 262 | * returns the max packet size, depending on the pipe direction and |
| 263 | * the configurations values |
| 264 | */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 265 | int usb_maxpacket(struct usb_device *dev, unsigned long pipe) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 266 | { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 267 | /* direction is out -> use emaxpacket out */ |
| 268 | if ((pipe & USB_DIR_IN) == 0) |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 269 | return dev->epmaxpacketout[((pipe>>15) & 0xf)]; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 270 | else |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 271 | return dev->epmaxpacketin[((pipe>>15) & 0xf)]; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 272 | } |
| 273 | |
Marek Vasut | 5e8baf8 | 2011-11-05 23:35:12 +0100 | [diff] [blame] | 274 | /* |
| 275 | * The routine usb_set_maxpacket_ep() is extracted from the loop of routine |
Remy Bohmer | be19d32 | 2008-09-16 14:55:42 +0200 | [diff] [blame] | 276 | * usb_set_maxpacket(), because the optimizer of GCC 4.x chokes on this routine |
| 277 | * when it is inlined in 1 single routine. What happens is that the register r3 |
| 278 | * is used as loop-count 'i', but gets overwritten later on. |
| 279 | * This is clearly a compiler bug, but it is easier to workaround it here than |
| 280 | * to update the compiler (Occurs with at least several GCC 4.{1,2},x |
| 281 | * CodeSourcery compilers like e.g. 2007q3, 2008q1, 2008q3 lite editions on ARM) |
Marek Vasut | 5e8baf8 | 2011-11-05 23:35:12 +0100 | [diff] [blame] | 282 | * |
| 283 | * NOTE: Similar behaviour was observed with GCC4.6 on ARMv5. |
Remy Bohmer | be19d32 | 2008-09-16 14:55:42 +0200 | [diff] [blame] | 284 | */ |
Mike Frysinger | 66cf641 | 2012-04-04 18:44:53 +0000 | [diff] [blame] | 285 | static void noinline |
Marek Vasut | 5e8baf8 | 2011-11-05 23:35:12 +0100 | [diff] [blame] | 286 | usb_set_maxpacket_ep(struct usb_device *dev, int if_idx, int ep_idx) |
Remy Bohmer | be19d32 | 2008-09-16 14:55:42 +0200 | [diff] [blame] | 287 | { |
| 288 | int b; |
Marek Vasut | 5e8baf8 | 2011-11-05 23:35:12 +0100 | [diff] [blame] | 289 | struct usb_endpoint_descriptor *ep; |
Tom Rini | b2fb47f | 2011-12-15 08:40:51 -0700 | [diff] [blame] | 290 | u16 ep_wMaxPacketSize; |
Marek Vasut | 5e8baf8 | 2011-11-05 23:35:12 +0100 | [diff] [blame] | 291 | |
| 292 | ep = &dev->config.if_desc[if_idx].ep_desc[ep_idx]; |
Remy Bohmer | be19d32 | 2008-09-16 14:55:42 +0200 | [diff] [blame] | 293 | |
| 294 | b = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; |
Tom Rini | b2fb47f | 2011-12-15 08:40:51 -0700 | [diff] [blame] | 295 | ep_wMaxPacketSize = get_unaligned(&ep->wMaxPacketSize); |
Remy Bohmer | be19d32 | 2008-09-16 14:55:42 +0200 | [diff] [blame] | 296 | |
| 297 | if ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) == |
| 298 | USB_ENDPOINT_XFER_CONTROL) { |
| 299 | /* Control => bidirectional */ |
Tom Rini | b2fb47f | 2011-12-15 08:40:51 -0700 | [diff] [blame] | 300 | dev->epmaxpacketout[b] = ep_wMaxPacketSize; |
| 301 | dev->epmaxpacketin[b] = ep_wMaxPacketSize; |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 302 | debug("##Control EP epmaxpacketout/in[%d] = %d\n", |
| 303 | b, dev->epmaxpacketin[b]); |
Remy Bohmer | be19d32 | 2008-09-16 14:55:42 +0200 | [diff] [blame] | 304 | } else { |
| 305 | if ((ep->bEndpointAddress & 0x80) == 0) { |
| 306 | /* OUT Endpoint */ |
Tom Rini | b2fb47f | 2011-12-15 08:40:51 -0700 | [diff] [blame] | 307 | if (ep_wMaxPacketSize > dev->epmaxpacketout[b]) { |
| 308 | dev->epmaxpacketout[b] = ep_wMaxPacketSize; |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 309 | debug("##EP epmaxpacketout[%d] = %d\n", |
| 310 | b, dev->epmaxpacketout[b]); |
Remy Bohmer | be19d32 | 2008-09-16 14:55:42 +0200 | [diff] [blame] | 311 | } |
| 312 | } else { |
| 313 | /* IN Endpoint */ |
Tom Rini | b2fb47f | 2011-12-15 08:40:51 -0700 | [diff] [blame] | 314 | if (ep_wMaxPacketSize > dev->epmaxpacketin[b]) { |
| 315 | dev->epmaxpacketin[b] = ep_wMaxPacketSize; |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 316 | debug("##EP epmaxpacketin[%d] = %d\n", |
| 317 | b, dev->epmaxpacketin[b]); |
Remy Bohmer | be19d32 | 2008-09-16 14:55:42 +0200 | [diff] [blame] | 318 | } |
| 319 | } /* if out */ |
| 320 | } /* if control */ |
| 321 | } |
| 322 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 323 | /* |
| 324 | * set the max packed value of all endpoints in the given configuration |
| 325 | */ |
Marek Vasut | c08b1b2 | 2012-02-13 18:58:16 +0000 | [diff] [blame] | 326 | static int usb_set_maxpacket(struct usb_device *dev) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 327 | { |
Remy Bohmer | be19d32 | 2008-09-16 14:55:42 +0200 | [diff] [blame] | 328 | int i, ii; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 329 | |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 330 | for (i = 0; i < dev->config.desc.bNumInterfaces; i++) |
| 331 | for (ii = 0; ii < dev->config.if_desc[i].desc.bNumEndpoints; ii++) |
Marek Vasut | 5e8baf8 | 2011-11-05 23:35:12 +0100 | [diff] [blame] | 332 | usb_set_maxpacket_ep(dev, i, ii); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 333 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 334 | return 0; |
| 335 | } |
| 336 | |
| 337 | /******************************************************************************* |
| 338 | * Parse the config, located in buffer, and fills the dev->config structure. |
| 339 | * Note that all little/big endian swapping are done automatically. |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 340 | * (wTotalLength has already been swapped and sanitized when it was read.) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 341 | */ |
Marek Vasut | c08b1b2 | 2012-02-13 18:58:16 +0000 | [diff] [blame] | 342 | static int usb_parse_config(struct usb_device *dev, |
| 343 | unsigned char *buffer, int cfgno) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 344 | { |
| 345 | struct usb_descriptor_header *head; |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 346 | int index, ifno, epno, curr_if_num; |
Tom Rini | b2fb47f | 2011-12-15 08:40:51 -0700 | [diff] [blame] | 347 | u16 ep_wMaxPacketSize; |
Vivek Gautam | 605bd75 | 2013-04-12 16:34:34 +0530 | [diff] [blame] | 348 | struct usb_interface *if_desc = NULL; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 349 | |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 350 | ifno = -1; |
| 351 | epno = -1; |
| 352 | curr_if_num = -1; |
| 353 | |
| 354 | dev->configno = cfgno; |
| 355 | head = (struct usb_descriptor_header *) &buffer[0]; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 356 | if (head->bDescriptorType != USB_DT_CONFIG) { |
| 357 | printf(" ERROR: NOT USB_CONFIG_DESC %x\n", |
| 358 | head->bDescriptorType); |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 359 | return -EINVAL; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 360 | } |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 361 | if (head->bLength != USB_DT_CONFIG_SIZE) { |
| 362 | printf("ERROR: Invalid USB CFG length (%d)\n", head->bLength); |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 363 | return -EINVAL; |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 364 | } |
| 365 | memcpy(&dev->config, head, USB_DT_CONFIG_SIZE); |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 366 | dev->config.no_of_if = 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 367 | |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 368 | index = dev->config.desc.bLength; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 369 | /* Ok the first entry must be a configuration entry, |
| 370 | * now process the others */ |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 371 | head = (struct usb_descriptor_header *) &buffer[index]; |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 372 | while (index + 1 < dev->config.desc.wTotalLength && head->bLength) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 373 | switch (head->bDescriptorType) { |
| 374 | case USB_DT_INTERFACE: |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 375 | if (head->bLength != USB_DT_INTERFACE_SIZE) { |
| 376 | printf("ERROR: Invalid USB IF length (%d)\n", |
| 377 | head->bLength); |
| 378 | break; |
| 379 | } |
| 380 | if (index + USB_DT_INTERFACE_SIZE > |
| 381 | dev->config.desc.wTotalLength) { |
| 382 | puts("USB IF descriptor overflowed buffer!\n"); |
| 383 | break; |
| 384 | } |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 385 | if (((struct usb_interface_descriptor *) \ |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 386 | head)->bInterfaceNumber != curr_if_num) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 387 | /* this is a new interface, copy new desc */ |
| 388 | ifno = dev->config.no_of_if; |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 389 | if (ifno >= USB_MAXINTERFACES) { |
| 390 | puts("Too many USB interfaces!\n"); |
| 391 | /* try to go on with what we have */ |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 392 | return -EINVAL; |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 393 | } |
Vivek Gautam | 605bd75 | 2013-04-12 16:34:34 +0530 | [diff] [blame] | 394 | if_desc = &dev->config.if_desc[ifno]; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 395 | dev->config.no_of_if++; |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 396 | memcpy(if_desc, head, |
| 397 | USB_DT_INTERFACE_SIZE); |
Vivek Gautam | 605bd75 | 2013-04-12 16:34:34 +0530 | [diff] [blame] | 398 | if_desc->no_of_ep = 0; |
| 399 | if_desc->num_altsetting = 1; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 400 | curr_if_num = |
Vivek Gautam | 605bd75 | 2013-04-12 16:34:34 +0530 | [diff] [blame] | 401 | if_desc->desc.bInterfaceNumber; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 402 | } else { |
| 403 | /* found alternate setting for the interface */ |
Vivek Gautam | 605bd75 | 2013-04-12 16:34:34 +0530 | [diff] [blame] | 404 | if (ifno >= 0) { |
| 405 | if_desc = &dev->config.if_desc[ifno]; |
| 406 | if_desc->num_altsetting++; |
| 407 | } |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 408 | } |
| 409 | break; |
| 410 | case USB_DT_ENDPOINT: |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 411 | if (head->bLength != USB_DT_ENDPOINT_SIZE) { |
| 412 | printf("ERROR: Invalid USB EP length (%d)\n", |
| 413 | head->bLength); |
| 414 | break; |
| 415 | } |
| 416 | if (index + USB_DT_ENDPOINT_SIZE > |
| 417 | dev->config.desc.wTotalLength) { |
| 418 | puts("USB EP descriptor overflowed buffer!\n"); |
| 419 | break; |
| 420 | } |
| 421 | if (ifno < 0) { |
| 422 | puts("Endpoint descriptor out of order!\n"); |
| 423 | break; |
| 424 | } |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 425 | epno = dev->config.if_desc[ifno].no_of_ep; |
Vivek Gautam | 605bd75 | 2013-04-12 16:34:34 +0530 | [diff] [blame] | 426 | if_desc = &dev->config.if_desc[ifno]; |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 427 | if (epno > USB_MAXENDPOINTS) { |
| 428 | printf("Interface %d has too many endpoints!\n", |
| 429 | if_desc->desc.bInterfaceNumber); |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 430 | return -EINVAL; |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 431 | } |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 432 | /* found an endpoint */ |
Vivek Gautam | 605bd75 | 2013-04-12 16:34:34 +0530 | [diff] [blame] | 433 | if_desc->no_of_ep++; |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 434 | memcpy(&if_desc->ep_desc[epno], head, |
| 435 | USB_DT_ENDPOINT_SIZE); |
Tom Rini | b2fb47f | 2011-12-15 08:40:51 -0700 | [diff] [blame] | 436 | ep_wMaxPacketSize = get_unaligned(&dev->config.\ |
| 437 | if_desc[ifno].\ |
| 438 | ep_desc[epno].\ |
| 439 | wMaxPacketSize); |
| 440 | put_unaligned(le16_to_cpu(ep_wMaxPacketSize), |
| 441 | &dev->config.\ |
| 442 | if_desc[ifno].\ |
| 443 | ep_desc[epno].\ |
| 444 | wMaxPacketSize); |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 445 | debug("if %d, ep %d\n", ifno, epno); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 446 | break; |
Vivek Gautam | 6497c66 | 2013-04-12 16:34:38 +0530 | [diff] [blame] | 447 | case USB_DT_SS_ENDPOINT_COMP: |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 448 | if (head->bLength != USB_DT_SS_EP_COMP_SIZE) { |
| 449 | printf("ERROR: Invalid USB EPC length (%d)\n", |
| 450 | head->bLength); |
| 451 | break; |
| 452 | } |
| 453 | if (index + USB_DT_SS_EP_COMP_SIZE > |
| 454 | dev->config.desc.wTotalLength) { |
| 455 | puts("USB EPC descriptor overflowed buffer!\n"); |
| 456 | break; |
| 457 | } |
| 458 | if (ifno < 0 || epno < 0) { |
| 459 | puts("EPC descriptor out of order!\n"); |
| 460 | break; |
| 461 | } |
Vivek Gautam | 6497c66 | 2013-04-12 16:34:38 +0530 | [diff] [blame] | 462 | if_desc = &dev->config.if_desc[ifno]; |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 463 | memcpy(&if_desc->ss_ep_comp_desc[epno], head, |
| 464 | USB_DT_SS_EP_COMP_SIZE); |
Vivek Gautam | 6497c66 | 2013-04-12 16:34:38 +0530 | [diff] [blame] | 465 | break; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 466 | default: |
| 467 | if (head->bLength == 0) |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 468 | return -EINVAL; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 469 | |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 470 | debug("unknown Description Type : %x\n", |
| 471 | head->bDescriptorType); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 472 | |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 473 | #ifdef DEBUG |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 474 | { |
Wolfgang Denk | fad2e1b | 2011-10-05 23:11:19 +0200 | [diff] [blame] | 475 | unsigned char *ch = (unsigned char *)head; |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 476 | int i; |
| 477 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 478 | for (i = 0; i < head->bLength; i++) |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 479 | debug("%02X ", *ch++); |
| 480 | debug("\n\n\n"); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 481 | } |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 482 | #endif |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 483 | break; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 484 | } |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 485 | index += head->bLength; |
| 486 | head = (struct usb_descriptor_header *)&buffer[index]; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 487 | } |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 488 | return 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 489 | } |
| 490 | |
| 491 | /*********************************************************************** |
| 492 | * Clears an endpoint |
| 493 | * endp: endpoint number in bits 0-3; |
| 494 | * direction flag in bit 7 (1 = IN, 0 = OUT) |
| 495 | */ |
| 496 | int usb_clear_halt(struct usb_device *dev, int pipe) |
| 497 | { |
| 498 | int result; |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 499 | int endp = usb_pipeendpoint(pipe)|(usb_pipein(pipe)<<7); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 500 | |
| 501 | result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 502 | USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0, |
| 503 | endp, NULL, 0, USB_CNTL_TIMEOUT * 3); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 504 | |
| 505 | /* don't clear if failed */ |
| 506 | if (result < 0) |
| 507 | return result; |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 508 | |
Wolfgang Denk | 095b8a3 | 2005-08-02 17:06:17 +0200 | [diff] [blame] | 509 | /* |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 510 | * NOTE: we do not get status and verify reset was successful |
| 511 | * as some devices are reported to lock up upon this check.. |
| 512 | */ |
| 513 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 514 | usb_endpoint_running(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe)); |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 515 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 516 | /* toggle is reset on clear */ |
| 517 | usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0); |
| 518 | return 0; |
| 519 | } |
| 520 | |
| 521 | |
| 522 | /********************************************************************** |
| 523 | * get_descriptor type |
| 524 | */ |
Marek Vasut | c08b1b2 | 2012-02-13 18:58:16 +0000 | [diff] [blame] | 525 | static int usb_get_descriptor(struct usb_device *dev, unsigned char type, |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 526 | unsigned char index, void *buf, int size) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 527 | { |
| 528 | int res; |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 529 | res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 530 | USB_REQ_GET_DESCRIPTOR, USB_DIR_IN, |
| 531 | (type << 8) + index, 0, |
| 532 | buf, size, USB_CNTL_TIMEOUT); |
| 533 | return res; |
| 534 | } |
| 535 | |
| 536 | /********************************************************************** |
| 537 | * gets configuration cfgno and store it in the buffer |
| 538 | */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 539 | int usb_get_configuration_no(struct usb_device *dev, |
| 540 | unsigned char *buffer, int cfgno) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 541 | { |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 542 | int result; |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 543 | unsigned int length; |
Ilya Yanok | c60795f | 2012-11-06 13:48:20 +0000 | [diff] [blame] | 544 | struct usb_config_descriptor *config; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 545 | |
Ilya Yanok | c60795f | 2012-11-06 13:48:20 +0000 | [diff] [blame] | 546 | config = (struct usb_config_descriptor *)&buffer[0]; |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 547 | result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, 9); |
| 548 | if (result < 9) { |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 549 | if (result < 0) |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 550 | printf("unable to get descriptor, error %lX\n", |
| 551 | dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 552 | else |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 553 | printf("config descriptor too short " \ |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 554 | "(expected %i, got %i)\n", 9, result); |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 555 | return -EIO; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 556 | } |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 557 | length = le16_to_cpu(config->wTotalLength); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 558 | |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 559 | if (length > USB_BUFSIZ) { |
| 560 | printf("%s: failed to get descriptor - too long: %d\n", |
| 561 | __func__, length); |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 562 | return -EIO; |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 563 | } |
| 564 | |
Julius Werner | eaf3e61 | 2013-07-19 13:12:08 -0700 | [diff] [blame] | 565 | result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, length); |
| 566 | debug("get_conf_no %d Result %d, wLength %d\n", cfgno, result, length); |
| 567 | config->wTotalLength = length; /* validated, with CPU byte order */ |
| 568 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 569 | return result; |
| 570 | } |
| 571 | |
| 572 | /******************************************************************** |
| 573 | * set address of a device to the value in dev->devnum. |
| 574 | * This can only be done by addressing the device via the default address (0) |
| 575 | */ |
Marek Vasut | c08b1b2 | 2012-02-13 18:58:16 +0000 | [diff] [blame] | 576 | static int usb_set_address(struct usb_device *dev) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 577 | { |
| 578 | int res; |
| 579 | |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 580 | debug("set address %d\n", dev->devnum); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 581 | res = usb_control_msg(dev, usb_snddefctrl(dev), |
| 582 | USB_REQ_SET_ADDRESS, 0, |
| 583 | (dev->devnum), 0, |
| 584 | NULL, 0, USB_CNTL_TIMEOUT); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 585 | return res; |
| 586 | } |
| 587 | |
| 588 | /******************************************************************** |
| 589 | * set interface number to interface |
| 590 | */ |
| 591 | int usb_set_interface(struct usb_device *dev, int interface, int alternate) |
| 592 | { |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 593 | struct usb_interface *if_face = NULL; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 594 | int ret, i; |
| 595 | |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 596 | for (i = 0; i < dev->config.desc.bNumInterfaces; i++) { |
| 597 | if (dev->config.if_desc[i].desc.bInterfaceNumber == interface) { |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 598 | if_face = &dev->config.if_desc[i]; |
| 599 | break; |
| 600 | } |
| 601 | } |
| 602 | if (!if_face) { |
| 603 | printf("selecting invalid interface %d", interface); |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 604 | return -EINVAL; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 605 | } |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 606 | /* |
| 607 | * We should return now for devices with only one alternate setting. |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 608 | * According to 9.4.10 of the Universal Serial Bus Specification |
| 609 | * Revision 2.0 such devices can return with a STALL. This results in |
| 610 | * some USB sticks timeouting during initialization and then being |
| 611 | * unusable in U-Boot. |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 612 | */ |
| 613 | if (if_face->num_altsetting == 1) |
| 614 | return 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 615 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 616 | ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 617 | USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE, |
| 618 | alternate, interface, NULL, 0, |
| 619 | USB_CNTL_TIMEOUT * 5); |
| 620 | if (ret < 0) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 621 | return ret; |
| 622 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 623 | return 0; |
| 624 | } |
| 625 | |
| 626 | /******************************************************************** |
| 627 | * set configuration number to configuration |
| 628 | */ |
Marek Vasut | c08b1b2 | 2012-02-13 18:58:16 +0000 | [diff] [blame] | 629 | static int usb_set_configuration(struct usb_device *dev, int configuration) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 630 | { |
| 631 | int res; |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 632 | debug("set configuration %d\n", configuration); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 633 | /* set setup command */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 634 | res = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 635 | USB_REQ_SET_CONFIGURATION, 0, |
| 636 | configuration, 0, |
| 637 | NULL, 0, USB_CNTL_TIMEOUT); |
| 638 | if (res == 0) { |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 639 | dev->toggle[0] = 0; |
| 640 | dev->toggle[1] = 0; |
| 641 | return 0; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 642 | } else |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 643 | return -EIO; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 644 | } |
| 645 | |
| 646 | /******************************************************************** |
| 647 | * set protocol to protocol |
| 648 | */ |
| 649 | int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol) |
| 650 | { |
| 651 | return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 652 | USB_REQ_SET_PROTOCOL, USB_TYPE_CLASS | USB_RECIP_INTERFACE, |
| 653 | protocol, ifnum, NULL, 0, USB_CNTL_TIMEOUT); |
| 654 | } |
| 655 | |
| 656 | /******************************************************************** |
| 657 | * set idle |
| 658 | */ |
| 659 | int usb_set_idle(struct usb_device *dev, int ifnum, int duration, int report_id) |
| 660 | { |
| 661 | return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 662 | USB_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE, |
| 663 | (duration << 8) | report_id, ifnum, NULL, 0, USB_CNTL_TIMEOUT); |
| 664 | } |
| 665 | |
| 666 | /******************************************************************** |
| 667 | * get report |
| 668 | */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 669 | int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type, |
| 670 | unsigned char id, void *buf, int size) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 671 | { |
| 672 | return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 673 | USB_REQ_GET_REPORT, |
| 674 | USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE, |
| 675 | (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 676 | } |
| 677 | |
| 678 | /******************************************************************** |
| 679 | * get class descriptor |
| 680 | */ |
| 681 | int usb_get_class_descriptor(struct usb_device *dev, int ifnum, |
| 682 | unsigned char type, unsigned char id, void *buf, int size) |
| 683 | { |
| 684 | return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 685 | USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN, |
| 686 | (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT); |
| 687 | } |
| 688 | |
| 689 | /******************************************************************** |
| 690 | * get string index in buffer |
| 691 | */ |
Marek Vasut | c08b1b2 | 2012-02-13 18:58:16 +0000 | [diff] [blame] | 692 | static int usb_get_string(struct usb_device *dev, unsigned short langid, |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 693 | unsigned char index, void *buf, int size) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 694 | { |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 695 | int i; |
| 696 | int result; |
| 697 | |
| 698 | for (i = 0; i < 3; ++i) { |
| 699 | /* some devices are flaky */ |
| 700 | result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 701 | USB_REQ_GET_DESCRIPTOR, USB_DIR_IN, |
Wolfgang Denk | 095b8a3 | 2005-08-02 17:06:17 +0200 | [diff] [blame] | 702 | (USB_DT_STRING << 8) + index, langid, buf, size, |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 703 | USB_CNTL_TIMEOUT); |
| 704 | |
| 705 | if (result > 0) |
| 706 | break; |
Wolfgang Denk | 095b8a3 | 2005-08-02 17:06:17 +0200 | [diff] [blame] | 707 | } |
| 708 | |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 709 | return result; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 710 | } |
| 711 | |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 712 | |
| 713 | static void usb_try_string_workarounds(unsigned char *buf, int *length) |
| 714 | { |
| 715 | int newlength, oldlength = *length; |
| 716 | |
| 717 | for (newlength = 2; newlength + 1 < oldlength; newlength += 2) |
| 718 | if (!isprint(buf[newlength]) || buf[newlength + 1]) |
| 719 | break; |
| 720 | |
| 721 | if (newlength > 2) { |
| 722 | buf[0] = newlength; |
| 723 | *length = newlength; |
| 724 | } |
| 725 | } |
| 726 | |
| 727 | |
| 728 | static int usb_string_sub(struct usb_device *dev, unsigned int langid, |
| 729 | unsigned int index, unsigned char *buf) |
| 730 | { |
| 731 | int rc; |
| 732 | |
| 733 | /* Try to read the string descriptor by asking for the maximum |
| 734 | * possible number of bytes */ |
| 735 | rc = usb_get_string(dev, langid, index, buf, 255); |
| 736 | |
| 737 | /* If that failed try to read the descriptor length, then |
| 738 | * ask for just that many bytes */ |
| 739 | if (rc < 2) { |
| 740 | rc = usb_get_string(dev, langid, index, buf, 2); |
| 741 | if (rc == 2) |
| 742 | rc = usb_get_string(dev, langid, index, buf, buf[0]); |
| 743 | } |
| 744 | |
| 745 | if (rc >= 2) { |
| 746 | if (!buf[0] && !buf[1]) |
| 747 | usb_try_string_workarounds(buf, &rc); |
| 748 | |
| 749 | /* There might be extra junk at the end of the descriptor */ |
| 750 | if (buf[0] < rc) |
| 751 | rc = buf[0]; |
| 752 | |
| 753 | rc = rc - (rc & 1); /* force a multiple of two */ |
| 754 | } |
| 755 | |
| 756 | if (rc < 2) |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 757 | rc = -EINVAL; |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 758 | |
| 759 | return rc; |
| 760 | } |
| 761 | |
| 762 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 763 | /******************************************************************** |
| 764 | * usb_string: |
| 765 | * Get string index and translate it to ascii. |
| 766 | * returns string length (> 0) or error (< 0) |
| 767 | */ |
| 768 | int usb_string(struct usb_device *dev, int index, char *buf, size_t size) |
| 769 | { |
Puneet Saxena | f576613 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 770 | ALLOC_CACHE_ALIGN_BUFFER(unsigned char, mybuf, USB_BUFSIZ); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 771 | unsigned char *tbuf; |
| 772 | int err; |
| 773 | unsigned int u, idx; |
| 774 | |
| 775 | if (size <= 0 || !buf || !index) |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 776 | return -EINVAL; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 777 | buf[0] = 0; |
Wolfgang Denk | d0ff51b | 2008-07-14 15:19:07 +0200 | [diff] [blame] | 778 | tbuf = &mybuf[0]; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 779 | |
| 780 | /* get langid for strings if it's not yet known */ |
| 781 | if (!dev->have_langid) { |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 782 | err = usb_string_sub(dev, 0, 0, tbuf); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 783 | if (err < 0) { |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 784 | debug("error getting string descriptor 0 " \ |
| 785 | "(error=%lx)\n", dev->status); |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 786 | return -EIO; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 787 | } else if (tbuf[0] < 4) { |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 788 | debug("string descriptor 0 too short\n"); |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 789 | return -EIO; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 790 | } else { |
| 791 | dev->have_langid = -1; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 792 | dev->string_langid = tbuf[2] | (tbuf[3] << 8); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 793 | /* always use the first langid listed */ |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 794 | debug("USB device number %d default " \ |
| 795 | "language ID 0x%x\n", |
| 796 | dev->devnum, dev->string_langid); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 797 | } |
| 798 | } |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 799 | |
| 800 | err = usb_string_sub(dev, dev->string_langid, index, tbuf); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 801 | if (err < 0) |
| 802 | return err; |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 803 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 804 | size--; /* leave room for trailing NULL char in output buffer */ |
| 805 | for (idx = 0, u = 2; u < err; u += 2) { |
| 806 | if (idx >= size) |
| 807 | break; |
| 808 | if (tbuf[u+1]) /* high byte */ |
| 809 | buf[idx++] = '?'; /* non-ASCII character */ |
| 810 | else |
| 811 | buf[idx++] = tbuf[u]; |
| 812 | } |
| 813 | buf[idx] = 0; |
| 814 | err = idx; |
| 815 | return err; |
| 816 | } |
| 817 | |
| 818 | |
| 819 | /******************************************************************** |
| 820 | * USB device handling: |
| 821 | * the USB device are static allocated [USB_MAX_DEVICE]. |
| 822 | */ |
| 823 | |
| 824 | |
| 825 | /* returns a pointer to the device with the index [index]. |
| 826 | * if the device is not assigned (dev->devnum==-1) returns NULL |
| 827 | */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 828 | struct usb_device *usb_get_dev_index(int index) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 829 | { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 830 | if (usb_dev[index].devnum == -1) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 831 | return NULL; |
| 832 | else |
| 833 | return &usb_dev[index]; |
| 834 | } |
| 835 | |
Simon Glass | 79b5888 | 2015-03-25 12:22:01 -0600 | [diff] [blame] | 836 | int usb_alloc_new_device(struct udevice *controller, struct usb_device **devp) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 837 | { |
| 838 | int i; |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 839 | debug("New Device %d\n", dev_index); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 840 | if (dev_index == USB_MAX_DEVICE) { |
| 841 | printf("ERROR, too many USB Devices, max=%d\n", USB_MAX_DEVICE); |
Simon Glass | 79b5888 | 2015-03-25 12:22:01 -0600 | [diff] [blame] | 842 | return -ENOSPC; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 843 | } |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 844 | /* default Address is 0, real addresses start with 1 */ |
| 845 | usb_dev[dev_index].devnum = dev_index + 1; |
| 846 | usb_dev[dev_index].maxchild = 0; |
| 847 | for (i = 0; i < USB_MAXCHILDREN; i++) |
| 848 | usb_dev[dev_index].children[i] = NULL; |
| 849 | usb_dev[dev_index].parent = NULL; |
Lucas Stach | c7e3b2b | 2012-09-26 00:14:34 +0200 | [diff] [blame] | 850 | usb_dev[dev_index].controller = controller; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 851 | dev_index++; |
Simon Glass | 79b5888 | 2015-03-25 12:22:01 -0600 | [diff] [blame] | 852 | *devp = &usb_dev[dev_index - 1]; |
| 853 | |
| 854 | return 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 855 | } |
| 856 | |
Milind Choudhary | 359439d | 2012-12-12 17:55:28 -0800 | [diff] [blame] | 857 | /* |
| 858 | * Free the newly created device node. |
| 859 | * Called in error cases where configuring a newly attached |
| 860 | * device fails for some reason. |
| 861 | */ |
Simon Glass | 79b5888 | 2015-03-25 12:22:01 -0600 | [diff] [blame] | 862 | void usb_free_device(struct udevice *controller) |
Milind Choudhary | 359439d | 2012-12-12 17:55:28 -0800 | [diff] [blame] | 863 | { |
| 864 | dev_index--; |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 865 | debug("Freeing device node: %d\n", dev_index); |
Milind Choudhary | 359439d | 2012-12-12 17:55:28 -0800 | [diff] [blame] | 866 | memset(&usb_dev[dev_index], 0, sizeof(struct usb_device)); |
| 867 | usb_dev[dev_index].devnum = -1; |
| 868 | } |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 869 | |
| 870 | /* |
Vivek Gautam | 5853e13 | 2013-09-14 14:02:45 +0530 | [diff] [blame] | 871 | * XHCI issues Enable Slot command and thereafter |
| 872 | * allocates device contexts. Provide a weak alias |
| 873 | * function for the purpose, so that XHCI overrides it |
| 874 | * and EHCI/OHCI just work out of the box. |
| 875 | */ |
| 876 | __weak int usb_alloc_device(struct usb_device *udev) |
| 877 | { |
| 878 | return 0; |
| 879 | } |
| 880 | /* |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 881 | * By the time we get here, the device has gotten a new device ID |
| 882 | * and is in the default state. We need to identify the thing and |
| 883 | * get the ball rolling.. |
| 884 | * |
| 885 | * Returns 0 for success, != 0 for error. |
| 886 | */ |
Marek Vasut | 23faf2b | 2012-02-13 18:58:17 +0000 | [diff] [blame] | 887 | int usb_new_device(struct usb_device *dev) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 888 | { |
| 889 | int addr, err; |
| 890 | int tmp; |
Puneet Saxena | f576613 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 891 | ALLOC_CACHE_ALIGN_BUFFER(unsigned char, tmpbuf, USB_BUFSIZ); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 892 | |
Vivek Gautam | 5853e13 | 2013-09-14 14:02:45 +0530 | [diff] [blame] | 893 | /* |
| 894 | * Allocate usb 3.0 device context. |
| 895 | * USB 3.0 (xHCI) protocol tries to allocate device slot |
| 896 | * and related data structures first. This call does that. |
| 897 | * Refer to sec 4.3.2 in xHCI spec rev1.0 |
| 898 | */ |
| 899 | if (usb_alloc_device(dev)) { |
| 900 | printf("Cannot allocate device context to get SLOT_ID\n"); |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 901 | return -EINVAL; |
Vivek Gautam | 5853e13 | 2013-09-14 14:02:45 +0530 | [diff] [blame] | 902 | } |
| 903 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 904 | /* We still haven't set the Address yet */ |
| 905 | addr = dev->devnum; |
| 906 | dev->devnum = 0; |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 907 | |
Simon Glass | 53d8aa0 | 2015-03-25 12:22:03 -0600 | [diff] [blame^] | 908 | /* |
| 909 | * This is a Windows scheme of initialization sequence, with double |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 910 | * reset of the device (Linux uses the same sequence) |
Remy Bohmer | c9e8436 | 2008-09-16 14:55:44 +0200 | [diff] [blame] | 911 | * Some equipment is said to work only with such init sequence; this |
| 912 | * patch is based on the work by Alan Stern: |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 913 | * http://sourceforge.net/mailarchive/forum.php? |
| 914 | * thread_id=5729457&forum_id=5398 |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 915 | */ |
Vivek Gautam | 5853e13 | 2013-09-14 14:02:45 +0530 | [diff] [blame] | 916 | __maybe_unused struct usb_device_descriptor *desc; |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 917 | struct usb_device *parent = dev->parent; |
| 918 | unsigned short portstatus; |
| 919 | |
Simon Glass | 53d8aa0 | 2015-03-25 12:22:03 -0600 | [diff] [blame^] | 920 | /* |
| 921 | * send 64-byte GET-DEVICE-DESCRIPTOR request. Since the descriptor is |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 922 | * only 18 bytes long, this will terminate with a short packet. But if |
| 923 | * the maxpacket size is 8 or 16 the device may be waiting to transmit |
Remy Bohmer | c9e8436 | 2008-09-16 14:55:44 +0200 | [diff] [blame] | 924 | * some more, or keeps on retransmitting the 8 byte header. */ |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 925 | |
| 926 | desc = (struct usb_device_descriptor *)tmpbuf; |
Remy Bohmer | c9e8436 | 2008-09-16 14:55:44 +0200 | [diff] [blame] | 927 | dev->descriptor.bMaxPacketSize0 = 64; /* Start off at 64 bytes */ |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 928 | /* Default to 64 byte max packet size */ |
| 929 | dev->maxpacketsize = PACKET_SIZE_64; |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 930 | dev->epmaxpacketin[0] = 64; |
Remy Bohmer | c9e8436 | 2008-09-16 14:55:44 +0200 | [diff] [blame] | 931 | dev->epmaxpacketout[0] = 64; |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 932 | |
Vivek Gautam | 5853e13 | 2013-09-14 14:02:45 +0530 | [diff] [blame] | 933 | /* |
| 934 | * XHCI needs to issue a Address device command to setup |
| 935 | * proper device context structures, before it can interact |
| 936 | * with the device. So a get_descriptor will fail before any |
| 937 | * of that is done for XHCI unlike EHCI. |
| 938 | */ |
| 939 | #ifndef CONFIG_USB_XHCI |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 940 | err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, 64); |
Stephen Warren | 25c0673 | 2015-04-08 21:27:49 -0600 | [diff] [blame] | 941 | /* |
| 942 | * Validate we've received only at least 8 bytes, not that we've |
| 943 | * received the entire descriptor. The reasoning is: |
| 944 | * - The code only uses fields in the first 8 bytes, so that's all we |
| 945 | * need to have fetched at this stage. |
| 946 | * - The smallest maxpacket size is 8 bytes. Before we know the actual |
| 947 | * maxpacket the device uses, the USB controller may only accept a |
| 948 | * single packet. Consequently we are only guaranteed to receive 1 |
| 949 | * packet (at least 8 bytes) even in a non-error case. |
| 950 | * |
| 951 | * At least the DWC2 controller needs to be programmed with the number |
| 952 | * of packets in addition to the number of bytes. A request for 64 |
| 953 | * bytes of data with the maxpacket guessed as 64 (above) yields a |
| 954 | * request for 1 packet. |
| 955 | */ |
| 956 | if (err < 8) { |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 957 | debug("usb_new_device: usb_get_descriptor() failed\n"); |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 958 | return -EIO; |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 959 | } |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 960 | |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 961 | dev->descriptor.bMaxPacketSize0 = desc->bMaxPacketSize0; |
Vivek Gautam | 99c3491 | 2013-04-12 16:34:36 +0530 | [diff] [blame] | 962 | /* |
| 963 | * Fetch the device class, driver can use this info |
| 964 | * to differentiate between HUB and DEVICE. |
| 965 | */ |
| 966 | dev->descriptor.bDeviceClass = desc->bDeviceClass; |
Vivek Gautam | 5853e13 | 2013-09-14 14:02:45 +0530 | [diff] [blame] | 967 | #endif |
Wolfgang Denk | 095b8a3 | 2005-08-02 17:06:17 +0200 | [diff] [blame] | 968 | |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 969 | if (parent) { |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 970 | /* reset the port for the second time */ |
Hans de Goede | f7b9baf | 2014-09-20 17:03:52 +0200 | [diff] [blame] | 971 | err = hub_port_reset(dev->parent, dev->portnr - 1, &portstatus); |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 972 | if (err < 0) { |
Hans de Goede | f7b9baf | 2014-09-20 17:03:52 +0200 | [diff] [blame] | 973 | printf("\n Couldn't reset port %i\n", dev->portnr); |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 974 | return -EIO; |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 975 | } |
Hans de Goede | 90cdc10 | 2015-01-11 20:34:51 +0100 | [diff] [blame] | 976 | } else { |
| 977 | usb_reset_root_port(); |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 978 | } |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 979 | |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 980 | dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 981 | dev->epmaxpacketout[0] = dev->descriptor.bMaxPacketSize0; |
| 982 | switch (dev->descriptor.bMaxPacketSize0) { |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 983 | case 8: |
| 984 | dev->maxpacketsize = PACKET_SIZE_8; |
| 985 | break; |
| 986 | case 16: |
| 987 | dev->maxpacketsize = PACKET_SIZE_16; |
| 988 | break; |
| 989 | case 32: |
| 990 | dev->maxpacketsize = PACKET_SIZE_32; |
| 991 | break; |
| 992 | case 64: |
| 993 | dev->maxpacketsize = PACKET_SIZE_64; |
| 994 | break; |
Paul Kocialkowski | 04ee6ee | 2015-04-04 15:12:29 +0200 | [diff] [blame] | 995 | default: |
| 996 | printf("usb_new_device: invalid max packet size\n"); |
| 997 | return -EIO; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 998 | } |
| 999 | dev->devnum = addr; |
| 1000 | |
| 1001 | err = usb_set_address(dev); /* set address */ |
| 1002 | |
| 1003 | if (err < 0) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1004 | printf("\n USB device not accepting new address " \ |
| 1005 | "(error=%lX)\n", dev->status); |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 1006 | return -EIO; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1007 | } |
| 1008 | |
Mike Frysinger | 5b84dd6 | 2012-03-05 13:47:00 +0000 | [diff] [blame] | 1009 | mdelay(10); /* Let the SET_ADDRESS settle */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1010 | |
| 1011 | tmp = sizeof(dev->descriptor); |
| 1012 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1013 | err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, |
Ilya Yanok | 80ab414 | 2012-07-15 04:43:50 +0000 | [diff] [blame] | 1014 | tmpbuf, sizeof(dev->descriptor)); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1015 | if (err < tmp) { |
| 1016 | if (err < 0) |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1017 | printf("unable to get device descriptor (error=%d)\n", |
| 1018 | err); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1019 | else |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1020 | printf("USB device descriptor short read " \ |
| 1021 | "(expected %i, got %i)\n", tmp, err); |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 1022 | return -EIO; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1023 | } |
Ilya Yanok | 80ab414 | 2012-07-15 04:43:50 +0000 | [diff] [blame] | 1024 | memcpy(&dev->descriptor, tmpbuf, sizeof(dev->descriptor)); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1025 | /* correct le values */ |
Christian Eggers | c918261 | 2008-05-21 22:12:00 +0200 | [diff] [blame] | 1026 | le16_to_cpus(&dev->descriptor.bcdUSB); |
| 1027 | le16_to_cpus(&dev->descriptor.idVendor); |
| 1028 | le16_to_cpus(&dev->descriptor.idProduct); |
| 1029 | le16_to_cpus(&dev->descriptor.bcdDevice); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1030 | /* only support for one config for now */ |
Vincent Palatin | 8b8d779 | 2012-07-24 07:12:02 +0000 | [diff] [blame] | 1031 | err = usb_get_configuration_no(dev, tmpbuf, 0); |
| 1032 | if (err < 0) { |
| 1033 | printf("usb_new_device: Cannot read configuration, " \ |
| 1034 | "skipping device %04x:%04x\n", |
| 1035 | dev->descriptor.idVendor, dev->descriptor.idProduct); |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 1036 | return -EIO; |
Vincent Palatin | 8b8d779 | 2012-07-24 07:12:02 +0000 | [diff] [blame] | 1037 | } |
Puneet Saxena | f576613 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 1038 | usb_parse_config(dev, tmpbuf, 0); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1039 | usb_set_maxpacket(dev); |
| 1040 | /* we set the default configuration here */ |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 1041 | if (usb_set_configuration(dev, dev->config.desc.bConfigurationValue)) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1042 | printf("failed to set default configuration " \ |
| 1043 | "len %d, status %lX\n", dev->act_len, dev->status); |
Paul Kocialkowski | 5a80b34 | 2015-04-04 15:12:27 +0200 | [diff] [blame] | 1044 | return -EIO; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1045 | } |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1046 | debug("new device strings: Mfr=%d, Product=%d, SerialNumber=%d\n", |
| 1047 | dev->descriptor.iManufacturer, dev->descriptor.iProduct, |
| 1048 | dev->descriptor.iSerialNumber); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1049 | memset(dev->mf, 0, sizeof(dev->mf)); |
| 1050 | memset(dev->prod, 0, sizeof(dev->prod)); |
| 1051 | memset(dev->serial, 0, sizeof(dev->serial)); |
| 1052 | if (dev->descriptor.iManufacturer) |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1053 | usb_string(dev, dev->descriptor.iManufacturer, |
| 1054 | dev->mf, sizeof(dev->mf)); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1055 | if (dev->descriptor.iProduct) |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1056 | usb_string(dev, dev->descriptor.iProduct, |
| 1057 | dev->prod, sizeof(dev->prod)); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1058 | if (dev->descriptor.iSerialNumber) |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1059 | usb_string(dev, dev->descriptor.iSerialNumber, |
| 1060 | dev->serial, sizeof(dev->serial)); |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1061 | debug("Manufacturer %s\n", dev->mf); |
| 1062 | debug("Product %s\n", dev->prod); |
| 1063 | debug("SerialNumber %s\n", dev->serial); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1064 | /* now prode if the device is a hub */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1065 | usb_hub_probe(dev, 0); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1066 | return 0; |
| 1067 | } |
| 1068 | |
Mateusz Zalega | 16297cf | 2013-10-04 19:22:26 +0200 | [diff] [blame] | 1069 | __weak |
Troy Kisky | bba6791 | 2013-10-10 15:27:55 -0700 | [diff] [blame] | 1070 | int board_usb_init(int index, enum usb_init_type init) |
Mateusz Zalega | 16297cf | 2013-10-04 19:22:26 +0200 | [diff] [blame] | 1071 | { |
| 1072 | return 0; |
| 1073 | } |
Kishon Vijay Abraham I | db378d7 | 2015-02-23 18:40:18 +0530 | [diff] [blame] | 1074 | |
| 1075 | __weak |
| 1076 | int board_usb_cleanup(int index, enum usb_init_type init) |
| 1077 | { |
| 1078 | return 0; |
| 1079 | } |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1080 | /* EOF */ |