Greg Kroah-Hartman | 5fd54ac | 2017-11-03 11:28:30 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2 | /* |
| 3 | * composite.c - infrastructure for Composite USB Gadgets |
| 4 | * |
| 5 | * Copyright (C) 2006-2008 David Brownell |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | /* #define VERBOSE_DEBUG */ |
| 9 | |
| 10 | #include <linux/kallsyms.h> |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/slab.h> |
Paul Gortmaker | 6eb0de8 | 2011-07-03 16:09:31 -0400 | [diff] [blame] | 13 | #include <linux/module.h> |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 14 | #include <linux/device.h> |
Michal Nazarewicz | ad1a810 | 2010-08-12 17:43:46 +0200 | [diff] [blame] | 15 | #include <linux/utsname.h> |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 16 | |
| 17 | #include <linux/usb/composite.h> |
Macpaul Lin | 53e6242 | 2015-07-09 15:18:42 +0800 | [diff] [blame] | 18 | #include <linux/usb/otg.h> |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 19 | #include <asm/unaligned.h> |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 20 | |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 21 | #include "u_os_desc.h" |
| 22 | |
Andrzej Pietrasiewicz | 19824d5 | 2014-05-08 14:06:22 +0200 | [diff] [blame] | 23 | /** |
| 24 | * struct usb_os_string - represents OS String to be reported by a gadget |
| 25 | * @bLength: total length of the entire descritor, always 0x12 |
| 26 | * @bDescriptorType: USB_DT_STRING |
| 27 | * @qwSignature: the OS String proper |
| 28 | * @bMS_VendorCode: code used by the host for subsequent requests |
| 29 | * @bPad: not used, must be zero |
| 30 | */ |
| 31 | struct usb_os_string { |
| 32 | __u8 bLength; |
| 33 | __u8 bDescriptorType; |
| 34 | __u8 qwSignature[OS_STRING_QW_SIGN_LEN]; |
| 35 | __u8 bMS_VendorCode; |
| 36 | __u8 bPad; |
| 37 | } __packed; |
| 38 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 39 | /* |
| 40 | * The code in this file is utility code, used to build a gadget driver |
| 41 | * from one or more "function" drivers, one or more "configuration" |
| 42 | * objects, and a "usb_composite_driver" by gluing them together along |
| 43 | * with the relevant device-wide data. |
| 44 | */ |
| 45 | |
Sebastian Andrzej Siewior | 9bb2859 | 2012-12-23 21:10:22 +0100 | [diff] [blame] | 46 | static struct usb_gadget_strings **get_containers_gs( |
| 47 | struct usb_gadget_string_container *uc) |
| 48 | { |
| 49 | return (struct usb_gadget_strings **)uc->stash; |
| 50 | } |
| 51 | |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 52 | /** |
John Youn | f3bdbe3 | 2016-02-05 17:07:03 -0800 | [diff] [blame] | 53 | * function_descriptors() - get function descriptors for speed |
| 54 | * @f: the function |
| 55 | * @speed: the speed |
| 56 | * |
| 57 | * Returns the descriptors or NULL if not set. |
| 58 | */ |
| 59 | static struct usb_descriptor_header ** |
| 60 | function_descriptors(struct usb_function *f, |
| 61 | enum usb_device_speed speed) |
| 62 | { |
| 63 | struct usb_descriptor_header **descriptors; |
| 64 | |
Felipe Balbi | 0878263 | 2016-04-22 14:53:47 +0300 | [diff] [blame] | 65 | /* |
| 66 | * NOTE: we try to help gadget drivers which might not be setting |
| 67 | * max_speed appropriately. |
| 68 | */ |
| 69 | |
John Youn | f3bdbe3 | 2016-02-05 17:07:03 -0800 | [diff] [blame] | 70 | switch (speed) { |
| 71 | case USB_SPEED_SUPER_PLUS: |
| 72 | descriptors = f->ssp_descriptors; |
Felipe Balbi | 0878263 | 2016-04-22 14:53:47 +0300 | [diff] [blame] | 73 | if (descriptors) |
| 74 | break; |
| 75 | /* FALLTHROUGH */ |
John Youn | f3bdbe3 | 2016-02-05 17:07:03 -0800 | [diff] [blame] | 76 | case USB_SPEED_SUPER: |
| 77 | descriptors = f->ss_descriptors; |
Felipe Balbi | 0878263 | 2016-04-22 14:53:47 +0300 | [diff] [blame] | 78 | if (descriptors) |
| 79 | break; |
| 80 | /* FALLTHROUGH */ |
John Youn | f3bdbe3 | 2016-02-05 17:07:03 -0800 | [diff] [blame] | 81 | case USB_SPEED_HIGH: |
| 82 | descriptors = f->hs_descriptors; |
Felipe Balbi | 0878263 | 2016-04-22 14:53:47 +0300 | [diff] [blame] | 83 | if (descriptors) |
| 84 | break; |
| 85 | /* FALLTHROUGH */ |
John Youn | f3bdbe3 | 2016-02-05 17:07:03 -0800 | [diff] [blame] | 86 | default: |
| 87 | descriptors = f->fs_descriptors; |
| 88 | } |
| 89 | |
Felipe Balbi | 0878263 | 2016-04-22 14:53:47 +0300 | [diff] [blame] | 90 | /* |
| 91 | * if we can't find any descriptors at all, then this gadget deserves to |
| 92 | * Oops with a NULL pointer dereference |
| 93 | */ |
| 94 | |
John Youn | f3bdbe3 | 2016-02-05 17:07:03 -0800 | [diff] [blame] | 95 | return descriptors; |
| 96 | } |
| 97 | |
| 98 | /** |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 99 | * next_ep_desc() - advance to the next EP descriptor |
| 100 | * @t: currect pointer within descriptor array |
| 101 | * |
| 102 | * Return: next EP descriptor or NULL |
| 103 | * |
| 104 | * Iterate over @t until either EP descriptor found or |
| 105 | * NULL (that indicates end of list) encountered |
| 106 | */ |
| 107 | static struct usb_descriptor_header** |
| 108 | next_ep_desc(struct usb_descriptor_header **t) |
| 109 | { |
| 110 | for (; *t; t++) { |
| 111 | if ((*t)->bDescriptorType == USB_DT_ENDPOINT) |
| 112 | return t; |
| 113 | } |
| 114 | return NULL; |
| 115 | } |
| 116 | |
| 117 | /* |
| 118 | * for_each_ep_desc()- iterate over endpoint descriptors in the |
| 119 | * descriptors list |
| 120 | * @start: pointer within descriptor array. |
| 121 | * @ep_desc: endpoint descriptor to use as the loop cursor |
| 122 | */ |
| 123 | #define for_each_ep_desc(start, ep_desc) \ |
| 124 | for (ep_desc = next_ep_desc(start); \ |
| 125 | ep_desc; ep_desc = next_ep_desc(ep_desc+1)) |
| 126 | |
| 127 | /** |
| 128 | * config_ep_by_speed() - configures the given endpoint |
| 129 | * according to gadget speed. |
| 130 | * @g: pointer to the gadget |
| 131 | * @f: usb function |
| 132 | * @_ep: the endpoint to configure |
| 133 | * |
| 134 | * Return: error code, 0 on success |
| 135 | * |
| 136 | * This function chooses the right descriptors for a given |
| 137 | * endpoint according to gadget speed and saves it in the |
| 138 | * endpoint desc field. If the endpoint already has a descriptor |
| 139 | * assigned to it - overwrites it with currently corresponding |
| 140 | * descriptor. The endpoint maxpacket field is updated according |
| 141 | * to the chosen descriptor. |
| 142 | * Note: the supplied function should hold all the descriptors |
| 143 | * for supported speeds |
| 144 | */ |
| 145 | int config_ep_by_speed(struct usb_gadget *g, |
| 146 | struct usb_function *f, |
| 147 | struct usb_ep *_ep) |
| 148 | { |
| 149 | struct usb_endpoint_descriptor *chosen_desc = NULL; |
| 150 | struct usb_descriptor_header **speed_desc = NULL; |
| 151 | |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 152 | struct usb_ss_ep_comp_descriptor *comp_desc = NULL; |
| 153 | int want_comp_desc = 0; |
| 154 | |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 155 | struct usb_descriptor_header **d_spd; /* cursor for speed desc */ |
| 156 | |
| 157 | if (!g || !f || !_ep) |
| 158 | return -EIO; |
| 159 | |
| 160 | /* select desired speed */ |
| 161 | switch (g->speed) { |
John Youn | 4eb8e32d | 2016-02-05 17:07:30 -0800 | [diff] [blame] | 162 | case USB_SPEED_SUPER_PLUS: |
| 163 | if (gadget_is_superspeed_plus(g)) { |
| 164 | speed_desc = f->ssp_descriptors; |
| 165 | want_comp_desc = 1; |
| 166 | break; |
| 167 | } |
Gustavo A. R. Silva | 624916a | 2017-10-25 12:22:50 -0500 | [diff] [blame] | 168 | /* fall through */ |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 169 | case USB_SPEED_SUPER: |
| 170 | if (gadget_is_superspeed(g)) { |
| 171 | speed_desc = f->ss_descriptors; |
| 172 | want_comp_desc = 1; |
| 173 | break; |
| 174 | } |
Gustavo A. R. Silva | 624916a | 2017-10-25 12:22:50 -0500 | [diff] [blame] | 175 | /* fall through */ |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 176 | case USB_SPEED_HIGH: |
| 177 | if (gadget_is_dualspeed(g)) { |
| 178 | speed_desc = f->hs_descriptors; |
| 179 | break; |
| 180 | } |
Gustavo A. R. Silva | 624916a | 2017-10-25 12:22:50 -0500 | [diff] [blame] | 181 | /* fall through */ |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 182 | default: |
Sebastian Andrzej Siewior | 10287ba | 2012-10-22 22:15:06 +0200 | [diff] [blame] | 183 | speed_desc = f->fs_descriptors; |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 184 | } |
| 185 | /* find descriptors */ |
| 186 | for_each_ep_desc(speed_desc, d_spd) { |
| 187 | chosen_desc = (struct usb_endpoint_descriptor *)*d_spd; |
| 188 | if (chosen_desc->bEndpointAddress == _ep->address) |
| 189 | goto ep_found; |
| 190 | } |
| 191 | return -EIO; |
| 192 | |
| 193 | ep_found: |
| 194 | /* commit results */ |
Felipe Balbi | 9ad5877 | 2016-09-28 14:17:38 +0300 | [diff] [blame] | 195 | _ep->maxpacket = usb_endpoint_maxp(chosen_desc); |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 196 | _ep->desc = chosen_desc; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 197 | _ep->comp_desc = NULL; |
| 198 | _ep->maxburst = 0; |
Felipe Balbi | eaa496f | 2016-09-28 12:33:31 +0300 | [diff] [blame] | 199 | _ep->mult = 1; |
| 200 | |
| 201 | if (g->speed == USB_SPEED_HIGH && (usb_endpoint_xfer_isoc(_ep->desc) || |
| 202 | usb_endpoint_xfer_int(_ep->desc))) |
| 203 | _ep->mult = usb_endpoint_maxp_mult(_ep->desc); |
| 204 | |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 205 | if (!want_comp_desc) |
| 206 | return 0; |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 207 | |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 208 | /* |
| 209 | * Companion descriptor should follow EP descriptor |
| 210 | * USB 3.0 spec, #9.6.7 |
| 211 | */ |
| 212 | comp_desc = (struct usb_ss_ep_comp_descriptor *)*(++d_spd); |
| 213 | if (!comp_desc || |
| 214 | (comp_desc->bDescriptorType != USB_DT_SS_ENDPOINT_COMP)) |
| 215 | return -EIO; |
| 216 | _ep->comp_desc = comp_desc; |
John Youn | 4eb8e32d | 2016-02-05 17:07:30 -0800 | [diff] [blame] | 217 | if (g->speed >= USB_SPEED_SUPER) { |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 218 | switch (usb_endpoint_type(_ep->desc)) { |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 219 | case USB_ENDPOINT_XFER_ISOC: |
| 220 | /* mult: bits 1:0 of bmAttributes */ |
Felipe Balbi | eaa496f | 2016-09-28 12:33:31 +0300 | [diff] [blame] | 221 | _ep->mult = (comp_desc->bmAttributes & 0x3) + 1; |
Gustavo A. R. Silva | 624916a | 2017-10-25 12:22:50 -0500 | [diff] [blame] | 222 | /* fall through */ |
Paul Zimmerman | 9e878a6 | 2012-01-16 13:24:38 -0800 | [diff] [blame] | 223 | case USB_ENDPOINT_XFER_BULK: |
| 224 | case USB_ENDPOINT_XFER_INT: |
Felipe Balbi | b785ea7 | 2012-06-06 10:20:23 +0300 | [diff] [blame] | 225 | _ep->maxburst = comp_desc->bMaxBurst + 1; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 226 | break; |
| 227 | default: |
Colin Ian King | b2fc059 | 2017-11-14 16:18:28 +0000 | [diff] [blame] | 228 | if (comp_desc->bMaxBurst != 0) { |
| 229 | struct usb_composite_dev *cdev; |
| 230 | |
| 231 | cdev = get_gadget_data(g); |
Felipe Balbi | b785ea7 | 2012-06-06 10:20:23 +0300 | [diff] [blame] | 232 | ERROR(cdev, "ep0 bMaxBurst must be 0\n"); |
Colin Ian King | b2fc059 | 2017-11-14 16:18:28 +0000 | [diff] [blame] | 233 | } |
Felipe Balbi | b785ea7 | 2012-06-06 10:20:23 +0300 | [diff] [blame] | 234 | _ep->maxburst = 1; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 235 | break; |
| 236 | } |
| 237 | } |
Tatyana Brokhman | 48767a4 | 2011-06-28 16:33:49 +0300 | [diff] [blame] | 238 | return 0; |
| 239 | } |
Sebastian Andrzej Siewior | 721e2e9 | 2012-09-06 20:11:27 +0200 | [diff] [blame] | 240 | EXPORT_SYMBOL_GPL(config_ep_by_speed); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 241 | |
| 242 | /** |
| 243 | * usb_add_function() - add a function to a configuration |
| 244 | * @config: the configuration |
| 245 | * @function: the function being added |
| 246 | * Context: single threaded during gadget setup |
| 247 | * |
| 248 | * After initialization, each configuration must have one or more |
| 249 | * functions added to it. Adding a function involves calling its @bind() |
| 250 | * method to allocate resources such as interface and string identifiers |
| 251 | * and endpoints. |
| 252 | * |
| 253 | * This function returns the value of the function's bind(), which is |
| 254 | * zero for success else a negative errno value. |
| 255 | */ |
Michal Nazarewicz | 28824b1 | 2010-05-05 12:53:13 +0200 | [diff] [blame] | 256 | int usb_add_function(struct usb_configuration *config, |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 257 | struct usb_function *function) |
| 258 | { |
| 259 | int value = -EINVAL; |
| 260 | |
| 261 | DBG(config->cdev, "adding '%s'/%p to config '%s'/%p\n", |
| 262 | function->name, function, |
| 263 | config->label, config); |
| 264 | |
| 265 | if (!function->set_alt || !function->disable) |
| 266 | goto done; |
| 267 | |
| 268 | function->config = config; |
| 269 | list_add_tail(&function->list, &config->functions); |
| 270 | |
Robert Baldyga | d5bb9b8 | 2015-05-04 14:55:13 +0200 | [diff] [blame] | 271 | if (function->bind_deactivated) { |
| 272 | value = usb_function_deactivate(function); |
| 273 | if (value) |
| 274 | goto done; |
| 275 | } |
| 276 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 277 | /* REVISIT *require* function->bind? */ |
| 278 | if (function->bind) { |
| 279 | value = function->bind(config, function); |
| 280 | if (value < 0) { |
| 281 | list_del(&function->list); |
| 282 | function->config = NULL; |
| 283 | } |
| 284 | } else |
| 285 | value = 0; |
| 286 | |
| 287 | /* We allow configurations that don't work at both speeds. |
| 288 | * If we run into a lowspeed Linux system, treat it the same |
| 289 | * as full speed ... it's the function drivers that will need |
| 290 | * to avoid bulk and ISO transfers. |
| 291 | */ |
Sebastian Andrzej Siewior | 10287ba | 2012-10-22 22:15:06 +0200 | [diff] [blame] | 292 | if (!config->fullspeed && function->fs_descriptors) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 293 | config->fullspeed = true; |
| 294 | if (!config->highspeed && function->hs_descriptors) |
| 295 | config->highspeed = true; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 296 | if (!config->superspeed && function->ss_descriptors) |
| 297 | config->superspeed = true; |
John Youn | 554eead | 2016-02-05 17:06:35 -0800 | [diff] [blame] | 298 | if (!config->superspeed_plus && function->ssp_descriptors) |
| 299 | config->superspeed_plus = true; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 300 | |
| 301 | done: |
| 302 | if (value) |
| 303 | DBG(config->cdev, "adding '%s'/%p --> %d\n", |
| 304 | function->name, function, value); |
| 305 | return value; |
| 306 | } |
Sebastian Andrzej Siewior | 721e2e9 | 2012-09-06 20:11:27 +0200 | [diff] [blame] | 307 | EXPORT_SYMBOL_GPL(usb_add_function); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 308 | |
Sebastian Andrzej Siewior | b4735778 | 2012-12-23 21:10:05 +0100 | [diff] [blame] | 309 | void usb_remove_function(struct usb_configuration *c, struct usb_function *f) |
| 310 | { |
| 311 | if (f->disable) |
| 312 | f->disable(f); |
| 313 | |
| 314 | bitmap_zero(f->endpoints, 32); |
| 315 | list_del(&f->list); |
| 316 | if (f->unbind) |
| 317 | f->unbind(c, f); |
Felipe Balbi | 0e3e975 | 2017-06-06 14:47:29 +0300 | [diff] [blame] | 318 | |
| 319 | if (f->bind_deactivated) |
| 320 | usb_function_activate(f); |
Sebastian Andrzej Siewior | b4735778 | 2012-12-23 21:10:05 +0100 | [diff] [blame] | 321 | } |
| 322 | EXPORT_SYMBOL_GPL(usb_remove_function); |
| 323 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 324 | /** |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 325 | * usb_function_deactivate - prevent function and gadget enumeration |
| 326 | * @function: the function that isn't yet ready to respond |
| 327 | * |
| 328 | * Blocks response of the gadget driver to host enumeration by |
| 329 | * preventing the data line pullup from being activated. This is |
| 330 | * normally called during @bind() processing to change from the |
| 331 | * initial "ready to respond" state, or when a required resource |
| 332 | * becomes available. |
| 333 | * |
| 334 | * For example, drivers that serve as a passthrough to a userspace |
| 335 | * daemon can block enumeration unless that daemon (such as an OBEX, |
| 336 | * MTP, or print server) is ready to handle host requests. |
| 337 | * |
| 338 | * Not all systems support software control of their USB peripheral |
| 339 | * data pullups. |
| 340 | * |
| 341 | * Returns zero on success, else negative errno. |
| 342 | */ |
| 343 | int usb_function_deactivate(struct usb_function *function) |
| 344 | { |
| 345 | struct usb_composite_dev *cdev = function->config->cdev; |
Felipe Balbi | b2bdf3a | 2009-02-12 15:09:47 +0200 | [diff] [blame] | 346 | unsigned long flags; |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 347 | int status = 0; |
| 348 | |
Felipe Balbi | b2bdf3a | 2009-02-12 15:09:47 +0200 | [diff] [blame] | 349 | spin_lock_irqsave(&cdev->lock, flags); |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 350 | |
| 351 | if (cdev->deactivations == 0) |
Robert Baldyga | 5601250 | 2015-05-04 14:55:12 +0200 | [diff] [blame] | 352 | status = usb_gadget_deactivate(cdev->gadget); |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 353 | if (status == 0) |
| 354 | cdev->deactivations++; |
| 355 | |
Felipe Balbi | b2bdf3a | 2009-02-12 15:09:47 +0200 | [diff] [blame] | 356 | spin_unlock_irqrestore(&cdev->lock, flags); |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 357 | return status; |
| 358 | } |
Sebastian Andrzej Siewior | 721e2e9 | 2012-09-06 20:11:27 +0200 | [diff] [blame] | 359 | EXPORT_SYMBOL_GPL(usb_function_deactivate); |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 360 | |
| 361 | /** |
| 362 | * usb_function_activate - allow function and gadget enumeration |
| 363 | * @function: function on which usb_function_activate() was called |
| 364 | * |
| 365 | * Reverses effect of usb_function_deactivate(). If no more functions |
| 366 | * are delaying their activation, the gadget driver will respond to |
| 367 | * host enumeration procedures. |
| 368 | * |
| 369 | * Returns zero on success, else negative errno. |
| 370 | */ |
| 371 | int usb_function_activate(struct usb_function *function) |
| 372 | { |
| 373 | struct usb_composite_dev *cdev = function->config->cdev; |
Michael Grzeschik | 4fefe9f6 | 2012-07-19 00:20:11 +0200 | [diff] [blame] | 374 | unsigned long flags; |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 375 | int status = 0; |
| 376 | |
Michael Grzeschik | 4fefe9f6 | 2012-07-19 00:20:11 +0200 | [diff] [blame] | 377 | spin_lock_irqsave(&cdev->lock, flags); |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 378 | |
| 379 | if (WARN_ON(cdev->deactivations == 0)) |
| 380 | status = -EINVAL; |
| 381 | else { |
| 382 | cdev->deactivations--; |
| 383 | if (cdev->deactivations == 0) |
Robert Baldyga | 5601250 | 2015-05-04 14:55:12 +0200 | [diff] [blame] | 384 | status = usb_gadget_activate(cdev->gadget); |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 385 | } |
| 386 | |
Michael Grzeschik | 4fefe9f6 | 2012-07-19 00:20:11 +0200 | [diff] [blame] | 387 | spin_unlock_irqrestore(&cdev->lock, flags); |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 388 | return status; |
| 389 | } |
Sebastian Andrzej Siewior | 721e2e9 | 2012-09-06 20:11:27 +0200 | [diff] [blame] | 390 | EXPORT_SYMBOL_GPL(usb_function_activate); |
David Brownell | 60beed9 | 2008-08-18 17:38:22 -0700 | [diff] [blame] | 391 | |
| 392 | /** |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 393 | * usb_interface_id() - allocate an unused interface ID |
| 394 | * @config: configuration associated with the interface |
| 395 | * @function: function handling the interface |
| 396 | * Context: single threaded during gadget setup |
| 397 | * |
| 398 | * usb_interface_id() is called from usb_function.bind() callbacks to |
| 399 | * allocate new interface IDs. The function driver will then store that |
| 400 | * ID in interface, association, CDC union, and other descriptors. It |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 401 | * will also handle any control requests targeted at that interface, |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 402 | * particularly changing its altsetting via set_alt(). There may |
| 403 | * also be class-specific or vendor-specific requests to handle. |
| 404 | * |
| 405 | * All interface identifier should be allocated using this routine, to |
| 406 | * ensure that for example different functions don't wrongly assign |
| 407 | * different meanings to the same identifier. Note that since interface |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 408 | * identifiers are configuration-specific, functions used in more than |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 409 | * one configuration (or more than once in a given configuration) need |
| 410 | * multiple versions of the relevant descriptors. |
| 411 | * |
| 412 | * Returns the interface ID which was allocated; or -ENODEV if no |
| 413 | * more interface IDs can be allocated. |
| 414 | */ |
Michal Nazarewicz | 28824b1 | 2010-05-05 12:53:13 +0200 | [diff] [blame] | 415 | int usb_interface_id(struct usb_configuration *config, |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 416 | struct usb_function *function) |
| 417 | { |
| 418 | unsigned id = config->next_interface_id; |
| 419 | |
| 420 | if (id < MAX_CONFIG_INTERFACES) { |
| 421 | config->interface[id] = function; |
| 422 | config->next_interface_id = id + 1; |
| 423 | return id; |
| 424 | } |
| 425 | return -ENODEV; |
| 426 | } |
Sebastian Andrzej Siewior | 721e2e9 | 2012-09-06 20:11:27 +0200 | [diff] [blame] | 427 | EXPORT_SYMBOL_GPL(usb_interface_id); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 428 | |
Sebastian Andrzej Siewior | 8f900a9 | 2012-12-03 20:07:05 +0100 | [diff] [blame] | 429 | static u8 encode_bMaxPower(enum usb_device_speed speed, |
| 430 | struct usb_configuration *c) |
| 431 | { |
| 432 | unsigned val; |
| 433 | |
| 434 | if (c->MaxPower) |
| 435 | val = c->MaxPower; |
| 436 | else |
| 437 | val = CONFIG_USB_GADGET_VBUS_DRAW; |
| 438 | if (!val) |
| 439 | return 0; |
Jack Pham | c724417 | 2020-01-30 19:10:35 -0800 | [diff] [blame^] | 440 | if (speed < USB_SPEED_SUPER) |
Sebastian Andrzej Siewior | 8f900a9 | 2012-12-03 20:07:05 +0100 | [diff] [blame] | 441 | return DIV_ROUND_UP(val, 2); |
Jack Pham | c724417 | 2020-01-30 19:10:35 -0800 | [diff] [blame^] | 442 | else |
| 443 | return DIV_ROUND_UP(val, 8); |
Sebastian Andrzej Siewior | 8f900a9 | 2012-12-03 20:07:05 +0100 | [diff] [blame] | 444 | } |
| 445 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 446 | static int config_buf(struct usb_configuration *config, |
| 447 | enum usb_device_speed speed, void *buf, u8 type) |
| 448 | { |
| 449 | struct usb_config_descriptor *c = buf; |
| 450 | void *next = buf + USB_DT_CONFIG_SIZE; |
Sebastian Andrzej Siewior | e13f17f | 2012-09-10 15:01:51 +0200 | [diff] [blame] | 451 | int len; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 452 | struct usb_function *f; |
| 453 | int status; |
| 454 | |
Sebastian Andrzej Siewior | e13f17f | 2012-09-10 15:01:51 +0200 | [diff] [blame] | 455 | len = USB_COMP_EP0_BUFSIZ - USB_DT_CONFIG_SIZE; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 456 | /* write the config descriptor */ |
| 457 | c = buf; |
| 458 | c->bLength = USB_DT_CONFIG_SIZE; |
| 459 | c->bDescriptorType = type; |
| 460 | /* wTotalLength is written later */ |
| 461 | c->bNumInterfaces = config->next_interface_id; |
| 462 | c->bConfigurationValue = config->bConfigurationValue; |
| 463 | c->iConfiguration = config->iConfiguration; |
| 464 | c->bmAttributes = USB_CONFIG_ATT_ONE | config->bmAttributes; |
Sebastian Andrzej Siewior | 8f900a9 | 2012-12-03 20:07:05 +0100 | [diff] [blame] | 465 | c->bMaxPower = encode_bMaxPower(speed, config); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 466 | |
| 467 | /* There may be e.g. OTG descriptors */ |
| 468 | if (config->descriptors) { |
| 469 | status = usb_descriptor_fillbuf(next, len, |
| 470 | config->descriptors); |
| 471 | if (status < 0) |
| 472 | return status; |
| 473 | len -= status; |
| 474 | next += status; |
| 475 | } |
| 476 | |
| 477 | /* add each function's descriptors */ |
| 478 | list_for_each_entry(f, &config->functions, list) { |
| 479 | struct usb_descriptor_header **descriptors; |
| 480 | |
John Youn | f3bdbe3 | 2016-02-05 17:07:03 -0800 | [diff] [blame] | 481 | descriptors = function_descriptors(f, speed); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 482 | if (!descriptors) |
| 483 | continue; |
| 484 | status = usb_descriptor_fillbuf(next, len, |
| 485 | (const struct usb_descriptor_header **) descriptors); |
| 486 | if (status < 0) |
| 487 | return status; |
| 488 | len -= status; |
| 489 | next += status; |
| 490 | } |
| 491 | |
| 492 | len = next - buf; |
| 493 | c->wTotalLength = cpu_to_le16(len); |
| 494 | return len; |
| 495 | } |
| 496 | |
| 497 | static int config_desc(struct usb_composite_dev *cdev, unsigned w_value) |
| 498 | { |
| 499 | struct usb_gadget *gadget = cdev->gadget; |
| 500 | struct usb_configuration *c; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 501 | struct list_head *pos; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 502 | u8 type = w_value >> 8; |
| 503 | enum usb_device_speed speed = USB_SPEED_UNKNOWN; |
| 504 | |
John Youn | eae5820 | 2016-02-05 17:07:17 -0800 | [diff] [blame] | 505 | if (gadget->speed >= USB_SPEED_SUPER) |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 506 | speed = gadget->speed; |
| 507 | else if (gadget_is_dualspeed(gadget)) { |
| 508 | int hs = 0; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 509 | if (gadget->speed == USB_SPEED_HIGH) |
| 510 | hs = 1; |
| 511 | if (type == USB_DT_OTHER_SPEED_CONFIG) |
| 512 | hs = !hs; |
| 513 | if (hs) |
| 514 | speed = USB_SPEED_HIGH; |
| 515 | |
| 516 | } |
| 517 | |
| 518 | /* This is a lookup by config *INDEX* */ |
| 519 | w_value &= 0xff; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 520 | |
| 521 | pos = &cdev->configs; |
| 522 | c = cdev->os_desc_config; |
| 523 | if (c) |
| 524 | goto check_config; |
| 525 | |
| 526 | while ((pos = pos->next) != &cdev->configs) { |
| 527 | c = list_entry(pos, typeof(*c), list); |
| 528 | |
| 529 | /* skip OS Descriptors config which is handled separately */ |
| 530 | if (c == cdev->os_desc_config) |
| 531 | continue; |
| 532 | |
| 533 | check_config: |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 534 | /* ignore configs that won't work at this speed */ |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 535 | switch (speed) { |
John Youn | eae5820 | 2016-02-05 17:07:17 -0800 | [diff] [blame] | 536 | case USB_SPEED_SUPER_PLUS: |
| 537 | if (!c->superspeed_plus) |
| 538 | continue; |
| 539 | break; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 540 | case USB_SPEED_SUPER: |
| 541 | if (!c->superspeed) |
| 542 | continue; |
| 543 | break; |
| 544 | case USB_SPEED_HIGH: |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 545 | if (!c->highspeed) |
| 546 | continue; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 547 | break; |
| 548 | default: |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 549 | if (!c->fullspeed) |
| 550 | continue; |
| 551 | } |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 552 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 553 | if (w_value == 0) |
| 554 | return config_buf(c, speed, cdev->req->buf, type); |
| 555 | w_value--; |
| 556 | } |
| 557 | return -EINVAL; |
| 558 | } |
| 559 | |
| 560 | static int count_configs(struct usb_composite_dev *cdev, unsigned type) |
| 561 | { |
| 562 | struct usb_gadget *gadget = cdev->gadget; |
| 563 | struct usb_configuration *c; |
| 564 | unsigned count = 0; |
| 565 | int hs = 0; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 566 | int ss = 0; |
John Youn | a4afd01 | 2016-02-05 17:06:49 -0800 | [diff] [blame] | 567 | int ssp = 0; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 568 | |
| 569 | if (gadget_is_dualspeed(gadget)) { |
| 570 | if (gadget->speed == USB_SPEED_HIGH) |
| 571 | hs = 1; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 572 | if (gadget->speed == USB_SPEED_SUPER) |
| 573 | ss = 1; |
John Youn | a4afd01 | 2016-02-05 17:06:49 -0800 | [diff] [blame] | 574 | if (gadget->speed == USB_SPEED_SUPER_PLUS) |
| 575 | ssp = 1; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 576 | if (type == USB_DT_DEVICE_QUALIFIER) |
| 577 | hs = !hs; |
| 578 | } |
| 579 | list_for_each_entry(c, &cdev->configs, list) { |
| 580 | /* ignore configs that won't work at this speed */ |
John Youn | a4afd01 | 2016-02-05 17:06:49 -0800 | [diff] [blame] | 581 | if (ssp) { |
| 582 | if (!c->superspeed_plus) |
| 583 | continue; |
| 584 | } else if (ss) { |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 585 | if (!c->superspeed) |
| 586 | continue; |
| 587 | } else if (hs) { |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 588 | if (!c->highspeed) |
| 589 | continue; |
| 590 | } else { |
| 591 | if (!c->fullspeed) |
| 592 | continue; |
| 593 | } |
| 594 | count++; |
| 595 | } |
| 596 | return count; |
| 597 | } |
| 598 | |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 599 | /** |
| 600 | * bos_desc() - prepares the BOS descriptor. |
| 601 | * @cdev: pointer to usb_composite device to generate the bos |
| 602 | * descriptor for |
| 603 | * |
| 604 | * This function generates the BOS (Binary Device Object) |
| 605 | * descriptor and its device capabilities descriptors. The BOS |
| 606 | * descriptor should be supported by a SuperSpeed device. |
| 607 | */ |
| 608 | static int bos_desc(struct usb_composite_dev *cdev) |
| 609 | { |
| 610 | struct usb_ext_cap_descriptor *usb_ext; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 611 | struct usb_dcd_config_params dcd_config_params; |
| 612 | struct usb_bos_descriptor *bos = cdev->req->buf; |
Thinh Nguyen | cca3854 | 2019-08-19 18:36:12 -0700 | [diff] [blame] | 613 | unsigned int besl = 0; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 614 | |
| 615 | bos->bLength = USB_DT_BOS_SIZE; |
| 616 | bos->bDescriptorType = USB_DT_BOS; |
| 617 | |
| 618 | bos->wTotalLength = cpu_to_le16(USB_DT_BOS_SIZE); |
| 619 | bos->bNumDeviceCaps = 0; |
| 620 | |
Thinh Nguyen | cca3854 | 2019-08-19 18:36:12 -0700 | [diff] [blame] | 621 | /* Get Controller configuration */ |
| 622 | if (cdev->gadget->ops->get_config_params) { |
| 623 | cdev->gadget->ops->get_config_params(cdev->gadget, |
| 624 | &dcd_config_params); |
| 625 | } else { |
| 626 | dcd_config_params.besl_baseline = |
| 627 | USB_DEFAULT_BESL_UNSPECIFIED; |
| 628 | dcd_config_params.besl_deep = |
| 629 | USB_DEFAULT_BESL_UNSPECIFIED; |
| 630 | dcd_config_params.bU1devExitLat = |
| 631 | USB_DEFAULT_U1_DEV_EXIT_LAT; |
| 632 | dcd_config_params.bU2DevExitLat = |
| 633 | cpu_to_le16(USB_DEFAULT_U2_DEV_EXIT_LAT); |
| 634 | } |
| 635 | |
| 636 | if (dcd_config_params.besl_baseline != USB_DEFAULT_BESL_UNSPECIFIED) |
| 637 | besl = USB_BESL_BASELINE_VALID | |
| 638 | USB_SET_BESL_BASELINE(dcd_config_params.besl_baseline); |
| 639 | |
| 640 | if (dcd_config_params.besl_deep != USB_DEFAULT_BESL_UNSPECIFIED) |
| 641 | besl |= USB_BESL_DEEP_VALID | |
| 642 | USB_SET_BESL_DEEP(dcd_config_params.besl_deep); |
| 643 | |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 644 | /* |
| 645 | * A SuperSpeed device shall include the USB2.0 extension descriptor |
| 646 | * and shall support LPM when operating in USB2.0 HS mode. |
| 647 | */ |
| 648 | usb_ext = cdev->req->buf + le16_to_cpu(bos->wTotalLength); |
| 649 | bos->bNumDeviceCaps++; |
| 650 | le16_add_cpu(&bos->wTotalLength, USB_DT_USB_EXT_CAP_SIZE); |
| 651 | usb_ext->bLength = USB_DT_USB_EXT_CAP_SIZE; |
| 652 | usb_ext->bDescriptorType = USB_DT_DEVICE_CAPABILITY; |
| 653 | usb_ext->bDevCapabilityType = USB_CAP_TYPE_EXT; |
Thinh Nguyen | cca3854 | 2019-08-19 18:36:12 -0700 | [diff] [blame] | 654 | usb_ext->bmAttributes = cpu_to_le32(USB_LPM_SUPPORT | |
| 655 | USB_BESL_SUPPORT | besl); |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 656 | |
| 657 | /* |
| 658 | * The Superspeed USB Capability descriptor shall be implemented by all |
| 659 | * SuperSpeed devices. |
| 660 | */ |
John Youn | 0b67a6b | 2017-04-28 12:55:14 +0400 | [diff] [blame] | 661 | if (gadget_is_superspeed(cdev->gadget)) { |
| 662 | struct usb_ss_cap_descriptor *ss_cap; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 663 | |
John Youn | 0b67a6b | 2017-04-28 12:55:14 +0400 | [diff] [blame] | 664 | ss_cap = cdev->req->buf + le16_to_cpu(bos->wTotalLength); |
| 665 | bos->bNumDeviceCaps++; |
| 666 | le16_add_cpu(&bos->wTotalLength, USB_DT_USB_SS_CAP_SIZE); |
| 667 | ss_cap->bLength = USB_DT_USB_SS_CAP_SIZE; |
| 668 | ss_cap->bDescriptorType = USB_DT_DEVICE_CAPABILITY; |
| 669 | ss_cap->bDevCapabilityType = USB_SS_CAP_TYPE; |
| 670 | ss_cap->bmAttributes = 0; /* LTM is not supported yet */ |
| 671 | ss_cap->wSpeedSupported = cpu_to_le16(USB_LOW_SPEED_OPERATION | |
| 672 | USB_FULL_SPEED_OPERATION | |
| 673 | USB_HIGH_SPEED_OPERATION | |
| 674 | USB_5GBPS_OPERATION); |
| 675 | ss_cap->bFunctionalitySupport = USB_LOW_SPEED_OPERATION; |
John Youn | 0b67a6b | 2017-04-28 12:55:14 +0400 | [diff] [blame] | 676 | ss_cap->bU1devExitLat = dcd_config_params.bU1devExitLat; |
| 677 | ss_cap->bU2DevExitLat = dcd_config_params.bU2DevExitLat; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 678 | } |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 679 | |
John Youn | f228a8d | 2016-02-05 17:05:53 -0800 | [diff] [blame] | 680 | /* The SuperSpeedPlus USB Device Capability descriptor */ |
| 681 | if (gadget_is_superspeed_plus(cdev->gadget)) { |
| 682 | struct usb_ssp_cap_descriptor *ssp_cap; |
| 683 | |
| 684 | ssp_cap = cdev->req->buf + le16_to_cpu(bos->wTotalLength); |
| 685 | bos->bNumDeviceCaps++; |
| 686 | |
| 687 | /* |
| 688 | * Report typical values. |
| 689 | */ |
| 690 | |
| 691 | le16_add_cpu(&bos->wTotalLength, USB_DT_USB_SSP_CAP_SIZE(1)); |
| 692 | ssp_cap->bLength = USB_DT_USB_SSP_CAP_SIZE(1); |
| 693 | ssp_cap->bDescriptorType = USB_DT_DEVICE_CAPABILITY; |
| 694 | ssp_cap->bDevCapabilityType = USB_SSP_CAP_TYPE; |
John Youn | 138b863 | 2016-04-08 14:46:31 -0700 | [diff] [blame] | 695 | ssp_cap->bReserved = 0; |
| 696 | ssp_cap->wReserved = 0; |
John Youn | f228a8d | 2016-02-05 17:05:53 -0800 | [diff] [blame] | 697 | |
| 698 | /* SSAC = 1 (2 attributes) */ |
| 699 | ssp_cap->bmAttributes = cpu_to_le32(1); |
| 700 | |
| 701 | /* Min RX/TX Lane Count = 1 */ |
John Youn | 08f8cab | 2016-03-28 16:12:24 -0700 | [diff] [blame] | 702 | ssp_cap->wFunctionalitySupport = |
| 703 | cpu_to_le16((1 << 8) | (1 << 12)); |
John Youn | f228a8d | 2016-02-05 17:05:53 -0800 | [diff] [blame] | 704 | |
| 705 | /* |
| 706 | * bmSublinkSpeedAttr[0]: |
| 707 | * ST = Symmetric, RX |
| 708 | * LSE = 3 (Gbps) |
| 709 | * LP = 1 (SuperSpeedPlus) |
| 710 | * LSM = 10 (10 Gbps) |
| 711 | */ |
| 712 | ssp_cap->bmSublinkSpeedAttr[0] = |
John Youn | 08f8cab | 2016-03-28 16:12:24 -0700 | [diff] [blame] | 713 | cpu_to_le32((3 << 4) | (1 << 14) | (0xa << 16)); |
John Youn | f228a8d | 2016-02-05 17:05:53 -0800 | [diff] [blame] | 714 | /* |
| 715 | * bmSublinkSpeedAttr[1] = |
| 716 | * ST = Symmetric, TX |
| 717 | * LSE = 3 (Gbps) |
| 718 | * LP = 1 (SuperSpeedPlus) |
| 719 | * LSM = 10 (10 Gbps) |
| 720 | */ |
| 721 | ssp_cap->bmSublinkSpeedAttr[1] = |
John Youn | 08f8cab | 2016-03-28 16:12:24 -0700 | [diff] [blame] | 722 | cpu_to_le32((3 << 4) | (1 << 14) | |
| 723 | (0xa << 16) | (1 << 7)); |
John Youn | f228a8d | 2016-02-05 17:05:53 -0800 | [diff] [blame] | 724 | } |
| 725 | |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 726 | return le16_to_cpu(bos->wTotalLength); |
| 727 | } |
| 728 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 729 | static void device_qual(struct usb_composite_dev *cdev) |
| 730 | { |
| 731 | struct usb_qualifier_descriptor *qual = cdev->req->buf; |
| 732 | |
| 733 | qual->bLength = sizeof(*qual); |
| 734 | qual->bDescriptorType = USB_DT_DEVICE_QUALIFIER; |
| 735 | /* POLICY: same bcdUSB and device type info at both speeds */ |
| 736 | qual->bcdUSB = cdev->desc.bcdUSB; |
| 737 | qual->bDeviceClass = cdev->desc.bDeviceClass; |
| 738 | qual->bDeviceSubClass = cdev->desc.bDeviceSubClass; |
| 739 | qual->bDeviceProtocol = cdev->desc.bDeviceProtocol; |
| 740 | /* ASSUME same EP0 fifo size at both speeds */ |
Sebastian Andrzej Siewior | 765f5b8 | 2011-06-23 14:26:11 +0200 | [diff] [blame] | 741 | qual->bMaxPacketSize0 = cdev->gadget->ep0->maxpacket; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 742 | qual->bNumConfigurations = count_configs(cdev, USB_DT_DEVICE_QUALIFIER); |
David Lopo | c24f422 | 2008-07-01 13:14:17 -0700 | [diff] [blame] | 743 | qual->bRESERVED = 0; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 744 | } |
| 745 | |
| 746 | /*-------------------------------------------------------------------------*/ |
| 747 | |
| 748 | static void reset_config(struct usb_composite_dev *cdev) |
| 749 | { |
| 750 | struct usb_function *f; |
| 751 | |
| 752 | DBG(cdev, "reset config\n"); |
| 753 | |
| 754 | list_for_each_entry(f, &cdev->config->functions, list) { |
| 755 | if (f->disable) |
| 756 | f->disable(f); |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 757 | |
| 758 | bitmap_zero(f->endpoints, 32); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 759 | } |
| 760 | cdev->config = NULL; |
Michael Grzeschik | 2bac51a | 2013-11-11 23:43:32 +0100 | [diff] [blame] | 761 | cdev->delayed_status = 0; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 762 | } |
| 763 | |
| 764 | static int set_config(struct usb_composite_dev *cdev, |
| 765 | const struct usb_ctrlrequest *ctrl, unsigned number) |
| 766 | { |
| 767 | struct usb_gadget *gadget = cdev->gadget; |
| 768 | struct usb_configuration *c = NULL; |
| 769 | int result = -EINVAL; |
| 770 | unsigned power = gadget_is_otg(gadget) ? 8 : 100; |
| 771 | int tmp; |
| 772 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 773 | if (number) { |
| 774 | list_for_each_entry(c, &cdev->configs, list) { |
| 775 | if (c->bConfigurationValue == number) { |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 776 | /* |
| 777 | * We disable the FDs of the previous |
| 778 | * configuration only if the new configuration |
| 779 | * is a valid one |
| 780 | */ |
| 781 | if (cdev->config) |
| 782 | reset_config(cdev); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 783 | result = 0; |
| 784 | break; |
| 785 | } |
| 786 | } |
| 787 | if (result < 0) |
| 788 | goto done; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 789 | } else { /* Zero configuration value - need to reset the config */ |
| 790 | if (cdev->config) |
| 791 | reset_config(cdev); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 792 | result = 0; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 793 | } |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 794 | |
Joel Stanley | 1cbfb8c | 2019-09-30 22:44:34 +0930 | [diff] [blame] | 795 | DBG(cdev, "%s config #%d: %s\n", |
| 796 | usb_speed_string(gadget->speed), |
| 797 | number, c ? c->label : "unconfigured"); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 798 | |
| 799 | if (!c) |
| 800 | goto done; |
| 801 | |
Peter Chen | 6027f31 | 2014-04-29 13:26:28 +0800 | [diff] [blame] | 802 | usb_gadget_set_state(gadget, USB_STATE_CONFIGURED); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 803 | cdev->config = c; |
| 804 | |
| 805 | /* Initialize all interfaces by setting them to altsetting zero. */ |
| 806 | for (tmp = 0; tmp < MAX_CONFIG_INTERFACES; tmp++) { |
| 807 | struct usb_function *f = c->interface[tmp]; |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 808 | struct usb_descriptor_header **descriptors; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 809 | |
| 810 | if (!f) |
| 811 | break; |
| 812 | |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 813 | /* |
| 814 | * Record which endpoints are used by the function. This is used |
| 815 | * to dispatch control requests targeted at that endpoint to the |
| 816 | * function's setup callback instead of the current |
| 817 | * configuration's setup callback. |
| 818 | */ |
John Youn | f3bdbe3 | 2016-02-05 17:07:03 -0800 | [diff] [blame] | 819 | descriptors = function_descriptors(f, gadget->speed); |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 820 | |
| 821 | for (; *descriptors; ++descriptors) { |
| 822 | struct usb_endpoint_descriptor *ep; |
| 823 | int addr; |
| 824 | |
| 825 | if ((*descriptors)->bDescriptorType != USB_DT_ENDPOINT) |
| 826 | continue; |
| 827 | |
| 828 | ep = (struct usb_endpoint_descriptor *)*descriptors; |
| 829 | addr = ((ep->bEndpointAddress & 0x80) >> 3) |
| 830 | | (ep->bEndpointAddress & 0x0f); |
| 831 | set_bit(addr, f->endpoints); |
| 832 | } |
| 833 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 834 | result = f->set_alt(f, tmp, 0); |
| 835 | if (result < 0) { |
| 836 | DBG(cdev, "interface %d (%s/%p) alt 0 --> %d\n", |
| 837 | tmp, f->name, f, result); |
| 838 | |
| 839 | reset_config(cdev); |
| 840 | goto done; |
| 841 | } |
Roger Quadros | 1b9ba00 | 2011-05-09 13:08:06 +0300 | [diff] [blame] | 842 | |
| 843 | if (result == USB_GADGET_DELAYED_STATUS) { |
| 844 | DBG(cdev, |
| 845 | "%s: interface %d (%s) requested delayed status\n", |
| 846 | __func__, tmp, f->name); |
| 847 | cdev->delayed_status++; |
| 848 | DBG(cdev, "delayed_status count %d\n", |
| 849 | cdev->delayed_status); |
| 850 | } |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 851 | } |
| 852 | |
| 853 | /* when we return, be sure our power usage is valid */ |
Sebastian Andrzej Siewior | 8f900a9 | 2012-12-03 20:07:05 +0100 | [diff] [blame] | 854 | power = c->MaxPower ? c->MaxPower : CONFIG_USB_GADGET_VBUS_DRAW; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 855 | done: |
| 856 | usb_gadget_vbus_draw(gadget, power); |
Roger Quadros | 1b9ba00 | 2011-05-09 13:08:06 +0300 | [diff] [blame] | 857 | if (result >= 0 && cdev->delayed_status) |
| 858 | result = USB_GADGET_DELAYED_STATUS; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 859 | return result; |
| 860 | } |
| 861 | |
Sebastian Andrzej Siewior | de53c25 | 2012-12-23 21:10:00 +0100 | [diff] [blame] | 862 | int usb_add_config_only(struct usb_composite_dev *cdev, |
| 863 | struct usb_configuration *config) |
| 864 | { |
| 865 | struct usb_configuration *c; |
| 866 | |
| 867 | if (!config->bConfigurationValue) |
| 868 | return -EINVAL; |
| 869 | |
| 870 | /* Prevent duplicate configuration identifiers */ |
| 871 | list_for_each_entry(c, &cdev->configs, list) { |
| 872 | if (c->bConfigurationValue == config->bConfigurationValue) |
| 873 | return -EBUSY; |
| 874 | } |
| 875 | |
| 876 | config->cdev = cdev; |
| 877 | list_add_tail(&config->list, &cdev->configs); |
| 878 | |
| 879 | INIT_LIST_HEAD(&config->functions); |
| 880 | config->next_interface_id = 0; |
| 881 | memset(config->interface, 0, sizeof(config->interface)); |
| 882 | |
| 883 | return 0; |
| 884 | } |
| 885 | EXPORT_SYMBOL_GPL(usb_add_config_only); |
| 886 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 887 | /** |
| 888 | * usb_add_config() - add a configuration to a device. |
| 889 | * @cdev: wraps the USB gadget |
| 890 | * @config: the configuration, with bConfigurationValue assigned |
Uwe Kleine-König | c9bfff9 | 2010-08-12 17:43:55 +0200 | [diff] [blame] | 891 | * @bind: the configuration's bind function |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 892 | * Context: single threaded during gadget setup |
| 893 | * |
Uwe Kleine-König | c9bfff9 | 2010-08-12 17:43:55 +0200 | [diff] [blame] | 894 | * One of the main tasks of a composite @bind() routine is to |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 895 | * add each of the configurations it supports, using this routine. |
| 896 | * |
Uwe Kleine-König | c9bfff9 | 2010-08-12 17:43:55 +0200 | [diff] [blame] | 897 | * This function returns the value of the configuration's @bind(), which |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 898 | * is zero for success else a negative errno value. Binding configurations |
| 899 | * assigns global resources including string IDs, and per-configuration |
| 900 | * resources such as interface IDs and endpoints. |
| 901 | */ |
Michal Nazarewicz | 28824b1 | 2010-05-05 12:53:13 +0200 | [diff] [blame] | 902 | int usb_add_config(struct usb_composite_dev *cdev, |
Uwe Kleine-König | c9bfff9 | 2010-08-12 17:43:55 +0200 | [diff] [blame] | 903 | struct usb_configuration *config, |
| 904 | int (*bind)(struct usb_configuration *)) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 905 | { |
| 906 | int status = -EINVAL; |
Sebastian Andrzej Siewior | de53c25 | 2012-12-23 21:10:00 +0100 | [diff] [blame] | 907 | |
| 908 | if (!bind) |
| 909 | goto done; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 910 | |
| 911 | DBG(cdev, "adding config #%u '%s'/%p\n", |
| 912 | config->bConfigurationValue, |
| 913 | config->label, config); |
| 914 | |
Sebastian Andrzej Siewior | de53c25 | 2012-12-23 21:10:00 +0100 | [diff] [blame] | 915 | status = usb_add_config_only(cdev, config); |
| 916 | if (status) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 917 | goto done; |
| 918 | |
Uwe Kleine-König | c9bfff9 | 2010-08-12 17:43:55 +0200 | [diff] [blame] | 919 | status = bind(config); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 920 | if (status < 0) { |
Yongsul Oh | 124ef38 | 2012-03-20 10:38:38 +0900 | [diff] [blame] | 921 | while (!list_empty(&config->functions)) { |
| 922 | struct usb_function *f; |
| 923 | |
| 924 | f = list_first_entry(&config->functions, |
| 925 | struct usb_function, list); |
| 926 | list_del(&f->list); |
| 927 | if (f->unbind) { |
| 928 | DBG(cdev, "unbind function '%s'/%p\n", |
| 929 | f->name, f); |
| 930 | f->unbind(config, f); |
| 931 | /* may free memory for "f" */ |
| 932 | } |
| 933 | } |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 934 | list_del(&config->list); |
| 935 | config->cdev = NULL; |
| 936 | } else { |
| 937 | unsigned i; |
| 938 | |
John Youn | cd69cbe | 2016-02-05 17:07:44 -0800 | [diff] [blame] | 939 | DBG(cdev, "cfg %d/%p speeds:%s%s%s%s\n", |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 940 | config->bConfigurationValue, config, |
John Youn | cd69cbe | 2016-02-05 17:07:44 -0800 | [diff] [blame] | 941 | config->superspeed_plus ? " superplus" : "", |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 942 | config->superspeed ? " super" : "", |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 943 | config->highspeed ? " high" : "", |
| 944 | config->fullspeed |
| 945 | ? (gadget_is_dualspeed(cdev->gadget) |
| 946 | ? " full" |
| 947 | : " full/low") |
| 948 | : ""); |
| 949 | |
| 950 | for (i = 0; i < MAX_CONFIG_INTERFACES; i++) { |
| 951 | struct usb_function *f = config->interface[i]; |
| 952 | |
| 953 | if (!f) |
| 954 | continue; |
| 955 | DBG(cdev, " interface %d = %s/%p\n", |
| 956 | i, f->name, f); |
| 957 | } |
| 958 | } |
| 959 | |
Robert Baldyga | f871cb9 | 2015-09-16 12:10:39 +0200 | [diff] [blame] | 960 | /* set_alt(), or next bind(), sets up ep->claimed as needed */ |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 961 | usb_ep_autoconfig_reset(cdev->gadget); |
| 962 | |
| 963 | done: |
| 964 | if (status) |
| 965 | DBG(cdev, "added config '%s'/%u --> %d\n", config->label, |
| 966 | config->bConfigurationValue, status); |
| 967 | return status; |
| 968 | } |
Sebastian Andrzej Siewior | 721e2e9 | 2012-09-06 20:11:27 +0200 | [diff] [blame] | 969 | EXPORT_SYMBOL_GPL(usb_add_config); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 970 | |
Benoit Goby | 51cce6f | 2012-05-10 10:07:57 +0200 | [diff] [blame] | 971 | static void remove_config(struct usb_composite_dev *cdev, |
| 972 | struct usb_configuration *config) |
| 973 | { |
| 974 | while (!list_empty(&config->functions)) { |
| 975 | struct usb_function *f; |
| 976 | |
| 977 | f = list_first_entry(&config->functions, |
| 978 | struct usb_function, list); |
Felipe Balbi | 0e3e975 | 2017-06-06 14:47:29 +0300 | [diff] [blame] | 979 | |
| 980 | usb_remove_function(config, f); |
Benoit Goby | 51cce6f | 2012-05-10 10:07:57 +0200 | [diff] [blame] | 981 | } |
| 982 | list_del(&config->list); |
| 983 | if (config->unbind) { |
| 984 | DBG(cdev, "unbind config '%s'/%p\n", config->label, config); |
| 985 | config->unbind(config); |
| 986 | /* may free memory for "c" */ |
| 987 | } |
| 988 | } |
| 989 | |
| 990 | /** |
| 991 | * usb_remove_config() - remove a configuration from a device. |
| 992 | * @cdev: wraps the USB gadget |
| 993 | * @config: the configuration |
| 994 | * |
| 995 | * Drivers must call usb_gadget_disconnect before calling this function |
| 996 | * to disconnect the device from the host and make sure the host will not |
| 997 | * try to enumerate the device while we are changing the config list. |
| 998 | */ |
| 999 | void usb_remove_config(struct usb_composite_dev *cdev, |
| 1000 | struct usb_configuration *config) |
| 1001 | { |
| 1002 | unsigned long flags; |
| 1003 | |
| 1004 | spin_lock_irqsave(&cdev->lock, flags); |
| 1005 | |
| 1006 | if (cdev->config == config) |
| 1007 | reset_config(cdev); |
| 1008 | |
| 1009 | spin_unlock_irqrestore(&cdev->lock, flags); |
| 1010 | |
| 1011 | remove_config(cdev, config); |
| 1012 | } |
| 1013 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1014 | /*-------------------------------------------------------------------------*/ |
| 1015 | |
| 1016 | /* We support strings in multiple languages ... string descriptor zero |
| 1017 | * says which languages are supported. The typical case will be that |
Diego Viola | ad4676a | 2015-05-31 15:52:41 -0300 | [diff] [blame] | 1018 | * only one language (probably English) is used, with i18n handled on |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1019 | * the host side. |
| 1020 | */ |
| 1021 | |
| 1022 | static void collect_langs(struct usb_gadget_strings **sp, __le16 *buf) |
| 1023 | { |
| 1024 | const struct usb_gadget_strings *s; |
Dan Carpenter | 20c5e74 | 2012-04-17 09:30:22 +0300 | [diff] [blame] | 1025 | __le16 language; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1026 | __le16 *tmp; |
| 1027 | |
| 1028 | while (*sp) { |
| 1029 | s = *sp; |
| 1030 | language = cpu_to_le16(s->language); |
| 1031 | for (tmp = buf; *tmp && tmp < &buf[126]; tmp++) { |
| 1032 | if (*tmp == language) |
| 1033 | goto repeat; |
| 1034 | } |
| 1035 | *tmp++ = language; |
| 1036 | repeat: |
| 1037 | sp++; |
| 1038 | } |
| 1039 | } |
| 1040 | |
| 1041 | static int lookup_string( |
| 1042 | struct usb_gadget_strings **sp, |
| 1043 | void *buf, |
| 1044 | u16 language, |
| 1045 | int id |
| 1046 | ) |
| 1047 | { |
| 1048 | struct usb_gadget_strings *s; |
| 1049 | int value; |
| 1050 | |
| 1051 | while (*sp) { |
| 1052 | s = *sp++; |
| 1053 | if (s->language != language) |
| 1054 | continue; |
| 1055 | value = usb_gadget_get_string(s, id, buf); |
| 1056 | if (value > 0) |
| 1057 | return value; |
| 1058 | } |
| 1059 | return -EINVAL; |
| 1060 | } |
| 1061 | |
| 1062 | static int get_string(struct usb_composite_dev *cdev, |
| 1063 | void *buf, u16 language, int id) |
| 1064 | { |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 1065 | struct usb_composite_driver *composite = cdev->driver; |
Sebastian Andrzej Siewior | 9bb2859 | 2012-12-23 21:10:22 +0100 | [diff] [blame] | 1066 | struct usb_gadget_string_container *uc; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1067 | struct usb_configuration *c; |
| 1068 | struct usb_function *f; |
| 1069 | int len; |
| 1070 | |
Diego Viola | ad4676a | 2015-05-31 15:52:41 -0300 | [diff] [blame] | 1071 | /* Yes, not only is USB's i18n support probably more than most |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1072 | * folk will ever care about ... also, it's all supported here. |
| 1073 | * (Except for UTF8 support for Unicode's "Astral Planes".) |
| 1074 | */ |
| 1075 | |
| 1076 | /* 0 == report all available language codes */ |
| 1077 | if (id == 0) { |
| 1078 | struct usb_string_descriptor *s = buf; |
| 1079 | struct usb_gadget_strings **sp; |
| 1080 | |
| 1081 | memset(s, 0, 256); |
| 1082 | s->bDescriptorType = USB_DT_STRING; |
| 1083 | |
| 1084 | sp = composite->strings; |
| 1085 | if (sp) |
| 1086 | collect_langs(sp, s->wData); |
| 1087 | |
| 1088 | list_for_each_entry(c, &cdev->configs, list) { |
| 1089 | sp = c->strings; |
| 1090 | if (sp) |
| 1091 | collect_langs(sp, s->wData); |
| 1092 | |
| 1093 | list_for_each_entry(f, &c->functions, list) { |
| 1094 | sp = f->strings; |
| 1095 | if (sp) |
| 1096 | collect_langs(sp, s->wData); |
| 1097 | } |
| 1098 | } |
Sebastian Andrzej Siewior | 27a46633 | 2012-12-23 21:10:23 +0100 | [diff] [blame] | 1099 | list_for_each_entry(uc, &cdev->gstrings, list) { |
| 1100 | struct usb_gadget_strings **sp; |
| 1101 | |
| 1102 | sp = get_containers_gs(uc); |
| 1103 | collect_langs(sp, s->wData); |
| 1104 | } |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1105 | |
Roel Kluin | 417b57b | 2009-08-06 16:09:51 -0700 | [diff] [blame] | 1106 | for (len = 0; len <= 126 && s->wData[len]; len++) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1107 | continue; |
| 1108 | if (!len) |
| 1109 | return -EINVAL; |
| 1110 | |
| 1111 | s->bLength = 2 * (len + 1); |
| 1112 | return s->bLength; |
| 1113 | } |
| 1114 | |
Andrzej Pietrasiewicz | 19824d5 | 2014-05-08 14:06:22 +0200 | [diff] [blame] | 1115 | if (cdev->use_os_string && language == 0 && id == OS_STRING_IDX) { |
| 1116 | struct usb_os_string *b = buf; |
| 1117 | b->bLength = sizeof(*b); |
| 1118 | b->bDescriptorType = USB_DT_STRING; |
| 1119 | compiletime_assert( |
| 1120 | sizeof(b->qwSignature) == sizeof(cdev->qw_sign), |
| 1121 | "qwSignature size must be equal to qw_sign"); |
| 1122 | memcpy(&b->qwSignature, cdev->qw_sign, sizeof(b->qwSignature)); |
| 1123 | b->bMS_VendorCode = cdev->b_vendor_code; |
| 1124 | b->bPad = 0; |
| 1125 | return sizeof(*b); |
| 1126 | } |
| 1127 | |
Sebastian Andrzej Siewior | 9bb2859 | 2012-12-23 21:10:22 +0100 | [diff] [blame] | 1128 | list_for_each_entry(uc, &cdev->gstrings, list) { |
| 1129 | struct usb_gadget_strings **sp; |
| 1130 | |
| 1131 | sp = get_containers_gs(uc); |
| 1132 | len = lookup_string(sp, buf, language, id); |
| 1133 | if (len > 0) |
| 1134 | return len; |
| 1135 | } |
| 1136 | |
Michal Nazarewicz | ad1a810 | 2010-08-12 17:43:46 +0200 | [diff] [blame] | 1137 | /* String IDs are device-scoped, so we look up each string |
| 1138 | * table we're told about. These lookups are infrequent; |
| 1139 | * simpler-is-better here. |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1140 | */ |
| 1141 | if (composite->strings) { |
| 1142 | len = lookup_string(composite->strings, buf, language, id); |
| 1143 | if (len > 0) |
| 1144 | return len; |
| 1145 | } |
| 1146 | list_for_each_entry(c, &cdev->configs, list) { |
| 1147 | if (c->strings) { |
| 1148 | len = lookup_string(c->strings, buf, language, id); |
| 1149 | if (len > 0) |
| 1150 | return len; |
| 1151 | } |
| 1152 | list_for_each_entry(f, &c->functions, list) { |
| 1153 | if (!f->strings) |
| 1154 | continue; |
| 1155 | len = lookup_string(f->strings, buf, language, id); |
| 1156 | if (len > 0) |
| 1157 | return len; |
| 1158 | } |
| 1159 | } |
| 1160 | return -EINVAL; |
| 1161 | } |
| 1162 | |
| 1163 | /** |
| 1164 | * usb_string_id() - allocate an unused string ID |
| 1165 | * @cdev: the device whose string descriptor IDs are being allocated |
| 1166 | * Context: single threaded during gadget setup |
| 1167 | * |
| 1168 | * @usb_string_id() is called from bind() callbacks to allocate |
| 1169 | * string IDs. Drivers for functions, configurations, or gadgets will |
| 1170 | * then store that ID in the appropriate descriptors and string table. |
| 1171 | * |
Michal Nazarewicz | f2adc4f | 2010-06-16 12:07:59 +0200 | [diff] [blame] | 1172 | * All string identifier should be allocated using this, |
| 1173 | * @usb_string_ids_tab() or @usb_string_ids_n() routine, to ensure |
| 1174 | * that for example different functions don't wrongly assign different |
| 1175 | * meanings to the same identifier. |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1176 | */ |
Michal Nazarewicz | 28824b1 | 2010-05-05 12:53:13 +0200 | [diff] [blame] | 1177 | int usb_string_id(struct usb_composite_dev *cdev) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1178 | { |
| 1179 | if (cdev->next_string_id < 254) { |
Michal Nazarewicz | f2adc4f | 2010-06-16 12:07:59 +0200 | [diff] [blame] | 1180 | /* string id 0 is reserved by USB spec for list of |
| 1181 | * supported languages */ |
| 1182 | /* 255 reserved as well? -- mina86 */ |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1183 | cdev->next_string_id++; |
| 1184 | return cdev->next_string_id; |
| 1185 | } |
| 1186 | return -ENODEV; |
| 1187 | } |
Sebastian Andrzej Siewior | 721e2e9 | 2012-09-06 20:11:27 +0200 | [diff] [blame] | 1188 | EXPORT_SYMBOL_GPL(usb_string_id); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1189 | |
Michal Nazarewicz | f2adc4f | 2010-06-16 12:07:59 +0200 | [diff] [blame] | 1190 | /** |
| 1191 | * usb_string_ids() - allocate unused string IDs in batch |
| 1192 | * @cdev: the device whose string descriptor IDs are being allocated |
| 1193 | * @str: an array of usb_string objects to assign numbers to |
| 1194 | * Context: single threaded during gadget setup |
| 1195 | * |
| 1196 | * @usb_string_ids() is called from bind() callbacks to allocate |
| 1197 | * string IDs. Drivers for functions, configurations, or gadgets will |
| 1198 | * then copy IDs from the string table to the appropriate descriptors |
| 1199 | * and string table for other languages. |
| 1200 | * |
| 1201 | * All string identifier should be allocated using this, |
| 1202 | * @usb_string_id() or @usb_string_ids_n() routine, to ensure that for |
| 1203 | * example different functions don't wrongly assign different meanings |
| 1204 | * to the same identifier. |
| 1205 | */ |
| 1206 | int usb_string_ids_tab(struct usb_composite_dev *cdev, struct usb_string *str) |
| 1207 | { |
| 1208 | int next = cdev->next_string_id; |
| 1209 | |
| 1210 | for (; str->s; ++str) { |
| 1211 | if (unlikely(next >= 254)) |
| 1212 | return -ENODEV; |
| 1213 | str->id = ++next; |
| 1214 | } |
| 1215 | |
| 1216 | cdev->next_string_id = next; |
| 1217 | |
| 1218 | return 0; |
| 1219 | } |
Sebastian Andrzej Siewior | 721e2e9 | 2012-09-06 20:11:27 +0200 | [diff] [blame] | 1220 | EXPORT_SYMBOL_GPL(usb_string_ids_tab); |
Michal Nazarewicz | f2adc4f | 2010-06-16 12:07:59 +0200 | [diff] [blame] | 1221 | |
Sebastian Andrzej Siewior | 9bb2859 | 2012-12-23 21:10:22 +0100 | [diff] [blame] | 1222 | static struct usb_gadget_string_container *copy_gadget_strings( |
| 1223 | struct usb_gadget_strings **sp, unsigned n_gstrings, |
| 1224 | unsigned n_strings) |
| 1225 | { |
| 1226 | struct usb_gadget_string_container *uc; |
| 1227 | struct usb_gadget_strings **gs_array; |
| 1228 | struct usb_gadget_strings *gs; |
| 1229 | struct usb_string *s; |
| 1230 | unsigned mem; |
| 1231 | unsigned n_gs; |
| 1232 | unsigned n_s; |
| 1233 | void *stash; |
| 1234 | |
| 1235 | mem = sizeof(*uc); |
| 1236 | mem += sizeof(void *) * (n_gstrings + 1); |
| 1237 | mem += sizeof(struct usb_gadget_strings) * n_gstrings; |
| 1238 | mem += sizeof(struct usb_string) * (n_strings + 1) * (n_gstrings); |
| 1239 | uc = kmalloc(mem, GFP_KERNEL); |
| 1240 | if (!uc) |
| 1241 | return ERR_PTR(-ENOMEM); |
| 1242 | gs_array = get_containers_gs(uc); |
| 1243 | stash = uc->stash; |
| 1244 | stash += sizeof(void *) * (n_gstrings + 1); |
| 1245 | for (n_gs = 0; n_gs < n_gstrings; n_gs++) { |
| 1246 | struct usb_string *org_s; |
| 1247 | |
| 1248 | gs_array[n_gs] = stash; |
| 1249 | gs = gs_array[n_gs]; |
| 1250 | stash += sizeof(struct usb_gadget_strings); |
| 1251 | gs->language = sp[n_gs]->language; |
| 1252 | gs->strings = stash; |
| 1253 | org_s = sp[n_gs]->strings; |
| 1254 | |
| 1255 | for (n_s = 0; n_s < n_strings; n_s++) { |
| 1256 | s = stash; |
| 1257 | stash += sizeof(struct usb_string); |
| 1258 | if (org_s->s) |
| 1259 | s->s = org_s->s; |
| 1260 | else |
| 1261 | s->s = ""; |
| 1262 | org_s++; |
| 1263 | } |
| 1264 | s = stash; |
| 1265 | s->s = NULL; |
| 1266 | stash += sizeof(struct usb_string); |
| 1267 | |
| 1268 | } |
| 1269 | gs_array[n_gs] = NULL; |
| 1270 | return uc; |
| 1271 | } |
| 1272 | |
| 1273 | /** |
| 1274 | * usb_gstrings_attach() - attach gadget strings to a cdev and assign ids |
| 1275 | * @cdev: the device whose string descriptor IDs are being allocated |
| 1276 | * and attached. |
| 1277 | * @sp: an array of usb_gadget_strings to attach. |
| 1278 | * @n_strings: number of entries in each usb_strings array (sp[]->strings) |
| 1279 | * |
| 1280 | * This function will create a deep copy of usb_gadget_strings and usb_string |
| 1281 | * and attach it to the cdev. The actual string (usb_string.s) will not be |
| 1282 | * copied but only a referenced will be made. The struct usb_gadget_strings |
Masanari Iida | 06ed0de | 2015-03-10 22:37:46 +0900 | [diff] [blame] | 1283 | * array may contain multiple languages and should be NULL terminated. |
Sebastian Andrzej Siewior | 9bb2859 | 2012-12-23 21:10:22 +0100 | [diff] [blame] | 1284 | * The ->language pointer of each struct usb_gadget_strings has to contain the |
| 1285 | * same amount of entries. |
| 1286 | * For instance: sp[0] is en-US, sp[1] is es-ES. It is expected that the first |
Masanari Iida | 06ed0de | 2015-03-10 22:37:46 +0900 | [diff] [blame] | 1287 | * usb_string entry of es-ES contains the translation of the first usb_string |
Sebastian Andrzej Siewior | 9bb2859 | 2012-12-23 21:10:22 +0100 | [diff] [blame] | 1288 | * entry of en-US. Therefore both entries become the same id assign. |
| 1289 | */ |
| 1290 | struct usb_string *usb_gstrings_attach(struct usb_composite_dev *cdev, |
| 1291 | struct usb_gadget_strings **sp, unsigned n_strings) |
| 1292 | { |
| 1293 | struct usb_gadget_string_container *uc; |
| 1294 | struct usb_gadget_strings **n_gs; |
| 1295 | unsigned n_gstrings = 0; |
| 1296 | unsigned i; |
| 1297 | int ret; |
| 1298 | |
| 1299 | for (i = 0; sp[i]; i++) |
| 1300 | n_gstrings++; |
| 1301 | |
| 1302 | if (!n_gstrings) |
| 1303 | return ERR_PTR(-EINVAL); |
| 1304 | |
| 1305 | uc = copy_gadget_strings(sp, n_gstrings, n_strings); |
| 1306 | if (IS_ERR(uc)) |
Felipe Balbi | dad4bab | 2014-03-10 13:30:56 -0500 | [diff] [blame] | 1307 | return ERR_CAST(uc); |
Sebastian Andrzej Siewior | 9bb2859 | 2012-12-23 21:10:22 +0100 | [diff] [blame] | 1308 | |
| 1309 | n_gs = get_containers_gs(uc); |
| 1310 | ret = usb_string_ids_tab(cdev, n_gs[0]->strings); |
| 1311 | if (ret) |
| 1312 | goto err; |
| 1313 | |
| 1314 | for (i = 1; i < n_gstrings; i++) { |
| 1315 | struct usb_string *m_s; |
| 1316 | struct usb_string *s; |
| 1317 | unsigned n; |
| 1318 | |
| 1319 | m_s = n_gs[0]->strings; |
| 1320 | s = n_gs[i]->strings; |
| 1321 | for (n = 0; n < n_strings; n++) { |
| 1322 | s->id = m_s->id; |
| 1323 | s++; |
| 1324 | m_s++; |
| 1325 | } |
| 1326 | } |
| 1327 | list_add_tail(&uc->list, &cdev->gstrings); |
| 1328 | return n_gs[0]->strings; |
| 1329 | err: |
| 1330 | kfree(uc); |
| 1331 | return ERR_PTR(ret); |
| 1332 | } |
| 1333 | EXPORT_SYMBOL_GPL(usb_gstrings_attach); |
| 1334 | |
Michal Nazarewicz | f2adc4f | 2010-06-16 12:07:59 +0200 | [diff] [blame] | 1335 | /** |
| 1336 | * usb_string_ids_n() - allocate unused string IDs in batch |
Randy Dunlap | d187abb | 2010-08-11 12:07:13 -0700 | [diff] [blame] | 1337 | * @c: the device whose string descriptor IDs are being allocated |
Michal Nazarewicz | f2adc4f | 2010-06-16 12:07:59 +0200 | [diff] [blame] | 1338 | * @n: number of string IDs to allocate |
| 1339 | * Context: single threaded during gadget setup |
| 1340 | * |
| 1341 | * 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] | 1342 | * 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] | 1343 | * is, returns last requested ID which is now very useful information. |
| 1344 | * |
| 1345 | * @usb_string_ids_n() is called from bind() callbacks to allocate |
| 1346 | * string IDs. Drivers for functions, configurations, or gadgets will |
| 1347 | * then store that ID in the appropriate descriptors and string table. |
| 1348 | * |
| 1349 | * All string identifier should be allocated using this, |
| 1350 | * @usb_string_id() or @usb_string_ids_n() routine, to ensure that for |
| 1351 | * example different functions don't wrongly assign different meanings |
| 1352 | * to the same identifier. |
| 1353 | */ |
| 1354 | int usb_string_ids_n(struct usb_composite_dev *c, unsigned n) |
| 1355 | { |
| 1356 | unsigned next = c->next_string_id; |
| 1357 | if (unlikely(n > 254 || (unsigned)next + n > 254)) |
| 1358 | return -ENODEV; |
| 1359 | c->next_string_id += n; |
| 1360 | return next + 1; |
| 1361 | } |
Sebastian Andrzej Siewior | 721e2e9 | 2012-09-06 20:11:27 +0200 | [diff] [blame] | 1362 | EXPORT_SYMBOL_GPL(usb_string_ids_n); |
Michal Nazarewicz | f2adc4f | 2010-06-16 12:07:59 +0200 | [diff] [blame] | 1363 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1364 | /*-------------------------------------------------------------------------*/ |
| 1365 | |
| 1366 | static void composite_setup_complete(struct usb_ep *ep, struct usb_request *req) |
| 1367 | { |
Felipe Balbi | a7c12ea | 2014-09-18 10:01:55 -0500 | [diff] [blame] | 1368 | struct usb_composite_dev *cdev; |
| 1369 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1370 | if (req->status || req->actual != req->length) |
| 1371 | DBG((struct usb_composite_dev *) ep->driver_data, |
| 1372 | "setup complete --> %d, %d/%d\n", |
| 1373 | req->status, req->actual, req->length); |
Felipe Balbi | a7c12ea | 2014-09-18 10:01:55 -0500 | [diff] [blame] | 1374 | |
| 1375 | /* |
| 1376 | * REVIST The same ep0 requests are shared with function drivers |
| 1377 | * so they don't have to maintain the same ->complete() stubs. |
| 1378 | * |
| 1379 | * Because of that, we need to check for the validity of ->context |
| 1380 | * here, even though we know we've set it to something useful. |
| 1381 | */ |
| 1382 | if (!req->context) |
| 1383 | return; |
| 1384 | |
| 1385 | cdev = req->context; |
| 1386 | |
| 1387 | if (cdev->req == req) |
| 1388 | cdev->setup_pending = false; |
| 1389 | else if (cdev->os_desc_req == req) |
| 1390 | cdev->os_desc_pending = false; |
| 1391 | else |
| 1392 | WARN(1, "unknown request %p\n", req); |
| 1393 | } |
| 1394 | |
| 1395 | static int composite_ep0_queue(struct usb_composite_dev *cdev, |
| 1396 | struct usb_request *req, gfp_t gfp_flags) |
| 1397 | { |
| 1398 | int ret; |
| 1399 | |
| 1400 | ret = usb_ep_queue(cdev->gadget->ep0, req, gfp_flags); |
| 1401 | if (ret == 0) { |
| 1402 | if (cdev->req == req) |
| 1403 | cdev->setup_pending = true; |
| 1404 | else if (cdev->os_desc_req == req) |
| 1405 | cdev->os_desc_pending = true; |
| 1406 | else |
| 1407 | WARN(1, "unknown request %p\n", req); |
| 1408 | } |
| 1409 | |
| 1410 | return ret; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1411 | } |
| 1412 | |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1413 | static int count_ext_compat(struct usb_configuration *c) |
| 1414 | { |
| 1415 | int i, res; |
| 1416 | |
| 1417 | res = 0; |
| 1418 | for (i = 0; i < c->next_interface_id; ++i) { |
| 1419 | struct usb_function *f; |
| 1420 | int j; |
| 1421 | |
| 1422 | f = c->interface[i]; |
| 1423 | for (j = 0; j < f->os_desc_n; ++j) { |
| 1424 | struct usb_os_desc *d; |
| 1425 | |
| 1426 | if (i != f->os_desc_table[j].if_id) |
| 1427 | continue; |
| 1428 | d = f->os_desc_table[j].os_desc; |
| 1429 | if (d && d->ext_compat_id) |
| 1430 | ++res; |
| 1431 | } |
| 1432 | } |
| 1433 | BUG_ON(res > 255); |
| 1434 | return res; |
| 1435 | } |
| 1436 | |
Chris Dickens | 5d6ae4f | 2017-12-31 18:59:42 -0800 | [diff] [blame] | 1437 | static int fill_ext_compat(struct usb_configuration *c, u8 *buf) |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1438 | { |
| 1439 | int i, count; |
| 1440 | |
| 1441 | count = 16; |
Chris Dickens | 636ba13 | 2017-12-31 18:59:43 -0800 | [diff] [blame] | 1442 | buf += 16; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1443 | for (i = 0; i < c->next_interface_id; ++i) { |
| 1444 | struct usb_function *f; |
| 1445 | int j; |
| 1446 | |
| 1447 | f = c->interface[i]; |
| 1448 | for (j = 0; j < f->os_desc_n; ++j) { |
| 1449 | struct usb_os_desc *d; |
| 1450 | |
| 1451 | if (i != f->os_desc_table[j].if_id) |
| 1452 | continue; |
| 1453 | d = f->os_desc_table[j].os_desc; |
| 1454 | if (d && d->ext_compat_id) { |
| 1455 | *buf++ = i; |
| 1456 | *buf++ = 0x01; |
| 1457 | memcpy(buf, d->ext_compat_id, 16); |
| 1458 | buf += 22; |
| 1459 | } else { |
| 1460 | ++buf; |
| 1461 | *buf = 0x01; |
| 1462 | buf += 23; |
| 1463 | } |
| 1464 | count += 24; |
Chris Dickens | 5d6ae4f | 2017-12-31 18:59:42 -0800 | [diff] [blame] | 1465 | if (count + 24 >= USB_COMP_EP0_OS_DESC_BUFSIZ) |
| 1466 | return count; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1467 | } |
| 1468 | } |
Chris Dickens | 5d6ae4f | 2017-12-31 18:59:42 -0800 | [diff] [blame] | 1469 | |
| 1470 | return count; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1471 | } |
| 1472 | |
| 1473 | static int count_ext_prop(struct usb_configuration *c, int interface) |
| 1474 | { |
| 1475 | struct usb_function *f; |
Julia Lawall | 849b133 | 2014-05-19 06:31:07 +0200 | [diff] [blame] | 1476 | int j; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1477 | |
| 1478 | f = c->interface[interface]; |
| 1479 | for (j = 0; j < f->os_desc_n; ++j) { |
| 1480 | struct usb_os_desc *d; |
| 1481 | |
| 1482 | if (interface != f->os_desc_table[j].if_id) |
| 1483 | continue; |
| 1484 | d = f->os_desc_table[j].os_desc; |
| 1485 | if (d && d->ext_compat_id) |
| 1486 | return d->ext_prop_count; |
| 1487 | } |
Julia Lawall | 849b133 | 2014-05-19 06:31:07 +0200 | [diff] [blame] | 1488 | return 0; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1489 | } |
| 1490 | |
| 1491 | static int len_ext_prop(struct usb_configuration *c, int interface) |
| 1492 | { |
| 1493 | struct usb_function *f; |
| 1494 | struct usb_os_desc *d; |
| 1495 | int j, res; |
| 1496 | |
| 1497 | res = 10; /* header length */ |
| 1498 | f = c->interface[interface]; |
| 1499 | for (j = 0; j < f->os_desc_n; ++j) { |
| 1500 | if (interface != f->os_desc_table[j].if_id) |
| 1501 | continue; |
| 1502 | d = f->os_desc_table[j].os_desc; |
| 1503 | if (d) |
| 1504 | return min(res + d->ext_prop_len, 4096); |
| 1505 | } |
| 1506 | return res; |
| 1507 | } |
| 1508 | |
| 1509 | static int fill_ext_prop(struct usb_configuration *c, int interface, u8 *buf) |
| 1510 | { |
| 1511 | struct usb_function *f; |
| 1512 | struct usb_os_desc *d; |
| 1513 | struct usb_os_desc_ext_prop *ext_prop; |
| 1514 | int j, count, n, ret; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1515 | |
| 1516 | f = c->interface[interface]; |
Chris Dickens | 5d6ae4f | 2017-12-31 18:59:42 -0800 | [diff] [blame] | 1517 | count = 10; /* header length */ |
Chris Dickens | 636ba13 | 2017-12-31 18:59:43 -0800 | [diff] [blame] | 1518 | buf += 10; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1519 | for (j = 0; j < f->os_desc_n; ++j) { |
| 1520 | if (interface != f->os_desc_table[j].if_id) |
| 1521 | continue; |
| 1522 | d = f->os_desc_table[j].os_desc; |
| 1523 | if (d) |
| 1524 | list_for_each_entry(ext_prop, &d->ext_prop, entry) { |
Chris Dickens | 5d6ae4f | 2017-12-31 18:59:42 -0800 | [diff] [blame] | 1525 | n = ext_prop->data_len + |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1526 | ext_prop->name_len + 14; |
Chris Dickens | 5d6ae4f | 2017-12-31 18:59:42 -0800 | [diff] [blame] | 1527 | if (count + n >= USB_COMP_EP0_OS_DESC_BUFSIZ) |
| 1528 | return count; |
| 1529 | usb_ext_prop_put_size(buf, n); |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1530 | usb_ext_prop_put_type(buf, ext_prop->type); |
| 1531 | ret = usb_ext_prop_put_name(buf, ext_prop->name, |
| 1532 | ext_prop->name_len); |
| 1533 | if (ret < 0) |
| 1534 | return ret; |
| 1535 | switch (ext_prop->type) { |
| 1536 | case USB_EXT_PROP_UNICODE: |
| 1537 | case USB_EXT_PROP_UNICODE_ENV: |
| 1538 | case USB_EXT_PROP_UNICODE_LINK: |
| 1539 | usb_ext_prop_put_unicode(buf, ret, |
| 1540 | ext_prop->data, |
| 1541 | ext_prop->data_len); |
| 1542 | break; |
| 1543 | case USB_EXT_PROP_BINARY: |
| 1544 | usb_ext_prop_put_binary(buf, ret, |
| 1545 | ext_prop->data, |
| 1546 | ext_prop->data_len); |
| 1547 | break; |
| 1548 | case USB_EXT_PROP_LE32: |
| 1549 | /* not implemented */ |
| 1550 | case USB_EXT_PROP_BE32: |
| 1551 | /* not implemented */ |
| 1552 | default: |
| 1553 | return -EINVAL; |
| 1554 | } |
Chris Dickens | 5d6ae4f | 2017-12-31 18:59:42 -0800 | [diff] [blame] | 1555 | buf += n; |
| 1556 | count += n; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1557 | } |
| 1558 | } |
| 1559 | |
Chris Dickens | 5d6ae4f | 2017-12-31 18:59:42 -0800 | [diff] [blame] | 1560 | return count; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1561 | } |
| 1562 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1563 | /* |
| 1564 | * The setup() callback implements all the ep0 functionality that's |
| 1565 | * not handled lower down, in hardware or the hardware driver(like |
| 1566 | * device and endpoint feature flags, and their status). It's all |
| 1567 | * housekeeping for the gadget function we're implementing. Most of |
| 1568 | * the work is in config and function specific setup. |
| 1569 | */ |
Sebastian Andrzej Siewior | 2d5a889 | 2012-12-23 21:10:21 +0100 | [diff] [blame] | 1570 | int |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1571 | composite_setup(struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl) |
| 1572 | { |
| 1573 | struct usb_composite_dev *cdev = get_gadget_data(gadget); |
| 1574 | struct usb_request *req = cdev->req; |
| 1575 | int value = -EOPNOTSUPP; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1576 | int status = 0; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1577 | u16 w_index = le16_to_cpu(ctrl->wIndex); |
Bryan Wu | 0888951 | 2009-01-08 00:21:19 +0800 | [diff] [blame] | 1578 | u8 intf = w_index & 0xFF; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1579 | u16 w_value = le16_to_cpu(ctrl->wValue); |
| 1580 | u16 w_length = le16_to_cpu(ctrl->wLength); |
| 1581 | struct usb_function *f = NULL; |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 1582 | u8 endp; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1583 | |
| 1584 | /* partial re-init of the response message; the function or the |
| 1585 | * gadget might need to intercept e.g. a control-OUT completion |
| 1586 | * when we delegate to it. |
| 1587 | */ |
| 1588 | req->zero = 0; |
Felipe Balbi | 5794371 | 2014-09-18 09:54:54 -0500 | [diff] [blame] | 1589 | req->context = cdev; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1590 | req->complete = composite_setup_complete; |
Maulik Mankad | 2edb11c | 2011-02-22 19:08:42 +0530 | [diff] [blame] | 1591 | req->length = 0; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1592 | gadget->ep0->driver_data = cdev; |
| 1593 | |
Andrzej Pietrasiewicz | 232c010 | 2015-03-03 10:52:04 +0100 | [diff] [blame] | 1594 | /* |
| 1595 | * Don't let non-standard requests match any of the cases below |
| 1596 | * by accident. |
| 1597 | */ |
| 1598 | if ((ctrl->bRequestType & USB_TYPE_MASK) != USB_TYPE_STANDARD) |
| 1599 | goto unknown; |
| 1600 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1601 | switch (ctrl->bRequest) { |
| 1602 | |
| 1603 | /* we handle all standard USB descriptors */ |
| 1604 | case USB_REQ_GET_DESCRIPTOR: |
| 1605 | if (ctrl->bRequestType != USB_DIR_IN) |
| 1606 | goto unknown; |
| 1607 | switch (w_value >> 8) { |
| 1608 | |
| 1609 | case USB_DT_DEVICE: |
| 1610 | cdev->desc.bNumConfigurations = |
| 1611 | count_configs(cdev, USB_DT_DEVICE); |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1612 | cdev->desc.bMaxPacketSize0 = |
| 1613 | cdev->gadget->ep0->maxpacket; |
| 1614 | if (gadget_is_superspeed(gadget)) { |
Sebastian Andrzej Siewior | a8f2115 | 2011-07-19 20:21:52 +0200 | [diff] [blame] | 1615 | if (gadget->speed >= USB_SPEED_SUPER) { |
Chunfeng Yun | 1ef6c42 | 2018-05-09 19:29:16 +0800 | [diff] [blame] | 1616 | cdev->desc.bcdUSB = cpu_to_le16(0x0320); |
Sebastian Andrzej Siewior | a8f2115 | 2011-07-19 20:21:52 +0200 | [diff] [blame] | 1617 | cdev->desc.bMaxPacketSize0 = 9; |
| 1618 | } else { |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1619 | cdev->desc.bcdUSB = cpu_to_le16(0x0210); |
Sebastian Andrzej Siewior | a8f2115 | 2011-07-19 20:21:52 +0200 | [diff] [blame] | 1620 | } |
Igor Kotrasinski | 5527e73 | 2015-08-20 10:00:01 +0200 | [diff] [blame] | 1621 | } else { |
John Youn | a9548c5 | 2017-04-28 12:55:20 +0400 | [diff] [blame] | 1622 | if (gadget->lpm_capable) |
| 1623 | cdev->desc.bcdUSB = cpu_to_le16(0x0201); |
| 1624 | else |
| 1625 | cdev->desc.bcdUSB = cpu_to_le16(0x0200); |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1626 | } |
| 1627 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1628 | value = min(w_length, (u16) sizeof cdev->desc); |
| 1629 | memcpy(req->buf, &cdev->desc, value); |
| 1630 | break; |
| 1631 | case USB_DT_DEVICE_QUALIFIER: |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1632 | if (!gadget_is_dualspeed(gadget) || |
| 1633 | gadget->speed >= USB_SPEED_SUPER) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1634 | break; |
| 1635 | device_qual(cdev); |
| 1636 | value = min_t(int, w_length, |
| 1637 | sizeof(struct usb_qualifier_descriptor)); |
| 1638 | break; |
| 1639 | case USB_DT_OTHER_SPEED_CONFIG: |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1640 | if (!gadget_is_dualspeed(gadget) || |
| 1641 | gadget->speed >= USB_SPEED_SUPER) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1642 | break; |
| 1643 | /* FALLTHROUGH */ |
| 1644 | case USB_DT_CONFIG: |
| 1645 | value = config_desc(cdev, w_value); |
| 1646 | if (value >= 0) |
| 1647 | value = min(w_length, (u16) value); |
| 1648 | break; |
| 1649 | case USB_DT_STRING: |
| 1650 | value = get_string(cdev, req->buf, |
| 1651 | w_index, w_value & 0xff); |
| 1652 | if (value >= 0) |
| 1653 | value = min(w_length, (u16) value); |
| 1654 | break; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1655 | case USB_DT_BOS: |
John Youn | a9548c5 | 2017-04-28 12:55:20 +0400 | [diff] [blame] | 1656 | if (gadget_is_superspeed(gadget) || |
| 1657 | gadget->lpm_capable) { |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1658 | value = bos_desc(cdev); |
| 1659 | value = min(w_length, (u16) value); |
| 1660 | } |
| 1661 | break; |
Macpaul Lin | 53e6242 | 2015-07-09 15:18:42 +0800 | [diff] [blame] | 1662 | case USB_DT_OTG: |
| 1663 | if (gadget_is_otg(gadget)) { |
| 1664 | struct usb_configuration *config; |
| 1665 | int otg_desc_len = 0; |
| 1666 | |
| 1667 | if (cdev->config) |
| 1668 | config = cdev->config; |
| 1669 | else |
| 1670 | config = list_first_entry( |
| 1671 | &cdev->configs, |
| 1672 | struct usb_configuration, list); |
| 1673 | if (!config) |
| 1674 | goto done; |
| 1675 | |
| 1676 | if (gadget->otg_caps && |
| 1677 | (gadget->otg_caps->otg_rev >= 0x0200)) |
| 1678 | otg_desc_len += sizeof( |
| 1679 | struct usb_otg20_descriptor); |
| 1680 | else |
| 1681 | otg_desc_len += sizeof( |
| 1682 | struct usb_otg_descriptor); |
| 1683 | |
| 1684 | value = min_t(int, w_length, otg_desc_len); |
| 1685 | memcpy(req->buf, config->descriptors[0], value); |
| 1686 | } |
| 1687 | break; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1688 | } |
| 1689 | break; |
| 1690 | |
| 1691 | /* any number of configs can work */ |
| 1692 | case USB_REQ_SET_CONFIGURATION: |
| 1693 | if (ctrl->bRequestType != 0) |
| 1694 | goto unknown; |
| 1695 | if (gadget_is_otg(gadget)) { |
| 1696 | if (gadget->a_hnp_support) |
| 1697 | DBG(cdev, "HNP available\n"); |
| 1698 | else if (gadget->a_alt_hnp_support) |
| 1699 | DBG(cdev, "HNP on another port\n"); |
| 1700 | else |
| 1701 | VDBG(cdev, "HNP inactive\n"); |
| 1702 | } |
| 1703 | spin_lock(&cdev->lock); |
| 1704 | value = set_config(cdev, ctrl, w_value); |
| 1705 | spin_unlock(&cdev->lock); |
| 1706 | break; |
| 1707 | case USB_REQ_GET_CONFIGURATION: |
| 1708 | if (ctrl->bRequestType != USB_DIR_IN) |
| 1709 | goto unknown; |
| 1710 | if (cdev->config) |
| 1711 | *(u8 *)req->buf = cdev->config->bConfigurationValue; |
| 1712 | else |
| 1713 | *(u8 *)req->buf = 0; |
| 1714 | value = min(w_length, (u16) 1); |
| 1715 | break; |
| 1716 | |
Krzysztof Opasiak | 7e4da3f | 2016-12-20 19:52:16 +0100 | [diff] [blame] | 1717 | /* function drivers must handle get/set altsetting */ |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1718 | case USB_REQ_SET_INTERFACE: |
| 1719 | if (ctrl->bRequestType != USB_RECIP_INTERFACE) |
| 1720 | goto unknown; |
Jassi Brar | ff085de | 2011-02-06 17:39:17 +0900 | [diff] [blame] | 1721 | if (!cdev->config || intf >= MAX_CONFIG_INTERFACES) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1722 | break; |
Bryan Wu | 0888951 | 2009-01-08 00:21:19 +0800 | [diff] [blame] | 1723 | f = cdev->config->interface[intf]; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1724 | if (!f) |
| 1725 | break; |
Krzysztof Opasiak | 7e4da3f | 2016-12-20 19:52:16 +0100 | [diff] [blame] | 1726 | |
| 1727 | /* |
| 1728 | * If there's no get_alt() method, we know only altsetting zero |
| 1729 | * works. There is no need to check if set_alt() is not NULL |
| 1730 | * as we check this in usb_add_function(). |
| 1731 | */ |
| 1732 | if (w_value && !f->get_alt) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1733 | break; |
Chunfeng Yun | 980900d | 2018-05-25 17:24:57 +0800 | [diff] [blame] | 1734 | |
| 1735 | spin_lock(&cdev->lock); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1736 | value = f->set_alt(f, w_index, w_value); |
Roger Quadros | 1b9ba00 | 2011-05-09 13:08:06 +0300 | [diff] [blame] | 1737 | if (value == USB_GADGET_DELAYED_STATUS) { |
| 1738 | DBG(cdev, |
| 1739 | "%s: interface %d (%s) requested delayed status\n", |
| 1740 | __func__, intf, f->name); |
| 1741 | cdev->delayed_status++; |
| 1742 | DBG(cdev, "delayed_status count %d\n", |
| 1743 | cdev->delayed_status); |
| 1744 | } |
Chunfeng Yun | 980900d | 2018-05-25 17:24:57 +0800 | [diff] [blame] | 1745 | spin_unlock(&cdev->lock); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1746 | break; |
| 1747 | case USB_REQ_GET_INTERFACE: |
| 1748 | if (ctrl->bRequestType != (USB_DIR_IN|USB_RECIP_INTERFACE)) |
| 1749 | goto unknown; |
Jassi Brar | ff085de | 2011-02-06 17:39:17 +0900 | [diff] [blame] | 1750 | if (!cdev->config || intf >= MAX_CONFIG_INTERFACES) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1751 | break; |
Bryan Wu | 0888951 | 2009-01-08 00:21:19 +0800 | [diff] [blame] | 1752 | f = cdev->config->interface[intf]; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1753 | if (!f) |
| 1754 | break; |
| 1755 | /* lots of interfaces only need altsetting zero... */ |
| 1756 | value = f->get_alt ? f->get_alt(f, w_index) : 0; |
| 1757 | if (value < 0) |
| 1758 | break; |
| 1759 | *((u8 *)req->buf) = value; |
| 1760 | value = min(w_length, (u16) 1); |
| 1761 | break; |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1762 | case USB_REQ_GET_STATUS: |
Li Jun | c5348b6 | 2016-02-19 10:04:44 +0800 | [diff] [blame] | 1763 | if (gadget_is_otg(gadget) && gadget->hnp_polling_support && |
| 1764 | (w_index == OTG_STS_SELECTOR)) { |
| 1765 | if (ctrl->bRequestType != (USB_DIR_IN | |
| 1766 | USB_RECIP_DEVICE)) |
| 1767 | goto unknown; |
| 1768 | *((u8 *)req->buf) = gadget->host_request_flag; |
| 1769 | value = 1; |
| 1770 | break; |
| 1771 | } |
| 1772 | |
| 1773 | /* |
| 1774 | * USB 3.0 additions: |
| 1775 | * Function driver should handle get_status request. If such cb |
| 1776 | * wasn't supplied we respond with default value = 0 |
| 1777 | * Note: function driver should supply such cb only for the |
| 1778 | * first interface of the function |
| 1779 | */ |
Tatyana Brokhman | bdb64d7 | 2011-06-29 16:41:50 +0300 | [diff] [blame] | 1780 | if (!gadget_is_superspeed(gadget)) |
| 1781 | goto unknown; |
| 1782 | if (ctrl->bRequestType != (USB_DIR_IN | USB_RECIP_INTERFACE)) |
| 1783 | goto unknown; |
| 1784 | value = 2; /* This is the length of the get_status reply */ |
| 1785 | put_unaligned_le16(0, req->buf); |
| 1786 | if (!cdev->config || intf >= MAX_CONFIG_INTERFACES) |
| 1787 | break; |
| 1788 | f = cdev->config->interface[intf]; |
| 1789 | if (!f) |
| 1790 | break; |
| 1791 | status = f->get_status ? f->get_status(f) : 0; |
| 1792 | if (status < 0) |
| 1793 | break; |
| 1794 | put_unaligned_le16(status & 0x0000ffff, req->buf); |
| 1795 | break; |
| 1796 | /* |
| 1797 | * Function drivers should handle SetFeature/ClearFeature |
| 1798 | * (FUNCTION_SUSPEND) request. function_suspend cb should be supplied |
| 1799 | * only for the first interface of the function |
| 1800 | */ |
| 1801 | case USB_REQ_CLEAR_FEATURE: |
| 1802 | case USB_REQ_SET_FEATURE: |
| 1803 | if (!gadget_is_superspeed(gadget)) |
| 1804 | goto unknown; |
| 1805 | if (ctrl->bRequestType != (USB_DIR_OUT | USB_RECIP_INTERFACE)) |
| 1806 | goto unknown; |
| 1807 | switch (w_value) { |
| 1808 | case USB_INTRF_FUNC_SUSPEND: |
| 1809 | if (!cdev->config || intf >= MAX_CONFIG_INTERFACES) |
| 1810 | break; |
| 1811 | f = cdev->config->interface[intf]; |
| 1812 | if (!f) |
| 1813 | break; |
| 1814 | value = 0; |
| 1815 | if (f->func_suspend) |
| 1816 | value = f->func_suspend(f, w_index >> 8); |
| 1817 | if (value < 0) { |
| 1818 | ERROR(cdev, |
| 1819 | "func_suspend() returned error %d\n", |
| 1820 | value); |
| 1821 | value = 0; |
| 1822 | } |
| 1823 | break; |
| 1824 | } |
| 1825 | break; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1826 | default: |
| 1827 | unknown: |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1828 | /* |
| 1829 | * OS descriptors handling |
| 1830 | */ |
| 1831 | if (cdev->use_os_string && cdev->os_desc_config && |
Mario Schuknecht | df6738d | 2015-01-26 20:30:27 +0100 | [diff] [blame] | 1832 | (ctrl->bRequestType & USB_TYPE_VENDOR) && |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1833 | ctrl->bRequest == cdev->b_vendor_code) { |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1834 | struct usb_configuration *os_desc_cfg; |
| 1835 | u8 *buf; |
| 1836 | int interface; |
| 1837 | int count = 0; |
| 1838 | |
| 1839 | req = cdev->os_desc_req; |
Felipe Balbi | 5794371 | 2014-09-18 09:54:54 -0500 | [diff] [blame] | 1840 | req->context = cdev; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1841 | req->complete = composite_setup_complete; |
| 1842 | buf = req->buf; |
| 1843 | os_desc_cfg = cdev->os_desc_config; |
Chris Dickens | 5d6ae4f | 2017-12-31 18:59:42 -0800 | [diff] [blame] | 1844 | w_length = min_t(u16, w_length, USB_COMP_EP0_OS_DESC_BUFSIZ); |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1845 | memset(buf, 0, w_length); |
| 1846 | buf[5] = 0x01; |
| 1847 | switch (ctrl->bRequestType & USB_RECIP_MASK) { |
| 1848 | case USB_RECIP_DEVICE: |
| 1849 | if (w_index != 0x4 || (w_value >> 8)) |
| 1850 | break; |
| 1851 | buf[6] = w_index; |
Chris Dickens | 636ba13 | 2017-12-31 18:59:43 -0800 | [diff] [blame] | 1852 | /* Number of ext compat interfaces */ |
| 1853 | count = count_ext_compat(os_desc_cfg); |
| 1854 | buf[8] = count; |
| 1855 | count *= 24; /* 24 B/ext compat desc */ |
| 1856 | count += 16; /* header */ |
| 1857 | put_unaligned_le32(count, buf); |
| 1858 | value = w_length; |
| 1859 | if (w_length > 0x10) { |
Chris Dickens | 5d6ae4f | 2017-12-31 18:59:42 -0800 | [diff] [blame] | 1860 | value = fill_ext_compat(os_desc_cfg, buf); |
| 1861 | value = min_t(u16, w_length, value); |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1862 | } |
| 1863 | break; |
| 1864 | case USB_RECIP_INTERFACE: |
| 1865 | if (w_index != 0x5 || (w_value >> 8)) |
| 1866 | break; |
| 1867 | interface = w_value & 0xFF; |
| 1868 | buf[6] = w_index; |
Chris Dickens | 636ba13 | 2017-12-31 18:59:43 -0800 | [diff] [blame] | 1869 | count = count_ext_prop(os_desc_cfg, |
| 1870 | interface); |
| 1871 | put_unaligned_le16(count, buf + 8); |
| 1872 | count = len_ext_prop(os_desc_cfg, |
| 1873 | interface); |
| 1874 | put_unaligned_le32(count, buf); |
| 1875 | value = w_length; |
| 1876 | if (w_length > 0x0A) { |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1877 | value = fill_ext_prop(os_desc_cfg, |
| 1878 | interface, buf); |
Chris Dickens | 636ba13 | 2017-12-31 18:59:43 -0800 | [diff] [blame] | 1879 | if (value >= 0) |
| 1880 | value = min_t(u16, w_length, value); |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1881 | } |
| 1882 | break; |
| 1883 | } |
William Wu | 7e14f47a | 2016-05-13 18:30:42 +0800 | [diff] [blame] | 1884 | |
Chris Dickens | 636ba13 | 2017-12-31 18:59:43 -0800 | [diff] [blame] | 1885 | goto check_value; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 1886 | } |
| 1887 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1888 | VDBG(cdev, |
| 1889 | "non-core control req%02x.%02x v%04x i%04x l%d\n", |
| 1890 | ctrl->bRequestType, ctrl->bRequest, |
| 1891 | w_value, w_index, w_length); |
| 1892 | |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 1893 | /* functions always handle their interfaces and endpoints... |
| 1894 | * punt other recipients (other, WUSB, ...) to the current |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1895 | * configuration code. |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1896 | */ |
Kishon Vijay Abraham I | b4c21f0 | 2015-06-11 22:12:11 +0530 | [diff] [blame] | 1897 | if (cdev->config) { |
| 1898 | list_for_each_entry(f, &cdev->config->functions, list) |
Felix Hädicke | 1a00b457 | 2016-06-22 01:12:08 +0200 | [diff] [blame] | 1899 | if (f->req_match && |
| 1900 | f->req_match(f, ctrl, false)) |
Kishon Vijay Abraham I | b4c21f0 | 2015-06-11 22:12:11 +0530 | [diff] [blame] | 1901 | goto try_fun_setup; |
Felix Hädicke | 1a00b457 | 2016-06-22 01:12:08 +0200 | [diff] [blame] | 1902 | } else { |
| 1903 | struct usb_configuration *c; |
| 1904 | list_for_each_entry(c, &cdev->configs, list) |
| 1905 | list_for_each_entry(f, &c->functions, list) |
| 1906 | if (f->req_match && |
| 1907 | f->req_match(f, ctrl, true)) |
| 1908 | goto try_fun_setup; |
Kishon Vijay Abraham I | b4c21f0 | 2015-06-11 22:12:11 +0530 | [diff] [blame] | 1909 | } |
Felix Hädicke | 1a00b457 | 2016-06-22 01:12:08 +0200 | [diff] [blame] | 1910 | f = NULL; |
Kishon Vijay Abraham I | b4c21f0 | 2015-06-11 22:12:11 +0530 | [diff] [blame] | 1911 | |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 1912 | switch (ctrl->bRequestType & USB_RECIP_MASK) { |
| 1913 | case USB_RECIP_INTERFACE: |
Jassi Brar | ff085de | 2011-02-06 17:39:17 +0900 | [diff] [blame] | 1914 | if (!cdev->config || intf >= MAX_CONFIG_INTERFACES) |
Maulik Mankad | 3c47eb0 | 2011-01-13 18:19:56 +0530 | [diff] [blame] | 1915 | break; |
| 1916 | f = cdev->config->interface[intf]; |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 1917 | break; |
| 1918 | |
| 1919 | case USB_RECIP_ENDPOINT: |
Peter Chen | c526c62 | 2016-07-01 15:33:28 +0800 | [diff] [blame] | 1920 | if (!cdev->config) |
| 1921 | break; |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 1922 | endp = ((w_index & 0x80) >> 3) | (w_index & 0x0f); |
| 1923 | list_for_each_entry(f, &cdev->config->functions, list) { |
| 1924 | if (test_bit(endp, f->endpoints)) |
| 1925 | break; |
| 1926 | } |
| 1927 | if (&f->list == &cdev->config->functions) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1928 | f = NULL; |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 1929 | break; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1930 | } |
Andrzej Pietrasiewicz | f563d23 | 2015-03-03 10:52:23 +0100 | [diff] [blame] | 1931 | try_fun_setup: |
Laurent Pinchart | 5242658 | 2009-10-21 00:03:38 +0200 | [diff] [blame] | 1932 | if (f && f->setup) |
| 1933 | value = f->setup(f, ctrl); |
| 1934 | else { |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1935 | struct usb_configuration *c; |
| 1936 | |
| 1937 | c = cdev->config; |
Andrzej Pietrasiewicz | a01091e | 2013-11-07 08:41:25 +0100 | [diff] [blame] | 1938 | if (!c) |
| 1939 | goto done; |
| 1940 | |
| 1941 | /* try current config's setup */ |
| 1942 | if (c->setup) { |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1943 | value = c->setup(c, ctrl); |
Andrzej Pietrasiewicz | a01091e | 2013-11-07 08:41:25 +0100 | [diff] [blame] | 1944 | goto done; |
| 1945 | } |
| 1946 | |
| 1947 | /* try the only function in the current config */ |
| 1948 | if (!list_is_singular(&c->functions)) |
| 1949 | goto done; |
| 1950 | f = list_first_entry(&c->functions, struct usb_function, |
| 1951 | list); |
| 1952 | if (f->setup) |
| 1953 | value = f->setup(f, ctrl); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1954 | } |
| 1955 | |
| 1956 | goto done; |
| 1957 | } |
| 1958 | |
Chris Dickens | 636ba13 | 2017-12-31 18:59:43 -0800 | [diff] [blame] | 1959 | check_value: |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1960 | /* respond with data transfer before status phase? */ |
Roger Quadros | 1b9ba00 | 2011-05-09 13:08:06 +0300 | [diff] [blame] | 1961 | if (value >= 0 && value != USB_GADGET_DELAYED_STATUS) { |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1962 | req->length = value; |
Felipe Balbi | 5794371 | 2014-09-18 09:54:54 -0500 | [diff] [blame] | 1963 | req->context = cdev; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1964 | req->zero = value < w_length; |
Felipe Balbi | a7c12ea | 2014-09-18 10:01:55 -0500 | [diff] [blame] | 1965 | value = composite_ep0_queue(cdev, req, GFP_ATOMIC); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1966 | if (value < 0) { |
| 1967 | DBG(cdev, "ep_queue --> %d\n", value); |
| 1968 | req->status = 0; |
| 1969 | composite_setup_complete(gadget->ep0, req); |
| 1970 | } |
Roger Quadros | 1b9ba00 | 2011-05-09 13:08:06 +0300 | [diff] [blame] | 1971 | } else if (value == USB_GADGET_DELAYED_STATUS && w_length != 0) { |
| 1972 | WARN(cdev, |
| 1973 | "%s: Delayed status not supported for w_length != 0", |
| 1974 | __func__); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1975 | } |
| 1976 | |
| 1977 | done: |
| 1978 | /* device either stalls (value < 0) or reports success */ |
| 1979 | return value; |
| 1980 | } |
| 1981 | |
Sebastian Andrzej Siewior | 2d5a889 | 2012-12-23 21:10:21 +0100 | [diff] [blame] | 1982 | void composite_disconnect(struct usb_gadget *gadget) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1983 | { |
| 1984 | struct usb_composite_dev *cdev = get_gadget_data(gadget); |
| 1985 | unsigned long flags; |
| 1986 | |
| 1987 | /* REVISIT: should we have config and device level |
| 1988 | * disconnect callbacks? |
| 1989 | */ |
| 1990 | spin_lock_irqsave(&cdev->lock, flags); |
Benjamin Herrenschmidt | 602fda1 | 2019-07-26 14:59:03 +1000 | [diff] [blame] | 1991 | cdev->suspended = 0; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1992 | if (cdev->config) |
| 1993 | reset_config(cdev); |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 1994 | if (cdev->driver->disconnect) |
| 1995 | cdev->driver->disconnect(cdev); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 1996 | spin_unlock_irqrestore(&cdev->lock, flags); |
| 1997 | } |
| 1998 | |
| 1999 | /*-------------------------------------------------------------------------*/ |
| 2000 | |
Greg Kroah-Hartman | ce26bd2 | 2013-08-23 16:34:43 -0700 | [diff] [blame] | 2001 | static ssize_t suspended_show(struct device *dev, struct device_attribute *attr, |
| 2002 | char *buf) |
Fabien Chouteau | f48cf80 | 2010-04-23 14:21:26 +0200 | [diff] [blame] | 2003 | { |
| 2004 | struct usb_gadget *gadget = dev_to_usb_gadget(dev); |
| 2005 | struct usb_composite_dev *cdev = get_gadget_data(gadget); |
| 2006 | |
| 2007 | return sprintf(buf, "%d\n", cdev->suspended); |
| 2008 | } |
Greg Kroah-Hartman | ce26bd2 | 2013-08-23 16:34:43 -0700 | [diff] [blame] | 2009 | static DEVICE_ATTR_RO(suspended); |
Fabien Chouteau | f48cf80 | 2010-04-23 14:21:26 +0200 | [diff] [blame] | 2010 | |
Sebastian Andrzej Siewior | 779d516 | 2012-12-23 21:09:55 +0100 | [diff] [blame] | 2011 | static void __composite_unbind(struct usb_gadget *gadget, bool unbind_driver) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2012 | { |
| 2013 | struct usb_composite_dev *cdev = get_gadget_data(gadget); |
Andrew Gabbasov | aec17e1 | 2017-09-30 08:55:55 -0700 | [diff] [blame] | 2014 | struct usb_gadget_strings *gstr = cdev->driver->strings[0]; |
| 2015 | struct usb_string *dev_str = gstr->strings; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2016 | |
| 2017 | /* composite_disconnect() must already have been called |
| 2018 | * by the underlying peripheral controller driver! |
| 2019 | * so there's no i/o concurrency that could affect the |
| 2020 | * state protected by cdev->lock. |
| 2021 | */ |
| 2022 | WARN_ON(cdev->config); |
| 2023 | |
| 2024 | while (!list_empty(&cdev->configs)) { |
| 2025 | struct usb_configuration *c; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2026 | c = list_first_entry(&cdev->configs, |
| 2027 | struct usb_configuration, list); |
Benoit Goby | 51cce6f | 2012-05-10 10:07:57 +0200 | [diff] [blame] | 2028 | remove_config(cdev, c); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2029 | } |
Sebastian Andrzej Siewior | 779d516 | 2012-12-23 21:09:55 +0100 | [diff] [blame] | 2030 | if (cdev->driver->unbind && unbind_driver) |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 2031 | cdev->driver->unbind(cdev); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2032 | |
Sebastian Andrzej Siewior | a592334 | 2012-12-23 21:10:20 +0100 | [diff] [blame] | 2033 | composite_dev_cleanup(cdev); |
| 2034 | |
Andrew Gabbasov | aec17e1 | 2017-09-30 08:55:55 -0700 | [diff] [blame] | 2035 | if (dev_str[USB_GADGET_MANUFACTURER_IDX].s == cdev->def_manufacturer) |
| 2036 | dev_str[USB_GADGET_MANUFACTURER_IDX].s = ""; |
| 2037 | |
Sebastian Andrzej Siewior | cc2683c | 2012-09-10 15:01:58 +0200 | [diff] [blame] | 2038 | kfree(cdev->def_manufacturer); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2039 | kfree(cdev); |
| 2040 | set_gadget_data(gadget, NULL); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2041 | } |
| 2042 | |
Sebastian Andrzej Siewior | 779d516 | 2012-12-23 21:09:55 +0100 | [diff] [blame] | 2043 | static void composite_unbind(struct usb_gadget *gadget) |
| 2044 | { |
| 2045 | __composite_unbind(gadget, true); |
| 2046 | } |
| 2047 | |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 2048 | static void update_unchanged_dev_desc(struct usb_device_descriptor *new, |
| 2049 | const struct usb_device_descriptor *old) |
| 2050 | { |
| 2051 | __le16 idVendor; |
| 2052 | __le16 idProduct; |
| 2053 | __le16 bcdDevice; |
Sebastian Andrzej Siewior | 1cf0d26 | 2012-09-10 15:01:54 +0200 | [diff] [blame] | 2054 | u8 iSerialNumber; |
Sebastian Andrzej Siewior | 03de9bf | 2012-09-10 15:01:55 +0200 | [diff] [blame] | 2055 | u8 iManufacturer; |
Sebastian Andrzej Siewior | 2d35ee4 | 2012-09-10 15:01:56 +0200 | [diff] [blame] | 2056 | u8 iProduct; |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 2057 | |
| 2058 | /* |
| 2059 | * these variables may have been set in |
| 2060 | * usb_composite_overwrite_options() |
| 2061 | */ |
| 2062 | idVendor = new->idVendor; |
| 2063 | idProduct = new->idProduct; |
| 2064 | bcdDevice = new->bcdDevice; |
Sebastian Andrzej Siewior | 1cf0d26 | 2012-09-10 15:01:54 +0200 | [diff] [blame] | 2065 | iSerialNumber = new->iSerialNumber; |
Sebastian Andrzej Siewior | 03de9bf | 2012-09-10 15:01:55 +0200 | [diff] [blame] | 2066 | iManufacturer = new->iManufacturer; |
Sebastian Andrzej Siewior | 2d35ee4 | 2012-09-10 15:01:56 +0200 | [diff] [blame] | 2067 | iProduct = new->iProduct; |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 2068 | |
| 2069 | *new = *old; |
| 2070 | if (idVendor) |
| 2071 | new->idVendor = idVendor; |
| 2072 | if (idProduct) |
| 2073 | new->idProduct = idProduct; |
| 2074 | if (bcdDevice) |
| 2075 | new->bcdDevice = bcdDevice; |
Sebastian Andrzej Siewior | ed9cbda | 2012-09-10 09:16:07 +0200 | [diff] [blame] | 2076 | else |
| 2077 | new->bcdDevice = cpu_to_le16(get_default_bcdDevice()); |
Sebastian Andrzej Siewior | 1cf0d26 | 2012-09-10 15:01:54 +0200 | [diff] [blame] | 2078 | if (iSerialNumber) |
| 2079 | new->iSerialNumber = iSerialNumber; |
Sebastian Andrzej Siewior | 03de9bf | 2012-09-10 15:01:55 +0200 | [diff] [blame] | 2080 | if (iManufacturer) |
| 2081 | new->iManufacturer = iManufacturer; |
Sebastian Andrzej Siewior | 2d35ee4 | 2012-09-10 15:01:56 +0200 | [diff] [blame] | 2082 | if (iProduct) |
| 2083 | new->iProduct = iProduct; |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 2084 | } |
| 2085 | |
Sebastian Andrzej Siewior | a592334 | 2012-12-23 21:10:20 +0100 | [diff] [blame] | 2086 | int composite_dev_prepare(struct usb_composite_driver *composite, |
| 2087 | struct usb_composite_dev *cdev) |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 2088 | { |
Sebastian Andrzej Siewior | a592334 | 2012-12-23 21:10:20 +0100 | [diff] [blame] | 2089 | struct usb_gadget *gadget = cdev->gadget; |
| 2090 | int ret = -ENOMEM; |
| 2091 | |
| 2092 | /* preallocate control response and buffer */ |
| 2093 | cdev->req = usb_ep_alloc_request(gadget->ep0, GFP_KERNEL); |
| 2094 | if (!cdev->req) |
| 2095 | return -ENOMEM; |
| 2096 | |
| 2097 | cdev->req->buf = kmalloc(USB_COMP_EP0_BUFSIZ, GFP_KERNEL); |
| 2098 | if (!cdev->req->buf) |
| 2099 | goto fail; |
| 2100 | |
| 2101 | ret = device_create_file(&gadget->dev, &dev_attr_suspended); |
| 2102 | if (ret) |
| 2103 | goto fail_dev; |
| 2104 | |
| 2105 | cdev->req->complete = composite_setup_complete; |
Felipe Balbi | 5794371 | 2014-09-18 09:54:54 -0500 | [diff] [blame] | 2106 | cdev->req->context = cdev; |
Sebastian Andrzej Siewior | a592334 | 2012-12-23 21:10:20 +0100 | [diff] [blame] | 2107 | gadget->ep0->driver_data = cdev; |
| 2108 | |
| 2109 | cdev->driver = composite; |
| 2110 | |
| 2111 | /* |
| 2112 | * As per USB compliance update, a device that is actively drawing |
| 2113 | * more than 100mA from USB must report itself as bus-powered in |
| 2114 | * the GetStatus(DEVICE) call. |
| 2115 | */ |
| 2116 | if (CONFIG_USB_GADGET_VBUS_DRAW <= USB_SELF_POWER_VBUS_MAX_DRAW) |
| 2117 | usb_gadget_set_selfpowered(gadget); |
| 2118 | |
| 2119 | /* interface and string IDs start at zero via kzalloc. |
| 2120 | * we force endpoints to start unassigned; few controller |
| 2121 | * drivers will zero ep->driver_data. |
| 2122 | */ |
| 2123 | usb_ep_autoconfig_reset(gadget); |
| 2124 | return 0; |
| 2125 | fail_dev: |
| 2126 | kfree(cdev->req->buf); |
| 2127 | fail: |
| 2128 | usb_ep_free_request(gadget->ep0, cdev->req); |
| 2129 | cdev->req = NULL; |
| 2130 | return ret; |
| 2131 | } |
| 2132 | |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 2133 | int composite_os_desc_req_prepare(struct usb_composite_dev *cdev, |
| 2134 | struct usb_ep *ep0) |
| 2135 | { |
| 2136 | int ret = 0; |
| 2137 | |
| 2138 | cdev->os_desc_req = usb_ep_alloc_request(ep0, GFP_KERNEL); |
| 2139 | if (!cdev->os_desc_req) { |
Christophe JAILLET | 3887db5 | 2016-07-16 08:34:33 +0200 | [diff] [blame] | 2140 | ret = -ENOMEM; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 2141 | goto end; |
| 2142 | } |
| 2143 | |
Chris Dickens | 5d6ae4f | 2017-12-31 18:59:42 -0800 | [diff] [blame] | 2144 | cdev->os_desc_req->buf = kmalloc(USB_COMP_EP0_OS_DESC_BUFSIZ, |
| 2145 | GFP_KERNEL); |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 2146 | if (!cdev->os_desc_req->buf) { |
Christophe JAILLET | 3887db5 | 2016-07-16 08:34:33 +0200 | [diff] [blame] | 2147 | ret = -ENOMEM; |
Christophe JAILLET | 990758c | 2017-01-04 06:30:16 +0100 | [diff] [blame] | 2148 | usb_ep_free_request(ep0, cdev->os_desc_req); |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 2149 | goto end; |
| 2150 | } |
Felipe Balbi | 5794371 | 2014-09-18 09:54:54 -0500 | [diff] [blame] | 2151 | cdev->os_desc_req->context = cdev; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 2152 | cdev->os_desc_req->complete = composite_setup_complete; |
| 2153 | end: |
| 2154 | return ret; |
| 2155 | } |
| 2156 | |
Sebastian Andrzej Siewior | a592334 | 2012-12-23 21:10:20 +0100 | [diff] [blame] | 2157 | void composite_dev_cleanup(struct usb_composite_dev *cdev) |
| 2158 | { |
Sebastian Andrzej Siewior | 27a46633 | 2012-12-23 21:10:23 +0100 | [diff] [blame] | 2159 | struct usb_gadget_string_container *uc, *tmp; |
Benjamin Herrenschmidt | aaeab02 | 2018-03-23 13:44:06 +1100 | [diff] [blame] | 2160 | struct usb_ep *ep, *tmp_ep; |
Sebastian Andrzej Siewior | 27a46633 | 2012-12-23 21:10:23 +0100 | [diff] [blame] | 2161 | |
| 2162 | list_for_each_entry_safe(uc, tmp, &cdev->gstrings, list) { |
| 2163 | list_del(&uc->list); |
| 2164 | kfree(uc); |
| 2165 | } |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 2166 | if (cdev->os_desc_req) { |
Felipe Balbi | a7c12ea | 2014-09-18 10:01:55 -0500 | [diff] [blame] | 2167 | if (cdev->os_desc_pending) |
| 2168 | usb_ep_dequeue(cdev->gadget->ep0, cdev->os_desc_req); |
| 2169 | |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 2170 | kfree(cdev->os_desc_req->buf); |
Chandana Kishori Chiluveru | 1c20c89 | 2019-10-01 13:16:48 +0530 | [diff] [blame] | 2171 | cdev->os_desc_req->buf = NULL; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 2172 | usb_ep_free_request(cdev->gadget->ep0, cdev->os_desc_req); |
Chandana Kishori Chiluveru | 1c20c89 | 2019-10-01 13:16:48 +0530 | [diff] [blame] | 2173 | cdev->os_desc_req = NULL; |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 2174 | } |
Sebastian Andrzej Siewior | a592334 | 2012-12-23 21:10:20 +0100 | [diff] [blame] | 2175 | if (cdev->req) { |
Felipe Balbi | a7c12ea | 2014-09-18 10:01:55 -0500 | [diff] [blame] | 2176 | if (cdev->setup_pending) |
| 2177 | usb_ep_dequeue(cdev->gadget->ep0, cdev->req); |
| 2178 | |
Li Jun | be0a888 | 2014-08-28 21:44:11 +0800 | [diff] [blame] | 2179 | kfree(cdev->req->buf); |
Chandana Kishori Chiluveru | 1c20c89 | 2019-10-01 13:16:48 +0530 | [diff] [blame] | 2180 | cdev->req->buf = NULL; |
Sebastian Andrzej Siewior | a592334 | 2012-12-23 21:10:20 +0100 | [diff] [blame] | 2181 | usb_ep_free_request(cdev->gadget->ep0, cdev->req); |
Chandana Kishori Chiluveru | 1c20c89 | 2019-10-01 13:16:48 +0530 | [diff] [blame] | 2182 | cdev->req = NULL; |
Sebastian Andrzej Siewior | a592334 | 2012-12-23 21:10:20 +0100 | [diff] [blame] | 2183 | } |
Sebastian Andrzej Siewior | 88af8bb | 2012-12-23 21:10:24 +0100 | [diff] [blame] | 2184 | cdev->next_string_id = 0; |
Sebastian Andrzej Siewior | a592334 | 2012-12-23 21:10:20 +0100 | [diff] [blame] | 2185 | device_remove_file(&cdev->gadget->dev, &dev_attr_suspended); |
Benjamin Herrenschmidt | aaeab02 | 2018-03-23 13:44:06 +1100 | [diff] [blame] | 2186 | |
| 2187 | /* |
| 2188 | * Some UDC backends have a dynamic EP allocation scheme. |
| 2189 | * |
| 2190 | * In that case, the dispose() callback is used to notify the |
| 2191 | * backend that the EPs are no longer in use. |
| 2192 | * |
| 2193 | * Note: The UDC backend can remove the EP from the ep_list as |
| 2194 | * a result, so we need to use the _safe list iterator. |
| 2195 | */ |
| 2196 | list_for_each_entry_safe(ep, tmp_ep, |
| 2197 | &cdev->gadget->ep_list, ep_list) { |
| 2198 | if (ep->ops->dispose) |
| 2199 | ep->ops->dispose(ep); |
| 2200 | } |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 2201 | } |
| 2202 | |
| 2203 | static int composite_bind(struct usb_gadget *gadget, |
| 2204 | struct usb_gadget_driver *gdriver) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2205 | { |
| 2206 | struct usb_composite_dev *cdev; |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 2207 | struct usb_composite_driver *composite = to_cdriver(gdriver); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2208 | int status = -ENOMEM; |
| 2209 | |
| 2210 | cdev = kzalloc(sizeof *cdev, GFP_KERNEL); |
| 2211 | if (!cdev) |
| 2212 | return status; |
| 2213 | |
| 2214 | spin_lock_init(&cdev->lock); |
| 2215 | cdev->gadget = gadget; |
| 2216 | set_gadget_data(gadget, cdev); |
| 2217 | INIT_LIST_HEAD(&cdev->configs); |
Sebastian Andrzej Siewior | 9bb2859 | 2012-12-23 21:10:22 +0100 | [diff] [blame] | 2218 | INIT_LIST_HEAD(&cdev->gstrings); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2219 | |
Sebastian Andrzej Siewior | a592334 | 2012-12-23 21:10:20 +0100 | [diff] [blame] | 2220 | status = composite_dev_prepare(composite, cdev); |
| 2221 | if (status) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2222 | goto fail; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2223 | |
| 2224 | /* composite gadget needs to assign strings for whole device (like |
| 2225 | * serial number), register function drivers, potentially update |
| 2226 | * power state and consumption, etc |
| 2227 | */ |
Sebastian Andrzej Siewior | fac3a43 | 2012-09-06 20:11:01 +0200 | [diff] [blame] | 2228 | status = composite->bind(cdev); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2229 | if (status < 0) |
| 2230 | goto fail; |
| 2231 | |
Andrzej Pietrasiewicz | 37a3a53 | 2014-05-08 14:06:23 +0200 | [diff] [blame] | 2232 | if (cdev->use_os_string) { |
| 2233 | status = composite_os_desc_req_prepare(cdev, gadget->ep0); |
| 2234 | if (status) |
| 2235 | goto fail; |
| 2236 | } |
| 2237 | |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 2238 | update_unchanged_dev_desc(&cdev->desc, composite->dev); |
Greg Kroah-Hartman | dbb442b | 2010-12-16 15:52:30 -0800 | [diff] [blame] | 2239 | |
Michal Nazarewicz | ad1a810 | 2010-08-12 17:43:46 +0200 | [diff] [blame] | 2240 | /* has userspace failed to provide a serial number? */ |
| 2241 | if (composite->needs_serial && !cdev->desc.iSerialNumber) |
| 2242 | WARNING(cdev, "userspace failed to provide iSerialNumber\n"); |
| 2243 | |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2244 | INFO(cdev, "%s ready\n", composite->name); |
| 2245 | return 0; |
| 2246 | |
| 2247 | fail: |
Sebastian Andrzej Siewior | 779d516 | 2012-12-23 21:09:55 +0100 | [diff] [blame] | 2248 | __composite_unbind(gadget, false); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2249 | return status; |
| 2250 | } |
| 2251 | |
| 2252 | /*-------------------------------------------------------------------------*/ |
| 2253 | |
Andrzej Pietrasiewicz | 3a57187 | 2014-10-08 12:03:36 +0200 | [diff] [blame] | 2254 | void composite_suspend(struct usb_gadget *gadget) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2255 | { |
| 2256 | struct usb_composite_dev *cdev = get_gadget_data(gadget); |
| 2257 | struct usb_function *f; |
| 2258 | |
David Brownell | 8942939 | 2009-03-19 14:14:17 -0700 | [diff] [blame] | 2259 | /* REVISIT: should we have config level |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2260 | * suspend/resume callbacks? |
| 2261 | */ |
| 2262 | DBG(cdev, "suspend\n"); |
| 2263 | if (cdev->config) { |
| 2264 | list_for_each_entry(f, &cdev->config->functions, list) { |
| 2265 | if (f->suspend) |
| 2266 | f->suspend(f); |
| 2267 | } |
| 2268 | } |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 2269 | if (cdev->driver->suspend) |
| 2270 | cdev->driver->suspend(cdev); |
Fabien Chouteau | f48cf80 | 2010-04-23 14:21:26 +0200 | [diff] [blame] | 2271 | |
| 2272 | cdev->suspended = 1; |
Hao Wu | b23f2f9 | 2010-11-29 15:17:03 +0800 | [diff] [blame] | 2273 | |
| 2274 | usb_gadget_vbus_draw(gadget, 2); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2275 | } |
| 2276 | |
Andrzej Pietrasiewicz | 3a57187 | 2014-10-08 12:03:36 +0200 | [diff] [blame] | 2277 | void composite_resume(struct usb_gadget *gadget) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2278 | { |
| 2279 | struct usb_composite_dev *cdev = get_gadget_data(gadget); |
| 2280 | struct usb_function *f; |
Du, ChangbinX | 56b1b90 | 2013-12-17 11:47:42 +0000 | [diff] [blame] | 2281 | u16 maxpower; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2282 | |
David Brownell | 8942939 | 2009-03-19 14:14:17 -0700 | [diff] [blame] | 2283 | /* REVISIT: should we have config level |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2284 | * suspend/resume callbacks? |
| 2285 | */ |
| 2286 | DBG(cdev, "resume\n"); |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 2287 | if (cdev->driver->resume) |
| 2288 | cdev->driver->resume(cdev); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2289 | if (cdev->config) { |
| 2290 | list_for_each_entry(f, &cdev->config->functions, list) { |
| 2291 | if (f->resume) |
| 2292 | f->resume(f); |
| 2293 | } |
Hao Wu | b23f2f9 | 2010-11-29 15:17:03 +0800 | [diff] [blame] | 2294 | |
Sebastian Andrzej Siewior | 8f900a9 | 2012-12-03 20:07:05 +0100 | [diff] [blame] | 2295 | maxpower = cdev->config->MaxPower; |
Hao Wu | b23f2f9 | 2010-11-29 15:17:03 +0800 | [diff] [blame] | 2296 | |
| 2297 | usb_gadget_vbus_draw(gadget, maxpower ? |
Sebastian Andrzej Siewior | 8f900a9 | 2012-12-03 20:07:05 +0100 | [diff] [blame] | 2298 | maxpower : CONFIG_USB_GADGET_VBUS_DRAW); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2299 | } |
Fabien Chouteau | f48cf80 | 2010-04-23 14:21:26 +0200 | [diff] [blame] | 2300 | |
| 2301 | cdev->suspended = 0; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2302 | } |
| 2303 | |
| 2304 | /*-------------------------------------------------------------------------*/ |
| 2305 | |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 2306 | static const struct usb_gadget_driver composite_driver_template = { |
Sebastian Andrzej Siewior | 9395295 | 2012-09-06 20:11:05 +0200 | [diff] [blame] | 2307 | .bind = composite_bind, |
Michal Nazarewicz | 915c8be | 2009-11-09 14:15:25 +0100 | [diff] [blame] | 2308 | .unbind = composite_unbind, |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2309 | |
| 2310 | .setup = composite_setup, |
Peter Chen | d8a816f | 2014-09-09 08:56:49 +0800 | [diff] [blame] | 2311 | .reset = composite_disconnect, |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2312 | .disconnect = composite_disconnect, |
| 2313 | |
| 2314 | .suspend = composite_suspend, |
| 2315 | .resume = composite_resume, |
| 2316 | |
| 2317 | .driver = { |
| 2318 | .owner = THIS_MODULE, |
| 2319 | }, |
| 2320 | }; |
| 2321 | |
| 2322 | /** |
Michal Nazarewicz | 07a18bd | 2010-08-12 17:43:54 +0200 | [diff] [blame] | 2323 | * usb_composite_probe() - register a composite driver |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2324 | * @driver: the driver to register |
Nishanth Menon | 43febb2 | 2013-03-04 16:52:38 -0600 | [diff] [blame] | 2325 | * |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2326 | * Context: single threaded during gadget setup |
| 2327 | * |
| 2328 | * This function is used to register drivers using the composite driver |
| 2329 | * framework. The return value is zero, or a negative errno value. |
| 2330 | * Those values normally come from the driver's @bind method, which does |
| 2331 | * all the work of setting up the driver to match the hardware. |
| 2332 | * |
| 2333 | * On successful return, the gadget is ready to respond to requests from |
| 2334 | * the host, unless one of its components invokes usb_gadget_disconnect() |
| 2335 | * while it was binding. That would usually be done in order to wait for |
| 2336 | * some userspace participation. |
| 2337 | */ |
Sebastian Andrzej Siewior | 03e42bd | 2012-09-06 20:11:04 +0200 | [diff] [blame] | 2338 | int usb_composite_probe(struct usb_composite_driver *driver) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2339 | { |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 2340 | struct usb_gadget_driver *gadget_driver; |
| 2341 | |
| 2342 | if (!driver || !driver->dev || !driver->bind) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2343 | return -EINVAL; |
| 2344 | |
| 2345 | if (!driver->name) |
| 2346 | driver->name = "composite"; |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2347 | |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 2348 | driver->gadget_driver = composite_driver_template; |
| 2349 | gadget_driver = &driver->gadget_driver; |
| 2350 | |
| 2351 | gadget_driver->function = (char *) driver->name; |
| 2352 | gadget_driver->driver.name = driver->name; |
| 2353 | gadget_driver->max_speed = driver->max_speed; |
| 2354 | |
| 2355 | return usb_gadget_probe_driver(gadget_driver); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2356 | } |
Sebastian Andrzej Siewior | 721e2e9 | 2012-09-06 20:11:27 +0200 | [diff] [blame] | 2357 | EXPORT_SYMBOL_GPL(usb_composite_probe); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2358 | |
| 2359 | /** |
| 2360 | * usb_composite_unregister() - unregister a composite driver |
| 2361 | * @driver: the driver to unregister |
| 2362 | * |
| 2363 | * This function is used to unregister drivers using the composite |
| 2364 | * driver framework. |
| 2365 | */ |
Michal Nazarewicz | 28824b1 | 2010-05-05 12:53:13 +0200 | [diff] [blame] | 2366 | void usb_composite_unregister(struct usb_composite_driver *driver) |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2367 | { |
Sebastian Andrzej Siewior | ffe0b33 | 2012-09-07 09:53:17 +0200 | [diff] [blame] | 2368 | usb_gadget_unregister_driver(&driver->gadget_driver); |
David Brownell | 40982be | 2008-06-19 17:52:58 -0700 | [diff] [blame] | 2369 | } |
Sebastian Andrzej Siewior | 721e2e9 | 2012-09-06 20:11:27 +0200 | [diff] [blame] | 2370 | EXPORT_SYMBOL_GPL(usb_composite_unregister); |
Roger Quadros | 1b9ba00 | 2011-05-09 13:08:06 +0300 | [diff] [blame] | 2371 | |
| 2372 | /** |
| 2373 | * usb_composite_setup_continue() - Continue with the control transfer |
| 2374 | * @cdev: the composite device who's control transfer was kept waiting |
| 2375 | * |
| 2376 | * This function must be called by the USB function driver to continue |
| 2377 | * with the control transfer's data/status stage in case it had requested to |
| 2378 | * delay the data/status stages. A USB function's setup handler (e.g. set_alt()) |
| 2379 | * can request the composite framework to delay the setup request's data/status |
| 2380 | * stages by returning USB_GADGET_DELAYED_STATUS. |
| 2381 | */ |
| 2382 | void usb_composite_setup_continue(struct usb_composite_dev *cdev) |
| 2383 | { |
| 2384 | int value; |
| 2385 | struct usb_request *req = cdev->req; |
| 2386 | unsigned long flags; |
| 2387 | |
| 2388 | DBG(cdev, "%s\n", __func__); |
| 2389 | spin_lock_irqsave(&cdev->lock, flags); |
| 2390 | |
| 2391 | if (cdev->delayed_status == 0) { |
| 2392 | WARN(cdev, "%s: Unexpected call\n", __func__); |
| 2393 | |
| 2394 | } else if (--cdev->delayed_status == 0) { |
| 2395 | DBG(cdev, "%s: Completing delayed status\n", __func__); |
| 2396 | req->length = 0; |
Felipe Balbi | 5794371 | 2014-09-18 09:54:54 -0500 | [diff] [blame] | 2397 | req->context = cdev; |
Felipe Balbi | a7c12ea | 2014-09-18 10:01:55 -0500 | [diff] [blame] | 2398 | value = composite_ep0_queue(cdev, req, GFP_ATOMIC); |
Roger Quadros | 1b9ba00 | 2011-05-09 13:08:06 +0300 | [diff] [blame] | 2399 | if (value < 0) { |
| 2400 | DBG(cdev, "ep_queue --> %d\n", value); |
| 2401 | req->status = 0; |
| 2402 | composite_setup_complete(cdev->gadget->ep0, req); |
| 2403 | } |
| 2404 | } |
| 2405 | |
| 2406 | spin_unlock_irqrestore(&cdev->lock, flags); |
| 2407 | } |
Sebastian Andrzej Siewior | 721e2e9 | 2012-09-06 20:11:27 +0200 | [diff] [blame] | 2408 | EXPORT_SYMBOL_GPL(usb_composite_setup_continue); |
Roger Quadros | 1b9ba00 | 2011-05-09 13:08:06 +0300 | [diff] [blame] | 2409 | |
Sebastian Andrzej Siewior | cc2683c | 2012-09-10 15:01:58 +0200 | [diff] [blame] | 2410 | static char *composite_default_mfr(struct usb_gadget *gadget) |
| 2411 | { |
Juergen Gross | 5002c93 | 2016-10-10 12:48:36 +0200 | [diff] [blame] | 2412 | return kasprintf(GFP_KERNEL, "%s %s with %s", init_utsname()->sysname, |
| 2413 | init_utsname()->release, gadget->name); |
Sebastian Andrzej Siewior | cc2683c | 2012-09-10 15:01:58 +0200 | [diff] [blame] | 2414 | } |
| 2415 | |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 2416 | void usb_composite_overwrite_options(struct usb_composite_dev *cdev, |
| 2417 | struct usb_composite_overwrite *covr) |
| 2418 | { |
| 2419 | struct usb_device_descriptor *desc = &cdev->desc; |
Sebastian Andrzej Siewior | 1cf0d26 | 2012-09-10 15:01:54 +0200 | [diff] [blame] | 2420 | struct usb_gadget_strings *gstr = cdev->driver->strings[0]; |
| 2421 | struct usb_string *dev_str = gstr->strings; |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 2422 | |
| 2423 | if (covr->idVendor) |
| 2424 | desc->idVendor = cpu_to_le16(covr->idVendor); |
| 2425 | |
| 2426 | if (covr->idProduct) |
| 2427 | desc->idProduct = cpu_to_le16(covr->idProduct); |
| 2428 | |
| 2429 | if (covr->bcdDevice) |
| 2430 | desc->bcdDevice = cpu_to_le16(covr->bcdDevice); |
Sebastian Andrzej Siewior | 1cf0d26 | 2012-09-10 15:01:54 +0200 | [diff] [blame] | 2431 | |
| 2432 | if (covr->serial_number) { |
| 2433 | desc->iSerialNumber = dev_str[USB_GADGET_SERIAL_IDX].id; |
| 2434 | dev_str[USB_GADGET_SERIAL_IDX].s = covr->serial_number; |
| 2435 | } |
Sebastian Andrzej Siewior | 03de9bf | 2012-09-10 15:01:55 +0200 | [diff] [blame] | 2436 | if (covr->manufacturer) { |
| 2437 | desc->iManufacturer = dev_str[USB_GADGET_MANUFACTURER_IDX].id; |
| 2438 | dev_str[USB_GADGET_MANUFACTURER_IDX].s = covr->manufacturer; |
Sebastian Andrzej Siewior | cc2683c | 2012-09-10 15:01:58 +0200 | [diff] [blame] | 2439 | |
| 2440 | } else if (!strlen(dev_str[USB_GADGET_MANUFACTURER_IDX].s)) { |
| 2441 | desc->iManufacturer = dev_str[USB_GADGET_MANUFACTURER_IDX].id; |
| 2442 | cdev->def_manufacturer = composite_default_mfr(cdev->gadget); |
| 2443 | dev_str[USB_GADGET_MANUFACTURER_IDX].s = cdev->def_manufacturer; |
Sebastian Andrzej Siewior | 03de9bf | 2012-09-10 15:01:55 +0200 | [diff] [blame] | 2444 | } |
Sebastian Andrzej Siewior | 2d35ee4 | 2012-09-10 15:01:56 +0200 | [diff] [blame] | 2445 | |
| 2446 | if (covr->product) { |
| 2447 | desc->iProduct = dev_str[USB_GADGET_PRODUCT_IDX].id; |
| 2448 | dev_str[USB_GADGET_PRODUCT_IDX].s = covr->product; |
| 2449 | } |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 2450 | } |
Sebastian Andrzej Siewior | 721e2e9 | 2012-09-06 20:11:27 +0200 | [diff] [blame] | 2451 | EXPORT_SYMBOL_GPL(usb_composite_overwrite_options); |
Sebastian Andrzej Siewior | d80c304 | 2012-09-06 20:11:28 +0200 | [diff] [blame] | 2452 | |
| 2453 | MODULE_LICENSE("GPL"); |
| 2454 | MODULE_AUTHOR("David Brownell"); |