blob: cd303a3ea6802dfdab9466bb198c492770846e36 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0+
David Brownell40982be2008-06-19 17:52:58 -07002/*
3 * composite.c - infrastructure for Composite USB Gadgets
4 *
5 * Copyright (C) 2006-2008 David Brownell
David Brownell40982be2008-06-19 17:52:58 -07006 */
7
8/* #define VERBOSE_DEBUG */
9
10#include <linux/kallsyms.h>
11#include <linux/kernel.h>
12#include <linux/slab.h>
Paul Gortmaker6eb0de82011-07-03 16:09:31 -040013#include <linux/module.h>
David Brownell40982be2008-06-19 17:52:58 -070014#include <linux/device.h>
Michal Nazarewiczad1a8102010-08-12 17:43:46 +020015#include <linux/utsname.h>
David Brownell40982be2008-06-19 17:52:58 -070016
17#include <linux/usb/composite.h>
Macpaul Lin53e62422015-07-09 15:18:42 +080018#include <linux/usb/otg.h>
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +030019#include <asm/unaligned.h>
David Brownell40982be2008-06-19 17:52:58 -070020
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +020021#include "u_os_desc.h"
22
Andrzej Pietrasiewicz19824d52014-05-08 14:06:22 +020023/**
24 * struct usb_os_string - represents OS String to be reported by a gadget
25 * @bLength: total length of the entire descritor, always 0x12
26 * @bDescriptorType: USB_DT_STRING
27 * @qwSignature: the OS String proper
28 * @bMS_VendorCode: code used by the host for subsequent requests
29 * @bPad: not used, must be zero
30 */
31struct usb_os_string {
32 __u8 bLength;
33 __u8 bDescriptorType;
34 __u8 qwSignature[OS_STRING_QW_SIGN_LEN];
35 __u8 bMS_VendorCode;
36 __u8 bPad;
37} __packed;
38
David Brownell40982be2008-06-19 17:52:58 -070039/*
40 * The code in this file is utility code, used to build a gadget driver
41 * from one or more "function" drivers, one or more "configuration"
42 * objects, and a "usb_composite_driver" by gluing them together along
43 * with the relevant device-wide data.
44 */
45
Sebastian Andrzej Siewior9bb28592012-12-23 21:10:22 +010046static struct usb_gadget_strings **get_containers_gs(
47 struct usb_gadget_string_container *uc)
48{
49 return (struct usb_gadget_strings **)uc->stash;
50}
51
Tatyana Brokhman48767a42011-06-28 16:33:49 +030052/**
John Younf3bdbe32016-02-05 17:07:03 -080053 * function_descriptors() - get function descriptors for speed
54 * @f: the function
55 * @speed: the speed
56 *
57 * Returns the descriptors or NULL if not set.
58 */
59static struct usb_descriptor_header **
60function_descriptors(struct usb_function *f,
61 enum usb_device_speed speed)
62{
63 struct usb_descriptor_header **descriptors;
64
Felipe Balbi08782632016-04-22 14:53:47 +030065 /*
66 * NOTE: we try to help gadget drivers which might not be setting
67 * max_speed appropriately.
68 */
69
John Younf3bdbe32016-02-05 17:07:03 -080070 switch (speed) {
71 case USB_SPEED_SUPER_PLUS:
72 descriptors = f->ssp_descriptors;
Felipe Balbi08782632016-04-22 14:53:47 +030073 if (descriptors)
74 break;
75 /* FALLTHROUGH */
John Younf3bdbe32016-02-05 17:07:03 -080076 case USB_SPEED_SUPER:
77 descriptors = f->ss_descriptors;
Felipe Balbi08782632016-04-22 14:53:47 +030078 if (descriptors)
79 break;
80 /* FALLTHROUGH */
John Younf3bdbe32016-02-05 17:07:03 -080081 case USB_SPEED_HIGH:
82 descriptors = f->hs_descriptors;
Felipe Balbi08782632016-04-22 14:53:47 +030083 if (descriptors)
84 break;
85 /* FALLTHROUGH */
John Younf3bdbe32016-02-05 17:07:03 -080086 default:
87 descriptors = f->fs_descriptors;
88 }
89
Felipe Balbi08782632016-04-22 14:53:47 +030090 /*
91 * if we can't find any descriptors at all, then this gadget deserves to
92 * Oops with a NULL pointer dereference
93 */
94
John Younf3bdbe32016-02-05 17:07:03 -080095 return descriptors;
96}
97
98/**
Tatyana Brokhman48767a42011-06-28 16:33:49 +030099 * next_ep_desc() - advance to the next EP descriptor
100 * @t: currect pointer within descriptor array
101 *
102 * Return: next EP descriptor or NULL
103 *
104 * Iterate over @t until either EP descriptor found or
105 * NULL (that indicates end of list) encountered
106 */
107static struct usb_descriptor_header**
108next_ep_desc(struct usb_descriptor_header **t)
109{
110 for (; *t; t++) {
111 if ((*t)->bDescriptorType == USB_DT_ENDPOINT)
112 return t;
113 }
114 return NULL;
115}
116
117/*
118 * for_each_ep_desc()- iterate over endpoint descriptors in the
119 * descriptors list
120 * @start: pointer within descriptor array.
121 * @ep_desc: endpoint descriptor to use as the loop cursor
122 */
123#define for_each_ep_desc(start, ep_desc) \
124 for (ep_desc = next_ep_desc(start); \
125 ep_desc; ep_desc = next_ep_desc(ep_desc+1))
126
127/**
128 * config_ep_by_speed() - configures the given endpoint
129 * according to gadget speed.
130 * @g: pointer to the gadget
131 * @f: usb function
132 * @_ep: the endpoint to configure
133 *
134 * Return: error code, 0 on success
135 *
136 * This function chooses the right descriptors for a given
137 * endpoint according to gadget speed and saves it in the
138 * endpoint desc field. If the endpoint already has a descriptor
139 * assigned to it - overwrites it with currently corresponding
140 * descriptor. The endpoint maxpacket field is updated according
141 * to the chosen descriptor.
142 * Note: the supplied function should hold all the descriptors
143 * for supported speeds
144 */
145int config_ep_by_speed(struct usb_gadget *g,
146 struct usb_function *f,
147 struct usb_ep *_ep)
148{
149 struct usb_endpoint_descriptor *chosen_desc = NULL;
150 struct usb_descriptor_header **speed_desc = NULL;
151
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300152 struct usb_ss_ep_comp_descriptor *comp_desc = NULL;
153 int want_comp_desc = 0;
154
Tatyana Brokhman48767a42011-06-28 16:33:49 +0300155 struct usb_descriptor_header **d_spd; /* cursor for speed desc */
156
157 if (!g || !f || !_ep)
158 return -EIO;
159
160 /* select desired speed */
161 switch (g->speed) {
John Youn4eb8e32d2016-02-05 17:07:30 -0800162 case USB_SPEED_SUPER_PLUS:
163 if (gadget_is_superspeed_plus(g)) {
164 speed_desc = f->ssp_descriptors;
165 want_comp_desc = 1;
166 break;
167 }
Gustavo A. R. Silva624916a2017-10-25 12:22:50 -0500168 /* fall through */
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300169 case USB_SPEED_SUPER:
170 if (gadget_is_superspeed(g)) {
171 speed_desc = f->ss_descriptors;
172 want_comp_desc = 1;
173 break;
174 }
Gustavo A. R. Silva624916a2017-10-25 12:22:50 -0500175 /* fall through */
Tatyana Brokhman48767a42011-06-28 16:33:49 +0300176 case USB_SPEED_HIGH:
177 if (gadget_is_dualspeed(g)) {
178 speed_desc = f->hs_descriptors;
179 break;
180 }
Gustavo A. R. Silva624916a2017-10-25 12:22:50 -0500181 /* fall through */
Tatyana Brokhman48767a42011-06-28 16:33:49 +0300182 default:
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +0200183 speed_desc = f->fs_descriptors;
Tatyana Brokhman48767a42011-06-28 16:33:49 +0300184 }
185 /* find descriptors */
186 for_each_ep_desc(speed_desc, d_spd) {
187 chosen_desc = (struct usb_endpoint_descriptor *)*d_spd;
188 if (chosen_desc->bEndpointAddress == _ep->address)
189 goto ep_found;
190 }
191 return -EIO;
192
193ep_found:
194 /* commit results */
Felipe Balbi9ad58772016-09-28 14:17:38 +0300195 _ep->maxpacket = usb_endpoint_maxp(chosen_desc);
Tatyana Brokhman48767a42011-06-28 16:33:49 +0300196 _ep->desc = chosen_desc;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300197 _ep->comp_desc = NULL;
198 _ep->maxburst = 0;
Felipe Balbieaa496f2016-09-28 12:33:31 +0300199 _ep->mult = 1;
200
201 if (g->speed == USB_SPEED_HIGH && (usb_endpoint_xfer_isoc(_ep->desc) ||
202 usb_endpoint_xfer_int(_ep->desc)))
203 _ep->mult = usb_endpoint_maxp_mult(_ep->desc);
204
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300205 if (!want_comp_desc)
206 return 0;
Tatyana Brokhman48767a42011-06-28 16:33:49 +0300207
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300208 /*
209 * Companion descriptor should follow EP descriptor
210 * USB 3.0 spec, #9.6.7
211 */
212 comp_desc = (struct usb_ss_ep_comp_descriptor *)*(++d_spd);
213 if (!comp_desc ||
214 (comp_desc->bDescriptorType != USB_DT_SS_ENDPOINT_COMP))
215 return -EIO;
216 _ep->comp_desc = comp_desc;
John Youn4eb8e32d2016-02-05 17:07:30 -0800217 if (g->speed >= USB_SPEED_SUPER) {
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300218 switch (usb_endpoint_type(_ep->desc)) {
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300219 case USB_ENDPOINT_XFER_ISOC:
220 /* mult: bits 1:0 of bmAttributes */
Felipe Balbieaa496f2016-09-28 12:33:31 +0300221 _ep->mult = (comp_desc->bmAttributes & 0x3) + 1;
Gustavo A. R. Silva624916a2017-10-25 12:22:50 -0500222 /* fall through */
Paul Zimmerman9e878a62012-01-16 13:24:38 -0800223 case USB_ENDPOINT_XFER_BULK:
224 case USB_ENDPOINT_XFER_INT:
Felipe Balbib785ea72012-06-06 10:20:23 +0300225 _ep->maxburst = comp_desc->bMaxBurst + 1;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300226 break;
227 default:
Colin Ian Kingb2fc0592017-11-14 16:18:28 +0000228 if (comp_desc->bMaxBurst != 0) {
229 struct usb_composite_dev *cdev;
230
231 cdev = get_gadget_data(g);
Felipe Balbib785ea72012-06-06 10:20:23 +0300232 ERROR(cdev, "ep0 bMaxBurst must be 0\n");
Colin Ian Kingb2fc0592017-11-14 16:18:28 +0000233 }
Felipe Balbib785ea72012-06-06 10:20:23 +0300234 _ep->maxburst = 1;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300235 break;
236 }
237 }
Tatyana Brokhman48767a42011-06-28 16:33:49 +0300238 return 0;
239}
Sebastian Andrzej Siewior721e2e92012-09-06 20:11:27 +0200240EXPORT_SYMBOL_GPL(config_ep_by_speed);
David Brownell40982be2008-06-19 17:52:58 -0700241
242/**
243 * usb_add_function() - add a function to a configuration
244 * @config: the configuration
245 * @function: the function being added
246 * Context: single threaded during gadget setup
247 *
248 * After initialization, each configuration must have one or more
249 * functions added to it. Adding a function involves calling its @bind()
250 * method to allocate resources such as interface and string identifiers
251 * and endpoints.
252 *
253 * This function returns the value of the function's bind(), which is
254 * zero for success else a negative errno value.
255 */
Michal Nazarewicz28824b12010-05-05 12:53:13 +0200256int usb_add_function(struct usb_configuration *config,
David Brownell40982be2008-06-19 17:52:58 -0700257 struct usb_function *function)
258{
259 int value = -EINVAL;
260
261 DBG(config->cdev, "adding '%s'/%p to config '%s'/%p\n",
262 function->name, function,
263 config->label, config);
264
265 if (!function->set_alt || !function->disable)
266 goto done;
267
268 function->config = config;
269 list_add_tail(&function->list, &config->functions);
270
Robert Baldygad5bb9b82015-05-04 14:55:13 +0200271 if (function->bind_deactivated) {
272 value = usb_function_deactivate(function);
273 if (value)
274 goto done;
275 }
276
David Brownell40982be2008-06-19 17:52:58 -0700277 /* REVISIT *require* function->bind? */
278 if (function->bind) {
279 value = function->bind(config, function);
280 if (value < 0) {
281 list_del(&function->list);
282 function->config = NULL;
283 }
284 } else
285 value = 0;
286
287 /* We allow configurations that don't work at both speeds.
288 * If we run into a lowspeed Linux system, treat it the same
289 * as full speed ... it's the function drivers that will need
290 * to avoid bulk and ISO transfers.
291 */
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +0200292 if (!config->fullspeed && function->fs_descriptors)
David Brownell40982be2008-06-19 17:52:58 -0700293 config->fullspeed = true;
294 if (!config->highspeed && function->hs_descriptors)
295 config->highspeed = true;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300296 if (!config->superspeed && function->ss_descriptors)
297 config->superspeed = true;
John Youn554eead2016-02-05 17:06:35 -0800298 if (!config->superspeed_plus && function->ssp_descriptors)
299 config->superspeed_plus = true;
David Brownell40982be2008-06-19 17:52:58 -0700300
301done:
302 if (value)
303 DBG(config->cdev, "adding '%s'/%p --> %d\n",
304 function->name, function, value);
305 return value;
306}
Sebastian Andrzej Siewior721e2e92012-09-06 20:11:27 +0200307EXPORT_SYMBOL_GPL(usb_add_function);
David Brownell40982be2008-06-19 17:52:58 -0700308
Sebastian Andrzej Siewiorb47357782012-12-23 21:10:05 +0100309void usb_remove_function(struct usb_configuration *c, struct usb_function *f)
310{
311 if (f->disable)
312 f->disable(f);
313
314 bitmap_zero(f->endpoints, 32);
315 list_del(&f->list);
316 if (f->unbind)
317 f->unbind(c, f);
Felipe Balbi0e3e9752017-06-06 14:47:29 +0300318
319 if (f->bind_deactivated)
320 usb_function_activate(f);
Sebastian Andrzej Siewiorb47357782012-12-23 21:10:05 +0100321}
322EXPORT_SYMBOL_GPL(usb_remove_function);
323
David Brownell40982be2008-06-19 17:52:58 -0700324/**
David Brownell60beed92008-08-18 17:38:22 -0700325 * usb_function_deactivate - prevent function and gadget enumeration
326 * @function: the function that isn't yet ready to respond
327 *
328 * Blocks response of the gadget driver to host enumeration by
329 * preventing the data line pullup from being activated. This is
330 * normally called during @bind() processing to change from the
331 * initial "ready to respond" state, or when a required resource
332 * becomes available.
333 *
334 * For example, drivers that serve as a passthrough to a userspace
335 * daemon can block enumeration unless that daemon (such as an OBEX,
336 * MTP, or print server) is ready to handle host requests.
337 *
338 * Not all systems support software control of their USB peripheral
339 * data pullups.
340 *
341 * Returns zero on success, else negative errno.
342 */
343int usb_function_deactivate(struct usb_function *function)
344{
345 struct usb_composite_dev *cdev = function->config->cdev;
Felipe Balbib2bdf3a2009-02-12 15:09:47 +0200346 unsigned long flags;
David Brownell60beed92008-08-18 17:38:22 -0700347 int status = 0;
348
Felipe Balbib2bdf3a2009-02-12 15:09:47 +0200349 spin_lock_irqsave(&cdev->lock, flags);
David Brownell60beed92008-08-18 17:38:22 -0700350
351 if (cdev->deactivations == 0)
Robert Baldyga56012502015-05-04 14:55:12 +0200352 status = usb_gadget_deactivate(cdev->gadget);
David Brownell60beed92008-08-18 17:38:22 -0700353 if (status == 0)
354 cdev->deactivations++;
355
Felipe Balbib2bdf3a2009-02-12 15:09:47 +0200356 spin_unlock_irqrestore(&cdev->lock, flags);
David Brownell60beed92008-08-18 17:38:22 -0700357 return status;
358}
Sebastian Andrzej Siewior721e2e92012-09-06 20:11:27 +0200359EXPORT_SYMBOL_GPL(usb_function_deactivate);
David Brownell60beed92008-08-18 17:38:22 -0700360
361/**
362 * usb_function_activate - allow function and gadget enumeration
363 * @function: function on which usb_function_activate() was called
364 *
365 * Reverses effect of usb_function_deactivate(). If no more functions
366 * are delaying their activation, the gadget driver will respond to
367 * host enumeration procedures.
368 *
369 * Returns zero on success, else negative errno.
370 */
371int usb_function_activate(struct usb_function *function)
372{
373 struct usb_composite_dev *cdev = function->config->cdev;
Michael Grzeschik4fefe9f62012-07-19 00:20:11 +0200374 unsigned long flags;
David Brownell60beed92008-08-18 17:38:22 -0700375 int status = 0;
376
Michael Grzeschik4fefe9f62012-07-19 00:20:11 +0200377 spin_lock_irqsave(&cdev->lock, flags);
David Brownell60beed92008-08-18 17:38:22 -0700378
379 if (WARN_ON(cdev->deactivations == 0))
380 status = -EINVAL;
381 else {
382 cdev->deactivations--;
383 if (cdev->deactivations == 0)
Robert Baldyga56012502015-05-04 14:55:12 +0200384 status = usb_gadget_activate(cdev->gadget);
David Brownell60beed92008-08-18 17:38:22 -0700385 }
386
Michael Grzeschik4fefe9f62012-07-19 00:20:11 +0200387 spin_unlock_irqrestore(&cdev->lock, flags);
David Brownell60beed92008-08-18 17:38:22 -0700388 return status;
389}
Sebastian Andrzej Siewior721e2e92012-09-06 20:11:27 +0200390EXPORT_SYMBOL_GPL(usb_function_activate);
David Brownell60beed92008-08-18 17:38:22 -0700391
392/**
David Brownell40982be2008-06-19 17:52:58 -0700393 * usb_interface_id() - allocate an unused interface ID
394 * @config: configuration associated with the interface
395 * @function: function handling the interface
396 * Context: single threaded during gadget setup
397 *
398 * usb_interface_id() is called from usb_function.bind() callbacks to
399 * allocate new interface IDs. The function driver will then store that
400 * ID in interface, association, CDC union, and other descriptors. It
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300401 * will also handle any control requests targeted at that interface,
David Brownell40982be2008-06-19 17:52:58 -0700402 * particularly changing its altsetting via set_alt(). There may
403 * also be class-specific or vendor-specific requests to handle.
404 *
405 * All interface identifier should be allocated using this routine, to
406 * ensure that for example different functions don't wrongly assign
407 * different meanings to the same identifier. Note that since interface
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300408 * identifiers are configuration-specific, functions used in more than
David Brownell40982be2008-06-19 17:52:58 -0700409 * one configuration (or more than once in a given configuration) need
410 * multiple versions of the relevant descriptors.
411 *
412 * Returns the interface ID which was allocated; or -ENODEV if no
413 * more interface IDs can be allocated.
414 */
Michal Nazarewicz28824b12010-05-05 12:53:13 +0200415int usb_interface_id(struct usb_configuration *config,
David Brownell40982be2008-06-19 17:52:58 -0700416 struct usb_function *function)
417{
418 unsigned id = config->next_interface_id;
419
420 if (id < MAX_CONFIG_INTERFACES) {
421 config->interface[id] = function;
422 config->next_interface_id = id + 1;
423 return id;
424 }
425 return -ENODEV;
426}
Sebastian Andrzej Siewior721e2e92012-09-06 20:11:27 +0200427EXPORT_SYMBOL_GPL(usb_interface_id);
David Brownell40982be2008-06-19 17:52:58 -0700428
Sebastian Andrzej Siewior8f900a92012-12-03 20:07:05 +0100429static u8 encode_bMaxPower(enum usb_device_speed speed,
430 struct usb_configuration *c)
431{
432 unsigned val;
433
434 if (c->MaxPower)
435 val = c->MaxPower;
436 else
437 val = CONFIG_USB_GADGET_VBUS_DRAW;
438 if (!val)
439 return 0;
Jack Phamc7244172020-01-30 19:10:35 -0800440 if (speed < USB_SPEED_SUPER)
Sebastian Andrzej Siewior8f900a92012-12-03 20:07:05 +0100441 return DIV_ROUND_UP(val, 2);
Jack Phamc7244172020-01-30 19:10:35 -0800442 else
443 return DIV_ROUND_UP(val, 8);
Sebastian Andrzej Siewior8f900a92012-12-03 20:07:05 +0100444}
445
David Brownell40982be2008-06-19 17:52:58 -0700446static int config_buf(struct usb_configuration *config,
447 enum usb_device_speed speed, void *buf, u8 type)
448{
449 struct usb_config_descriptor *c = buf;
450 void *next = buf + USB_DT_CONFIG_SIZE;
Sebastian Andrzej Siewiore13f17f2012-09-10 15:01:51 +0200451 int len;
David Brownell40982be2008-06-19 17:52:58 -0700452 struct usb_function *f;
453 int status;
454
Sebastian Andrzej Siewiore13f17f2012-09-10 15:01:51 +0200455 len = USB_COMP_EP0_BUFSIZ - USB_DT_CONFIG_SIZE;
David Brownell40982be2008-06-19 17:52:58 -0700456 /* write the config descriptor */
457 c = buf;
458 c->bLength = USB_DT_CONFIG_SIZE;
459 c->bDescriptorType = type;
460 /* wTotalLength is written later */
461 c->bNumInterfaces = config->next_interface_id;
462 c->bConfigurationValue = config->bConfigurationValue;
463 c->iConfiguration = config->iConfiguration;
464 c->bmAttributes = USB_CONFIG_ATT_ONE | config->bmAttributes;
Sebastian Andrzej Siewior8f900a92012-12-03 20:07:05 +0100465 c->bMaxPower = encode_bMaxPower(speed, config);
David Brownell40982be2008-06-19 17:52:58 -0700466
467 /* There may be e.g. OTG descriptors */
468 if (config->descriptors) {
469 status = usb_descriptor_fillbuf(next, len,
470 config->descriptors);
471 if (status < 0)
472 return status;
473 len -= status;
474 next += status;
475 }
476
477 /* add each function's descriptors */
478 list_for_each_entry(f, &config->functions, list) {
479 struct usb_descriptor_header **descriptors;
480
John Younf3bdbe32016-02-05 17:07:03 -0800481 descriptors = function_descriptors(f, speed);
David Brownell40982be2008-06-19 17:52:58 -0700482 if (!descriptors)
483 continue;
484 status = usb_descriptor_fillbuf(next, len,
485 (const struct usb_descriptor_header **) descriptors);
486 if (status < 0)
487 return status;
488 len -= status;
489 next += status;
490 }
491
492 len = next - buf;
493 c->wTotalLength = cpu_to_le16(len);
494 return len;
495}
496
497static int config_desc(struct usb_composite_dev *cdev, unsigned w_value)
498{
499 struct usb_gadget *gadget = cdev->gadget;
500 struct usb_configuration *c;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +0200501 struct list_head *pos;
David Brownell40982be2008-06-19 17:52:58 -0700502 u8 type = w_value >> 8;
503 enum usb_device_speed speed = USB_SPEED_UNKNOWN;
504
John Youneae58202016-02-05 17:07:17 -0800505 if (gadget->speed >= USB_SPEED_SUPER)
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300506 speed = gadget->speed;
507 else if (gadget_is_dualspeed(gadget)) {
508 int hs = 0;
David Brownell40982be2008-06-19 17:52:58 -0700509 if (gadget->speed == USB_SPEED_HIGH)
510 hs = 1;
511 if (type == USB_DT_OTHER_SPEED_CONFIG)
512 hs = !hs;
513 if (hs)
514 speed = USB_SPEED_HIGH;
515
516 }
517
518 /* This is a lookup by config *INDEX* */
519 w_value &= 0xff;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +0200520
521 pos = &cdev->configs;
522 c = cdev->os_desc_config;
523 if (c)
524 goto check_config;
525
526 while ((pos = pos->next) != &cdev->configs) {
527 c = list_entry(pos, typeof(*c), list);
528
529 /* skip OS Descriptors config which is handled separately */
530 if (c == cdev->os_desc_config)
531 continue;
532
533check_config:
David Brownell40982be2008-06-19 17:52:58 -0700534 /* ignore configs that won't work at this speed */
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300535 switch (speed) {
John Youneae58202016-02-05 17:07:17 -0800536 case USB_SPEED_SUPER_PLUS:
537 if (!c->superspeed_plus)
538 continue;
539 break;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300540 case USB_SPEED_SUPER:
541 if (!c->superspeed)
542 continue;
543 break;
544 case USB_SPEED_HIGH:
David Brownell40982be2008-06-19 17:52:58 -0700545 if (!c->highspeed)
546 continue;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300547 break;
548 default:
David Brownell40982be2008-06-19 17:52:58 -0700549 if (!c->fullspeed)
550 continue;
551 }
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300552
David Brownell40982be2008-06-19 17:52:58 -0700553 if (w_value == 0)
554 return config_buf(c, speed, cdev->req->buf, type);
555 w_value--;
556 }
557 return -EINVAL;
558}
559
560static int count_configs(struct usb_composite_dev *cdev, unsigned type)
561{
562 struct usb_gadget *gadget = cdev->gadget;
563 struct usb_configuration *c;
564 unsigned count = 0;
565 int hs = 0;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300566 int ss = 0;
John Youna4afd012016-02-05 17:06:49 -0800567 int ssp = 0;
David Brownell40982be2008-06-19 17:52:58 -0700568
569 if (gadget_is_dualspeed(gadget)) {
570 if (gadget->speed == USB_SPEED_HIGH)
571 hs = 1;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300572 if (gadget->speed == USB_SPEED_SUPER)
573 ss = 1;
John Youna4afd012016-02-05 17:06:49 -0800574 if (gadget->speed == USB_SPEED_SUPER_PLUS)
575 ssp = 1;
David Brownell40982be2008-06-19 17:52:58 -0700576 if (type == USB_DT_DEVICE_QUALIFIER)
577 hs = !hs;
578 }
579 list_for_each_entry(c, &cdev->configs, list) {
580 /* ignore configs that won't work at this speed */
John Youna4afd012016-02-05 17:06:49 -0800581 if (ssp) {
582 if (!c->superspeed_plus)
583 continue;
584 } else if (ss) {
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300585 if (!c->superspeed)
586 continue;
587 } else if (hs) {
David Brownell40982be2008-06-19 17:52:58 -0700588 if (!c->highspeed)
589 continue;
590 } else {
591 if (!c->fullspeed)
592 continue;
593 }
594 count++;
595 }
596 return count;
597}
598
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300599/**
600 * bos_desc() - prepares the BOS descriptor.
601 * @cdev: pointer to usb_composite device to generate the bos
602 * descriptor for
603 *
604 * This function generates the BOS (Binary Device Object)
605 * descriptor and its device capabilities descriptors. The BOS
606 * descriptor should be supported by a SuperSpeed device.
607 */
608static int bos_desc(struct usb_composite_dev *cdev)
609{
610 struct usb_ext_cap_descriptor *usb_ext;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300611 struct usb_dcd_config_params dcd_config_params;
612 struct usb_bos_descriptor *bos = cdev->req->buf;
Thinh Nguyencca38542019-08-19 18:36:12 -0700613 unsigned int besl = 0;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300614
615 bos->bLength = USB_DT_BOS_SIZE;
616 bos->bDescriptorType = USB_DT_BOS;
617
618 bos->wTotalLength = cpu_to_le16(USB_DT_BOS_SIZE);
619 bos->bNumDeviceCaps = 0;
620
Thinh Nguyencca38542019-08-19 18:36:12 -0700621 /* Get Controller configuration */
622 if (cdev->gadget->ops->get_config_params) {
623 cdev->gadget->ops->get_config_params(cdev->gadget,
624 &dcd_config_params);
625 } else {
626 dcd_config_params.besl_baseline =
627 USB_DEFAULT_BESL_UNSPECIFIED;
628 dcd_config_params.besl_deep =
629 USB_DEFAULT_BESL_UNSPECIFIED;
630 dcd_config_params.bU1devExitLat =
631 USB_DEFAULT_U1_DEV_EXIT_LAT;
632 dcd_config_params.bU2DevExitLat =
633 cpu_to_le16(USB_DEFAULT_U2_DEV_EXIT_LAT);
634 }
635
636 if (dcd_config_params.besl_baseline != USB_DEFAULT_BESL_UNSPECIFIED)
637 besl = USB_BESL_BASELINE_VALID |
638 USB_SET_BESL_BASELINE(dcd_config_params.besl_baseline);
639
640 if (dcd_config_params.besl_deep != USB_DEFAULT_BESL_UNSPECIFIED)
641 besl |= USB_BESL_DEEP_VALID |
642 USB_SET_BESL_DEEP(dcd_config_params.besl_deep);
643
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300644 /*
645 * A SuperSpeed device shall include the USB2.0 extension descriptor
646 * and shall support LPM when operating in USB2.0 HS mode.
647 */
648 usb_ext = cdev->req->buf + le16_to_cpu(bos->wTotalLength);
649 bos->bNumDeviceCaps++;
650 le16_add_cpu(&bos->wTotalLength, USB_DT_USB_EXT_CAP_SIZE);
651 usb_ext->bLength = USB_DT_USB_EXT_CAP_SIZE;
652 usb_ext->bDescriptorType = USB_DT_DEVICE_CAPABILITY;
653 usb_ext->bDevCapabilityType = USB_CAP_TYPE_EXT;
Thinh Nguyencca38542019-08-19 18:36:12 -0700654 usb_ext->bmAttributes = cpu_to_le32(USB_LPM_SUPPORT |
655 USB_BESL_SUPPORT | besl);
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300656
657 /*
658 * The Superspeed USB Capability descriptor shall be implemented by all
659 * SuperSpeed devices.
660 */
John Youn0b67a6b2017-04-28 12:55:14 +0400661 if (gadget_is_superspeed(cdev->gadget)) {
662 struct usb_ss_cap_descriptor *ss_cap;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300663
John Youn0b67a6b2017-04-28 12:55:14 +0400664 ss_cap = cdev->req->buf + le16_to_cpu(bos->wTotalLength);
665 bos->bNumDeviceCaps++;
666 le16_add_cpu(&bos->wTotalLength, USB_DT_USB_SS_CAP_SIZE);
667 ss_cap->bLength = USB_DT_USB_SS_CAP_SIZE;
668 ss_cap->bDescriptorType = USB_DT_DEVICE_CAPABILITY;
669 ss_cap->bDevCapabilityType = USB_SS_CAP_TYPE;
670 ss_cap->bmAttributes = 0; /* LTM is not supported yet */
671 ss_cap->wSpeedSupported = cpu_to_le16(USB_LOW_SPEED_OPERATION |
672 USB_FULL_SPEED_OPERATION |
673 USB_HIGH_SPEED_OPERATION |
674 USB_5GBPS_OPERATION);
675 ss_cap->bFunctionalitySupport = USB_LOW_SPEED_OPERATION;
John Youn0b67a6b2017-04-28 12:55:14 +0400676 ss_cap->bU1devExitLat = dcd_config_params.bU1devExitLat;
677 ss_cap->bU2DevExitLat = dcd_config_params.bU2DevExitLat;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300678 }
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300679
John Younf228a8d2016-02-05 17:05:53 -0800680 /* The SuperSpeedPlus USB Device Capability descriptor */
681 if (gadget_is_superspeed_plus(cdev->gadget)) {
682 struct usb_ssp_cap_descriptor *ssp_cap;
683
684 ssp_cap = cdev->req->buf + le16_to_cpu(bos->wTotalLength);
685 bos->bNumDeviceCaps++;
686
687 /*
688 * Report typical values.
689 */
690
691 le16_add_cpu(&bos->wTotalLength, USB_DT_USB_SSP_CAP_SIZE(1));
692 ssp_cap->bLength = USB_DT_USB_SSP_CAP_SIZE(1);
693 ssp_cap->bDescriptorType = USB_DT_DEVICE_CAPABILITY;
694 ssp_cap->bDevCapabilityType = USB_SSP_CAP_TYPE;
John Youn138b8632016-04-08 14:46:31 -0700695 ssp_cap->bReserved = 0;
696 ssp_cap->wReserved = 0;
John Younf228a8d2016-02-05 17:05:53 -0800697
698 /* SSAC = 1 (2 attributes) */
699 ssp_cap->bmAttributes = cpu_to_le32(1);
700
701 /* Min RX/TX Lane Count = 1 */
John Youn08f8cab2016-03-28 16:12:24 -0700702 ssp_cap->wFunctionalitySupport =
703 cpu_to_le16((1 << 8) | (1 << 12));
John Younf228a8d2016-02-05 17:05:53 -0800704
705 /*
706 * bmSublinkSpeedAttr[0]:
707 * ST = Symmetric, RX
708 * LSE = 3 (Gbps)
709 * LP = 1 (SuperSpeedPlus)
710 * LSM = 10 (10 Gbps)
711 */
712 ssp_cap->bmSublinkSpeedAttr[0] =
John Youn08f8cab2016-03-28 16:12:24 -0700713 cpu_to_le32((3 << 4) | (1 << 14) | (0xa << 16));
John Younf228a8d2016-02-05 17:05:53 -0800714 /*
715 * bmSublinkSpeedAttr[1] =
716 * ST = Symmetric, TX
717 * LSE = 3 (Gbps)
718 * LP = 1 (SuperSpeedPlus)
719 * LSM = 10 (10 Gbps)
720 */
721 ssp_cap->bmSublinkSpeedAttr[1] =
John Youn08f8cab2016-03-28 16:12:24 -0700722 cpu_to_le32((3 << 4) | (1 << 14) |
723 (0xa << 16) | (1 << 7));
John Younf228a8d2016-02-05 17:05:53 -0800724 }
725
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300726 return le16_to_cpu(bos->wTotalLength);
727}
728
David Brownell40982be2008-06-19 17:52:58 -0700729static void device_qual(struct usb_composite_dev *cdev)
730{
731 struct usb_qualifier_descriptor *qual = cdev->req->buf;
732
733 qual->bLength = sizeof(*qual);
734 qual->bDescriptorType = USB_DT_DEVICE_QUALIFIER;
735 /* POLICY: same bcdUSB and device type info at both speeds */
736 qual->bcdUSB = cdev->desc.bcdUSB;
737 qual->bDeviceClass = cdev->desc.bDeviceClass;
738 qual->bDeviceSubClass = cdev->desc.bDeviceSubClass;
739 qual->bDeviceProtocol = cdev->desc.bDeviceProtocol;
740 /* ASSUME same EP0 fifo size at both speeds */
Sebastian Andrzej Siewior765f5b82011-06-23 14:26:11 +0200741 qual->bMaxPacketSize0 = cdev->gadget->ep0->maxpacket;
David Brownell40982be2008-06-19 17:52:58 -0700742 qual->bNumConfigurations = count_configs(cdev, USB_DT_DEVICE_QUALIFIER);
David Lopoc24f4222008-07-01 13:14:17 -0700743 qual->bRESERVED = 0;
David Brownell40982be2008-06-19 17:52:58 -0700744}
745
746/*-------------------------------------------------------------------------*/
747
748static void reset_config(struct usb_composite_dev *cdev)
749{
750 struct usb_function *f;
751
752 DBG(cdev, "reset config\n");
753
754 list_for_each_entry(f, &cdev->config->functions, list) {
755 if (f->disable)
756 f->disable(f);
Laurent Pinchart52426582009-10-21 00:03:38 +0200757
758 bitmap_zero(f->endpoints, 32);
David Brownell40982be2008-06-19 17:52:58 -0700759 }
760 cdev->config = NULL;
Michael Grzeschik2bac51a2013-11-11 23:43:32 +0100761 cdev->delayed_status = 0;
David Brownell40982be2008-06-19 17:52:58 -0700762}
763
764static int set_config(struct usb_composite_dev *cdev,
765 const struct usb_ctrlrequest *ctrl, unsigned number)
766{
767 struct usb_gadget *gadget = cdev->gadget;
768 struct usb_configuration *c = NULL;
769 int result = -EINVAL;
770 unsigned power = gadget_is_otg(gadget) ? 8 : 100;
771 int tmp;
772
David Brownell40982be2008-06-19 17:52:58 -0700773 if (number) {
774 list_for_each_entry(c, &cdev->configs, list) {
775 if (c->bConfigurationValue == number) {
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300776 /*
777 * We disable the FDs of the previous
778 * configuration only if the new configuration
779 * is a valid one
780 */
781 if (cdev->config)
782 reset_config(cdev);
David Brownell40982be2008-06-19 17:52:58 -0700783 result = 0;
784 break;
785 }
786 }
787 if (result < 0)
788 goto done;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300789 } else { /* Zero configuration value - need to reset the config */
790 if (cdev->config)
791 reset_config(cdev);
David Brownell40982be2008-06-19 17:52:58 -0700792 result = 0;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300793 }
David Brownell40982be2008-06-19 17:52:58 -0700794
Joel Stanley1cbfb8c2019-09-30 22:44:34 +0930795 DBG(cdev, "%s config #%d: %s\n",
796 usb_speed_string(gadget->speed),
797 number, c ? c->label : "unconfigured");
David Brownell40982be2008-06-19 17:52:58 -0700798
799 if (!c)
800 goto done;
801
Peter Chen6027f312014-04-29 13:26:28 +0800802 usb_gadget_set_state(gadget, USB_STATE_CONFIGURED);
David Brownell40982be2008-06-19 17:52:58 -0700803 cdev->config = c;
804
805 /* Initialize all interfaces by setting them to altsetting zero. */
806 for (tmp = 0; tmp < MAX_CONFIG_INTERFACES; tmp++) {
807 struct usb_function *f = c->interface[tmp];
Laurent Pinchart52426582009-10-21 00:03:38 +0200808 struct usb_descriptor_header **descriptors;
David Brownell40982be2008-06-19 17:52:58 -0700809
810 if (!f)
811 break;
812
Laurent Pinchart52426582009-10-21 00:03:38 +0200813 /*
814 * Record which endpoints are used by the function. This is used
815 * to dispatch control requests targeted at that endpoint to the
816 * function's setup callback instead of the current
817 * configuration's setup callback.
818 */
John Younf3bdbe32016-02-05 17:07:03 -0800819 descriptors = function_descriptors(f, gadget->speed);
Laurent Pinchart52426582009-10-21 00:03:38 +0200820
821 for (; *descriptors; ++descriptors) {
822 struct usb_endpoint_descriptor *ep;
823 int addr;
824
825 if ((*descriptors)->bDescriptorType != USB_DT_ENDPOINT)
826 continue;
827
828 ep = (struct usb_endpoint_descriptor *)*descriptors;
829 addr = ((ep->bEndpointAddress & 0x80) >> 3)
830 | (ep->bEndpointAddress & 0x0f);
831 set_bit(addr, f->endpoints);
832 }
833
David Brownell40982be2008-06-19 17:52:58 -0700834 result = f->set_alt(f, tmp, 0);
835 if (result < 0) {
836 DBG(cdev, "interface %d (%s/%p) alt 0 --> %d\n",
837 tmp, f->name, f, result);
838
839 reset_config(cdev);
840 goto done;
841 }
Roger Quadros1b9ba002011-05-09 13:08:06 +0300842
843 if (result == USB_GADGET_DELAYED_STATUS) {
844 DBG(cdev,
845 "%s: interface %d (%s) requested delayed status\n",
846 __func__, tmp, f->name);
847 cdev->delayed_status++;
848 DBG(cdev, "delayed_status count %d\n",
849 cdev->delayed_status);
850 }
David Brownell40982be2008-06-19 17:52:58 -0700851 }
852
853 /* when we return, be sure our power usage is valid */
Sebastian Andrzej Siewior8f900a92012-12-03 20:07:05 +0100854 power = c->MaxPower ? c->MaxPower : CONFIG_USB_GADGET_VBUS_DRAW;
David Brownell40982be2008-06-19 17:52:58 -0700855done:
856 usb_gadget_vbus_draw(gadget, power);
Roger Quadros1b9ba002011-05-09 13:08:06 +0300857 if (result >= 0 && cdev->delayed_status)
858 result = USB_GADGET_DELAYED_STATUS;
David Brownell40982be2008-06-19 17:52:58 -0700859 return result;
860}
861
Sebastian Andrzej Siewiorde53c252012-12-23 21:10:00 +0100862int usb_add_config_only(struct usb_composite_dev *cdev,
863 struct usb_configuration *config)
864{
865 struct usb_configuration *c;
866
867 if (!config->bConfigurationValue)
868 return -EINVAL;
869
870 /* Prevent duplicate configuration identifiers */
871 list_for_each_entry(c, &cdev->configs, list) {
872 if (c->bConfigurationValue == config->bConfigurationValue)
873 return -EBUSY;
874 }
875
876 config->cdev = cdev;
877 list_add_tail(&config->list, &cdev->configs);
878
879 INIT_LIST_HEAD(&config->functions);
880 config->next_interface_id = 0;
881 memset(config->interface, 0, sizeof(config->interface));
882
883 return 0;
884}
885EXPORT_SYMBOL_GPL(usb_add_config_only);
886
David Brownell40982be2008-06-19 17:52:58 -0700887/**
888 * usb_add_config() - add a configuration to a device.
889 * @cdev: wraps the USB gadget
890 * @config: the configuration, with bConfigurationValue assigned
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200891 * @bind: the configuration's bind function
David Brownell40982be2008-06-19 17:52:58 -0700892 * Context: single threaded during gadget setup
893 *
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200894 * One of the main tasks of a composite @bind() routine is to
David Brownell40982be2008-06-19 17:52:58 -0700895 * add each of the configurations it supports, using this routine.
896 *
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200897 * This function returns the value of the configuration's @bind(), which
David Brownell40982be2008-06-19 17:52:58 -0700898 * is zero for success else a negative errno value. Binding configurations
899 * assigns global resources including string IDs, and per-configuration
900 * resources such as interface IDs and endpoints.
901 */
Michal Nazarewicz28824b12010-05-05 12:53:13 +0200902int usb_add_config(struct usb_composite_dev *cdev,
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200903 struct usb_configuration *config,
904 int (*bind)(struct usb_configuration *))
David Brownell40982be2008-06-19 17:52:58 -0700905{
906 int status = -EINVAL;
Sebastian Andrzej Siewiorde53c252012-12-23 21:10:00 +0100907
908 if (!bind)
909 goto done;
David Brownell40982be2008-06-19 17:52:58 -0700910
911 DBG(cdev, "adding config #%u '%s'/%p\n",
912 config->bConfigurationValue,
913 config->label, config);
914
Sebastian Andrzej Siewiorde53c252012-12-23 21:10:00 +0100915 status = usb_add_config_only(cdev, config);
916 if (status)
David Brownell40982be2008-06-19 17:52:58 -0700917 goto done;
918
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200919 status = bind(config);
David Brownell40982be2008-06-19 17:52:58 -0700920 if (status < 0) {
Yongsul Oh124ef382012-03-20 10:38:38 +0900921 while (!list_empty(&config->functions)) {
922 struct usb_function *f;
923
924 f = list_first_entry(&config->functions,
925 struct usb_function, list);
926 list_del(&f->list);
927 if (f->unbind) {
928 DBG(cdev, "unbind function '%s'/%p\n",
929 f->name, f);
930 f->unbind(config, f);
931 /* may free memory for "f" */
932 }
933 }
David Brownell40982be2008-06-19 17:52:58 -0700934 list_del(&config->list);
935 config->cdev = NULL;
936 } else {
937 unsigned i;
938
John Youncd69cbe2016-02-05 17:07:44 -0800939 DBG(cdev, "cfg %d/%p speeds:%s%s%s%s\n",
David Brownell40982be2008-06-19 17:52:58 -0700940 config->bConfigurationValue, config,
John Youncd69cbe2016-02-05 17:07:44 -0800941 config->superspeed_plus ? " superplus" : "",
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300942 config->superspeed ? " super" : "",
David Brownell40982be2008-06-19 17:52:58 -0700943 config->highspeed ? " high" : "",
944 config->fullspeed
945 ? (gadget_is_dualspeed(cdev->gadget)
946 ? " full"
947 : " full/low")
948 : "");
949
950 for (i = 0; i < MAX_CONFIG_INTERFACES; i++) {
951 struct usb_function *f = config->interface[i];
952
953 if (!f)
954 continue;
955 DBG(cdev, " interface %d = %s/%p\n",
956 i, f->name, f);
957 }
958 }
959
Robert Baldygaf871cb92015-09-16 12:10:39 +0200960 /* set_alt(), or next bind(), sets up ep->claimed as needed */
David Brownell40982be2008-06-19 17:52:58 -0700961 usb_ep_autoconfig_reset(cdev->gadget);
962
963done:
964 if (status)
965 DBG(cdev, "added config '%s'/%u --> %d\n", config->label,
966 config->bConfigurationValue, status);
967 return status;
968}
Sebastian Andrzej Siewior721e2e92012-09-06 20:11:27 +0200969EXPORT_SYMBOL_GPL(usb_add_config);
David Brownell40982be2008-06-19 17:52:58 -0700970
Benoit Goby51cce6f2012-05-10 10:07:57 +0200971static void remove_config(struct usb_composite_dev *cdev,
972 struct usb_configuration *config)
973{
974 while (!list_empty(&config->functions)) {
975 struct usb_function *f;
976
977 f = list_first_entry(&config->functions,
978 struct usb_function, list);
Felipe Balbi0e3e9752017-06-06 14:47:29 +0300979
980 usb_remove_function(config, f);
Benoit Goby51cce6f2012-05-10 10:07:57 +0200981 }
982 list_del(&config->list);
983 if (config->unbind) {
984 DBG(cdev, "unbind config '%s'/%p\n", config->label, config);
985 config->unbind(config);
986 /* may free memory for "c" */
987 }
988}
989
990/**
991 * usb_remove_config() - remove a configuration from a device.
992 * @cdev: wraps the USB gadget
993 * @config: the configuration
994 *
995 * Drivers must call usb_gadget_disconnect before calling this function
996 * to disconnect the device from the host and make sure the host will not
997 * try to enumerate the device while we are changing the config list.
998 */
999void usb_remove_config(struct usb_composite_dev *cdev,
1000 struct usb_configuration *config)
1001{
1002 unsigned long flags;
1003
1004 spin_lock_irqsave(&cdev->lock, flags);
1005
1006 if (cdev->config == config)
1007 reset_config(cdev);
1008
1009 spin_unlock_irqrestore(&cdev->lock, flags);
1010
1011 remove_config(cdev, config);
1012}
1013
David Brownell40982be2008-06-19 17:52:58 -07001014/*-------------------------------------------------------------------------*/
1015
1016/* We support strings in multiple languages ... string descriptor zero
1017 * says which languages are supported. The typical case will be that
Diego Violaad4676a2015-05-31 15:52:41 -03001018 * only one language (probably English) is used, with i18n handled on
David Brownell40982be2008-06-19 17:52:58 -07001019 * the host side.
1020 */
1021
1022static void collect_langs(struct usb_gadget_strings **sp, __le16 *buf)
1023{
1024 const struct usb_gadget_strings *s;
Dan Carpenter20c5e742012-04-17 09:30:22 +03001025 __le16 language;
David Brownell40982be2008-06-19 17:52:58 -07001026 __le16 *tmp;
1027
1028 while (*sp) {
1029 s = *sp;
1030 language = cpu_to_le16(s->language);
1031 for (tmp = buf; *tmp && tmp < &buf[126]; tmp++) {
1032 if (*tmp == language)
1033 goto repeat;
1034 }
1035 *tmp++ = language;
1036repeat:
1037 sp++;
1038 }
1039}
1040
1041static int lookup_string(
1042 struct usb_gadget_strings **sp,
1043 void *buf,
1044 u16 language,
1045 int id
1046)
1047{
1048 struct usb_gadget_strings *s;
1049 int value;
1050
1051 while (*sp) {
1052 s = *sp++;
1053 if (s->language != language)
1054 continue;
1055 value = usb_gadget_get_string(s, id, buf);
1056 if (value > 0)
1057 return value;
1058 }
1059 return -EINVAL;
1060}
1061
1062static int get_string(struct usb_composite_dev *cdev,
1063 void *buf, u16 language, int id)
1064{
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001065 struct usb_composite_driver *composite = cdev->driver;
Sebastian Andrzej Siewior9bb28592012-12-23 21:10:22 +01001066 struct usb_gadget_string_container *uc;
David Brownell40982be2008-06-19 17:52:58 -07001067 struct usb_configuration *c;
1068 struct usb_function *f;
1069 int len;
1070
Diego Violaad4676a2015-05-31 15:52:41 -03001071 /* Yes, not only is USB's i18n support probably more than most
David Brownell40982be2008-06-19 17:52:58 -07001072 * folk will ever care about ... also, it's all supported here.
1073 * (Except for UTF8 support for Unicode's "Astral Planes".)
1074 */
1075
1076 /* 0 == report all available language codes */
1077 if (id == 0) {
1078 struct usb_string_descriptor *s = buf;
1079 struct usb_gadget_strings **sp;
1080
1081 memset(s, 0, 256);
1082 s->bDescriptorType = USB_DT_STRING;
1083
1084 sp = composite->strings;
1085 if (sp)
1086 collect_langs(sp, s->wData);
1087
1088 list_for_each_entry(c, &cdev->configs, list) {
1089 sp = c->strings;
1090 if (sp)
1091 collect_langs(sp, s->wData);
1092
1093 list_for_each_entry(f, &c->functions, list) {
1094 sp = f->strings;
1095 if (sp)
1096 collect_langs(sp, s->wData);
1097 }
1098 }
Sebastian Andrzej Siewior27a466332012-12-23 21:10:23 +01001099 list_for_each_entry(uc, &cdev->gstrings, list) {
1100 struct usb_gadget_strings **sp;
1101
1102 sp = get_containers_gs(uc);
1103 collect_langs(sp, s->wData);
1104 }
David Brownell40982be2008-06-19 17:52:58 -07001105
Roel Kluin417b57b2009-08-06 16:09:51 -07001106 for (len = 0; len <= 126 && s->wData[len]; len++)
David Brownell40982be2008-06-19 17:52:58 -07001107 continue;
1108 if (!len)
1109 return -EINVAL;
1110
1111 s->bLength = 2 * (len + 1);
1112 return s->bLength;
1113 }
1114
Andrzej Pietrasiewicz19824d52014-05-08 14:06:22 +02001115 if (cdev->use_os_string && language == 0 && id == OS_STRING_IDX) {
1116 struct usb_os_string *b = buf;
1117 b->bLength = sizeof(*b);
1118 b->bDescriptorType = USB_DT_STRING;
1119 compiletime_assert(
1120 sizeof(b->qwSignature) == sizeof(cdev->qw_sign),
1121 "qwSignature size must be equal to qw_sign");
1122 memcpy(&b->qwSignature, cdev->qw_sign, sizeof(b->qwSignature));
1123 b->bMS_VendorCode = cdev->b_vendor_code;
1124 b->bPad = 0;
1125 return sizeof(*b);
1126 }
1127
Sebastian Andrzej Siewior9bb28592012-12-23 21:10:22 +01001128 list_for_each_entry(uc, &cdev->gstrings, list) {
1129 struct usb_gadget_strings **sp;
1130
1131 sp = get_containers_gs(uc);
1132 len = lookup_string(sp, buf, language, id);
1133 if (len > 0)
1134 return len;
1135 }
1136
Michal Nazarewiczad1a8102010-08-12 17:43:46 +02001137 /* String IDs are device-scoped, so we look up each string
1138 * table we're told about. These lookups are infrequent;
1139 * simpler-is-better here.
David Brownell40982be2008-06-19 17:52:58 -07001140 */
1141 if (composite->strings) {
1142 len = lookup_string(composite->strings, buf, language, id);
1143 if (len > 0)
1144 return len;
1145 }
1146 list_for_each_entry(c, &cdev->configs, list) {
1147 if (c->strings) {
1148 len = lookup_string(c->strings, buf, language, id);
1149 if (len > 0)
1150 return len;
1151 }
1152 list_for_each_entry(f, &c->functions, list) {
1153 if (!f->strings)
1154 continue;
1155 len = lookup_string(f->strings, buf, language, id);
1156 if (len > 0)
1157 return len;
1158 }
1159 }
1160 return -EINVAL;
1161}
1162
1163/**
1164 * usb_string_id() - allocate an unused string ID
1165 * @cdev: the device whose string descriptor IDs are being allocated
1166 * Context: single threaded during gadget setup
1167 *
1168 * @usb_string_id() is called from bind() callbacks to allocate
1169 * string IDs. Drivers for functions, configurations, or gadgets will
1170 * then store that ID in the appropriate descriptors and string table.
1171 *
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +02001172 * All string identifier should be allocated using this,
1173 * @usb_string_ids_tab() or @usb_string_ids_n() routine, to ensure
1174 * that for example different functions don't wrongly assign different
1175 * meanings to the same identifier.
David Brownell40982be2008-06-19 17:52:58 -07001176 */
Michal Nazarewicz28824b12010-05-05 12:53:13 +02001177int usb_string_id(struct usb_composite_dev *cdev)
David Brownell40982be2008-06-19 17:52:58 -07001178{
1179 if (cdev->next_string_id < 254) {
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +02001180 /* string id 0 is reserved by USB spec for list of
1181 * supported languages */
1182 /* 255 reserved as well? -- mina86 */
David Brownell40982be2008-06-19 17:52:58 -07001183 cdev->next_string_id++;
1184 return cdev->next_string_id;
1185 }
1186 return -ENODEV;
1187}
Sebastian Andrzej Siewior721e2e92012-09-06 20:11:27 +02001188EXPORT_SYMBOL_GPL(usb_string_id);
David Brownell40982be2008-06-19 17:52:58 -07001189
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +02001190/**
1191 * usb_string_ids() - allocate unused string IDs in batch
1192 * @cdev: the device whose string descriptor IDs are being allocated
1193 * @str: an array of usb_string objects to assign numbers to
1194 * Context: single threaded during gadget setup
1195 *
1196 * @usb_string_ids() is called from bind() callbacks to allocate
1197 * string IDs. Drivers for functions, configurations, or gadgets will
1198 * then copy IDs from the string table to the appropriate descriptors
1199 * and string table for other languages.
1200 *
1201 * All string identifier should be allocated using this,
1202 * @usb_string_id() or @usb_string_ids_n() routine, to ensure that for
1203 * example different functions don't wrongly assign different meanings
1204 * to the same identifier.
1205 */
1206int usb_string_ids_tab(struct usb_composite_dev *cdev, struct usb_string *str)
1207{
1208 int next = cdev->next_string_id;
1209
1210 for (; str->s; ++str) {
1211 if (unlikely(next >= 254))
1212 return -ENODEV;
1213 str->id = ++next;
1214 }
1215
1216 cdev->next_string_id = next;
1217
1218 return 0;
1219}
Sebastian Andrzej Siewior721e2e92012-09-06 20:11:27 +02001220EXPORT_SYMBOL_GPL(usb_string_ids_tab);
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +02001221
Sebastian Andrzej Siewior9bb28592012-12-23 21:10:22 +01001222static struct usb_gadget_string_container *copy_gadget_strings(
1223 struct usb_gadget_strings **sp, unsigned n_gstrings,
1224 unsigned n_strings)
1225{
1226 struct usb_gadget_string_container *uc;
1227 struct usb_gadget_strings **gs_array;
1228 struct usb_gadget_strings *gs;
1229 struct usb_string *s;
1230 unsigned mem;
1231 unsigned n_gs;
1232 unsigned n_s;
1233 void *stash;
1234
1235 mem = sizeof(*uc);
1236 mem += sizeof(void *) * (n_gstrings + 1);
1237 mem += sizeof(struct usb_gadget_strings) * n_gstrings;
1238 mem += sizeof(struct usb_string) * (n_strings + 1) * (n_gstrings);
1239 uc = kmalloc(mem, GFP_KERNEL);
1240 if (!uc)
1241 return ERR_PTR(-ENOMEM);
1242 gs_array = get_containers_gs(uc);
1243 stash = uc->stash;
1244 stash += sizeof(void *) * (n_gstrings + 1);
1245 for (n_gs = 0; n_gs < n_gstrings; n_gs++) {
1246 struct usb_string *org_s;
1247
1248 gs_array[n_gs] = stash;
1249 gs = gs_array[n_gs];
1250 stash += sizeof(struct usb_gadget_strings);
1251 gs->language = sp[n_gs]->language;
1252 gs->strings = stash;
1253 org_s = sp[n_gs]->strings;
1254
1255 for (n_s = 0; n_s < n_strings; n_s++) {
1256 s = stash;
1257 stash += sizeof(struct usb_string);
1258 if (org_s->s)
1259 s->s = org_s->s;
1260 else
1261 s->s = "";
1262 org_s++;
1263 }
1264 s = stash;
1265 s->s = NULL;
1266 stash += sizeof(struct usb_string);
1267
1268 }
1269 gs_array[n_gs] = NULL;
1270 return uc;
1271}
1272
1273/**
1274 * usb_gstrings_attach() - attach gadget strings to a cdev and assign ids
1275 * @cdev: the device whose string descriptor IDs are being allocated
1276 * and attached.
1277 * @sp: an array of usb_gadget_strings to attach.
1278 * @n_strings: number of entries in each usb_strings array (sp[]->strings)
1279 *
1280 * This function will create a deep copy of usb_gadget_strings and usb_string
1281 * and attach it to the cdev. The actual string (usb_string.s) will not be
1282 * copied but only a referenced will be made. The struct usb_gadget_strings
Masanari Iida06ed0de2015-03-10 22:37:46 +09001283 * array may contain multiple languages and should be NULL terminated.
Sebastian Andrzej Siewior9bb28592012-12-23 21:10:22 +01001284 * The ->language pointer of each struct usb_gadget_strings has to contain the
1285 * same amount of entries.
1286 * For instance: sp[0] is en-US, sp[1] is es-ES. It is expected that the first
Masanari Iida06ed0de2015-03-10 22:37:46 +09001287 * usb_string entry of es-ES contains the translation of the first usb_string
Sebastian Andrzej Siewior9bb28592012-12-23 21:10:22 +01001288 * entry of en-US. Therefore both entries become the same id assign.
1289 */
1290struct usb_string *usb_gstrings_attach(struct usb_composite_dev *cdev,
1291 struct usb_gadget_strings **sp, unsigned n_strings)
1292{
1293 struct usb_gadget_string_container *uc;
1294 struct usb_gadget_strings **n_gs;
1295 unsigned n_gstrings = 0;
1296 unsigned i;
1297 int ret;
1298
1299 for (i = 0; sp[i]; i++)
1300 n_gstrings++;
1301
1302 if (!n_gstrings)
1303 return ERR_PTR(-EINVAL);
1304
1305 uc = copy_gadget_strings(sp, n_gstrings, n_strings);
1306 if (IS_ERR(uc))
Felipe Balbidad4bab2014-03-10 13:30:56 -05001307 return ERR_CAST(uc);
Sebastian Andrzej Siewior9bb28592012-12-23 21:10:22 +01001308
1309 n_gs = get_containers_gs(uc);
1310 ret = usb_string_ids_tab(cdev, n_gs[0]->strings);
1311 if (ret)
1312 goto err;
1313
1314 for (i = 1; i < n_gstrings; i++) {
1315 struct usb_string *m_s;
1316 struct usb_string *s;
1317 unsigned n;
1318
1319 m_s = n_gs[0]->strings;
1320 s = n_gs[i]->strings;
1321 for (n = 0; n < n_strings; n++) {
1322 s->id = m_s->id;
1323 s++;
1324 m_s++;
1325 }
1326 }
1327 list_add_tail(&uc->list, &cdev->gstrings);
1328 return n_gs[0]->strings;
1329err:
1330 kfree(uc);
1331 return ERR_PTR(ret);
1332}
1333EXPORT_SYMBOL_GPL(usb_gstrings_attach);
1334
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +02001335/**
1336 * usb_string_ids_n() - allocate unused string IDs in batch
Randy Dunlapd187abb2010-08-11 12:07:13 -07001337 * @c: the device whose string descriptor IDs are being allocated
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +02001338 * @n: number of string IDs to allocate
1339 * Context: single threaded during gadget setup
1340 *
1341 * Returns the first requested ID. This ID and next @n-1 IDs are now
Randy Dunlapd187abb2010-08-11 12:07:13 -07001342 * valid IDs. At least provided that @n is non-zero because if it
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +02001343 * is, returns last requested ID which is now very useful information.
1344 *
1345 * @usb_string_ids_n() is called from bind() callbacks to allocate
1346 * string IDs. Drivers for functions, configurations, or gadgets will
1347 * then store that ID in the appropriate descriptors and string table.
1348 *
1349 * All string identifier should be allocated using this,
1350 * @usb_string_id() or @usb_string_ids_n() routine, to ensure that for
1351 * example different functions don't wrongly assign different meanings
1352 * to the same identifier.
1353 */
1354int usb_string_ids_n(struct usb_composite_dev *c, unsigned n)
1355{
1356 unsigned next = c->next_string_id;
1357 if (unlikely(n > 254 || (unsigned)next + n > 254))
1358 return -ENODEV;
1359 c->next_string_id += n;
1360 return next + 1;
1361}
Sebastian Andrzej Siewior721e2e92012-09-06 20:11:27 +02001362EXPORT_SYMBOL_GPL(usb_string_ids_n);
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +02001363
David Brownell40982be2008-06-19 17:52:58 -07001364/*-------------------------------------------------------------------------*/
1365
1366static void composite_setup_complete(struct usb_ep *ep, struct usb_request *req)
1367{
Felipe Balbia7c12ea2014-09-18 10:01:55 -05001368 struct usb_composite_dev *cdev;
1369
David Brownell40982be2008-06-19 17:52:58 -07001370 if (req->status || req->actual != req->length)
1371 DBG((struct usb_composite_dev *) ep->driver_data,
1372 "setup complete --> %d, %d/%d\n",
1373 req->status, req->actual, req->length);
Felipe Balbia7c12ea2014-09-18 10:01:55 -05001374
1375 /*
1376 * REVIST The same ep0 requests are shared with function drivers
1377 * so they don't have to maintain the same ->complete() stubs.
1378 *
1379 * Because of that, we need to check for the validity of ->context
1380 * here, even though we know we've set it to something useful.
1381 */
1382 if (!req->context)
1383 return;
1384
1385 cdev = req->context;
1386
1387 if (cdev->req == req)
1388 cdev->setup_pending = false;
1389 else if (cdev->os_desc_req == req)
1390 cdev->os_desc_pending = false;
1391 else
1392 WARN(1, "unknown request %p\n", req);
1393}
1394
1395static int composite_ep0_queue(struct usb_composite_dev *cdev,
1396 struct usb_request *req, gfp_t gfp_flags)
1397{
1398 int ret;
1399
1400 ret = usb_ep_queue(cdev->gadget->ep0, req, gfp_flags);
1401 if (ret == 0) {
1402 if (cdev->req == req)
1403 cdev->setup_pending = true;
1404 else if (cdev->os_desc_req == req)
1405 cdev->os_desc_pending = true;
1406 else
1407 WARN(1, "unknown request %p\n", req);
1408 }
1409
1410 return ret;
David Brownell40982be2008-06-19 17:52:58 -07001411}
1412
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001413static int count_ext_compat(struct usb_configuration *c)
1414{
1415 int i, res;
1416
1417 res = 0;
1418 for (i = 0; i < c->next_interface_id; ++i) {
1419 struct usb_function *f;
1420 int j;
1421
1422 f = c->interface[i];
1423 for (j = 0; j < f->os_desc_n; ++j) {
1424 struct usb_os_desc *d;
1425
1426 if (i != f->os_desc_table[j].if_id)
1427 continue;
1428 d = f->os_desc_table[j].os_desc;
1429 if (d && d->ext_compat_id)
1430 ++res;
1431 }
1432 }
1433 BUG_ON(res > 255);
1434 return res;
1435}
1436
Chris Dickens5d6ae4f2017-12-31 18:59:42 -08001437static int fill_ext_compat(struct usb_configuration *c, u8 *buf)
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001438{
1439 int i, count;
1440
1441 count = 16;
Chris Dickens636ba132017-12-31 18:59:43 -08001442 buf += 16;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001443 for (i = 0; i < c->next_interface_id; ++i) {
1444 struct usb_function *f;
1445 int j;
1446
1447 f = c->interface[i];
1448 for (j = 0; j < f->os_desc_n; ++j) {
1449 struct usb_os_desc *d;
1450
1451 if (i != f->os_desc_table[j].if_id)
1452 continue;
1453 d = f->os_desc_table[j].os_desc;
1454 if (d && d->ext_compat_id) {
1455 *buf++ = i;
1456 *buf++ = 0x01;
1457 memcpy(buf, d->ext_compat_id, 16);
1458 buf += 22;
1459 } else {
1460 ++buf;
1461 *buf = 0x01;
1462 buf += 23;
1463 }
1464 count += 24;
Chris Dickens5d6ae4f2017-12-31 18:59:42 -08001465 if (count + 24 >= USB_COMP_EP0_OS_DESC_BUFSIZ)
1466 return count;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001467 }
1468 }
Chris Dickens5d6ae4f2017-12-31 18:59:42 -08001469
1470 return count;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001471}
1472
1473static int count_ext_prop(struct usb_configuration *c, int interface)
1474{
1475 struct usb_function *f;
Julia Lawall849b1332014-05-19 06:31:07 +02001476 int j;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001477
1478 f = c->interface[interface];
1479 for (j = 0; j < f->os_desc_n; ++j) {
1480 struct usb_os_desc *d;
1481
1482 if (interface != f->os_desc_table[j].if_id)
1483 continue;
1484 d = f->os_desc_table[j].os_desc;
1485 if (d && d->ext_compat_id)
1486 return d->ext_prop_count;
1487 }
Julia Lawall849b1332014-05-19 06:31:07 +02001488 return 0;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001489}
1490
1491static int len_ext_prop(struct usb_configuration *c, int interface)
1492{
1493 struct usb_function *f;
1494 struct usb_os_desc *d;
1495 int j, res;
1496
1497 res = 10; /* header length */
1498 f = c->interface[interface];
1499 for (j = 0; j < f->os_desc_n; ++j) {
1500 if (interface != f->os_desc_table[j].if_id)
1501 continue;
1502 d = f->os_desc_table[j].os_desc;
1503 if (d)
1504 return min(res + d->ext_prop_len, 4096);
1505 }
1506 return res;
1507}
1508
1509static int fill_ext_prop(struct usb_configuration *c, int interface, u8 *buf)
1510{
1511 struct usb_function *f;
1512 struct usb_os_desc *d;
1513 struct usb_os_desc_ext_prop *ext_prop;
1514 int j, count, n, ret;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001515
1516 f = c->interface[interface];
Chris Dickens5d6ae4f2017-12-31 18:59:42 -08001517 count = 10; /* header length */
Chris Dickens636ba132017-12-31 18:59:43 -08001518 buf += 10;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001519 for (j = 0; j < f->os_desc_n; ++j) {
1520 if (interface != f->os_desc_table[j].if_id)
1521 continue;
1522 d = f->os_desc_table[j].os_desc;
1523 if (d)
1524 list_for_each_entry(ext_prop, &d->ext_prop, entry) {
Chris Dickens5d6ae4f2017-12-31 18:59:42 -08001525 n = ext_prop->data_len +
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001526 ext_prop->name_len + 14;
Chris Dickens5d6ae4f2017-12-31 18:59:42 -08001527 if (count + n >= USB_COMP_EP0_OS_DESC_BUFSIZ)
1528 return count;
1529 usb_ext_prop_put_size(buf, n);
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001530 usb_ext_prop_put_type(buf, ext_prop->type);
1531 ret = usb_ext_prop_put_name(buf, ext_prop->name,
1532 ext_prop->name_len);
1533 if (ret < 0)
1534 return ret;
1535 switch (ext_prop->type) {
1536 case USB_EXT_PROP_UNICODE:
1537 case USB_EXT_PROP_UNICODE_ENV:
1538 case USB_EXT_PROP_UNICODE_LINK:
1539 usb_ext_prop_put_unicode(buf, ret,
1540 ext_prop->data,
1541 ext_prop->data_len);
1542 break;
1543 case USB_EXT_PROP_BINARY:
1544 usb_ext_prop_put_binary(buf, ret,
1545 ext_prop->data,
1546 ext_prop->data_len);
1547 break;
1548 case USB_EXT_PROP_LE32:
1549 /* not implemented */
1550 case USB_EXT_PROP_BE32:
1551 /* not implemented */
1552 default:
1553 return -EINVAL;
1554 }
Chris Dickens5d6ae4f2017-12-31 18:59:42 -08001555 buf += n;
1556 count += n;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001557 }
1558 }
1559
Chris Dickens5d6ae4f2017-12-31 18:59:42 -08001560 return count;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001561}
1562
David Brownell40982be2008-06-19 17:52:58 -07001563/*
1564 * The setup() callback implements all the ep0 functionality that's
1565 * not handled lower down, in hardware or the hardware driver(like
1566 * device and endpoint feature flags, and their status). It's all
1567 * housekeeping for the gadget function we're implementing. Most of
1568 * the work is in config and function specific setup.
1569 */
Sebastian Andrzej Siewior2d5a8892012-12-23 21:10:21 +01001570int
David Brownell40982be2008-06-19 17:52:58 -07001571composite_setup(struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl)
1572{
1573 struct usb_composite_dev *cdev = get_gadget_data(gadget);
1574 struct usb_request *req = cdev->req;
1575 int value = -EOPNOTSUPP;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001576 int status = 0;
David Brownell40982be2008-06-19 17:52:58 -07001577 u16 w_index = le16_to_cpu(ctrl->wIndex);
Bryan Wu08889512009-01-08 00:21:19 +08001578 u8 intf = w_index & 0xFF;
David Brownell40982be2008-06-19 17:52:58 -07001579 u16 w_value = le16_to_cpu(ctrl->wValue);
1580 u16 w_length = le16_to_cpu(ctrl->wLength);
1581 struct usb_function *f = NULL;
Laurent Pinchart52426582009-10-21 00:03:38 +02001582 u8 endp;
David Brownell40982be2008-06-19 17:52:58 -07001583
1584 /* partial re-init of the response message; the function or the
1585 * gadget might need to intercept e.g. a control-OUT completion
1586 * when we delegate to it.
1587 */
1588 req->zero = 0;
Felipe Balbi57943712014-09-18 09:54:54 -05001589 req->context = cdev;
David Brownell40982be2008-06-19 17:52:58 -07001590 req->complete = composite_setup_complete;
Maulik Mankad2edb11c2011-02-22 19:08:42 +05301591 req->length = 0;
David Brownell40982be2008-06-19 17:52:58 -07001592 gadget->ep0->driver_data = cdev;
1593
Andrzej Pietrasiewicz232c0102015-03-03 10:52:04 +01001594 /*
1595 * Don't let non-standard requests match any of the cases below
1596 * by accident.
1597 */
1598 if ((ctrl->bRequestType & USB_TYPE_MASK) != USB_TYPE_STANDARD)
1599 goto unknown;
1600
David Brownell40982be2008-06-19 17:52:58 -07001601 switch (ctrl->bRequest) {
1602
1603 /* we handle all standard USB descriptors */
1604 case USB_REQ_GET_DESCRIPTOR:
1605 if (ctrl->bRequestType != USB_DIR_IN)
1606 goto unknown;
1607 switch (w_value >> 8) {
1608
1609 case USB_DT_DEVICE:
1610 cdev->desc.bNumConfigurations =
1611 count_configs(cdev, USB_DT_DEVICE);
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001612 cdev->desc.bMaxPacketSize0 =
1613 cdev->gadget->ep0->maxpacket;
1614 if (gadget_is_superspeed(gadget)) {
Sebastian Andrzej Siewiora8f21152011-07-19 20:21:52 +02001615 if (gadget->speed >= USB_SPEED_SUPER) {
Chunfeng Yun1ef6c422018-05-09 19:29:16 +08001616 cdev->desc.bcdUSB = cpu_to_le16(0x0320);
Sebastian Andrzej Siewiora8f21152011-07-19 20:21:52 +02001617 cdev->desc.bMaxPacketSize0 = 9;
1618 } else {
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001619 cdev->desc.bcdUSB = cpu_to_le16(0x0210);
Sebastian Andrzej Siewiora8f21152011-07-19 20:21:52 +02001620 }
Igor Kotrasinski5527e732015-08-20 10:00:01 +02001621 } else {
John Youna9548c52017-04-28 12:55:20 +04001622 if (gadget->lpm_capable)
1623 cdev->desc.bcdUSB = cpu_to_le16(0x0201);
1624 else
1625 cdev->desc.bcdUSB = cpu_to_le16(0x0200);
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001626 }
1627
David Brownell40982be2008-06-19 17:52:58 -07001628 value = min(w_length, (u16) sizeof cdev->desc);
1629 memcpy(req->buf, &cdev->desc, value);
1630 break;
1631 case USB_DT_DEVICE_QUALIFIER:
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001632 if (!gadget_is_dualspeed(gadget) ||
1633 gadget->speed >= USB_SPEED_SUPER)
David Brownell40982be2008-06-19 17:52:58 -07001634 break;
1635 device_qual(cdev);
1636 value = min_t(int, w_length,
1637 sizeof(struct usb_qualifier_descriptor));
1638 break;
1639 case USB_DT_OTHER_SPEED_CONFIG:
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001640 if (!gadget_is_dualspeed(gadget) ||
1641 gadget->speed >= USB_SPEED_SUPER)
David Brownell40982be2008-06-19 17:52:58 -07001642 break;
1643 /* FALLTHROUGH */
1644 case USB_DT_CONFIG:
1645 value = config_desc(cdev, w_value);
1646 if (value >= 0)
1647 value = min(w_length, (u16) value);
1648 break;
1649 case USB_DT_STRING:
1650 value = get_string(cdev, req->buf,
1651 w_index, w_value & 0xff);
1652 if (value >= 0)
1653 value = min(w_length, (u16) value);
1654 break;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001655 case USB_DT_BOS:
John Youna9548c52017-04-28 12:55:20 +04001656 if (gadget_is_superspeed(gadget) ||
1657 gadget->lpm_capable) {
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001658 value = bos_desc(cdev);
1659 value = min(w_length, (u16) value);
1660 }
1661 break;
Macpaul Lin53e62422015-07-09 15:18:42 +08001662 case USB_DT_OTG:
1663 if (gadget_is_otg(gadget)) {
1664 struct usb_configuration *config;
1665 int otg_desc_len = 0;
1666
1667 if (cdev->config)
1668 config = cdev->config;
1669 else
1670 config = list_first_entry(
1671 &cdev->configs,
1672 struct usb_configuration, list);
1673 if (!config)
1674 goto done;
1675
1676 if (gadget->otg_caps &&
1677 (gadget->otg_caps->otg_rev >= 0x0200))
1678 otg_desc_len += sizeof(
1679 struct usb_otg20_descriptor);
1680 else
1681 otg_desc_len += sizeof(
1682 struct usb_otg_descriptor);
1683
1684 value = min_t(int, w_length, otg_desc_len);
1685 memcpy(req->buf, config->descriptors[0], value);
1686 }
1687 break;
David Brownell40982be2008-06-19 17:52:58 -07001688 }
1689 break;
1690
1691 /* any number of configs can work */
1692 case USB_REQ_SET_CONFIGURATION:
1693 if (ctrl->bRequestType != 0)
1694 goto unknown;
1695 if (gadget_is_otg(gadget)) {
1696 if (gadget->a_hnp_support)
1697 DBG(cdev, "HNP available\n");
1698 else if (gadget->a_alt_hnp_support)
1699 DBG(cdev, "HNP on another port\n");
1700 else
1701 VDBG(cdev, "HNP inactive\n");
1702 }
1703 spin_lock(&cdev->lock);
1704 value = set_config(cdev, ctrl, w_value);
1705 spin_unlock(&cdev->lock);
1706 break;
1707 case USB_REQ_GET_CONFIGURATION:
1708 if (ctrl->bRequestType != USB_DIR_IN)
1709 goto unknown;
1710 if (cdev->config)
1711 *(u8 *)req->buf = cdev->config->bConfigurationValue;
1712 else
1713 *(u8 *)req->buf = 0;
1714 value = min(w_length, (u16) 1);
1715 break;
1716
Krzysztof Opasiak7e4da3f2016-12-20 19:52:16 +01001717 /* function drivers must handle get/set altsetting */
David Brownell40982be2008-06-19 17:52:58 -07001718 case USB_REQ_SET_INTERFACE:
1719 if (ctrl->bRequestType != USB_RECIP_INTERFACE)
1720 goto unknown;
Jassi Brarff085de2011-02-06 17:39:17 +09001721 if (!cdev->config || intf >= MAX_CONFIG_INTERFACES)
David Brownell40982be2008-06-19 17:52:58 -07001722 break;
Bryan Wu08889512009-01-08 00:21:19 +08001723 f = cdev->config->interface[intf];
David Brownell40982be2008-06-19 17:52:58 -07001724 if (!f)
1725 break;
Krzysztof Opasiak7e4da3f2016-12-20 19:52:16 +01001726
1727 /*
1728 * If there's no get_alt() method, we know only altsetting zero
1729 * works. There is no need to check if set_alt() is not NULL
1730 * as we check this in usb_add_function().
1731 */
1732 if (w_value && !f->get_alt)
David Brownell40982be2008-06-19 17:52:58 -07001733 break;
Chunfeng Yun980900d2018-05-25 17:24:57 +08001734
1735 spin_lock(&cdev->lock);
David Brownell40982be2008-06-19 17:52:58 -07001736 value = f->set_alt(f, w_index, w_value);
Roger Quadros1b9ba002011-05-09 13:08:06 +03001737 if (value == USB_GADGET_DELAYED_STATUS) {
1738 DBG(cdev,
1739 "%s: interface %d (%s) requested delayed status\n",
1740 __func__, intf, f->name);
1741 cdev->delayed_status++;
1742 DBG(cdev, "delayed_status count %d\n",
1743 cdev->delayed_status);
1744 }
Chunfeng Yun980900d2018-05-25 17:24:57 +08001745 spin_unlock(&cdev->lock);
David Brownell40982be2008-06-19 17:52:58 -07001746 break;
1747 case USB_REQ_GET_INTERFACE:
1748 if (ctrl->bRequestType != (USB_DIR_IN|USB_RECIP_INTERFACE))
1749 goto unknown;
Jassi Brarff085de2011-02-06 17:39:17 +09001750 if (!cdev->config || intf >= MAX_CONFIG_INTERFACES)
David Brownell40982be2008-06-19 17:52:58 -07001751 break;
Bryan Wu08889512009-01-08 00:21:19 +08001752 f = cdev->config->interface[intf];
David Brownell40982be2008-06-19 17:52:58 -07001753 if (!f)
1754 break;
1755 /* lots of interfaces only need altsetting zero... */
1756 value = f->get_alt ? f->get_alt(f, w_index) : 0;
1757 if (value < 0)
1758 break;
1759 *((u8 *)req->buf) = value;
1760 value = min(w_length, (u16) 1);
1761 break;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001762 case USB_REQ_GET_STATUS:
Li Junc5348b62016-02-19 10:04:44 +08001763 if (gadget_is_otg(gadget) && gadget->hnp_polling_support &&
1764 (w_index == OTG_STS_SELECTOR)) {
1765 if (ctrl->bRequestType != (USB_DIR_IN |
1766 USB_RECIP_DEVICE))
1767 goto unknown;
1768 *((u8 *)req->buf) = gadget->host_request_flag;
1769 value = 1;
1770 break;
1771 }
1772
1773 /*
1774 * USB 3.0 additions:
1775 * Function driver should handle get_status request. If such cb
1776 * wasn't supplied we respond with default value = 0
1777 * Note: function driver should supply such cb only for the
1778 * first interface of the function
1779 */
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001780 if (!gadget_is_superspeed(gadget))
1781 goto unknown;
1782 if (ctrl->bRequestType != (USB_DIR_IN | USB_RECIP_INTERFACE))
1783 goto unknown;
1784 value = 2; /* This is the length of the get_status reply */
1785 put_unaligned_le16(0, req->buf);
1786 if (!cdev->config || intf >= MAX_CONFIG_INTERFACES)
1787 break;
1788 f = cdev->config->interface[intf];
1789 if (!f)
1790 break;
1791 status = f->get_status ? f->get_status(f) : 0;
1792 if (status < 0)
1793 break;
1794 put_unaligned_le16(status & 0x0000ffff, req->buf);
1795 break;
1796 /*
1797 * Function drivers should handle SetFeature/ClearFeature
1798 * (FUNCTION_SUSPEND) request. function_suspend cb should be supplied
1799 * only for the first interface of the function
1800 */
1801 case USB_REQ_CLEAR_FEATURE:
1802 case USB_REQ_SET_FEATURE:
1803 if (!gadget_is_superspeed(gadget))
1804 goto unknown;
1805 if (ctrl->bRequestType != (USB_DIR_OUT | USB_RECIP_INTERFACE))
1806 goto unknown;
1807 switch (w_value) {
1808 case USB_INTRF_FUNC_SUSPEND:
1809 if (!cdev->config || intf >= MAX_CONFIG_INTERFACES)
1810 break;
1811 f = cdev->config->interface[intf];
1812 if (!f)
1813 break;
1814 value = 0;
1815 if (f->func_suspend)
1816 value = f->func_suspend(f, w_index >> 8);
1817 if (value < 0) {
1818 ERROR(cdev,
1819 "func_suspend() returned error %d\n",
1820 value);
1821 value = 0;
1822 }
1823 break;
1824 }
1825 break;
David Brownell40982be2008-06-19 17:52:58 -07001826 default:
1827unknown:
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001828 /*
1829 * OS descriptors handling
1830 */
1831 if (cdev->use_os_string && cdev->os_desc_config &&
Mario Schuknechtdf6738d2015-01-26 20:30:27 +01001832 (ctrl->bRequestType & USB_TYPE_VENDOR) &&
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001833 ctrl->bRequest == cdev->b_vendor_code) {
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001834 struct usb_configuration *os_desc_cfg;
1835 u8 *buf;
1836 int interface;
1837 int count = 0;
1838
1839 req = cdev->os_desc_req;
Felipe Balbi57943712014-09-18 09:54:54 -05001840 req->context = cdev;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001841 req->complete = composite_setup_complete;
1842 buf = req->buf;
1843 os_desc_cfg = cdev->os_desc_config;
Chris Dickens5d6ae4f2017-12-31 18:59:42 -08001844 w_length = min_t(u16, w_length, USB_COMP_EP0_OS_DESC_BUFSIZ);
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001845 memset(buf, 0, w_length);
1846 buf[5] = 0x01;
1847 switch (ctrl->bRequestType & USB_RECIP_MASK) {
1848 case USB_RECIP_DEVICE:
1849 if (w_index != 0x4 || (w_value >> 8))
1850 break;
1851 buf[6] = w_index;
Chris Dickens636ba132017-12-31 18:59:43 -08001852 /* Number of ext compat interfaces */
1853 count = count_ext_compat(os_desc_cfg);
1854 buf[8] = count;
1855 count *= 24; /* 24 B/ext compat desc */
1856 count += 16; /* header */
1857 put_unaligned_le32(count, buf);
1858 value = w_length;
1859 if (w_length > 0x10) {
Chris Dickens5d6ae4f2017-12-31 18:59:42 -08001860 value = fill_ext_compat(os_desc_cfg, buf);
1861 value = min_t(u16, w_length, value);
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001862 }
1863 break;
1864 case USB_RECIP_INTERFACE:
1865 if (w_index != 0x5 || (w_value >> 8))
1866 break;
1867 interface = w_value & 0xFF;
1868 buf[6] = w_index;
Chris Dickens636ba132017-12-31 18:59:43 -08001869 count = count_ext_prop(os_desc_cfg,
1870 interface);
1871 put_unaligned_le16(count, buf + 8);
1872 count = len_ext_prop(os_desc_cfg,
1873 interface);
1874 put_unaligned_le32(count, buf);
1875 value = w_length;
1876 if (w_length > 0x0A) {
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001877 value = fill_ext_prop(os_desc_cfg,
1878 interface, buf);
Chris Dickens636ba132017-12-31 18:59:43 -08001879 if (value >= 0)
1880 value = min_t(u16, w_length, value);
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001881 }
1882 break;
1883 }
William Wu7e14f47a2016-05-13 18:30:42 +08001884
Chris Dickens636ba132017-12-31 18:59:43 -08001885 goto check_value;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02001886 }
1887
David Brownell40982be2008-06-19 17:52:58 -07001888 VDBG(cdev,
1889 "non-core control req%02x.%02x v%04x i%04x l%d\n",
1890 ctrl->bRequestType, ctrl->bRequest,
1891 w_value, w_index, w_length);
1892
Laurent Pinchart52426582009-10-21 00:03:38 +02001893 /* functions always handle their interfaces and endpoints...
1894 * punt other recipients (other, WUSB, ...) to the current
David Brownell40982be2008-06-19 17:52:58 -07001895 * configuration code.
David Brownell40982be2008-06-19 17:52:58 -07001896 */
Kishon Vijay Abraham Ib4c21f02015-06-11 22:12:11 +05301897 if (cdev->config) {
1898 list_for_each_entry(f, &cdev->config->functions, list)
Felix Hädicke1a00b4572016-06-22 01:12:08 +02001899 if (f->req_match &&
1900 f->req_match(f, ctrl, false))
Kishon Vijay Abraham Ib4c21f02015-06-11 22:12:11 +05301901 goto try_fun_setup;
Felix Hädicke1a00b4572016-06-22 01:12:08 +02001902 } else {
1903 struct usb_configuration *c;
1904 list_for_each_entry(c, &cdev->configs, list)
1905 list_for_each_entry(f, &c->functions, list)
1906 if (f->req_match &&
1907 f->req_match(f, ctrl, true))
1908 goto try_fun_setup;
Kishon Vijay Abraham Ib4c21f02015-06-11 22:12:11 +05301909 }
Felix Hädicke1a00b4572016-06-22 01:12:08 +02001910 f = NULL;
Kishon Vijay Abraham Ib4c21f02015-06-11 22:12:11 +05301911
Laurent Pinchart52426582009-10-21 00:03:38 +02001912 switch (ctrl->bRequestType & USB_RECIP_MASK) {
1913 case USB_RECIP_INTERFACE:
Jassi Brarff085de2011-02-06 17:39:17 +09001914 if (!cdev->config || intf >= MAX_CONFIG_INTERFACES)
Maulik Mankad3c47eb02011-01-13 18:19:56 +05301915 break;
1916 f = cdev->config->interface[intf];
Laurent Pinchart52426582009-10-21 00:03:38 +02001917 break;
1918
1919 case USB_RECIP_ENDPOINT:
Peter Chenc526c622016-07-01 15:33:28 +08001920 if (!cdev->config)
1921 break;
Laurent Pinchart52426582009-10-21 00:03:38 +02001922 endp = ((w_index & 0x80) >> 3) | (w_index & 0x0f);
1923 list_for_each_entry(f, &cdev->config->functions, list) {
1924 if (test_bit(endp, f->endpoints))
1925 break;
1926 }
1927 if (&f->list == &cdev->config->functions)
David Brownell40982be2008-06-19 17:52:58 -07001928 f = NULL;
Laurent Pinchart52426582009-10-21 00:03:38 +02001929 break;
David Brownell40982be2008-06-19 17:52:58 -07001930 }
Andrzej Pietrasiewiczf563d232015-03-03 10:52:23 +01001931try_fun_setup:
Laurent Pinchart52426582009-10-21 00:03:38 +02001932 if (f && f->setup)
1933 value = f->setup(f, ctrl);
1934 else {
David Brownell40982be2008-06-19 17:52:58 -07001935 struct usb_configuration *c;
1936
1937 c = cdev->config;
Andrzej Pietrasiewicza01091e2013-11-07 08:41:25 +01001938 if (!c)
1939 goto done;
1940
1941 /* try current config's setup */
1942 if (c->setup) {
David Brownell40982be2008-06-19 17:52:58 -07001943 value = c->setup(c, ctrl);
Andrzej Pietrasiewicza01091e2013-11-07 08:41:25 +01001944 goto done;
1945 }
1946
1947 /* try the only function in the current config */
1948 if (!list_is_singular(&c->functions))
1949 goto done;
1950 f = list_first_entry(&c->functions, struct usb_function,
1951 list);
1952 if (f->setup)
1953 value = f->setup(f, ctrl);
David Brownell40982be2008-06-19 17:52:58 -07001954 }
1955
1956 goto done;
1957 }
1958
Chris Dickens636ba132017-12-31 18:59:43 -08001959check_value:
David Brownell40982be2008-06-19 17:52:58 -07001960 /* respond with data transfer before status phase? */
Roger Quadros1b9ba002011-05-09 13:08:06 +03001961 if (value >= 0 && value != USB_GADGET_DELAYED_STATUS) {
David Brownell40982be2008-06-19 17:52:58 -07001962 req->length = value;
Felipe Balbi57943712014-09-18 09:54:54 -05001963 req->context = cdev;
David Brownell40982be2008-06-19 17:52:58 -07001964 req->zero = value < w_length;
Felipe Balbia7c12ea2014-09-18 10:01:55 -05001965 value = composite_ep0_queue(cdev, req, GFP_ATOMIC);
David Brownell40982be2008-06-19 17:52:58 -07001966 if (value < 0) {
1967 DBG(cdev, "ep_queue --> %d\n", value);
1968 req->status = 0;
1969 composite_setup_complete(gadget->ep0, req);
1970 }
Roger Quadros1b9ba002011-05-09 13:08:06 +03001971 } else if (value == USB_GADGET_DELAYED_STATUS && w_length != 0) {
1972 WARN(cdev,
1973 "%s: Delayed status not supported for w_length != 0",
1974 __func__);
David Brownell40982be2008-06-19 17:52:58 -07001975 }
1976
1977done:
1978 /* device either stalls (value < 0) or reports success */
1979 return value;
1980}
1981
Sebastian Andrzej Siewior2d5a8892012-12-23 21:10:21 +01001982void composite_disconnect(struct usb_gadget *gadget)
David Brownell40982be2008-06-19 17:52:58 -07001983{
1984 struct usb_composite_dev *cdev = get_gadget_data(gadget);
1985 unsigned long flags;
1986
1987 /* REVISIT: should we have config and device level
1988 * disconnect callbacks?
1989 */
1990 spin_lock_irqsave(&cdev->lock, flags);
Benjamin Herrenschmidt602fda12019-07-26 14:59:03 +10001991 cdev->suspended = 0;
David Brownell40982be2008-06-19 17:52:58 -07001992 if (cdev->config)
1993 reset_config(cdev);
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001994 if (cdev->driver->disconnect)
1995 cdev->driver->disconnect(cdev);
David Brownell40982be2008-06-19 17:52:58 -07001996 spin_unlock_irqrestore(&cdev->lock, flags);
1997}
1998
1999/*-------------------------------------------------------------------------*/
2000
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -07002001static ssize_t suspended_show(struct device *dev, struct device_attribute *attr,
2002 char *buf)
Fabien Chouteauf48cf802010-04-23 14:21:26 +02002003{
2004 struct usb_gadget *gadget = dev_to_usb_gadget(dev);
2005 struct usb_composite_dev *cdev = get_gadget_data(gadget);
2006
2007 return sprintf(buf, "%d\n", cdev->suspended);
2008}
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -07002009static DEVICE_ATTR_RO(suspended);
Fabien Chouteauf48cf802010-04-23 14:21:26 +02002010
Sebastian Andrzej Siewior779d5162012-12-23 21:09:55 +01002011static void __composite_unbind(struct usb_gadget *gadget, bool unbind_driver)
David Brownell40982be2008-06-19 17:52:58 -07002012{
2013 struct usb_composite_dev *cdev = get_gadget_data(gadget);
Andrew Gabbasovaec17e12017-09-30 08:55:55 -07002014 struct usb_gadget_strings *gstr = cdev->driver->strings[0];
2015 struct usb_string *dev_str = gstr->strings;
David Brownell40982be2008-06-19 17:52:58 -07002016
2017 /* composite_disconnect() must already have been called
2018 * by the underlying peripheral controller driver!
2019 * so there's no i/o concurrency that could affect the
2020 * state protected by cdev->lock.
2021 */
2022 WARN_ON(cdev->config);
2023
2024 while (!list_empty(&cdev->configs)) {
2025 struct usb_configuration *c;
David Brownell40982be2008-06-19 17:52:58 -07002026 c = list_first_entry(&cdev->configs,
2027 struct usb_configuration, list);
Benoit Goby51cce6f2012-05-10 10:07:57 +02002028 remove_config(cdev, c);
David Brownell40982be2008-06-19 17:52:58 -07002029 }
Sebastian Andrzej Siewior779d5162012-12-23 21:09:55 +01002030 if (cdev->driver->unbind && unbind_driver)
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02002031 cdev->driver->unbind(cdev);
David Brownell40982be2008-06-19 17:52:58 -07002032
Sebastian Andrzej Siewiora5923342012-12-23 21:10:20 +01002033 composite_dev_cleanup(cdev);
2034
Andrew Gabbasovaec17e12017-09-30 08:55:55 -07002035 if (dev_str[USB_GADGET_MANUFACTURER_IDX].s == cdev->def_manufacturer)
2036 dev_str[USB_GADGET_MANUFACTURER_IDX].s = "";
2037
Sebastian Andrzej Siewiorcc2683c2012-09-10 15:01:58 +02002038 kfree(cdev->def_manufacturer);
David Brownell40982be2008-06-19 17:52:58 -07002039 kfree(cdev);
2040 set_gadget_data(gadget, NULL);
David Brownell40982be2008-06-19 17:52:58 -07002041}
2042
Sebastian Andrzej Siewior779d5162012-12-23 21:09:55 +01002043static void composite_unbind(struct usb_gadget *gadget)
2044{
2045 __composite_unbind(gadget, true);
2046}
2047
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02002048static void update_unchanged_dev_desc(struct usb_device_descriptor *new,
2049 const struct usb_device_descriptor *old)
2050{
2051 __le16 idVendor;
2052 __le16 idProduct;
2053 __le16 bcdDevice;
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +02002054 u8 iSerialNumber;
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +02002055 u8 iManufacturer;
Sebastian Andrzej Siewior2d35ee42012-09-10 15:01:56 +02002056 u8 iProduct;
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02002057
2058 /*
2059 * these variables may have been set in
2060 * usb_composite_overwrite_options()
2061 */
2062 idVendor = new->idVendor;
2063 idProduct = new->idProduct;
2064 bcdDevice = new->bcdDevice;
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +02002065 iSerialNumber = new->iSerialNumber;
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +02002066 iManufacturer = new->iManufacturer;
Sebastian Andrzej Siewior2d35ee42012-09-10 15:01:56 +02002067 iProduct = new->iProduct;
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02002068
2069 *new = *old;
2070 if (idVendor)
2071 new->idVendor = idVendor;
2072 if (idProduct)
2073 new->idProduct = idProduct;
2074 if (bcdDevice)
2075 new->bcdDevice = bcdDevice;
Sebastian Andrzej Siewiored9cbda2012-09-10 09:16:07 +02002076 else
2077 new->bcdDevice = cpu_to_le16(get_default_bcdDevice());
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +02002078 if (iSerialNumber)
2079 new->iSerialNumber = iSerialNumber;
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +02002080 if (iManufacturer)
2081 new->iManufacturer = iManufacturer;
Sebastian Andrzej Siewior2d35ee42012-09-10 15:01:56 +02002082 if (iProduct)
2083 new->iProduct = iProduct;
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02002084}
2085
Sebastian Andrzej Siewiora5923342012-12-23 21:10:20 +01002086int composite_dev_prepare(struct usb_composite_driver *composite,
2087 struct usb_composite_dev *cdev)
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02002088{
Sebastian Andrzej Siewiora5923342012-12-23 21:10:20 +01002089 struct usb_gadget *gadget = cdev->gadget;
2090 int ret = -ENOMEM;
2091
2092 /* preallocate control response and buffer */
2093 cdev->req = usb_ep_alloc_request(gadget->ep0, GFP_KERNEL);
2094 if (!cdev->req)
2095 return -ENOMEM;
2096
2097 cdev->req->buf = kmalloc(USB_COMP_EP0_BUFSIZ, GFP_KERNEL);
2098 if (!cdev->req->buf)
2099 goto fail;
2100
2101 ret = device_create_file(&gadget->dev, &dev_attr_suspended);
2102 if (ret)
2103 goto fail_dev;
2104
2105 cdev->req->complete = composite_setup_complete;
Felipe Balbi57943712014-09-18 09:54:54 -05002106 cdev->req->context = cdev;
Sebastian Andrzej Siewiora5923342012-12-23 21:10:20 +01002107 gadget->ep0->driver_data = cdev;
2108
2109 cdev->driver = composite;
2110
2111 /*
2112 * As per USB compliance update, a device that is actively drawing
2113 * more than 100mA from USB must report itself as bus-powered in
2114 * the GetStatus(DEVICE) call.
2115 */
2116 if (CONFIG_USB_GADGET_VBUS_DRAW <= USB_SELF_POWER_VBUS_MAX_DRAW)
2117 usb_gadget_set_selfpowered(gadget);
2118
2119 /* interface and string IDs start at zero via kzalloc.
2120 * we force endpoints to start unassigned; few controller
2121 * drivers will zero ep->driver_data.
2122 */
2123 usb_ep_autoconfig_reset(gadget);
2124 return 0;
2125fail_dev:
2126 kfree(cdev->req->buf);
2127fail:
2128 usb_ep_free_request(gadget->ep0, cdev->req);
2129 cdev->req = NULL;
2130 return ret;
2131}
2132
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02002133int composite_os_desc_req_prepare(struct usb_composite_dev *cdev,
2134 struct usb_ep *ep0)
2135{
2136 int ret = 0;
2137
2138 cdev->os_desc_req = usb_ep_alloc_request(ep0, GFP_KERNEL);
2139 if (!cdev->os_desc_req) {
Christophe JAILLET3887db52016-07-16 08:34:33 +02002140 ret = -ENOMEM;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02002141 goto end;
2142 }
2143
Chris Dickens5d6ae4f2017-12-31 18:59:42 -08002144 cdev->os_desc_req->buf = kmalloc(USB_COMP_EP0_OS_DESC_BUFSIZ,
2145 GFP_KERNEL);
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02002146 if (!cdev->os_desc_req->buf) {
Christophe JAILLET3887db52016-07-16 08:34:33 +02002147 ret = -ENOMEM;
Christophe JAILLET990758c2017-01-04 06:30:16 +01002148 usb_ep_free_request(ep0, cdev->os_desc_req);
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02002149 goto end;
2150 }
Felipe Balbi57943712014-09-18 09:54:54 -05002151 cdev->os_desc_req->context = cdev;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02002152 cdev->os_desc_req->complete = composite_setup_complete;
2153end:
2154 return ret;
2155}
2156
Sebastian Andrzej Siewiora5923342012-12-23 21:10:20 +01002157void composite_dev_cleanup(struct usb_composite_dev *cdev)
2158{
Sebastian Andrzej Siewior27a466332012-12-23 21:10:23 +01002159 struct usb_gadget_string_container *uc, *tmp;
Benjamin Herrenschmidtaaeab022018-03-23 13:44:06 +11002160 struct usb_ep *ep, *tmp_ep;
Sebastian Andrzej Siewior27a466332012-12-23 21:10:23 +01002161
2162 list_for_each_entry_safe(uc, tmp, &cdev->gstrings, list) {
2163 list_del(&uc->list);
2164 kfree(uc);
2165 }
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02002166 if (cdev->os_desc_req) {
Felipe Balbia7c12ea2014-09-18 10:01:55 -05002167 if (cdev->os_desc_pending)
2168 usb_ep_dequeue(cdev->gadget->ep0, cdev->os_desc_req);
2169
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02002170 kfree(cdev->os_desc_req->buf);
Chandana Kishori Chiluveru1c20c892019-10-01 13:16:48 +05302171 cdev->os_desc_req->buf = NULL;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02002172 usb_ep_free_request(cdev->gadget->ep0, cdev->os_desc_req);
Chandana Kishori Chiluveru1c20c892019-10-01 13:16:48 +05302173 cdev->os_desc_req = NULL;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02002174 }
Sebastian Andrzej Siewiora5923342012-12-23 21:10:20 +01002175 if (cdev->req) {
Felipe Balbia7c12ea2014-09-18 10:01:55 -05002176 if (cdev->setup_pending)
2177 usb_ep_dequeue(cdev->gadget->ep0, cdev->req);
2178
Li Junbe0a8882014-08-28 21:44:11 +08002179 kfree(cdev->req->buf);
Chandana Kishori Chiluveru1c20c892019-10-01 13:16:48 +05302180 cdev->req->buf = NULL;
Sebastian Andrzej Siewiora5923342012-12-23 21:10:20 +01002181 usb_ep_free_request(cdev->gadget->ep0, cdev->req);
Chandana Kishori Chiluveru1c20c892019-10-01 13:16:48 +05302182 cdev->req = NULL;
Sebastian Andrzej Siewiora5923342012-12-23 21:10:20 +01002183 }
Sebastian Andrzej Siewior88af8bb2012-12-23 21:10:24 +01002184 cdev->next_string_id = 0;
Sebastian Andrzej Siewiora5923342012-12-23 21:10:20 +01002185 device_remove_file(&cdev->gadget->dev, &dev_attr_suspended);
Benjamin Herrenschmidtaaeab022018-03-23 13:44:06 +11002186
2187 /*
2188 * Some UDC backends have a dynamic EP allocation scheme.
2189 *
2190 * In that case, the dispose() callback is used to notify the
2191 * backend that the EPs are no longer in use.
2192 *
2193 * Note: The UDC backend can remove the EP from the ep_list as
2194 * a result, so we need to use the _safe list iterator.
2195 */
2196 list_for_each_entry_safe(ep, tmp_ep,
2197 &cdev->gadget->ep_list, ep_list) {
2198 if (ep->ops->dispose)
2199 ep->ops->dispose(ep);
2200 }
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02002201}
2202
2203static int composite_bind(struct usb_gadget *gadget,
2204 struct usb_gadget_driver *gdriver)
David Brownell40982be2008-06-19 17:52:58 -07002205{
2206 struct usb_composite_dev *cdev;
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02002207 struct usb_composite_driver *composite = to_cdriver(gdriver);
David Brownell40982be2008-06-19 17:52:58 -07002208 int status = -ENOMEM;
2209
2210 cdev = kzalloc(sizeof *cdev, GFP_KERNEL);
2211 if (!cdev)
2212 return status;
2213
2214 spin_lock_init(&cdev->lock);
2215 cdev->gadget = gadget;
2216 set_gadget_data(gadget, cdev);
2217 INIT_LIST_HEAD(&cdev->configs);
Sebastian Andrzej Siewior9bb28592012-12-23 21:10:22 +01002218 INIT_LIST_HEAD(&cdev->gstrings);
David Brownell40982be2008-06-19 17:52:58 -07002219
Sebastian Andrzej Siewiora5923342012-12-23 21:10:20 +01002220 status = composite_dev_prepare(composite, cdev);
2221 if (status)
David Brownell40982be2008-06-19 17:52:58 -07002222 goto fail;
David Brownell40982be2008-06-19 17:52:58 -07002223
2224 /* composite gadget needs to assign strings for whole device (like
2225 * serial number), register function drivers, potentially update
2226 * power state and consumption, etc
2227 */
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +02002228 status = composite->bind(cdev);
David Brownell40982be2008-06-19 17:52:58 -07002229 if (status < 0)
2230 goto fail;
2231
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +02002232 if (cdev->use_os_string) {
2233 status = composite_os_desc_req_prepare(cdev, gadget->ep0);
2234 if (status)
2235 goto fail;
2236 }
2237
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02002238 update_unchanged_dev_desc(&cdev->desc, composite->dev);
Greg Kroah-Hartmandbb442b2010-12-16 15:52:30 -08002239
Michal Nazarewiczad1a8102010-08-12 17:43:46 +02002240 /* has userspace failed to provide a serial number? */
2241 if (composite->needs_serial && !cdev->desc.iSerialNumber)
2242 WARNING(cdev, "userspace failed to provide iSerialNumber\n");
2243
David Brownell40982be2008-06-19 17:52:58 -07002244 INFO(cdev, "%s ready\n", composite->name);
2245 return 0;
2246
2247fail:
Sebastian Andrzej Siewior779d5162012-12-23 21:09:55 +01002248 __composite_unbind(gadget, false);
David Brownell40982be2008-06-19 17:52:58 -07002249 return status;
2250}
2251
2252/*-------------------------------------------------------------------------*/
2253
Andrzej Pietrasiewicz3a571872014-10-08 12:03:36 +02002254void composite_suspend(struct usb_gadget *gadget)
David Brownell40982be2008-06-19 17:52:58 -07002255{
2256 struct usb_composite_dev *cdev = get_gadget_data(gadget);
2257 struct usb_function *f;
2258
David Brownell89429392009-03-19 14:14:17 -07002259 /* REVISIT: should we have config level
David Brownell40982be2008-06-19 17:52:58 -07002260 * suspend/resume callbacks?
2261 */
2262 DBG(cdev, "suspend\n");
2263 if (cdev->config) {
2264 list_for_each_entry(f, &cdev->config->functions, list) {
2265 if (f->suspend)
2266 f->suspend(f);
2267 }
2268 }
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02002269 if (cdev->driver->suspend)
2270 cdev->driver->suspend(cdev);
Fabien Chouteauf48cf802010-04-23 14:21:26 +02002271
2272 cdev->suspended = 1;
Hao Wub23f2f92010-11-29 15:17:03 +08002273
2274 usb_gadget_vbus_draw(gadget, 2);
David Brownell40982be2008-06-19 17:52:58 -07002275}
2276
Andrzej Pietrasiewicz3a571872014-10-08 12:03:36 +02002277void composite_resume(struct usb_gadget *gadget)
David Brownell40982be2008-06-19 17:52:58 -07002278{
2279 struct usb_composite_dev *cdev = get_gadget_data(gadget);
2280 struct usb_function *f;
Du, ChangbinX56b1b902013-12-17 11:47:42 +00002281 u16 maxpower;
David Brownell40982be2008-06-19 17:52:58 -07002282
David Brownell89429392009-03-19 14:14:17 -07002283 /* REVISIT: should we have config level
David Brownell40982be2008-06-19 17:52:58 -07002284 * suspend/resume callbacks?
2285 */
2286 DBG(cdev, "resume\n");
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02002287 if (cdev->driver->resume)
2288 cdev->driver->resume(cdev);
David Brownell40982be2008-06-19 17:52:58 -07002289 if (cdev->config) {
2290 list_for_each_entry(f, &cdev->config->functions, list) {
2291 if (f->resume)
2292 f->resume(f);
2293 }
Hao Wub23f2f92010-11-29 15:17:03 +08002294
Sebastian Andrzej Siewior8f900a92012-12-03 20:07:05 +01002295 maxpower = cdev->config->MaxPower;
Hao Wub23f2f92010-11-29 15:17:03 +08002296
2297 usb_gadget_vbus_draw(gadget, maxpower ?
Sebastian Andrzej Siewior8f900a92012-12-03 20:07:05 +01002298 maxpower : CONFIG_USB_GADGET_VBUS_DRAW);
David Brownell40982be2008-06-19 17:52:58 -07002299 }
Fabien Chouteauf48cf802010-04-23 14:21:26 +02002300
2301 cdev->suspended = 0;
David Brownell40982be2008-06-19 17:52:58 -07002302}
2303
2304/*-------------------------------------------------------------------------*/
2305
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02002306static const struct usb_gadget_driver composite_driver_template = {
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02002307 .bind = composite_bind,
Michal Nazarewicz915c8be2009-11-09 14:15:25 +01002308 .unbind = composite_unbind,
David Brownell40982be2008-06-19 17:52:58 -07002309
2310 .setup = composite_setup,
Peter Chend8a816f2014-09-09 08:56:49 +08002311 .reset = composite_disconnect,
David Brownell40982be2008-06-19 17:52:58 -07002312 .disconnect = composite_disconnect,
2313
2314 .suspend = composite_suspend,
2315 .resume = composite_resume,
2316
2317 .driver = {
2318 .owner = THIS_MODULE,
2319 },
2320};
2321
2322/**
Michal Nazarewicz07a18bd2010-08-12 17:43:54 +02002323 * usb_composite_probe() - register a composite driver
David Brownell40982be2008-06-19 17:52:58 -07002324 * @driver: the driver to register
Nishanth Menon43febb22013-03-04 16:52:38 -06002325 *
David Brownell40982be2008-06-19 17:52:58 -07002326 * Context: single threaded during gadget setup
2327 *
2328 * This function is used to register drivers using the composite driver
2329 * framework. The return value is zero, or a negative errno value.
2330 * Those values normally come from the driver's @bind method, which does
2331 * all the work of setting up the driver to match the hardware.
2332 *
2333 * On successful return, the gadget is ready to respond to requests from
2334 * the host, unless one of its components invokes usb_gadget_disconnect()
2335 * while it was binding. That would usually be done in order to wait for
2336 * some userspace participation.
2337 */
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +02002338int usb_composite_probe(struct usb_composite_driver *driver)
David Brownell40982be2008-06-19 17:52:58 -07002339{
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02002340 struct usb_gadget_driver *gadget_driver;
2341
2342 if (!driver || !driver->dev || !driver->bind)
David Brownell40982be2008-06-19 17:52:58 -07002343 return -EINVAL;
2344
2345 if (!driver->name)
2346 driver->name = "composite";
David Brownell40982be2008-06-19 17:52:58 -07002347
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02002348 driver->gadget_driver = composite_driver_template;
2349 gadget_driver = &driver->gadget_driver;
2350
2351 gadget_driver->function = (char *) driver->name;
2352 gadget_driver->driver.name = driver->name;
2353 gadget_driver->max_speed = driver->max_speed;
2354
2355 return usb_gadget_probe_driver(gadget_driver);
David Brownell40982be2008-06-19 17:52:58 -07002356}
Sebastian Andrzej Siewior721e2e92012-09-06 20:11:27 +02002357EXPORT_SYMBOL_GPL(usb_composite_probe);
David Brownell40982be2008-06-19 17:52:58 -07002358
2359/**
2360 * usb_composite_unregister() - unregister a composite driver
2361 * @driver: the driver to unregister
2362 *
2363 * This function is used to unregister drivers using the composite
2364 * driver framework.
2365 */
Michal Nazarewicz28824b12010-05-05 12:53:13 +02002366void usb_composite_unregister(struct usb_composite_driver *driver)
David Brownell40982be2008-06-19 17:52:58 -07002367{
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02002368 usb_gadget_unregister_driver(&driver->gadget_driver);
David Brownell40982be2008-06-19 17:52:58 -07002369}
Sebastian Andrzej Siewior721e2e92012-09-06 20:11:27 +02002370EXPORT_SYMBOL_GPL(usb_composite_unregister);
Roger Quadros1b9ba002011-05-09 13:08:06 +03002371
2372/**
2373 * usb_composite_setup_continue() - Continue with the control transfer
2374 * @cdev: the composite device who's control transfer was kept waiting
2375 *
2376 * This function must be called by the USB function driver to continue
2377 * with the control transfer's data/status stage in case it had requested to
2378 * delay the data/status stages. A USB function's setup handler (e.g. set_alt())
2379 * can request the composite framework to delay the setup request's data/status
2380 * stages by returning USB_GADGET_DELAYED_STATUS.
2381 */
2382void usb_composite_setup_continue(struct usb_composite_dev *cdev)
2383{
2384 int value;
2385 struct usb_request *req = cdev->req;
2386 unsigned long flags;
2387
2388 DBG(cdev, "%s\n", __func__);
2389 spin_lock_irqsave(&cdev->lock, flags);
2390
2391 if (cdev->delayed_status == 0) {
2392 WARN(cdev, "%s: Unexpected call\n", __func__);
2393
2394 } else if (--cdev->delayed_status == 0) {
2395 DBG(cdev, "%s: Completing delayed status\n", __func__);
2396 req->length = 0;
Felipe Balbi57943712014-09-18 09:54:54 -05002397 req->context = cdev;
Felipe Balbia7c12ea2014-09-18 10:01:55 -05002398 value = composite_ep0_queue(cdev, req, GFP_ATOMIC);
Roger Quadros1b9ba002011-05-09 13:08:06 +03002399 if (value < 0) {
2400 DBG(cdev, "ep_queue --> %d\n", value);
2401 req->status = 0;
2402 composite_setup_complete(cdev->gadget->ep0, req);
2403 }
2404 }
2405
2406 spin_unlock_irqrestore(&cdev->lock, flags);
2407}
Sebastian Andrzej Siewior721e2e92012-09-06 20:11:27 +02002408EXPORT_SYMBOL_GPL(usb_composite_setup_continue);
Roger Quadros1b9ba002011-05-09 13:08:06 +03002409
Sebastian Andrzej Siewiorcc2683c2012-09-10 15:01:58 +02002410static char *composite_default_mfr(struct usb_gadget *gadget)
2411{
Juergen Gross5002c932016-10-10 12:48:36 +02002412 return kasprintf(GFP_KERNEL, "%s %s with %s", init_utsname()->sysname,
2413 init_utsname()->release, gadget->name);
Sebastian Andrzej Siewiorcc2683c2012-09-10 15:01:58 +02002414}
2415
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02002416void usb_composite_overwrite_options(struct usb_composite_dev *cdev,
2417 struct usb_composite_overwrite *covr)
2418{
2419 struct usb_device_descriptor *desc = &cdev->desc;
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +02002420 struct usb_gadget_strings *gstr = cdev->driver->strings[0];
2421 struct usb_string *dev_str = gstr->strings;
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02002422
2423 if (covr->idVendor)
2424 desc->idVendor = cpu_to_le16(covr->idVendor);
2425
2426 if (covr->idProduct)
2427 desc->idProduct = cpu_to_le16(covr->idProduct);
2428
2429 if (covr->bcdDevice)
2430 desc->bcdDevice = cpu_to_le16(covr->bcdDevice);
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +02002431
2432 if (covr->serial_number) {
2433 desc->iSerialNumber = dev_str[USB_GADGET_SERIAL_IDX].id;
2434 dev_str[USB_GADGET_SERIAL_IDX].s = covr->serial_number;
2435 }
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +02002436 if (covr->manufacturer) {
2437 desc->iManufacturer = dev_str[USB_GADGET_MANUFACTURER_IDX].id;
2438 dev_str[USB_GADGET_MANUFACTURER_IDX].s = covr->manufacturer;
Sebastian Andrzej Siewiorcc2683c2012-09-10 15:01:58 +02002439
2440 } else if (!strlen(dev_str[USB_GADGET_MANUFACTURER_IDX].s)) {
2441 desc->iManufacturer = dev_str[USB_GADGET_MANUFACTURER_IDX].id;
2442 cdev->def_manufacturer = composite_default_mfr(cdev->gadget);
2443 dev_str[USB_GADGET_MANUFACTURER_IDX].s = cdev->def_manufacturer;
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +02002444 }
Sebastian Andrzej Siewior2d35ee42012-09-10 15:01:56 +02002445
2446 if (covr->product) {
2447 desc->iProduct = dev_str[USB_GADGET_PRODUCT_IDX].id;
2448 dev_str[USB_GADGET_PRODUCT_IDX].s = covr->product;
2449 }
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02002450}
Sebastian Andrzej Siewior721e2e92012-09-06 20:11:27 +02002451EXPORT_SYMBOL_GPL(usb_composite_overwrite_options);
Sebastian Andrzej Siewiord80c3042012-09-06 20:11:28 +02002452
2453MODULE_LICENSE("GPL");
2454MODULE_AUTHOR("David Brownell");