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