David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * composite.c - infrastructure for Composite USB Gadgets |
| 3 | * |
| 4 | * Copyright (C) 2006-2008 David Brownell |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | /* #define VERBOSE_DEBUG */ |
| 13 | |
| 14 | #include <linux/kallsyms.h> |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/slab.h> |
Paul Gortmaker | 6eb0de8 | 2011-07-03 16:09:31 -0400 | [diff] [blame] | 17 | #include <linux/module.h> |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 18 | #include <linux/device.h> |
Michal Nazarewicz | ad1a810 | 2010-08-12 17:43:46 +0200 | [diff] [blame] | 19 | #include <linux/utsname.h> |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 20 | |
| 21 | #include <linux/usb/composite.h> |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 22 | #include <asm/unaligned.h> |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 23 | |
| 24 | /* |
| 25 | * The code in this file is utility code, used to build a gadget driver |
| 26 | * from one or more "function" drivers, one or more "configuration" |
| 27 | * objects, and a "usb_composite_driver" by gluing them together along |
| 28 | * with the relevant device-wide data. |
| 29 | */ |
| 30 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 31 | /* Some systems will need runtime overrides for the product identifiers |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 32 | * published in the device descriptor, either numbers or strings or both. |
| 33 | * String parameters are in UTF-8 (superset of ASCII's 7 bit characters). |
| 34 | */ |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 35 | static char *iProduct; |
Sebastian Andrzej Siewior | 7225849 | 2012-09-06 20:11:15 +0200 | [diff] [blame] | 36 | module_param(iProduct, charp, S_IRUGO); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 37 | MODULE_PARM_DESC(iProduct, "USB Product string"); |
| 38 | |
Michal Nazarewicz | ad1a810 | 2010-08-12 17:43:46 +0200 | [diff] [blame] | 39 | static char composite_manufacturer[50]; |
| 40 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 41 | /*-------------------------------------------------------------------------*/ |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 42 | /** |
| 43 | * next_ep_desc() - advance to the next EP descriptor |
| 44 | * @t: currect pointer within descriptor array |
| 45 | * |
| 46 | * Return: next EP descriptor or NULL |
| 47 | * |
| 48 | * Iterate over @t until either EP descriptor found or |
| 49 | * NULL (that indicates end of list) encountered |
| 50 | */ |
| 51 | static struct usb_descriptor_header** |
| 52 | next_ep_desc(struct usb_descriptor_header **t) |
| 53 | { |
| 54 | for (; *t; t++) { |
| 55 | if ((*t)->bDescriptorType == USB_DT_ENDPOINT) |
| 56 | return t; |
| 57 | } |
| 58 | return NULL; |
| 59 | } |
| 60 | |
| 61 | /* |
| 62 | * for_each_ep_desc()- iterate over endpoint descriptors in the |
| 63 | * descriptors list |
| 64 | * @start: pointer within descriptor array. |
| 65 | * @ep_desc: endpoint descriptor to use as the loop cursor |
| 66 | */ |
| 67 | #define for_each_ep_desc(start, ep_desc) \ |
| 68 | for (ep_desc = next_ep_desc(start); \ |
| 69 | ep_desc; ep_desc = next_ep_desc(ep_desc+1)) |
| 70 | |
| 71 | /** |
| 72 | * config_ep_by_speed() - configures the given endpoint |
| 73 | * according to gadget speed. |
| 74 | * @g: pointer to the gadget |
| 75 | * @f: usb function |
| 76 | * @_ep: the endpoint to configure |
| 77 | * |
| 78 | * Return: error code, 0 on success |
| 79 | * |
| 80 | * This function chooses the right descriptors for a given |
| 81 | * endpoint according to gadget speed and saves it in the |
| 82 | * endpoint desc field. If the endpoint already has a descriptor |
| 83 | * assigned to it - overwrites it with currently corresponding |
| 84 | * descriptor. The endpoint maxpacket field is updated according |
| 85 | * to the chosen descriptor. |
| 86 | * Note: the supplied function should hold all the descriptors |
| 87 | * for supported speeds |
| 88 | */ |
| 89 | int config_ep_by_speed(struct usb_gadget *g, |
| 90 | struct usb_function *f, |
| 91 | struct usb_ep *_ep) |
| 92 | { |
Felipe Balbi | b785ea7 | 2012-06-06 10:20:23 +0300 | [diff] [blame] | 93 | struct usb_composite_dev *cdev = get_gadget_data(g); |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 94 | struct usb_endpoint_descriptor *chosen_desc = NULL; |
| 95 | struct usb_descriptor_header **speed_desc = NULL; |
| 96 | |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 97 | struct usb_ss_ep_comp_descriptor *comp_desc = NULL; |
| 98 | int want_comp_desc = 0; |
| 99 | |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 100 | struct usb_descriptor_header **d_spd; /* cursor for speed desc */ |
| 101 | |
| 102 | if (!g || !f || !_ep) |
| 103 | return -EIO; |
| 104 | |
| 105 | /* select desired speed */ |
| 106 | switch (g->speed) { |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 107 | case USB_SPEED_SUPER: |
| 108 | if (gadget_is_superspeed(g)) { |
| 109 | speed_desc = f->ss_descriptors; |
| 110 | want_comp_desc = 1; |
| 111 | break; |
| 112 | } |
| 113 | /* else: Fall trough */ |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 114 | case USB_SPEED_HIGH: |
| 115 | if (gadget_is_dualspeed(g)) { |
| 116 | speed_desc = f->hs_descriptors; |
| 117 | break; |
| 118 | } |
| 119 | /* else: fall through */ |
| 120 | default: |
| 121 | speed_desc = f->descriptors; |
| 122 | } |
| 123 | /* find descriptors */ |
| 124 | for_each_ep_desc(speed_desc, d_spd) { |
| 125 | chosen_desc = (struct usb_endpoint_descriptor *)*d_spd; |
| 126 | if (chosen_desc->bEndpointAddress == _ep->address) |
| 127 | goto ep_found; |
| 128 | } |
| 129 | return -EIO; |
| 130 | |
| 131 | ep_found: |
| 132 | /* commit results */ |
Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 133 | _ep->maxpacket = usb_endpoint_maxp(chosen_desc); |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 134 | _ep->desc = chosen_desc; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 135 | _ep->comp_desc = NULL; |
| 136 | _ep->maxburst = 0; |
| 137 | _ep->mult = 0; |
| 138 | if (!want_comp_desc) |
| 139 | return 0; |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 140 | |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 141 | /* |
| 142 | * Companion descriptor should follow EP descriptor |
| 143 | * USB 3.0 spec, #9.6.7 |
| 144 | */ |
| 145 | comp_desc = (struct usb_ss_ep_comp_descriptor *)*(++d_spd); |
| 146 | if (!comp_desc || |
| 147 | (comp_desc->bDescriptorType != USB_DT_SS_ENDPOINT_COMP)) |
| 148 | return -EIO; |
| 149 | _ep->comp_desc = comp_desc; |
| 150 | if (g->speed == USB_SPEED_SUPER) { |
| 151 | switch (usb_endpoint_type(_ep->desc)) { |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 152 | case USB_ENDPOINT_XFER_ISOC: |
| 153 | /* mult: bits 1:0 of bmAttributes */ |
| 154 | _ep->mult = comp_desc->bmAttributes & 0x3; |
Paul Zimmerman | 9e878a6 | 2012-01-16 13:24:38 -0800 | [diff] [blame] | 155 | case USB_ENDPOINT_XFER_BULK: |
| 156 | case USB_ENDPOINT_XFER_INT: |
Felipe Balbi | b785ea7 | 2012-06-06 10:20:23 +0300 | [diff] [blame] | 157 | _ep->maxburst = comp_desc->bMaxBurst + 1; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 158 | break; |
| 159 | default: |
Felipe Balbi | b785ea7 | 2012-06-06 10:20:23 +0300 | [diff] [blame] | 160 | if (comp_desc->bMaxBurst != 0) |
| 161 | ERROR(cdev, "ep0 bMaxBurst must be 0\n"); |
| 162 | _ep->maxburst = 1; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 163 | break; |
| 164 | } |
| 165 | } |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 166 | return 0; |
| 167 | } |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 168 | |
| 169 | /** |
| 170 | * usb_add_function() - add a function to a configuration |
| 171 | * @config: the configuration |
| 172 | * @function: the function being added |
| 173 | * Context: single threaded during gadget setup |
| 174 | * |
| 175 | * After initialization, each configuration must have one or more |
| 176 | * functions added to it. Adding a function involves calling its @bind() |
| 177 | * method to allocate resources such as interface and string identifiers |
| 178 | * and endpoints. |
| 179 | * |
| 180 | * This function returns the value of the function's bind(), which is |
| 181 | * zero for success else a negative errno value. |
| 182 | */ |
Michal Nazarewicz | 28824b1 | 2010-05-05 12:53:13 +0200 | [diff] [blame] | 183 | int usb_add_function(struct usb_configuration *config, |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 184 | struct usb_function *function) |
| 185 | { |
| 186 | int value = -EINVAL; |
| 187 | |
| 188 | DBG(config->cdev, "adding '%s'/%p to config '%s'/%p\n", |
| 189 | function->name, function, |
| 190 | config->label, config); |
| 191 | |
| 192 | if (!function->set_alt || !function->disable) |
| 193 | goto done; |
| 194 | |
| 195 | function->config = config; |
| 196 | list_add_tail(&function->list, &config->functions); |
| 197 | |
| 198 | /* REVISIT *require* function->bind? */ |
| 199 | if (function->bind) { |
| 200 | value = function->bind(config, function); |
| 201 | if (value < 0) { |
| 202 | list_del(&function->list); |
| 203 | function->config = NULL; |
| 204 | } |
| 205 | } else |
| 206 | value = 0; |
| 207 | |
| 208 | /* We allow configurations that don't work at both speeds. |
| 209 | * If we run into a lowspeed Linux system, treat it the same |
| 210 | * as full speed ... it's the function drivers that will need |
| 211 | * to avoid bulk and ISO transfers. |
| 212 | */ |
| 213 | if (!config->fullspeed && function->descriptors) |
| 214 | config->fullspeed = true; |
| 215 | if (!config->highspeed && function->hs_descriptors) |
| 216 | config->highspeed = true; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 217 | if (!config->superspeed && function->ss_descriptors) |
| 218 | config->superspeed = true; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 219 | |
| 220 | done: |
| 221 | if (value) |
| 222 | DBG(config->cdev, "adding '%s'/%p --> %d\n", |
| 223 | function->name, function, value); |
| 224 | return value; |
| 225 | } |
| 226 | |
| 227 | /** |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 228 | * usb_function_deactivate - prevent function and gadget enumeration |
| 229 | * @function: the function that isn't yet ready to respond |
| 230 | * |
| 231 | * Blocks response of the gadget driver to host enumeration by |
| 232 | * preventing the data line pullup from being activated. This is |
| 233 | * normally called during @bind() processing to change from the |
| 234 | * initial "ready to respond" state, or when a required resource |
| 235 | * becomes available. |
| 236 | * |
| 237 | * For example, drivers that serve as a passthrough to a userspace |
| 238 | * daemon can block enumeration unless that daemon (such as an OBEX, |
| 239 | * MTP, or print server) is ready to handle host requests. |
| 240 | * |
| 241 | * Not all systems support software control of their USB peripheral |
| 242 | * data pullups. |
| 243 | * |
| 244 | * Returns zero on success, else negative errno. |
| 245 | */ |
| 246 | int usb_function_deactivate(struct usb_function *function) |
| 247 | { |
| 248 | struct usb_composite_dev *cdev = function->config->cdev; |
Felipe Balbi | b2bdf3a | 2009-02-12 15:09:47 +0200 | [diff] [blame] | 249 | unsigned long flags; |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 250 | int status = 0; |
| 251 | |
Felipe Balbi | b2bdf3a | 2009-02-12 15:09:47 +0200 | [diff] [blame] | 252 | spin_lock_irqsave(&cdev->lock, flags); |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 253 | |
| 254 | if (cdev->deactivations == 0) |
| 255 | status = usb_gadget_disconnect(cdev->gadget); |
| 256 | if (status == 0) |
| 257 | cdev->deactivations++; |
| 258 | |
Felipe Balbi | b2bdf3a | 2009-02-12 15:09:47 +0200 | [diff] [blame] | 259 | spin_unlock_irqrestore(&cdev->lock, flags); |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 260 | return status; |
| 261 | } |
| 262 | |
| 263 | /** |
| 264 | * usb_function_activate - allow function and gadget enumeration |
| 265 | * @function: function on which usb_function_activate() was called |
| 266 | * |
| 267 | * Reverses effect of usb_function_deactivate(). If no more functions |
| 268 | * are delaying their activation, the gadget driver will respond to |
| 269 | * host enumeration procedures. |
| 270 | * |
| 271 | * Returns zero on success, else negative errno. |
| 272 | */ |
| 273 | int usb_function_activate(struct usb_function *function) |
| 274 | { |
| 275 | struct usb_composite_dev *cdev = function->config->cdev; |
Michael Grzeschik | 4fefe9f6 | 2012-07-19 00:20:11 +0200 | [diff] [blame] | 276 | unsigned long flags; |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 277 | int status = 0; |
| 278 | |
Michael Grzeschik | 4fefe9f6 | 2012-07-19 00:20:11 +0200 | [diff] [blame] | 279 | spin_lock_irqsave(&cdev->lock, flags); |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 280 | |
| 281 | if (WARN_ON(cdev->deactivations == 0)) |
| 282 | status = -EINVAL; |
| 283 | else { |
| 284 | cdev->deactivations--; |
| 285 | if (cdev->deactivations == 0) |
| 286 | status = usb_gadget_connect(cdev->gadget); |
| 287 | } |
| 288 | |
Michael Grzeschik | 4fefe9f6 | 2012-07-19 00:20:11 +0200 | [diff] [blame] | 289 | spin_unlock_irqrestore(&cdev->lock, flags); |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 290 | return status; |
| 291 | } |
| 292 | |
| 293 | /** |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 294 | * usb_interface_id() - allocate an unused interface ID |
| 295 | * @config: configuration associated with the interface |
| 296 | * @function: function handling the interface |
| 297 | * Context: single threaded during gadget setup |
| 298 | * |
| 299 | * usb_interface_id() is called from usb_function.bind() callbacks to |
| 300 | * allocate new interface IDs. The function driver will then store that |
| 301 | * ID in interface, association, CDC union, and other descriptors. It |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 302 | * will also handle any control requests targeted at that interface, |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 303 | * particularly changing its altsetting via set_alt(). There may |
| 304 | * also be class-specific or vendor-specific requests to handle. |
| 305 | * |
| 306 | * All interface identifier should be allocated using this routine, to |
| 307 | * ensure that for example different functions don't wrongly assign |
| 308 | * different meanings to the same identifier. Note that since interface |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 309 | * identifiers are configuration-specific, functions used in more than |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 310 | * one configuration (or more than once in a given configuration) need |
| 311 | * multiple versions of the relevant descriptors. |
| 312 | * |
| 313 | * Returns the interface ID which was allocated; or -ENODEV if no |
| 314 | * more interface IDs can be allocated. |
| 315 | */ |
Michal Nazarewicz | 28824b1 | 2010-05-05 12:53:13 +0200 | [diff] [blame] | 316 | int usb_interface_id(struct usb_configuration *config, |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 317 | struct usb_function *function) |
| 318 | { |
| 319 | unsigned id = config->next_interface_id; |
| 320 | |
| 321 | if (id < MAX_CONFIG_INTERFACES) { |
| 322 | config->interface[id] = function; |
| 323 | config->next_interface_id = id + 1; |
| 324 | return id; |
| 325 | } |
| 326 | return -ENODEV; |
| 327 | } |
| 328 | |
| 329 | static int config_buf(struct usb_configuration *config, |
| 330 | enum usb_device_speed speed, void *buf, u8 type) |
| 331 | { |
| 332 | struct usb_config_descriptor *c = buf; |
| 333 | void *next = buf + USB_DT_CONFIG_SIZE; |
Sebastian Andrzej Siewior | e13f17f | 2012-09-10 15:01:51 +0200 | [diff] [blame] | 334 | int len; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 335 | struct usb_function *f; |
| 336 | int status; |
| 337 | |
Sebastian Andrzej Siewior | e13f17f | 2012-09-10 15:01:51 +0200 | [diff] [blame] | 338 | len = USB_COMP_EP0_BUFSIZ - USB_DT_CONFIG_SIZE; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 339 | /* write the config descriptor */ |
| 340 | c = buf; |
| 341 | c->bLength = USB_DT_CONFIG_SIZE; |
| 342 | c->bDescriptorType = type; |
| 343 | /* wTotalLength is written later */ |
| 344 | c->bNumInterfaces = config->next_interface_id; |
| 345 | c->bConfigurationValue = config->bConfigurationValue; |
| 346 | c->iConfiguration = config->iConfiguration; |
| 347 | c->bmAttributes = USB_CONFIG_ATT_ONE | config->bmAttributes; |
David Brownell | 36e893d | 2008-09-12 09:39:06 -0700 | [diff] [blame] | 348 | c->bMaxPower = config->bMaxPower ? : (CONFIG_USB_GADGET_VBUS_DRAW / 2); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 349 | |
| 350 | /* There may be e.g. OTG descriptors */ |
| 351 | if (config->descriptors) { |
| 352 | status = usb_descriptor_fillbuf(next, len, |
| 353 | config->descriptors); |
| 354 | if (status < 0) |
| 355 | return status; |
| 356 | len -= status; |
| 357 | next += status; |
| 358 | } |
| 359 | |
| 360 | /* add each function's descriptors */ |
| 361 | list_for_each_entry(f, &config->functions, list) { |
| 362 | struct usb_descriptor_header **descriptors; |
| 363 | |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 364 | switch (speed) { |
| 365 | case USB_SPEED_SUPER: |
| 366 | descriptors = f->ss_descriptors; |
| 367 | break; |
| 368 | case USB_SPEED_HIGH: |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 369 | descriptors = f->hs_descriptors; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 370 | break; |
| 371 | default: |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 372 | descriptors = f->descriptors; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 373 | } |
| 374 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 375 | if (!descriptors) |
| 376 | continue; |
| 377 | status = usb_descriptor_fillbuf(next, len, |
| 378 | (const struct usb_descriptor_header **) descriptors); |
| 379 | if (status < 0) |
| 380 | return status; |
| 381 | len -= status; |
| 382 | next += status; |
| 383 | } |
| 384 | |
| 385 | len = next - buf; |
| 386 | c->wTotalLength = cpu_to_le16(len); |
| 387 | return len; |
| 388 | } |
| 389 | |
| 390 | static int config_desc(struct usb_composite_dev *cdev, unsigned w_value) |
| 391 | { |
| 392 | struct usb_gadget *gadget = cdev->gadget; |
| 393 | struct usb_configuration *c; |
| 394 | u8 type = w_value >> 8; |
| 395 | enum usb_device_speed speed = USB_SPEED_UNKNOWN; |
| 396 | |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 397 | if (gadget->speed == USB_SPEED_SUPER) |
| 398 | speed = gadget->speed; |
| 399 | else if (gadget_is_dualspeed(gadget)) { |
| 400 | int hs = 0; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 401 | if (gadget->speed == USB_SPEED_HIGH) |
| 402 | hs = 1; |
| 403 | if (type == USB_DT_OTHER_SPEED_CONFIG) |
| 404 | hs = !hs; |
| 405 | if (hs) |
| 406 | speed = USB_SPEED_HIGH; |
| 407 | |
| 408 | } |
| 409 | |
| 410 | /* This is a lookup by config *INDEX* */ |
| 411 | w_value &= 0xff; |
| 412 | list_for_each_entry(c, &cdev->configs, list) { |
| 413 | /* ignore configs that won't work at this speed */ |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 414 | switch (speed) { |
| 415 | case USB_SPEED_SUPER: |
| 416 | if (!c->superspeed) |
| 417 | continue; |
| 418 | break; |
| 419 | case USB_SPEED_HIGH: |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 420 | if (!c->highspeed) |
| 421 | continue; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 422 | break; |
| 423 | default: |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 424 | if (!c->fullspeed) |
| 425 | continue; |
| 426 | } |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 427 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 428 | if (w_value == 0) |
| 429 | return config_buf(c, speed, cdev->req->buf, type); |
| 430 | w_value--; |
| 431 | } |
| 432 | return -EINVAL; |
| 433 | } |
| 434 | |
| 435 | static int count_configs(struct usb_composite_dev *cdev, unsigned type) |
| 436 | { |
| 437 | struct usb_gadget *gadget = cdev->gadget; |
| 438 | struct usb_configuration *c; |
| 439 | unsigned count = 0; |
| 440 | int hs = 0; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 441 | int ss = 0; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 442 | |
| 443 | if (gadget_is_dualspeed(gadget)) { |
| 444 | if (gadget->speed == USB_SPEED_HIGH) |
| 445 | hs = 1; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 446 | if (gadget->speed == USB_SPEED_SUPER) |
| 447 | ss = 1; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 448 | if (type == USB_DT_DEVICE_QUALIFIER) |
| 449 | hs = !hs; |
| 450 | } |
| 451 | list_for_each_entry(c, &cdev->configs, list) { |
| 452 | /* ignore configs that won't work at this speed */ |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 453 | if (ss) { |
| 454 | if (!c->superspeed) |
| 455 | continue; |
| 456 | } else if (hs) { |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 457 | if (!c->highspeed) |
| 458 | continue; |
| 459 | } else { |
| 460 | if (!c->fullspeed) |
| 461 | continue; |
| 462 | } |
| 463 | count++; |
| 464 | } |
| 465 | return count; |
| 466 | } |
| 467 | |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 468 | /** |
| 469 | * bos_desc() - prepares the BOS descriptor. |
| 470 | * @cdev: pointer to usb_composite device to generate the bos |
| 471 | * descriptor for |
| 472 | * |
| 473 | * This function generates the BOS (Binary Device Object) |
| 474 | * descriptor and its device capabilities descriptors. The BOS |
| 475 | * descriptor should be supported by a SuperSpeed device. |
| 476 | */ |
| 477 | static int bos_desc(struct usb_composite_dev *cdev) |
| 478 | { |
| 479 | struct usb_ext_cap_descriptor *usb_ext; |
| 480 | struct usb_ss_cap_descriptor *ss_cap; |
| 481 | struct usb_dcd_config_params dcd_config_params; |
| 482 | struct usb_bos_descriptor *bos = cdev->req->buf; |
| 483 | |
| 484 | bos->bLength = USB_DT_BOS_SIZE; |
| 485 | bos->bDescriptorType = USB_DT_BOS; |
| 486 | |
| 487 | bos->wTotalLength = cpu_to_le16(USB_DT_BOS_SIZE); |
| 488 | bos->bNumDeviceCaps = 0; |
| 489 | |
| 490 | /* |
| 491 | * A SuperSpeed device shall include the USB2.0 extension descriptor |
| 492 | * and shall support LPM when operating in USB2.0 HS mode. |
| 493 | */ |
| 494 | usb_ext = cdev->req->buf + le16_to_cpu(bos->wTotalLength); |
| 495 | bos->bNumDeviceCaps++; |
| 496 | le16_add_cpu(&bos->wTotalLength, USB_DT_USB_EXT_CAP_SIZE); |
| 497 | usb_ext->bLength = USB_DT_USB_EXT_CAP_SIZE; |
| 498 | usb_ext->bDescriptorType = USB_DT_DEVICE_CAPABILITY; |
| 499 | usb_ext->bDevCapabilityType = USB_CAP_TYPE_EXT; |
| 500 | usb_ext->bmAttributes = cpu_to_le32(USB_LPM_SUPPORT); |
| 501 | |
| 502 | /* |
| 503 | * The Superspeed USB Capability descriptor shall be implemented by all |
| 504 | * SuperSpeed devices. |
| 505 | */ |
| 506 | ss_cap = cdev->req->buf + le16_to_cpu(bos->wTotalLength); |
| 507 | bos->bNumDeviceCaps++; |
| 508 | le16_add_cpu(&bos->wTotalLength, USB_DT_USB_SS_CAP_SIZE); |
| 509 | ss_cap->bLength = USB_DT_USB_SS_CAP_SIZE; |
| 510 | ss_cap->bDescriptorType = USB_DT_DEVICE_CAPABILITY; |
| 511 | ss_cap->bDevCapabilityType = USB_SS_CAP_TYPE; |
| 512 | ss_cap->bmAttributes = 0; /* LTM is not supported yet */ |
| 513 | ss_cap->wSpeedSupported = cpu_to_le16(USB_LOW_SPEED_OPERATION | |
| 514 | USB_FULL_SPEED_OPERATION | |
| 515 | USB_HIGH_SPEED_OPERATION | |
| 516 | USB_5GBPS_OPERATION); |
| 517 | ss_cap->bFunctionalitySupport = USB_LOW_SPEED_OPERATION; |
| 518 | |
| 519 | /* Get Controller configuration */ |
| 520 | if (cdev->gadget->ops->get_config_params) |
| 521 | cdev->gadget->ops->get_config_params(&dcd_config_params); |
| 522 | else { |
Felipe Balbi | 089b837 | 2011-10-10 09:43:44 +0300 | [diff] [blame] | 523 | dcd_config_params.bU1devExitLat = USB_DEFAULT_U1_DEV_EXIT_LAT; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 524 | dcd_config_params.bU2DevExitLat = |
Felipe Balbi | 089b837 | 2011-10-10 09:43:44 +0300 | [diff] [blame] | 525 | cpu_to_le16(USB_DEFAULT_U2_DEV_EXIT_LAT); |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 526 | } |
| 527 | ss_cap->bU1devExitLat = dcd_config_params.bU1devExitLat; |
| 528 | ss_cap->bU2DevExitLat = dcd_config_params.bU2DevExitLat; |
| 529 | |
| 530 | return le16_to_cpu(bos->wTotalLength); |
| 531 | } |
| 532 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 533 | static void device_qual(struct usb_composite_dev *cdev) |
| 534 | { |
| 535 | struct usb_qualifier_descriptor *qual = cdev->req->buf; |
| 536 | |
| 537 | qual->bLength = sizeof(*qual); |
| 538 | qual->bDescriptorType = USB_DT_DEVICE_QUALIFIER; |
| 539 | /* POLICY: same bcdUSB and device type info at both speeds */ |
| 540 | qual->bcdUSB = cdev->desc.bcdUSB; |
| 541 | qual->bDeviceClass = cdev->desc.bDeviceClass; |
| 542 | qual->bDeviceSubClass = cdev->desc.bDeviceSubClass; |
| 543 | qual->bDeviceProtocol = cdev->desc.bDeviceProtocol; |
| 544 | /* ASSUME same EP0 fifo size at both speeds */ |
Sebastian Andrzej Siewior | 765f5b8 | 2011-06-23 14:26:11 +0200 | [diff] [blame] | 545 | qual->bMaxPacketSize0 = cdev->gadget->ep0->maxpacket; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 546 | qual->bNumConfigurations = count_configs(cdev, USB_DT_DEVICE_QUALIFIER); |
David Lopo | c24f422 | 2008-07-01 13:14:17 -0700 | [diff] [blame] | 547 | qual->bRESERVED = 0; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 548 | } |
| 549 | |
| 550 | /*-------------------------------------------------------------------------*/ |
| 551 | |
| 552 | static void reset_config(struct usb_composite_dev *cdev) |
| 553 | { |
| 554 | struct usb_function *f; |
| 555 | |
| 556 | DBG(cdev, "reset config\n"); |
| 557 | |
| 558 | list_for_each_entry(f, &cdev->config->functions, list) { |
| 559 | if (f->disable) |
| 560 | f->disable(f); |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 561 | |
| 562 | bitmap_zero(f->endpoints, 32); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 563 | } |
| 564 | cdev->config = NULL; |
| 565 | } |
| 566 | |
| 567 | static int set_config(struct usb_composite_dev *cdev, |
| 568 | const struct usb_ctrlrequest *ctrl, unsigned number) |
| 569 | { |
| 570 | struct usb_gadget *gadget = cdev->gadget; |
| 571 | struct usb_configuration *c = NULL; |
| 572 | int result = -EINVAL; |
| 573 | unsigned power = gadget_is_otg(gadget) ? 8 : 100; |
| 574 | int tmp; |
| 575 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 576 | if (number) { |
| 577 | list_for_each_entry(c, &cdev->configs, list) { |
| 578 | if (c->bConfigurationValue == number) { |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 579 | /* |
| 580 | * We disable the FDs of the previous |
| 581 | * configuration only if the new configuration |
| 582 | * is a valid one |
| 583 | */ |
| 584 | if (cdev->config) |
| 585 | reset_config(cdev); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 586 | result = 0; |
| 587 | break; |
| 588 | } |
| 589 | } |
| 590 | if (result < 0) |
| 591 | goto done; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 592 | } else { /* Zero configuration value - need to reset the config */ |
| 593 | if (cdev->config) |
| 594 | reset_config(cdev); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 595 | result = 0; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 596 | } |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 597 | |
Michal Nazarewicz | e538dfd | 2011-08-30 17:11:19 +0200 | [diff] [blame] | 598 | INFO(cdev, "%s config #%d: %s\n", |
| 599 | usb_speed_string(gadget->speed), |
| 600 | number, c ? c->label : "unconfigured"); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 601 | |
| 602 | if (!c) |
| 603 | goto done; |
| 604 | |
| 605 | cdev->config = c; |
| 606 | |
| 607 | /* Initialize all interfaces by setting them to altsetting zero. */ |
| 608 | for (tmp = 0; tmp < MAX_CONFIG_INTERFACES; tmp++) { |
| 609 | struct usb_function *f = c->interface[tmp]; |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 610 | struct usb_descriptor_header **descriptors; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 611 | |
| 612 | if (!f) |
| 613 | break; |
| 614 | |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 615 | /* |
| 616 | * Record which endpoints are used by the function. This is used |
| 617 | * to dispatch control requests targeted at that endpoint to the |
| 618 | * function's setup callback instead of the current |
| 619 | * configuration's setup callback. |
| 620 | */ |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 621 | switch (gadget->speed) { |
| 622 | case USB_SPEED_SUPER: |
| 623 | descriptors = f->ss_descriptors; |
| 624 | break; |
| 625 | case USB_SPEED_HIGH: |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 626 | descriptors = f->hs_descriptors; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 627 | break; |
| 628 | default: |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 629 | descriptors = f->descriptors; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 630 | } |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 631 | |
| 632 | for (; *descriptors; ++descriptors) { |
| 633 | struct usb_endpoint_descriptor *ep; |
| 634 | int addr; |
| 635 | |
| 636 | if ((*descriptors)->bDescriptorType != USB_DT_ENDPOINT) |
| 637 | continue; |
| 638 | |
| 639 | ep = (struct usb_endpoint_descriptor *)*descriptors; |
| 640 | addr = ((ep->bEndpointAddress & 0x80) >> 3) |
| 641 | | (ep->bEndpointAddress & 0x0f); |
| 642 | set_bit(addr, f->endpoints); |
| 643 | } |
| 644 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 645 | result = f->set_alt(f, tmp, 0); |
| 646 | if (result < 0) { |
| 647 | DBG(cdev, "interface %d (%s/%p) alt 0 --> %d\n", |
| 648 | tmp, f->name, f, result); |
| 649 | |
| 650 | reset_config(cdev); |
| 651 | goto done; |
| 652 | } |
Roger Quadros | 1b9ba00 | 2011-05-09 13:08:06 +0300 | [diff] [blame] | 653 | |
| 654 | if (result == USB_GADGET_DELAYED_STATUS) { |
| 655 | DBG(cdev, |
| 656 | "%s: interface %d (%s) requested delayed status\n", |
| 657 | __func__, tmp, f->name); |
| 658 | cdev->delayed_status++; |
| 659 | DBG(cdev, "delayed_status count %d\n", |
| 660 | cdev->delayed_status); |
| 661 | } |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 662 | } |
| 663 | |
| 664 | /* when we return, be sure our power usage is valid */ |
David Brownell | 36e893d | 2008-09-12 09:39:06 -0700 | [diff] [blame] | 665 | power = c->bMaxPower ? (2 * c->bMaxPower) : CONFIG_USB_GADGET_VBUS_DRAW; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 666 | done: |
| 667 | usb_gadget_vbus_draw(gadget, power); |
Roger Quadros | 1b9ba00 | 2011-05-09 13:08:06 +0300 | [diff] [blame] | 668 | if (result >= 0 && cdev->delayed_status) |
| 669 | result = USB_GADGET_DELAYED_STATUS; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 670 | return result; |
| 671 | } |
| 672 | |
| 673 | /** |
| 674 | * usb_add_config() - add a configuration to a device. |
| 675 | * @cdev: wraps the USB gadget |
| 676 | * @config: the configuration, with bConfigurationValue assigned |
Uwe Kleine-König | c9bfff9 | 2010-08-12 17:43:55 +0200 | [diff] [blame] | 677 | * @bind: the configuration's bind function |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 678 | * Context: single threaded during gadget setup |
| 679 | * |
Uwe Kleine-König | c9bfff9 | 2010-08-12 17:43:55 +0200 | [diff] [blame] | 680 | * One of the main tasks of a composite @bind() routine is to |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 681 | * add each of the configurations it supports, using this routine. |
| 682 | * |
Uwe Kleine-König | c9bfff9 | 2010-08-12 17:43:55 +0200 | [diff] [blame] | 683 | * This function returns the value of the configuration's @bind(), which |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 684 | * is zero for success else a negative errno value. Binding configurations |
| 685 | * assigns global resources including string IDs, and per-configuration |
| 686 | * resources such as interface IDs and endpoints. |
| 687 | */ |
Michal Nazarewicz | 28824b1 | 2010-05-05 12:53:13 +0200 | [diff] [blame] | 688 | int usb_add_config(struct usb_composite_dev *cdev, |
Uwe Kleine-König | c9bfff9 | 2010-08-12 17:43:55 +0200 | [diff] [blame] | 689 | struct usb_configuration *config, |
| 690 | int (*bind)(struct usb_configuration *)) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 691 | { |
| 692 | int status = -EINVAL; |
| 693 | struct usb_configuration *c; |
| 694 | |
| 695 | DBG(cdev, "adding config #%u '%s'/%p\n", |
| 696 | config->bConfigurationValue, |
| 697 | config->label, config); |
| 698 | |
Uwe Kleine-König | c9bfff9 | 2010-08-12 17:43:55 +0200 | [diff] [blame] | 699 | if (!config->bConfigurationValue || !bind) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 700 | goto done; |
| 701 | |
| 702 | /* Prevent duplicate configuration identifiers */ |
| 703 | list_for_each_entry(c, &cdev->configs, list) { |
| 704 | if (c->bConfigurationValue == config->bConfigurationValue) { |
| 705 | status = -EBUSY; |
| 706 | goto done; |
| 707 | } |
| 708 | } |
| 709 | |
| 710 | config->cdev = cdev; |
| 711 | list_add_tail(&config->list, &cdev->configs); |
| 712 | |
| 713 | INIT_LIST_HEAD(&config->functions); |
| 714 | config->next_interface_id = 0; |
Benoit Goby | 02e8161 | 2012-05-10 10:07:58 +0200 | [diff] [blame] | 715 | memset(config->interface, 0, sizeof(config->interface)); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 716 | |
Uwe Kleine-König | c9bfff9 | 2010-08-12 17:43:55 +0200 | [diff] [blame] | 717 | status = bind(config); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 718 | if (status < 0) { |
Yongsul Oh | 124ef38 | 2012-03-20 10:38:38 +0900 | [diff] [blame] | 719 | while (!list_empty(&config->functions)) { |
| 720 | struct usb_function *f; |
| 721 | |
| 722 | f = list_first_entry(&config->functions, |
| 723 | struct usb_function, list); |
| 724 | list_del(&f->list); |
| 725 | if (f->unbind) { |
| 726 | DBG(cdev, "unbind function '%s'/%p\n", |
| 727 | f->name, f); |
| 728 | f->unbind(config, f); |
| 729 | /* may free memory for "f" */ |
| 730 | } |
| 731 | } |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 732 | list_del(&config->list); |
| 733 | config->cdev = NULL; |
| 734 | } else { |
| 735 | unsigned i; |
| 736 | |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 737 | DBG(cdev, "cfg %d/%p speeds:%s%s%s\n", |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 738 | config->bConfigurationValue, config, |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 739 | config->superspeed ? " super" : "", |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 740 | config->highspeed ? " high" : "", |
| 741 | config->fullspeed |
| 742 | ? (gadget_is_dualspeed(cdev->gadget) |
| 743 | ? " full" |
| 744 | : " full/low") |
| 745 | : ""); |
| 746 | |
| 747 | for (i = 0; i < MAX_CONFIG_INTERFACES; i++) { |
| 748 | struct usb_function *f = config->interface[i]; |
| 749 | |
| 750 | if (!f) |
| 751 | continue; |
| 752 | DBG(cdev, " interface %d = %s/%p\n", |
| 753 | i, f->name, f); |
| 754 | } |
| 755 | } |
| 756 | |
Uwe Kleine-König | c9bfff9 | 2010-08-12 17:43:55 +0200 | [diff] [blame] | 757 | /* set_alt(), or next bind(), sets up |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 758 | * ep->driver_data as needed. |
| 759 | */ |
| 760 | usb_ep_autoconfig_reset(cdev->gadget); |
| 761 | |
| 762 | done: |
| 763 | if (status) |
| 764 | DBG(cdev, "added config '%s'/%u --> %d\n", config->label, |
| 765 | config->bConfigurationValue, status); |
| 766 | return status; |
| 767 | } |
| 768 | |
Benoit Goby | 51cce6f | 2012-05-10 10:07:57 +0200 | [diff] [blame] | 769 | static void remove_config(struct usb_composite_dev *cdev, |
| 770 | struct usb_configuration *config) |
| 771 | { |
| 772 | while (!list_empty(&config->functions)) { |
| 773 | struct usb_function *f; |
| 774 | |
| 775 | f = list_first_entry(&config->functions, |
| 776 | struct usb_function, list); |
| 777 | list_del(&f->list); |
| 778 | if (f->unbind) { |
| 779 | DBG(cdev, "unbind function '%s'/%p\n", f->name, f); |
| 780 | f->unbind(config, f); |
| 781 | /* may free memory for "f" */ |
| 782 | } |
| 783 | } |
| 784 | list_del(&config->list); |
| 785 | if (config->unbind) { |
| 786 | DBG(cdev, "unbind config '%s'/%p\n", config->label, config); |
| 787 | config->unbind(config); |
| 788 | /* may free memory for "c" */ |
| 789 | } |
| 790 | } |
| 791 | |
| 792 | /** |
| 793 | * usb_remove_config() - remove a configuration from a device. |
| 794 | * @cdev: wraps the USB gadget |
| 795 | * @config: the configuration |
| 796 | * |
| 797 | * Drivers must call usb_gadget_disconnect before calling this function |
| 798 | * to disconnect the device from the host and make sure the host will not |
| 799 | * try to enumerate the device while we are changing the config list. |
| 800 | */ |
| 801 | void usb_remove_config(struct usb_composite_dev *cdev, |
| 802 | struct usb_configuration *config) |
| 803 | { |
| 804 | unsigned long flags; |
| 805 | |
| 806 | spin_lock_irqsave(&cdev->lock, flags); |
| 807 | |
| 808 | if (cdev->config == config) |
| 809 | reset_config(cdev); |
| 810 | |
| 811 | spin_unlock_irqrestore(&cdev->lock, flags); |
| 812 | |
| 813 | remove_config(cdev, config); |
| 814 | } |
| 815 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 816 | /*-------------------------------------------------------------------------*/ |
| 817 | |
| 818 | /* We support strings in multiple languages ... string descriptor zero |
| 819 | * says which languages are supported. The typical case will be that |
| 820 | * only one language (probably English) is used, with I18N handled on |
| 821 | * the host side. |
| 822 | */ |
| 823 | |
| 824 | static void collect_langs(struct usb_gadget_strings **sp, __le16 *buf) |
| 825 | { |
| 826 | const struct usb_gadget_strings *s; |
Dan Carpenter | 20c5e74 | 2012-04-17 09:30:22 +0300 | [diff] [blame] | 827 | __le16 language; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 828 | __le16 *tmp; |
| 829 | |
| 830 | while (*sp) { |
| 831 | s = *sp; |
| 832 | language = cpu_to_le16(s->language); |
| 833 | for (tmp = buf; *tmp && tmp < &buf[126]; tmp++) { |
| 834 | if (*tmp == language) |
| 835 | goto repeat; |
| 836 | } |
| 837 | *tmp++ = language; |
| 838 | repeat: |
| 839 | sp++; |
| 840 | } |
| 841 | } |
| 842 | |
| 843 | static int lookup_string( |
| 844 | struct usb_gadget_strings **sp, |
| 845 | void *buf, |
| 846 | u16 language, |
| 847 | int id |
| 848 | ) |
| 849 | { |
| 850 | struct usb_gadget_strings *s; |
| 851 | int value; |
| 852 | |
| 853 | while (*sp) { |
| 854 | s = *sp++; |
| 855 | if (s->language != language) |
| 856 | continue; |
| 857 | value = usb_gadget_get_string(s, id, buf); |
| 858 | if (value > 0) |
| 859 | return value; |
| 860 | } |
| 861 | return -EINVAL; |
| 862 | } |
| 863 | |
| 864 | static int get_string(struct usb_composite_dev *cdev, |
| 865 | void *buf, u16 language, int id) |
| 866 | { |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 867 | struct usb_composite_driver *composite = cdev->driver; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 868 | struct usb_configuration *c; |
| 869 | struct usb_function *f; |
| 870 | int len; |
Michal Nazarewicz | ad1a810 | 2010-08-12 17:43:46 +0200 | [diff] [blame] | 871 | const char *str; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 872 | |
| 873 | /* Yes, not only is USB's I18N support probably more than most |
| 874 | * folk will ever care about ... also, it's all supported here. |
| 875 | * (Except for UTF8 support for Unicode's "Astral Planes".) |
| 876 | */ |
| 877 | |
| 878 | /* 0 == report all available language codes */ |
| 879 | if (id == 0) { |
| 880 | struct usb_string_descriptor *s = buf; |
| 881 | struct usb_gadget_strings **sp; |
| 882 | |
| 883 | memset(s, 0, 256); |
| 884 | s->bDescriptorType = USB_DT_STRING; |
| 885 | |
| 886 | sp = composite->strings; |
| 887 | if (sp) |
| 888 | collect_langs(sp, s->wData); |
| 889 | |
| 890 | list_for_each_entry(c, &cdev->configs, list) { |
| 891 | sp = c->strings; |
| 892 | if (sp) |
| 893 | collect_langs(sp, s->wData); |
| 894 | |
| 895 | list_for_each_entry(f, &c->functions, list) { |
| 896 | sp = f->strings; |
| 897 | if (sp) |
| 898 | collect_langs(sp, s->wData); |
| 899 | } |
| 900 | } |
| 901 | |
Roel Kluin | 417b57b | 2009-08-06 16:09:51 -0700 | [diff] [blame] | 902 | for (len = 0; len <= 126 && s->wData[len]; len++) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 903 | continue; |
| 904 | if (!len) |
| 905 | return -EINVAL; |
| 906 | |
| 907 | s->bLength = 2 * (len + 1); |
| 908 | return s->bLength; |
| 909 | } |
| 910 | |
Michal Nazarewicz | ad1a810 | 2010-08-12 17:43:46 +0200 | [diff] [blame] | 911 | /* Otherwise, look up and return a specified string. First |
| 912 | * check if the string has not been overridden. |
| 913 | */ |
| 914 | if (cdev->manufacturer_override == id) |
Sebastian Andrzej Siewior | 03de9bf | 2012-09-10 15:01:55 +0200 | [diff] [blame^] | 915 | str = composite->iManufacturer ?: composite_manufacturer; |
Michal Nazarewicz | ad1a810 | 2010-08-12 17:43:46 +0200 | [diff] [blame] | 916 | else if (cdev->product_override == id) |
| 917 | str = iProduct ?: composite->iProduct; |
| 918 | else if (cdev->serial_override == id) |
Sebastian Andrzej Siewior | 1cf0d26 | 2012-09-10 15:01:54 +0200 | [diff] [blame] | 919 | str = composite->iSerialNumber; |
Michal Nazarewicz | ad1a810 | 2010-08-12 17:43:46 +0200 | [diff] [blame] | 920 | else |
| 921 | str = NULL; |
| 922 | if (str) { |
| 923 | struct usb_gadget_strings strings = { |
| 924 | .language = language, |
| 925 | .strings = &(struct usb_string) { 0xff, str } |
| 926 | }; |
| 927 | return usb_gadget_get_string(&strings, 0xff, buf); |
| 928 | } |
| 929 | |
| 930 | /* String IDs are device-scoped, so we look up each string |
| 931 | * table we're told about. These lookups are infrequent; |
| 932 | * simpler-is-better here. |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 933 | */ |
| 934 | if (composite->strings) { |
| 935 | len = lookup_string(composite->strings, buf, language, id); |
| 936 | if (len > 0) |
| 937 | return len; |
| 938 | } |
| 939 | list_for_each_entry(c, &cdev->configs, list) { |
| 940 | if (c->strings) { |
| 941 | len = lookup_string(c->strings, buf, language, id); |
| 942 | if (len > 0) |
| 943 | return len; |
| 944 | } |
| 945 | list_for_each_entry(f, &c->functions, list) { |
| 946 | if (!f->strings) |
| 947 | continue; |
| 948 | len = lookup_string(f->strings, buf, language, id); |
| 949 | if (len > 0) |
| 950 | return len; |
| 951 | } |
| 952 | } |
| 953 | return -EINVAL; |
| 954 | } |
| 955 | |
| 956 | /** |
| 957 | * usb_string_id() - allocate an unused string ID |
| 958 | * @cdev: the device whose string descriptor IDs are being allocated |
| 959 | * Context: single threaded during gadget setup |
| 960 | * |
| 961 | * @usb_string_id() is called from bind() callbacks to allocate |
| 962 | * string IDs. Drivers for functions, configurations, or gadgets will |
| 963 | * then store that ID in the appropriate descriptors and string table. |
| 964 | * |
Michal Nazarewicz | f2adc4f | 2010-06-16 12:07:59 +0200 | [diff] [blame] | 965 | * All string identifier should be allocated using this, |
| 966 | * @usb_string_ids_tab() or @usb_string_ids_n() routine, to ensure |
| 967 | * that for example different functions don't wrongly assign different |
| 968 | * meanings to the same identifier. |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 969 | */ |
Michal Nazarewicz | 28824b1 | 2010-05-05 12:53:13 +0200 | [diff] [blame] | 970 | int usb_string_id(struct usb_composite_dev *cdev) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 971 | { |
| 972 | if (cdev->next_string_id < 254) { |
Michal Nazarewicz | f2adc4f | 2010-06-16 12:07:59 +0200 | [diff] [blame] | 973 | /* string id 0 is reserved by USB spec for list of |
| 974 | * supported languages */ |
| 975 | /* 255 reserved as well? -- mina86 */ |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 976 | cdev->next_string_id++; |
| 977 | return cdev->next_string_id; |
| 978 | } |
| 979 | return -ENODEV; |
| 980 | } |
| 981 | |
Michal Nazarewicz | f2adc4f | 2010-06-16 12:07:59 +0200 | [diff] [blame] | 982 | /** |
| 983 | * usb_string_ids() - allocate unused string IDs in batch |
| 984 | * @cdev: the device whose string descriptor IDs are being allocated |
| 985 | * @str: an array of usb_string objects to assign numbers to |
| 986 | * Context: single threaded during gadget setup |
| 987 | * |
| 988 | * @usb_string_ids() is called from bind() callbacks to allocate |
| 989 | * string IDs. Drivers for functions, configurations, or gadgets will |
| 990 | * then copy IDs from the string table to the appropriate descriptors |
| 991 | * and string table for other languages. |
| 992 | * |
| 993 | * All string identifier should be allocated using this, |
| 994 | * @usb_string_id() or @usb_string_ids_n() routine, to ensure that for |
| 995 | * example different functions don't wrongly assign different meanings |
| 996 | * to the same identifier. |
| 997 | */ |
| 998 | int usb_string_ids_tab(struct usb_composite_dev *cdev, struct usb_string *str) |
| 999 | { |
| 1000 | int next = cdev->next_string_id; |
| 1001 | |
| 1002 | for (; str->s; ++str) { |
| 1003 | if (unlikely(next >= 254)) |
| 1004 | return -ENODEV; |
| 1005 | str->id = ++next; |
| 1006 | } |
| 1007 | |
| 1008 | cdev->next_string_id = next; |
| 1009 | |
| 1010 | return 0; |
| 1011 | } |
| 1012 | |
| 1013 | /** |
| 1014 | * usb_string_ids_n() - allocate unused string IDs in batch |
Randy Dunlap | d187abb | 2010-08-11 12:07:13 -0700 | [diff] [blame] | 1015 | * @c: the device whose string descriptor IDs are being allocated |
Michal Nazarewicz | f2adc4f | 2010-06-16 12:07:59 +0200 | [diff] [blame] | 1016 | * @n: number of string IDs to allocate |
| 1017 | * Context: single threaded during gadget setup |
| 1018 | * |
| 1019 | * Returns the first requested ID. This ID and next @n-1 IDs are now |
Randy Dunlap | d187abb | 2010-08-11 12:07:13 -0700 | [diff] [blame] | 1020 | * valid IDs. At least provided that @n is non-zero because if it |
Michal Nazarewicz | f2adc4f | 2010-06-16 12:07:59 +0200 | [diff] [blame] | 1021 | * is, returns last requested ID which is now very useful information. |
| 1022 | * |
| 1023 | * @usb_string_ids_n() is called from bind() callbacks to allocate |
| 1024 | * string IDs. Drivers for functions, configurations, or gadgets will |
| 1025 | * then store that ID in the appropriate descriptors and string table. |
| 1026 | * |
| 1027 | * All string identifier should be allocated using this, |
| 1028 | * @usb_string_id() or @usb_string_ids_n() routine, to ensure that for |
| 1029 | * example different functions don't wrongly assign different meanings |
| 1030 | * to the same identifier. |
| 1031 | */ |
| 1032 | int usb_string_ids_n(struct usb_composite_dev *c, unsigned n) |
| 1033 | { |
| 1034 | unsigned next = c->next_string_id; |
| 1035 | if (unlikely(n > 254 || (unsigned)next + n > 254)) |
| 1036 | return -ENODEV; |
| 1037 | c->next_string_id += n; |
| 1038 | return next + 1; |
| 1039 | } |
| 1040 | |
| 1041 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1042 | /*-------------------------------------------------------------------------*/ |
| 1043 | |
| 1044 | static void composite_setup_complete(struct usb_ep *ep, struct usb_request *req) |
| 1045 | { |
| 1046 | if (req->status || req->actual != req->length) |
| 1047 | DBG((struct usb_composite_dev *) ep->driver_data, |
| 1048 | "setup complete --> %d, %d/%d\n", |
| 1049 | req->status, req->actual, req->length); |
| 1050 | } |
| 1051 | |
| 1052 | /* |
| 1053 | * The setup() callback implements all the ep0 functionality that's |
| 1054 | * not handled lower down, in hardware or the hardware driver(like |
| 1055 | * device and endpoint feature flags, and their status). It's all |
| 1056 | * housekeeping for the gadget function we're implementing. Most of |
| 1057 | * the work is in config and function specific setup. |
| 1058 | */ |
| 1059 | static int |
| 1060 | composite_setup(struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl) |
| 1061 | { |
| 1062 | struct usb_composite_dev *cdev = get_gadget_data(gadget); |
| 1063 | struct usb_request *req = cdev->req; |
| 1064 | int value = -EOPNOTSUPP; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1065 | int status = 0; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1066 | u16 w_index = le16_to_cpu(ctrl->wIndex); |
Bryan Wu | 0888951 | 2009-01-08 00:21:19 +0800 | [diff] [blame] | 1067 | u8 intf = w_index & 0xFF; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1068 | u16 w_value = le16_to_cpu(ctrl->wValue); |
| 1069 | u16 w_length = le16_to_cpu(ctrl->wLength); |
| 1070 | struct usb_function *f = NULL; |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 1071 | u8 endp; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1072 | |
| 1073 | /* partial re-init of the response message; the function or the |
| 1074 | * gadget might need to intercept e.g. a control-OUT completion |
| 1075 | * when we delegate to it. |
| 1076 | */ |
| 1077 | req->zero = 0; |
| 1078 | req->complete = composite_setup_complete; |
Maulik Mankad | 2edb11c | 2011-02-22 19:08:42 +0530 | [diff] [blame] | 1079 | req->length = 0; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1080 | gadget->ep0->driver_data = cdev; |
| 1081 | |
| 1082 | switch (ctrl->bRequest) { |
| 1083 | |
| 1084 | /* we handle all standard USB descriptors */ |
| 1085 | case USB_REQ_GET_DESCRIPTOR: |
| 1086 | if (ctrl->bRequestType != USB_DIR_IN) |
| 1087 | goto unknown; |
| 1088 | switch (w_value >> 8) { |
| 1089 | |
| 1090 | case USB_DT_DEVICE: |
| 1091 | cdev->desc.bNumConfigurations = |
| 1092 | count_configs(cdev, USB_DT_DEVICE); |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1093 | cdev->desc.bMaxPacketSize0 = |
| 1094 | cdev->gadget->ep0->maxpacket; |
| 1095 | if (gadget_is_superspeed(gadget)) { |
Sebastian Andrzej Siewior | a8f2115 | 2011-07-19 20:21:52 +0200 | [diff] [blame] | 1096 | if (gadget->speed >= USB_SPEED_SUPER) { |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1097 | cdev->desc.bcdUSB = cpu_to_le16(0x0300); |
Sebastian Andrzej Siewior | a8f2115 | 2011-07-19 20:21:52 +0200 | [diff] [blame] | 1098 | cdev->desc.bMaxPacketSize0 = 9; |
| 1099 | } else { |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1100 | cdev->desc.bcdUSB = cpu_to_le16(0x0210); |
Sebastian Andrzej Siewior | a8f2115 | 2011-07-19 20:21:52 +0200 | [diff] [blame] | 1101 | } |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1102 | } |
| 1103 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1104 | value = min(w_length, (u16) sizeof cdev->desc); |
| 1105 | memcpy(req->buf, &cdev->desc, value); |
| 1106 | break; |
| 1107 | case USB_DT_DEVICE_QUALIFIER: |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1108 | if (!gadget_is_dualspeed(gadget) || |
| 1109 | gadget->speed >= USB_SPEED_SUPER) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1110 | break; |
| 1111 | device_qual(cdev); |
| 1112 | value = min_t(int, w_length, |
| 1113 | sizeof(struct usb_qualifier_descriptor)); |
| 1114 | break; |
| 1115 | case USB_DT_OTHER_SPEED_CONFIG: |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1116 | if (!gadget_is_dualspeed(gadget) || |
| 1117 | gadget->speed >= USB_SPEED_SUPER) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1118 | break; |
| 1119 | /* FALLTHROUGH */ |
| 1120 | case USB_DT_CONFIG: |
| 1121 | value = config_desc(cdev, w_value); |
| 1122 | if (value >= 0) |
| 1123 | value = min(w_length, (u16) value); |
| 1124 | break; |
| 1125 | case USB_DT_STRING: |
| 1126 | value = get_string(cdev, req->buf, |
| 1127 | w_index, w_value & 0xff); |
| 1128 | if (value >= 0) |
| 1129 | value = min(w_length, (u16) value); |
| 1130 | break; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1131 | case USB_DT_BOS: |
| 1132 | if (gadget_is_superspeed(gadget)) { |
| 1133 | value = bos_desc(cdev); |
| 1134 | value = min(w_length, (u16) value); |
| 1135 | } |
| 1136 | break; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1137 | } |
| 1138 | break; |
| 1139 | |
| 1140 | /* any number of configs can work */ |
| 1141 | case USB_REQ_SET_CONFIGURATION: |
| 1142 | if (ctrl->bRequestType != 0) |
| 1143 | goto unknown; |
| 1144 | if (gadget_is_otg(gadget)) { |
| 1145 | if (gadget->a_hnp_support) |
| 1146 | DBG(cdev, "HNP available\n"); |
| 1147 | else if (gadget->a_alt_hnp_support) |
| 1148 | DBG(cdev, "HNP on another port\n"); |
| 1149 | else |
| 1150 | VDBG(cdev, "HNP inactive\n"); |
| 1151 | } |
| 1152 | spin_lock(&cdev->lock); |
| 1153 | value = set_config(cdev, ctrl, w_value); |
| 1154 | spin_unlock(&cdev->lock); |
| 1155 | break; |
| 1156 | case USB_REQ_GET_CONFIGURATION: |
| 1157 | if (ctrl->bRequestType != USB_DIR_IN) |
| 1158 | goto unknown; |
| 1159 | if (cdev->config) |
| 1160 | *(u8 *)req->buf = cdev->config->bConfigurationValue; |
| 1161 | else |
| 1162 | *(u8 *)req->buf = 0; |
| 1163 | value = min(w_length, (u16) 1); |
| 1164 | break; |
| 1165 | |
| 1166 | /* function drivers must handle get/set altsetting; if there's |
| 1167 | * no get() method, we know only altsetting zero works. |
| 1168 | */ |
| 1169 | case USB_REQ_SET_INTERFACE: |
| 1170 | if (ctrl->bRequestType != USB_RECIP_INTERFACE) |
| 1171 | goto unknown; |
Jassi Brar | ff085de | 2011-02-06 17:39:17 +0900 | [diff] [blame] | 1172 | if (!cdev->config || intf >= MAX_CONFIG_INTERFACES) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1173 | break; |
Bryan Wu | 0888951 | 2009-01-08 00:21:19 +0800 | [diff] [blame] | 1174 | f = cdev->config->interface[intf]; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1175 | if (!f) |
| 1176 | break; |
Bryan Wu | dd4dff8 | 2009-01-08 00:21:18 +0800 | [diff] [blame] | 1177 | if (w_value && !f->set_alt) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1178 | break; |
| 1179 | value = f->set_alt(f, w_index, w_value); |
Roger Quadros | 1b9ba00 | 2011-05-09 13:08:06 +0300 | [diff] [blame] | 1180 | if (value == USB_GADGET_DELAYED_STATUS) { |
| 1181 | DBG(cdev, |
| 1182 | "%s: interface %d (%s) requested delayed status\n", |
| 1183 | __func__, intf, f->name); |
| 1184 | cdev->delayed_status++; |
| 1185 | DBG(cdev, "delayed_status count %d\n", |
| 1186 | cdev->delayed_status); |
| 1187 | } |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1188 | break; |
| 1189 | case USB_REQ_GET_INTERFACE: |
| 1190 | if (ctrl->bRequestType != (USB_DIR_IN|USB_RECIP_INTERFACE)) |
| 1191 | goto unknown; |
Jassi Brar | ff085de | 2011-02-06 17:39:17 +0900 | [diff] [blame] | 1192 | if (!cdev->config || intf >= MAX_CONFIG_INTERFACES) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1193 | break; |
Bryan Wu | 0888951 | 2009-01-08 00:21:19 +0800 | [diff] [blame] | 1194 | f = cdev->config->interface[intf]; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1195 | if (!f) |
| 1196 | break; |
| 1197 | /* lots of interfaces only need altsetting zero... */ |
| 1198 | value = f->get_alt ? f->get_alt(f, w_index) : 0; |
| 1199 | if (value < 0) |
| 1200 | break; |
| 1201 | *((u8 *)req->buf) = value; |
| 1202 | value = min(w_length, (u16) 1); |
| 1203 | break; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1204 | |
| 1205 | /* |
| 1206 | * USB 3.0 additions: |
| 1207 | * Function driver should handle get_status request. If such cb |
| 1208 | * wasn't supplied we respond with default value = 0 |
| 1209 | * Note: function driver should supply such cb only for the first |
| 1210 | * interface of the function |
| 1211 | */ |
| 1212 | case USB_REQ_GET_STATUS: |
| 1213 | if (!gadget_is_superspeed(gadget)) |
| 1214 | goto unknown; |
| 1215 | if (ctrl->bRequestType != (USB_DIR_IN | USB_RECIP_INTERFACE)) |
| 1216 | goto unknown; |
| 1217 | value = 2; /* This is the length of the get_status reply */ |
| 1218 | put_unaligned_le16(0, req->buf); |
| 1219 | if (!cdev->config || intf >= MAX_CONFIG_INTERFACES) |
| 1220 | break; |
| 1221 | f = cdev->config->interface[intf]; |
| 1222 | if (!f) |
| 1223 | break; |
| 1224 | status = f->get_status ? f->get_status(f) : 0; |
| 1225 | if (status < 0) |
| 1226 | break; |
| 1227 | put_unaligned_le16(status & 0x0000ffff, req->buf); |
| 1228 | break; |
| 1229 | /* |
| 1230 | * Function drivers should handle SetFeature/ClearFeature |
| 1231 | * (FUNCTION_SUSPEND) request. function_suspend cb should be supplied |
| 1232 | * only for the first interface of the function |
| 1233 | */ |
| 1234 | case USB_REQ_CLEAR_FEATURE: |
| 1235 | case USB_REQ_SET_FEATURE: |
| 1236 | if (!gadget_is_superspeed(gadget)) |
| 1237 | goto unknown; |
| 1238 | if (ctrl->bRequestType != (USB_DIR_OUT | USB_RECIP_INTERFACE)) |
| 1239 | goto unknown; |
| 1240 | switch (w_value) { |
| 1241 | case USB_INTRF_FUNC_SUSPEND: |
| 1242 | if (!cdev->config || intf >= MAX_CONFIG_INTERFACES) |
| 1243 | break; |
| 1244 | f = cdev->config->interface[intf]; |
| 1245 | if (!f) |
| 1246 | break; |
| 1247 | value = 0; |
| 1248 | if (f->func_suspend) |
| 1249 | value = f->func_suspend(f, w_index >> 8); |
| 1250 | if (value < 0) { |
| 1251 | ERROR(cdev, |
| 1252 | "func_suspend() returned error %d\n", |
| 1253 | value); |
| 1254 | value = 0; |
| 1255 | } |
| 1256 | break; |
| 1257 | } |
| 1258 | break; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1259 | default: |
| 1260 | unknown: |
| 1261 | VDBG(cdev, |
| 1262 | "non-core control req%02x.%02x v%04x i%04x l%d\n", |
| 1263 | ctrl->bRequestType, ctrl->bRequest, |
| 1264 | w_value, w_index, w_length); |
| 1265 | |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 1266 | /* functions always handle their interfaces and endpoints... |
| 1267 | * punt other recipients (other, WUSB, ...) to the current |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1268 | * configuration code. |
| 1269 | * |
| 1270 | * REVISIT it could make sense to let the composite device |
| 1271 | * take such requests too, if that's ever needed: to work |
| 1272 | * in config 0, etc. |
| 1273 | */ |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 1274 | switch (ctrl->bRequestType & USB_RECIP_MASK) { |
| 1275 | case USB_RECIP_INTERFACE: |
Jassi Brar | ff085de | 2011-02-06 17:39:17 +0900 | [diff] [blame] | 1276 | if (!cdev->config || intf >= MAX_CONFIG_INTERFACES) |
Maulik Mankad | 3c47eb0 | 2011-01-13 18:19:56 +0530 | [diff] [blame] | 1277 | break; |
| 1278 | f = cdev->config->interface[intf]; |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 1279 | break; |
| 1280 | |
| 1281 | case USB_RECIP_ENDPOINT: |
| 1282 | endp = ((w_index & 0x80) >> 3) | (w_index & 0x0f); |
| 1283 | list_for_each_entry(f, &cdev->config->functions, list) { |
| 1284 | if (test_bit(endp, f->endpoints)) |
| 1285 | break; |
| 1286 | } |
| 1287 | if (&f->list == &cdev->config->functions) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1288 | f = NULL; |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 1289 | break; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1290 | } |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 1291 | |
| 1292 | if (f && f->setup) |
| 1293 | value = f->setup(f, ctrl); |
| 1294 | else { |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1295 | struct usb_configuration *c; |
| 1296 | |
| 1297 | c = cdev->config; |
| 1298 | if (c && c->setup) |
| 1299 | value = c->setup(c, ctrl); |
| 1300 | } |
| 1301 | |
| 1302 | goto done; |
| 1303 | } |
| 1304 | |
| 1305 | /* respond with data transfer before status phase? */ |
Roger Quadros | 1b9ba00 | 2011-05-09 13:08:06 +0300 | [diff] [blame] | 1306 | if (value >= 0 && value != USB_GADGET_DELAYED_STATUS) { |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1307 | req->length = value; |
| 1308 | req->zero = value < w_length; |
| 1309 | value = usb_ep_queue(gadget->ep0, req, GFP_ATOMIC); |
| 1310 | if (value < 0) { |
| 1311 | DBG(cdev, "ep_queue --> %d\n", value); |
| 1312 | req->status = 0; |
| 1313 | composite_setup_complete(gadget->ep0, req); |
| 1314 | } |
Roger Quadros | 1b9ba00 | 2011-05-09 13:08:06 +0300 | [diff] [blame] | 1315 | } else if (value == USB_GADGET_DELAYED_STATUS && w_length != 0) { |
| 1316 | WARN(cdev, |
| 1317 | "%s: Delayed status not supported for w_length != 0", |
| 1318 | __func__); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1319 | } |
| 1320 | |
| 1321 | done: |
| 1322 | /* device either stalls (value < 0) or reports success */ |
| 1323 | return value; |
| 1324 | } |
| 1325 | |
| 1326 | static void composite_disconnect(struct usb_gadget *gadget) |
| 1327 | { |
| 1328 | struct usb_composite_dev *cdev = get_gadget_data(gadget); |
| 1329 | unsigned long flags; |
| 1330 | |
| 1331 | /* REVISIT: should we have config and device level |
| 1332 | * disconnect callbacks? |
| 1333 | */ |
| 1334 | spin_lock_irqsave(&cdev->lock, flags); |
| 1335 | if (cdev->config) |
| 1336 | reset_config(cdev); |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 1337 | if (cdev->driver->disconnect) |
| 1338 | cdev->driver->disconnect(cdev); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1339 | spin_unlock_irqrestore(&cdev->lock, flags); |
| 1340 | } |
| 1341 | |
| 1342 | /*-------------------------------------------------------------------------*/ |
| 1343 | |
Fabien Chouteau | f48cf80 | 2010-04-23 14:21:26 +0200 | [diff] [blame] | 1344 | static ssize_t composite_show_suspended(struct device *dev, |
| 1345 | struct device_attribute *attr, |
| 1346 | char *buf) |
| 1347 | { |
| 1348 | struct usb_gadget *gadget = dev_to_usb_gadget(dev); |
| 1349 | struct usb_composite_dev *cdev = get_gadget_data(gadget); |
| 1350 | |
| 1351 | return sprintf(buf, "%d\n", cdev->suspended); |
| 1352 | } |
| 1353 | |
| 1354 | static DEVICE_ATTR(suspended, 0444, composite_show_suspended, NULL); |
| 1355 | |
Michal Nazarewicz | 28824b1 | 2010-05-05 12:53:13 +0200 | [diff] [blame] | 1356 | static void |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1357 | composite_unbind(struct usb_gadget *gadget) |
| 1358 | { |
| 1359 | struct usb_composite_dev *cdev = get_gadget_data(gadget); |
| 1360 | |
| 1361 | /* composite_disconnect() must already have been called |
| 1362 | * by the underlying peripheral controller driver! |
| 1363 | * so there's no i/o concurrency that could affect the |
| 1364 | * state protected by cdev->lock. |
| 1365 | */ |
| 1366 | WARN_ON(cdev->config); |
| 1367 | |
| 1368 | while (!list_empty(&cdev->configs)) { |
| 1369 | struct usb_configuration *c; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1370 | c = list_first_entry(&cdev->configs, |
| 1371 | struct usb_configuration, list); |
Benoit Goby | 51cce6f | 2012-05-10 10:07:57 +0200 | [diff] [blame] | 1372 | remove_config(cdev, c); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1373 | } |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 1374 | if (cdev->driver->unbind) |
| 1375 | cdev->driver->unbind(cdev); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1376 | |
| 1377 | if (cdev->req) { |
| 1378 | kfree(cdev->req->buf); |
| 1379 | usb_ep_free_request(gadget->ep0, cdev->req); |
| 1380 | } |
Pavankumar Kondeti | daba580 | 2010-12-16 14:32:25 +0530 | [diff] [blame] | 1381 | device_remove_file(&gadget->dev, &dev_attr_suspended); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1382 | kfree(cdev); |
| 1383 | set_gadget_data(gadget, NULL); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1384 | } |
| 1385 | |
Michal Nazarewicz | ad1a810 | 2010-08-12 17:43:46 +0200 | [diff] [blame] | 1386 | static u8 override_id(struct usb_composite_dev *cdev, u8 *desc) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1387 | { |
Michal Nazarewicz | ad1a810 | 2010-08-12 17:43:46 +0200 | [diff] [blame] | 1388 | if (!*desc) { |
| 1389 | int ret = usb_string_id(cdev); |
| 1390 | if (unlikely(ret < 0)) |
| 1391 | WARNING(cdev, "failed to override string ID\n"); |
| 1392 | else |
| 1393 | *desc = ret; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1394 | } |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1395 | |
Michal Nazarewicz | ad1a810 | 2010-08-12 17:43:46 +0200 | [diff] [blame] | 1396 | return *desc; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1397 | } |
| 1398 | |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 1399 | static void update_unchanged_dev_desc(struct usb_device_descriptor *new, |
| 1400 | const struct usb_device_descriptor *old) |
| 1401 | { |
| 1402 | __le16 idVendor; |
| 1403 | __le16 idProduct; |
| 1404 | __le16 bcdDevice; |
Sebastian Andrzej Siewior | 1cf0d26 | 2012-09-10 15:01:54 +0200 | [diff] [blame] | 1405 | u8 iSerialNumber; |
Sebastian Andrzej Siewior | 03de9bf | 2012-09-10 15:01:55 +0200 | [diff] [blame^] | 1406 | u8 iManufacturer; |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 1407 | |
| 1408 | /* |
| 1409 | * these variables may have been set in |
| 1410 | * usb_composite_overwrite_options() |
| 1411 | */ |
| 1412 | idVendor = new->idVendor; |
| 1413 | idProduct = new->idProduct; |
| 1414 | bcdDevice = new->bcdDevice; |
Sebastian Andrzej Siewior | 1cf0d26 | 2012-09-10 15:01:54 +0200 | [diff] [blame] | 1415 | iSerialNumber = new->iSerialNumber; |
Sebastian Andrzej Siewior | 03de9bf | 2012-09-10 15:01:55 +0200 | [diff] [blame^] | 1416 | iManufacturer = new->iManufacturer; |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 1417 | |
| 1418 | *new = *old; |
| 1419 | if (idVendor) |
| 1420 | new->idVendor = idVendor; |
| 1421 | if (idProduct) |
| 1422 | new->idProduct = idProduct; |
| 1423 | if (bcdDevice) |
| 1424 | new->bcdDevice = bcdDevice; |
Sebastian Andrzej Siewior | 1cf0d26 | 2012-09-10 15:01:54 +0200 | [diff] [blame] | 1425 | if (iSerialNumber) |
| 1426 | new->iSerialNumber = iSerialNumber; |
Sebastian Andrzej Siewior | 03de9bf | 2012-09-10 15:01:55 +0200 | [diff] [blame^] | 1427 | if (iManufacturer) |
| 1428 | new->iManufacturer = iManufacturer; |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 1429 | } |
| 1430 | |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 1431 | static struct usb_composite_driver *to_cdriver(struct usb_gadget_driver *gdrv) |
| 1432 | { |
| 1433 | return container_of(gdrv, struct usb_composite_driver, gadget_driver); |
| 1434 | } |
| 1435 | |
| 1436 | static int composite_bind(struct usb_gadget *gadget, |
| 1437 | struct usb_gadget_driver *gdriver) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1438 | { |
| 1439 | struct usb_composite_dev *cdev; |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 1440 | struct usb_composite_driver *composite = to_cdriver(gdriver); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1441 | int status = -ENOMEM; |
| 1442 | |
| 1443 | cdev = kzalloc(sizeof *cdev, GFP_KERNEL); |
| 1444 | if (!cdev) |
| 1445 | return status; |
| 1446 | |
| 1447 | spin_lock_init(&cdev->lock); |
| 1448 | cdev->gadget = gadget; |
| 1449 | set_gadget_data(gadget, cdev); |
| 1450 | INIT_LIST_HEAD(&cdev->configs); |
| 1451 | |
| 1452 | /* preallocate control response and buffer */ |
| 1453 | cdev->req = usb_ep_alloc_request(gadget->ep0, GFP_KERNEL); |
| 1454 | if (!cdev->req) |
| 1455 | goto fail; |
Sebastian Andrzej Siewior | e13f17f | 2012-09-10 15:01:51 +0200 | [diff] [blame] | 1456 | cdev->req->buf = kmalloc(USB_COMP_EP0_BUFSIZ, GFP_KERNEL); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1457 | if (!cdev->req->buf) |
| 1458 | goto fail; |
| 1459 | cdev->req->complete = composite_setup_complete; |
| 1460 | gadget->ep0->driver_data = cdev; |
| 1461 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1462 | cdev->driver = composite; |
| 1463 | |
Parirajan Muthalagu | 37b5801 | 2010-08-25 16:33:26 +0530 | [diff] [blame] | 1464 | /* |
| 1465 | * As per USB compliance update, a device that is actively drawing |
| 1466 | * more than 100mA from USB must report itself as bus-powered in |
| 1467 | * the GetStatus(DEVICE) call. |
| 1468 | */ |
| 1469 | if (CONFIG_USB_GADGET_VBUS_DRAW <= USB_SELF_POWER_VBUS_MAX_DRAW) |
| 1470 | usb_gadget_set_selfpowered(gadget); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1471 | |
| 1472 | /* interface and string IDs start at zero via kzalloc. |
| 1473 | * we force endpoints to start unassigned; few controller |
| 1474 | * drivers will zero ep->driver_data. |
| 1475 | */ |
| 1476 | usb_ep_autoconfig_reset(cdev->gadget); |
| 1477 | |
| 1478 | /* composite gadget needs to assign strings for whole device (like |
| 1479 | * serial number), register function drivers, potentially update |
| 1480 | * power state and consumption, etc |
| 1481 | */ |
Sebastian Andrzej Siewior | fac3a43 | 2012-09-06 20:11:01 +0200 | [diff] [blame] | 1482 | status = composite->bind(cdev); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1483 | if (status < 0) |
| 1484 | goto fail; |
| 1485 | |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 1486 | update_unchanged_dev_desc(&cdev->desc, composite->dev); |
Greg Kroah-Hartman | dbb442b | 2010-12-16 15:52:30 -0800 | [diff] [blame] | 1487 | |
Marek Belisko | 78bff3c | 2010-10-27 10:19:01 +0200 | [diff] [blame] | 1488 | /* string overrides */ |
Sebastian Andrzej Siewior | 03de9bf | 2012-09-10 15:01:55 +0200 | [diff] [blame^] | 1489 | if (!cdev->desc.iManufacturer) { |
| 1490 | if (!composite->iManufacturer) |
Michal Nazarewicz | ad1a810 | 2010-08-12 17:43:46 +0200 | [diff] [blame] | 1491 | snprintf(composite_manufacturer, |
| 1492 | sizeof composite_manufacturer, |
| 1493 | "%s %s with %s", |
| 1494 | init_utsname()->sysname, |
| 1495 | init_utsname()->release, |
| 1496 | gadget->name); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1497 | |
Michal Nazarewicz | ad1a810 | 2010-08-12 17:43:46 +0200 | [diff] [blame] | 1498 | cdev->manufacturer_override = |
| 1499 | override_id(cdev, &cdev->desc.iManufacturer); |
| 1500 | } |
| 1501 | |
| 1502 | if (iProduct || (!cdev->desc.iProduct && composite->iProduct)) |
| 1503 | cdev->product_override = |
| 1504 | override_id(cdev, &cdev->desc.iProduct); |
| 1505 | |
Sebastian Andrzej Siewior | 1cf0d26 | 2012-09-10 15:01:54 +0200 | [diff] [blame] | 1506 | if (composite->iSerialNumber) |
Michal Nazarewicz | ad1a810 | 2010-08-12 17:43:46 +0200 | [diff] [blame] | 1507 | cdev->serial_override = |
| 1508 | override_id(cdev, &cdev->desc.iSerialNumber); |
| 1509 | |
| 1510 | /* has userspace failed to provide a serial number? */ |
| 1511 | if (composite->needs_serial && !cdev->desc.iSerialNumber) |
| 1512 | WARNING(cdev, "userspace failed to provide iSerialNumber\n"); |
| 1513 | |
| 1514 | /* finish up */ |
Fabien Chouteau | f48cf80 | 2010-04-23 14:21:26 +0200 | [diff] [blame] | 1515 | status = device_create_file(&gadget->dev, &dev_attr_suspended); |
| 1516 | if (status) |
| 1517 | goto fail; |
| 1518 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1519 | INFO(cdev, "%s ready\n", composite->name); |
| 1520 | return 0; |
| 1521 | |
| 1522 | fail: |
| 1523 | composite_unbind(gadget); |
| 1524 | return status; |
| 1525 | } |
| 1526 | |
| 1527 | /*-------------------------------------------------------------------------*/ |
| 1528 | |
| 1529 | static void |
| 1530 | composite_suspend(struct usb_gadget *gadget) |
| 1531 | { |
| 1532 | struct usb_composite_dev *cdev = get_gadget_data(gadget); |
| 1533 | struct usb_function *f; |
| 1534 | |
David Brownell | 8942939 | 2009-03-19 14:14:17 -0700 | [diff] [blame] | 1535 | /* REVISIT: should we have config level |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1536 | * suspend/resume callbacks? |
| 1537 | */ |
| 1538 | DBG(cdev, "suspend\n"); |
| 1539 | if (cdev->config) { |
| 1540 | list_for_each_entry(f, &cdev->config->functions, list) { |
| 1541 | if (f->suspend) |
| 1542 | f->suspend(f); |
| 1543 | } |
| 1544 | } |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 1545 | if (cdev->driver->suspend) |
| 1546 | cdev->driver->suspend(cdev); |
Fabien Chouteau | f48cf80 | 2010-04-23 14:21:26 +0200 | [diff] [blame] | 1547 | |
| 1548 | cdev->suspended = 1; |
Hao Wu | b23f2f9 | 2010-11-29 15:17:03 +0800 | [diff] [blame] | 1549 | |
| 1550 | usb_gadget_vbus_draw(gadget, 2); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1551 | } |
| 1552 | |
| 1553 | static void |
| 1554 | composite_resume(struct usb_gadget *gadget) |
| 1555 | { |
| 1556 | struct usb_composite_dev *cdev = get_gadget_data(gadget); |
| 1557 | struct usb_function *f; |
Hao Wu | b23f2f9 | 2010-11-29 15:17:03 +0800 | [diff] [blame] | 1558 | u8 maxpower; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1559 | |
David Brownell | 8942939 | 2009-03-19 14:14:17 -0700 | [diff] [blame] | 1560 | /* REVISIT: should we have config level |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1561 | * suspend/resume callbacks? |
| 1562 | */ |
| 1563 | DBG(cdev, "resume\n"); |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 1564 | if (cdev->driver->resume) |
| 1565 | cdev->driver->resume(cdev); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1566 | if (cdev->config) { |
| 1567 | list_for_each_entry(f, &cdev->config->functions, list) { |
| 1568 | if (f->resume) |
| 1569 | f->resume(f); |
| 1570 | } |
Hao Wu | b23f2f9 | 2010-11-29 15:17:03 +0800 | [diff] [blame] | 1571 | |
| 1572 | maxpower = cdev->config->bMaxPower; |
| 1573 | |
| 1574 | usb_gadget_vbus_draw(gadget, maxpower ? |
| 1575 | (2 * maxpower) : CONFIG_USB_GADGET_VBUS_DRAW); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1576 | } |
Fabien Chouteau | f48cf80 | 2010-04-23 14:21:26 +0200 | [diff] [blame] | 1577 | |
| 1578 | cdev->suspended = 0; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1579 | } |
| 1580 | |
| 1581 | /*-------------------------------------------------------------------------*/ |
| 1582 | |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 1583 | static const struct usb_gadget_driver composite_driver_template = { |
Sebastian Andrzej Siewior | 9395295 | 2012-09-06 20:11:05 +0200 | [diff] [blame] | 1584 | .bind = composite_bind, |
Michal Nazarewicz | 915c8be | 2009-11-09 14:15:25 +0100 | [diff] [blame] | 1585 | .unbind = composite_unbind, |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1586 | |
| 1587 | .setup = composite_setup, |
| 1588 | .disconnect = composite_disconnect, |
| 1589 | |
| 1590 | .suspend = composite_suspend, |
| 1591 | .resume = composite_resume, |
| 1592 | |
| 1593 | .driver = { |
| 1594 | .owner = THIS_MODULE, |
| 1595 | }, |
| 1596 | }; |
| 1597 | |
| 1598 | /** |
Michal Nazarewicz | 07a18bd | 2010-08-12 17:43:54 +0200 | [diff] [blame] | 1599 | * usb_composite_probe() - register a composite driver |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1600 | * @driver: the driver to register |
Michal Nazarewicz | 07a18bd | 2010-08-12 17:43:54 +0200 | [diff] [blame] | 1601 | * @bind: the callback used to allocate resources that are shared across the |
| 1602 | * whole device, such as string IDs, and add its configurations using |
| 1603 | * @usb_add_config(). This may fail by returning a negative errno |
| 1604 | * value; it should return zero on successful initialization. |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1605 | * Context: single threaded during gadget setup |
| 1606 | * |
| 1607 | * This function is used to register drivers using the composite driver |
| 1608 | * framework. The return value is zero, or a negative errno value. |
| 1609 | * Those values normally come from the driver's @bind method, which does |
| 1610 | * all the work of setting up the driver to match the hardware. |
| 1611 | * |
| 1612 | * On successful return, the gadget is ready to respond to requests from |
| 1613 | * the host, unless one of its components invokes usb_gadget_disconnect() |
| 1614 | * while it was binding. That would usually be done in order to wait for |
| 1615 | * some userspace participation. |
| 1616 | */ |
Sebastian Andrzej Siewior | 03e42bd | 2012-09-06 20:11:04 +0200 | [diff] [blame] | 1617 | int usb_composite_probe(struct usb_composite_driver *driver) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1618 | { |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 1619 | struct usb_gadget_driver *gadget_driver; |
| 1620 | |
| 1621 | if (!driver || !driver->dev || !driver->bind) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1622 | return -EINVAL; |
| 1623 | |
| 1624 | if (!driver->name) |
| 1625 | driver->name = "composite"; |
Jassi Brar | 05c3eeb | 2011-02-06 18:47:18 +0900 | [diff] [blame] | 1626 | if (!driver->iProduct) |
| 1627 | driver->iProduct = driver->name; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1628 | |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 1629 | driver->gadget_driver = composite_driver_template; |
| 1630 | gadget_driver = &driver->gadget_driver; |
| 1631 | |
| 1632 | gadget_driver->function = (char *) driver->name; |
| 1633 | gadget_driver->driver.name = driver->name; |
| 1634 | gadget_driver->max_speed = driver->max_speed; |
| 1635 | |
| 1636 | return usb_gadget_probe_driver(gadget_driver); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1637 | } |
| 1638 | |
| 1639 | /** |
| 1640 | * usb_composite_unregister() - unregister a composite driver |
| 1641 | * @driver: the driver to unregister |
| 1642 | * |
| 1643 | * This function is used to unregister drivers using the composite |
| 1644 | * driver framework. |
| 1645 | */ |
Michal Nazarewicz | 28824b1 | 2010-05-05 12:53:13 +0200 | [diff] [blame] | 1646 | void usb_composite_unregister(struct usb_composite_driver *driver) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1647 | { |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 1648 | usb_gadget_unregister_driver(&driver->gadget_driver); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1649 | } |
Roger Quadros | 1b9ba00 | 2011-05-09 13:08:06 +0300 | [diff] [blame] | 1650 | |
| 1651 | /** |
| 1652 | * usb_composite_setup_continue() - Continue with the control transfer |
| 1653 | * @cdev: the composite device who's control transfer was kept waiting |
| 1654 | * |
| 1655 | * This function must be called by the USB function driver to continue |
| 1656 | * with the control transfer's data/status stage in case it had requested to |
| 1657 | * delay the data/status stages. A USB function's setup handler (e.g. set_alt()) |
| 1658 | * can request the composite framework to delay the setup request's data/status |
| 1659 | * stages by returning USB_GADGET_DELAYED_STATUS. |
| 1660 | */ |
| 1661 | void usb_composite_setup_continue(struct usb_composite_dev *cdev) |
| 1662 | { |
| 1663 | int value; |
| 1664 | struct usb_request *req = cdev->req; |
| 1665 | unsigned long flags; |
| 1666 | |
| 1667 | DBG(cdev, "%s\n", __func__); |
| 1668 | spin_lock_irqsave(&cdev->lock, flags); |
| 1669 | |
| 1670 | if (cdev->delayed_status == 0) { |
| 1671 | WARN(cdev, "%s: Unexpected call\n", __func__); |
| 1672 | |
| 1673 | } else if (--cdev->delayed_status == 0) { |
| 1674 | DBG(cdev, "%s: Completing delayed status\n", __func__); |
| 1675 | req->length = 0; |
| 1676 | value = usb_ep_queue(cdev->gadget->ep0, req, GFP_ATOMIC); |
| 1677 | if (value < 0) { |
| 1678 | DBG(cdev, "ep_queue --> %d\n", value); |
| 1679 | req->status = 0; |
| 1680 | composite_setup_complete(cdev->gadget->ep0, req); |
| 1681 | } |
| 1682 | } |
| 1683 | |
| 1684 | spin_unlock_irqrestore(&cdev->lock, flags); |
| 1685 | } |
| 1686 | |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 1687 | void usb_composite_overwrite_options(struct usb_composite_dev *cdev, |
| 1688 | struct usb_composite_overwrite *covr) |
| 1689 | { |
| 1690 | struct usb_device_descriptor *desc = &cdev->desc; |
Sebastian Andrzej Siewior | 1cf0d26 | 2012-09-10 15:01:54 +0200 | [diff] [blame] | 1691 | struct usb_gadget_strings *gstr = cdev->driver->strings[0]; |
| 1692 | struct usb_string *dev_str = gstr->strings; |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 1693 | |
| 1694 | if (covr->idVendor) |
| 1695 | desc->idVendor = cpu_to_le16(covr->idVendor); |
| 1696 | |
| 1697 | if (covr->idProduct) |
| 1698 | desc->idProduct = cpu_to_le16(covr->idProduct); |
| 1699 | |
| 1700 | if (covr->bcdDevice) |
| 1701 | desc->bcdDevice = cpu_to_le16(covr->bcdDevice); |
Sebastian Andrzej Siewior | 1cf0d26 | 2012-09-10 15:01:54 +0200 | [diff] [blame] | 1702 | |
| 1703 | if (covr->serial_number) { |
| 1704 | desc->iSerialNumber = dev_str[USB_GADGET_SERIAL_IDX].id; |
| 1705 | dev_str[USB_GADGET_SERIAL_IDX].s = covr->serial_number; |
| 1706 | } |
Sebastian Andrzej Siewior | 03de9bf | 2012-09-10 15:01:55 +0200 | [diff] [blame^] | 1707 | if (covr->manufacturer) { |
| 1708 | desc->iManufacturer = dev_str[USB_GADGET_MANUFACTURER_IDX].id; |
| 1709 | dev_str[USB_GADGET_MANUFACTURER_IDX].s = covr->manufacturer; |
| 1710 | } |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 1711 | } |