blob: 482cf8cf301d269ccec5860576ffb339b4862b3c [file] [log] [blame]
David Brownell40982be2008-06-19 17:52:58 -07001/*
2 * composite.c - infrastructure for Composite USB Gadgets
3 *
4 * Copyright (C) 2006-2008 David Brownell
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
David Brownell40982be2008-06-19 17:52:58 -070010 */
11
12/* #define VERBOSE_DEBUG */
13
14#include <linux/kallsyms.h>
15#include <linux/kernel.h>
16#include <linux/slab.h>
Paul Gortmaker6eb0de82011-07-03 16:09:31 -040017#include <linux/module.h>
David Brownell40982be2008-06-19 17:52:58 -070018#include <linux/device.h>
Michal Nazarewiczad1a8102010-08-12 17:43:46 +020019#include <linux/utsname.h>
David Brownell40982be2008-06-19 17:52:58 -070020
21#include <linux/usb/composite.h>
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +030022#include <asm/unaligned.h>
David Brownell40982be2008-06-19 17:52:58 -070023
24/*
25 * The code in this file is utility code, used to build a gadget driver
26 * from one or more "function" drivers, one or more "configuration"
27 * objects, and a "usb_composite_driver" by gluing them together along
28 * with the relevant device-wide data.
29 */
30
Lucas De Marchi25985ed2011-03-30 22:57:33 -030031/* Some systems will need runtime overrides for the product identifiers
David Brownell40982be2008-06-19 17:52:58 -070032 * published in the device descriptor, either numbers or strings or both.
33 * String parameters are in UTF-8 (superset of ASCII's 7 bit characters).
34 */
David Brownell40982be2008-06-19 17:52:58 -070035static char *iProduct;
Sebastian Andrzej Siewior72258492012-09-06 20:11:15 +020036module_param(iProduct, charp, S_IRUGO);
David Brownell40982be2008-06-19 17:52:58 -070037MODULE_PARM_DESC(iProduct, "USB Product string");
38
Michal Nazarewiczad1a8102010-08-12 17:43:46 +020039static char composite_manufacturer[50];
40
David Brownell40982be2008-06-19 17:52:58 -070041/*-------------------------------------------------------------------------*/
Tatyana Brokhman48767a42011-06-28 16:33:49 +030042/**
43 * next_ep_desc() - advance to the next EP descriptor
44 * @t: currect pointer within descriptor array
45 *
46 * Return: next EP descriptor or NULL
47 *
48 * Iterate over @t until either EP descriptor found or
49 * NULL (that indicates end of list) encountered
50 */
51static struct usb_descriptor_header**
52next_ep_desc(struct usb_descriptor_header **t)
53{
54 for (; *t; t++) {
55 if ((*t)->bDescriptorType == USB_DT_ENDPOINT)
56 return t;
57 }
58 return NULL;
59}
60
61/*
62 * for_each_ep_desc()- iterate over endpoint descriptors in the
63 * descriptors list
64 * @start: pointer within descriptor array.
65 * @ep_desc: endpoint descriptor to use as the loop cursor
66 */
67#define for_each_ep_desc(start, ep_desc) \
68 for (ep_desc = next_ep_desc(start); \
69 ep_desc; ep_desc = next_ep_desc(ep_desc+1))
70
71/**
72 * config_ep_by_speed() - configures the given endpoint
73 * according to gadget speed.
74 * @g: pointer to the gadget
75 * @f: usb function
76 * @_ep: the endpoint to configure
77 *
78 * Return: error code, 0 on success
79 *
80 * This function chooses the right descriptors for a given
81 * endpoint according to gadget speed and saves it in the
82 * endpoint desc field. If the endpoint already has a descriptor
83 * assigned to it - overwrites it with currently corresponding
84 * descriptor. The endpoint maxpacket field is updated according
85 * to the chosen descriptor.
86 * Note: the supplied function should hold all the descriptors
87 * for supported speeds
88 */
89int config_ep_by_speed(struct usb_gadget *g,
90 struct usb_function *f,
91 struct usb_ep *_ep)
92{
Felipe Balbib785ea72012-06-06 10:20:23 +030093 struct usb_composite_dev *cdev = get_gadget_data(g);
Tatyana Brokhman48767a42011-06-28 16:33:49 +030094 struct usb_endpoint_descriptor *chosen_desc = NULL;
95 struct usb_descriptor_header **speed_desc = NULL;
96
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +030097 struct usb_ss_ep_comp_descriptor *comp_desc = NULL;
98 int want_comp_desc = 0;
99
Tatyana Brokhman48767a42011-06-28 16:33:49 +0300100 struct usb_descriptor_header **d_spd; /* cursor for speed desc */
101
102 if (!g || !f || !_ep)
103 return -EIO;
104
105 /* select desired speed */
106 switch (g->speed) {
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300107 case USB_SPEED_SUPER:
108 if (gadget_is_superspeed(g)) {
109 speed_desc = f->ss_descriptors;
110 want_comp_desc = 1;
111 break;
112 }
113 /* else: Fall trough */
Tatyana Brokhman48767a42011-06-28 16:33:49 +0300114 case USB_SPEED_HIGH:
115 if (gadget_is_dualspeed(g)) {
116 speed_desc = f->hs_descriptors;
117 break;
118 }
119 /* else: fall through */
120 default:
121 speed_desc = f->descriptors;
122 }
123 /* find descriptors */
124 for_each_ep_desc(speed_desc, d_spd) {
125 chosen_desc = (struct usb_endpoint_descriptor *)*d_spd;
126 if (chosen_desc->bEndpointAddress == _ep->address)
127 goto ep_found;
128 }
129 return -EIO;
130
131ep_found:
132 /* commit results */
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700133 _ep->maxpacket = usb_endpoint_maxp(chosen_desc);
Tatyana Brokhman48767a42011-06-28 16:33:49 +0300134 _ep->desc = chosen_desc;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300135 _ep->comp_desc = NULL;
136 _ep->maxburst = 0;
137 _ep->mult = 0;
138 if (!want_comp_desc)
139 return 0;
Tatyana Brokhman48767a42011-06-28 16:33:49 +0300140
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300141 /*
142 * Companion descriptor should follow EP descriptor
143 * USB 3.0 spec, #9.6.7
144 */
145 comp_desc = (struct usb_ss_ep_comp_descriptor *)*(++d_spd);
146 if (!comp_desc ||
147 (comp_desc->bDescriptorType != USB_DT_SS_ENDPOINT_COMP))
148 return -EIO;
149 _ep->comp_desc = comp_desc;
150 if (g->speed == USB_SPEED_SUPER) {
151 switch (usb_endpoint_type(_ep->desc)) {
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300152 case USB_ENDPOINT_XFER_ISOC:
153 /* mult: bits 1:0 of bmAttributes */
154 _ep->mult = comp_desc->bmAttributes & 0x3;
Paul Zimmerman9e878a62012-01-16 13:24:38 -0800155 case USB_ENDPOINT_XFER_BULK:
156 case USB_ENDPOINT_XFER_INT:
Felipe Balbib785ea72012-06-06 10:20:23 +0300157 _ep->maxburst = comp_desc->bMaxBurst + 1;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300158 break;
159 default:
Felipe Balbib785ea72012-06-06 10:20:23 +0300160 if (comp_desc->bMaxBurst != 0)
161 ERROR(cdev, "ep0 bMaxBurst must be 0\n");
162 _ep->maxburst = 1;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300163 break;
164 }
165 }
Tatyana Brokhman48767a42011-06-28 16:33:49 +0300166 return 0;
167}
David Brownell40982be2008-06-19 17:52:58 -0700168
169/**
170 * usb_add_function() - add a function to a configuration
171 * @config: the configuration
172 * @function: the function being added
173 * Context: single threaded during gadget setup
174 *
175 * After initialization, each configuration must have one or more
176 * functions added to it. Adding a function involves calling its @bind()
177 * method to allocate resources such as interface and string identifiers
178 * and endpoints.
179 *
180 * This function returns the value of the function's bind(), which is
181 * zero for success else a negative errno value.
182 */
Michal Nazarewicz28824b12010-05-05 12:53:13 +0200183int usb_add_function(struct usb_configuration *config,
David Brownell40982be2008-06-19 17:52:58 -0700184 struct usb_function *function)
185{
186 int value = -EINVAL;
187
188 DBG(config->cdev, "adding '%s'/%p to config '%s'/%p\n",
189 function->name, function,
190 config->label, config);
191
192 if (!function->set_alt || !function->disable)
193 goto done;
194
195 function->config = config;
196 list_add_tail(&function->list, &config->functions);
197
198 /* REVISIT *require* function->bind? */
199 if (function->bind) {
200 value = function->bind(config, function);
201 if (value < 0) {
202 list_del(&function->list);
203 function->config = NULL;
204 }
205 } else
206 value = 0;
207
208 /* We allow configurations that don't work at both speeds.
209 * If we run into a lowspeed Linux system, treat it the same
210 * as full speed ... it's the function drivers that will need
211 * to avoid bulk and ISO transfers.
212 */
213 if (!config->fullspeed && function->descriptors)
214 config->fullspeed = true;
215 if (!config->highspeed && function->hs_descriptors)
216 config->highspeed = true;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300217 if (!config->superspeed && function->ss_descriptors)
218 config->superspeed = true;
David Brownell40982be2008-06-19 17:52:58 -0700219
220done:
221 if (value)
222 DBG(config->cdev, "adding '%s'/%p --> %d\n",
223 function->name, function, value);
224 return value;
225}
226
227/**
David Brownell60beed92008-08-18 17:38:22 -0700228 * usb_function_deactivate - prevent function and gadget enumeration
229 * @function: the function that isn't yet ready to respond
230 *
231 * Blocks response of the gadget driver to host enumeration by
232 * preventing the data line pullup from being activated. This is
233 * normally called during @bind() processing to change from the
234 * initial "ready to respond" state, or when a required resource
235 * becomes available.
236 *
237 * For example, drivers that serve as a passthrough to a userspace
238 * daemon can block enumeration unless that daemon (such as an OBEX,
239 * MTP, or print server) is ready to handle host requests.
240 *
241 * Not all systems support software control of their USB peripheral
242 * data pullups.
243 *
244 * Returns zero on success, else negative errno.
245 */
246int usb_function_deactivate(struct usb_function *function)
247{
248 struct usb_composite_dev *cdev = function->config->cdev;
Felipe Balbib2bdf3a2009-02-12 15:09:47 +0200249 unsigned long flags;
David Brownell60beed92008-08-18 17:38:22 -0700250 int status = 0;
251
Felipe Balbib2bdf3a2009-02-12 15:09:47 +0200252 spin_lock_irqsave(&cdev->lock, flags);
David Brownell60beed92008-08-18 17:38:22 -0700253
254 if (cdev->deactivations == 0)
255 status = usb_gadget_disconnect(cdev->gadget);
256 if (status == 0)
257 cdev->deactivations++;
258
Felipe Balbib2bdf3a2009-02-12 15:09:47 +0200259 spin_unlock_irqrestore(&cdev->lock, flags);
David Brownell60beed92008-08-18 17:38:22 -0700260 return status;
261}
262
263/**
264 * usb_function_activate - allow function and gadget enumeration
265 * @function: function on which usb_function_activate() was called
266 *
267 * Reverses effect of usb_function_deactivate(). If no more functions
268 * are delaying their activation, the gadget driver will respond to
269 * host enumeration procedures.
270 *
271 * Returns zero on success, else negative errno.
272 */
273int usb_function_activate(struct usb_function *function)
274{
275 struct usb_composite_dev *cdev = function->config->cdev;
Michael Grzeschik4fefe9f62012-07-19 00:20:11 +0200276 unsigned long flags;
David Brownell60beed92008-08-18 17:38:22 -0700277 int status = 0;
278
Michael Grzeschik4fefe9f62012-07-19 00:20:11 +0200279 spin_lock_irqsave(&cdev->lock, flags);
David Brownell60beed92008-08-18 17:38:22 -0700280
281 if (WARN_ON(cdev->deactivations == 0))
282 status = -EINVAL;
283 else {
284 cdev->deactivations--;
285 if (cdev->deactivations == 0)
286 status = usb_gadget_connect(cdev->gadget);
287 }
288
Michael Grzeschik4fefe9f62012-07-19 00:20:11 +0200289 spin_unlock_irqrestore(&cdev->lock, flags);
David Brownell60beed92008-08-18 17:38:22 -0700290 return status;
291}
292
293/**
David Brownell40982be2008-06-19 17:52:58 -0700294 * usb_interface_id() - allocate an unused interface ID
295 * @config: configuration associated with the interface
296 * @function: function handling the interface
297 * Context: single threaded during gadget setup
298 *
299 * usb_interface_id() is called from usb_function.bind() callbacks to
300 * allocate new interface IDs. The function driver will then store that
301 * ID in interface, association, CDC union, and other descriptors. It
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300302 * will also handle any control requests targeted at that interface,
David Brownell40982be2008-06-19 17:52:58 -0700303 * particularly changing its altsetting via set_alt(). There may
304 * also be class-specific or vendor-specific requests to handle.
305 *
306 * All interface identifier should be allocated using this routine, to
307 * ensure that for example different functions don't wrongly assign
308 * different meanings to the same identifier. Note that since interface
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300309 * identifiers are configuration-specific, functions used in more than
David Brownell40982be2008-06-19 17:52:58 -0700310 * one configuration (or more than once in a given configuration) need
311 * multiple versions of the relevant descriptors.
312 *
313 * Returns the interface ID which was allocated; or -ENODEV if no
314 * more interface IDs can be allocated.
315 */
Michal Nazarewicz28824b12010-05-05 12:53:13 +0200316int usb_interface_id(struct usb_configuration *config,
David Brownell40982be2008-06-19 17:52:58 -0700317 struct usb_function *function)
318{
319 unsigned id = config->next_interface_id;
320
321 if (id < MAX_CONFIG_INTERFACES) {
322 config->interface[id] = function;
323 config->next_interface_id = id + 1;
324 return id;
325 }
326 return -ENODEV;
327}
328
329static int config_buf(struct usb_configuration *config,
330 enum usb_device_speed speed, void *buf, u8 type)
331{
332 struct usb_config_descriptor *c = buf;
333 void *next = buf + USB_DT_CONFIG_SIZE;
Sebastian Andrzej Siewiore13f17f2012-09-10 15:01:51 +0200334 int len;
David Brownell40982be2008-06-19 17:52:58 -0700335 struct usb_function *f;
336 int status;
337
Sebastian Andrzej Siewiore13f17f2012-09-10 15:01:51 +0200338 len = USB_COMP_EP0_BUFSIZ - USB_DT_CONFIG_SIZE;
David Brownell40982be2008-06-19 17:52:58 -0700339 /* write the config descriptor */
340 c = buf;
341 c->bLength = USB_DT_CONFIG_SIZE;
342 c->bDescriptorType = type;
343 /* wTotalLength is written later */
344 c->bNumInterfaces = config->next_interface_id;
345 c->bConfigurationValue = config->bConfigurationValue;
346 c->iConfiguration = config->iConfiguration;
347 c->bmAttributes = USB_CONFIG_ATT_ONE | config->bmAttributes;
David Brownell36e893d2008-09-12 09:39:06 -0700348 c->bMaxPower = config->bMaxPower ? : (CONFIG_USB_GADGET_VBUS_DRAW / 2);
David Brownell40982be2008-06-19 17:52:58 -0700349
350 /* There may be e.g. OTG descriptors */
351 if (config->descriptors) {
352 status = usb_descriptor_fillbuf(next, len,
353 config->descriptors);
354 if (status < 0)
355 return status;
356 len -= status;
357 next += status;
358 }
359
360 /* add each function's descriptors */
361 list_for_each_entry(f, &config->functions, list) {
362 struct usb_descriptor_header **descriptors;
363
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300364 switch (speed) {
365 case USB_SPEED_SUPER:
366 descriptors = f->ss_descriptors;
367 break;
368 case USB_SPEED_HIGH:
David Brownell40982be2008-06-19 17:52:58 -0700369 descriptors = f->hs_descriptors;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300370 break;
371 default:
David Brownell40982be2008-06-19 17:52:58 -0700372 descriptors = f->descriptors;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300373 }
374
David Brownell40982be2008-06-19 17:52:58 -0700375 if (!descriptors)
376 continue;
377 status = usb_descriptor_fillbuf(next, len,
378 (const struct usb_descriptor_header **) descriptors);
379 if (status < 0)
380 return status;
381 len -= status;
382 next += status;
383 }
384
385 len = next - buf;
386 c->wTotalLength = cpu_to_le16(len);
387 return len;
388}
389
390static int config_desc(struct usb_composite_dev *cdev, unsigned w_value)
391{
392 struct usb_gadget *gadget = cdev->gadget;
393 struct usb_configuration *c;
394 u8 type = w_value >> 8;
395 enum usb_device_speed speed = USB_SPEED_UNKNOWN;
396
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300397 if (gadget->speed == USB_SPEED_SUPER)
398 speed = gadget->speed;
399 else if (gadget_is_dualspeed(gadget)) {
400 int hs = 0;
David Brownell40982be2008-06-19 17:52:58 -0700401 if (gadget->speed == USB_SPEED_HIGH)
402 hs = 1;
403 if (type == USB_DT_OTHER_SPEED_CONFIG)
404 hs = !hs;
405 if (hs)
406 speed = USB_SPEED_HIGH;
407
408 }
409
410 /* This is a lookup by config *INDEX* */
411 w_value &= 0xff;
412 list_for_each_entry(c, &cdev->configs, list) {
413 /* ignore configs that won't work at this speed */
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300414 switch (speed) {
415 case USB_SPEED_SUPER:
416 if (!c->superspeed)
417 continue;
418 break;
419 case USB_SPEED_HIGH:
David Brownell40982be2008-06-19 17:52:58 -0700420 if (!c->highspeed)
421 continue;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300422 break;
423 default:
David Brownell40982be2008-06-19 17:52:58 -0700424 if (!c->fullspeed)
425 continue;
426 }
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300427
David Brownell40982be2008-06-19 17:52:58 -0700428 if (w_value == 0)
429 return config_buf(c, speed, cdev->req->buf, type);
430 w_value--;
431 }
432 return -EINVAL;
433}
434
435static int count_configs(struct usb_composite_dev *cdev, unsigned type)
436{
437 struct usb_gadget *gadget = cdev->gadget;
438 struct usb_configuration *c;
439 unsigned count = 0;
440 int hs = 0;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300441 int ss = 0;
David Brownell40982be2008-06-19 17:52:58 -0700442
443 if (gadget_is_dualspeed(gadget)) {
444 if (gadget->speed == USB_SPEED_HIGH)
445 hs = 1;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300446 if (gadget->speed == USB_SPEED_SUPER)
447 ss = 1;
David Brownell40982be2008-06-19 17:52:58 -0700448 if (type == USB_DT_DEVICE_QUALIFIER)
449 hs = !hs;
450 }
451 list_for_each_entry(c, &cdev->configs, list) {
452 /* ignore configs that won't work at this speed */
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300453 if (ss) {
454 if (!c->superspeed)
455 continue;
456 } else if (hs) {
David Brownell40982be2008-06-19 17:52:58 -0700457 if (!c->highspeed)
458 continue;
459 } else {
460 if (!c->fullspeed)
461 continue;
462 }
463 count++;
464 }
465 return count;
466}
467
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300468/**
469 * bos_desc() - prepares the BOS descriptor.
470 * @cdev: pointer to usb_composite device to generate the bos
471 * descriptor for
472 *
473 * This function generates the BOS (Binary Device Object)
474 * descriptor and its device capabilities descriptors. The BOS
475 * descriptor should be supported by a SuperSpeed device.
476 */
477static int bos_desc(struct usb_composite_dev *cdev)
478{
479 struct usb_ext_cap_descriptor *usb_ext;
480 struct usb_ss_cap_descriptor *ss_cap;
481 struct usb_dcd_config_params dcd_config_params;
482 struct usb_bos_descriptor *bos = cdev->req->buf;
483
484 bos->bLength = USB_DT_BOS_SIZE;
485 bos->bDescriptorType = USB_DT_BOS;
486
487 bos->wTotalLength = cpu_to_le16(USB_DT_BOS_SIZE);
488 bos->bNumDeviceCaps = 0;
489
490 /*
491 * A SuperSpeed device shall include the USB2.0 extension descriptor
492 * and shall support LPM when operating in USB2.0 HS mode.
493 */
494 usb_ext = cdev->req->buf + le16_to_cpu(bos->wTotalLength);
495 bos->bNumDeviceCaps++;
496 le16_add_cpu(&bos->wTotalLength, USB_DT_USB_EXT_CAP_SIZE);
497 usb_ext->bLength = USB_DT_USB_EXT_CAP_SIZE;
498 usb_ext->bDescriptorType = USB_DT_DEVICE_CAPABILITY;
499 usb_ext->bDevCapabilityType = USB_CAP_TYPE_EXT;
500 usb_ext->bmAttributes = cpu_to_le32(USB_LPM_SUPPORT);
501
502 /*
503 * The Superspeed USB Capability descriptor shall be implemented by all
504 * SuperSpeed devices.
505 */
506 ss_cap = cdev->req->buf + le16_to_cpu(bos->wTotalLength);
507 bos->bNumDeviceCaps++;
508 le16_add_cpu(&bos->wTotalLength, USB_DT_USB_SS_CAP_SIZE);
509 ss_cap->bLength = USB_DT_USB_SS_CAP_SIZE;
510 ss_cap->bDescriptorType = USB_DT_DEVICE_CAPABILITY;
511 ss_cap->bDevCapabilityType = USB_SS_CAP_TYPE;
512 ss_cap->bmAttributes = 0; /* LTM is not supported yet */
513 ss_cap->wSpeedSupported = cpu_to_le16(USB_LOW_SPEED_OPERATION |
514 USB_FULL_SPEED_OPERATION |
515 USB_HIGH_SPEED_OPERATION |
516 USB_5GBPS_OPERATION);
517 ss_cap->bFunctionalitySupport = USB_LOW_SPEED_OPERATION;
518
519 /* Get Controller configuration */
520 if (cdev->gadget->ops->get_config_params)
521 cdev->gadget->ops->get_config_params(&dcd_config_params);
522 else {
Felipe Balbi089b8372011-10-10 09:43:44 +0300523 dcd_config_params.bU1devExitLat = USB_DEFAULT_U1_DEV_EXIT_LAT;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300524 dcd_config_params.bU2DevExitLat =
Felipe Balbi089b8372011-10-10 09:43:44 +0300525 cpu_to_le16(USB_DEFAULT_U2_DEV_EXIT_LAT);
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300526 }
527 ss_cap->bU1devExitLat = dcd_config_params.bU1devExitLat;
528 ss_cap->bU2DevExitLat = dcd_config_params.bU2DevExitLat;
529
530 return le16_to_cpu(bos->wTotalLength);
531}
532
David Brownell40982be2008-06-19 17:52:58 -0700533static void device_qual(struct usb_composite_dev *cdev)
534{
535 struct usb_qualifier_descriptor *qual = cdev->req->buf;
536
537 qual->bLength = sizeof(*qual);
538 qual->bDescriptorType = USB_DT_DEVICE_QUALIFIER;
539 /* POLICY: same bcdUSB and device type info at both speeds */
540 qual->bcdUSB = cdev->desc.bcdUSB;
541 qual->bDeviceClass = cdev->desc.bDeviceClass;
542 qual->bDeviceSubClass = cdev->desc.bDeviceSubClass;
543 qual->bDeviceProtocol = cdev->desc.bDeviceProtocol;
544 /* ASSUME same EP0 fifo size at both speeds */
Sebastian Andrzej Siewior765f5b82011-06-23 14:26:11 +0200545 qual->bMaxPacketSize0 = cdev->gadget->ep0->maxpacket;
David Brownell40982be2008-06-19 17:52:58 -0700546 qual->bNumConfigurations = count_configs(cdev, USB_DT_DEVICE_QUALIFIER);
David Lopoc24f4222008-07-01 13:14:17 -0700547 qual->bRESERVED = 0;
David Brownell40982be2008-06-19 17:52:58 -0700548}
549
550/*-------------------------------------------------------------------------*/
551
552static void reset_config(struct usb_composite_dev *cdev)
553{
554 struct usb_function *f;
555
556 DBG(cdev, "reset config\n");
557
558 list_for_each_entry(f, &cdev->config->functions, list) {
559 if (f->disable)
560 f->disable(f);
Laurent Pinchart52426582009-10-21 00:03:38 +0200561
562 bitmap_zero(f->endpoints, 32);
David Brownell40982be2008-06-19 17:52:58 -0700563 }
564 cdev->config = NULL;
565}
566
567static int set_config(struct usb_composite_dev *cdev,
568 const struct usb_ctrlrequest *ctrl, unsigned number)
569{
570 struct usb_gadget *gadget = cdev->gadget;
571 struct usb_configuration *c = NULL;
572 int result = -EINVAL;
573 unsigned power = gadget_is_otg(gadget) ? 8 : 100;
574 int tmp;
575
David Brownell40982be2008-06-19 17:52:58 -0700576 if (number) {
577 list_for_each_entry(c, &cdev->configs, list) {
578 if (c->bConfigurationValue == number) {
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300579 /*
580 * We disable the FDs of the previous
581 * configuration only if the new configuration
582 * is a valid one
583 */
584 if (cdev->config)
585 reset_config(cdev);
David Brownell40982be2008-06-19 17:52:58 -0700586 result = 0;
587 break;
588 }
589 }
590 if (result < 0)
591 goto done;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300592 } else { /* Zero configuration value - need to reset the config */
593 if (cdev->config)
594 reset_config(cdev);
David Brownell40982be2008-06-19 17:52:58 -0700595 result = 0;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300596 }
David Brownell40982be2008-06-19 17:52:58 -0700597
Michal Nazarewicze538dfd2011-08-30 17:11:19 +0200598 INFO(cdev, "%s config #%d: %s\n",
599 usb_speed_string(gadget->speed),
600 number, c ? c->label : "unconfigured");
David Brownell40982be2008-06-19 17:52:58 -0700601
602 if (!c)
603 goto done;
604
605 cdev->config = c;
606
607 /* Initialize all interfaces by setting them to altsetting zero. */
608 for (tmp = 0; tmp < MAX_CONFIG_INTERFACES; tmp++) {
609 struct usb_function *f = c->interface[tmp];
Laurent Pinchart52426582009-10-21 00:03:38 +0200610 struct usb_descriptor_header **descriptors;
David Brownell40982be2008-06-19 17:52:58 -0700611
612 if (!f)
613 break;
614
Laurent Pinchart52426582009-10-21 00:03:38 +0200615 /*
616 * Record which endpoints are used by the function. This is used
617 * to dispatch control requests targeted at that endpoint to the
618 * function's setup callback instead of the current
619 * configuration's setup callback.
620 */
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300621 switch (gadget->speed) {
622 case USB_SPEED_SUPER:
623 descriptors = f->ss_descriptors;
624 break;
625 case USB_SPEED_HIGH:
Laurent Pinchart52426582009-10-21 00:03:38 +0200626 descriptors = f->hs_descriptors;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300627 break;
628 default:
Laurent Pinchart52426582009-10-21 00:03:38 +0200629 descriptors = f->descriptors;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300630 }
Laurent Pinchart52426582009-10-21 00:03:38 +0200631
632 for (; *descriptors; ++descriptors) {
633 struct usb_endpoint_descriptor *ep;
634 int addr;
635
636 if ((*descriptors)->bDescriptorType != USB_DT_ENDPOINT)
637 continue;
638
639 ep = (struct usb_endpoint_descriptor *)*descriptors;
640 addr = ((ep->bEndpointAddress & 0x80) >> 3)
641 | (ep->bEndpointAddress & 0x0f);
642 set_bit(addr, f->endpoints);
643 }
644
David Brownell40982be2008-06-19 17:52:58 -0700645 result = f->set_alt(f, tmp, 0);
646 if (result < 0) {
647 DBG(cdev, "interface %d (%s/%p) alt 0 --> %d\n",
648 tmp, f->name, f, result);
649
650 reset_config(cdev);
651 goto done;
652 }
Roger Quadros1b9ba002011-05-09 13:08:06 +0300653
654 if (result == USB_GADGET_DELAYED_STATUS) {
655 DBG(cdev,
656 "%s: interface %d (%s) requested delayed status\n",
657 __func__, tmp, f->name);
658 cdev->delayed_status++;
659 DBG(cdev, "delayed_status count %d\n",
660 cdev->delayed_status);
661 }
David Brownell40982be2008-06-19 17:52:58 -0700662 }
663
664 /* when we return, be sure our power usage is valid */
David Brownell36e893d2008-09-12 09:39:06 -0700665 power = c->bMaxPower ? (2 * c->bMaxPower) : CONFIG_USB_GADGET_VBUS_DRAW;
David Brownell40982be2008-06-19 17:52:58 -0700666done:
667 usb_gadget_vbus_draw(gadget, power);
Roger Quadros1b9ba002011-05-09 13:08:06 +0300668 if (result >= 0 && cdev->delayed_status)
669 result = USB_GADGET_DELAYED_STATUS;
David Brownell40982be2008-06-19 17:52:58 -0700670 return result;
671}
672
673/**
674 * usb_add_config() - add a configuration to a device.
675 * @cdev: wraps the USB gadget
676 * @config: the configuration, with bConfigurationValue assigned
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200677 * @bind: the configuration's bind function
David Brownell40982be2008-06-19 17:52:58 -0700678 * Context: single threaded during gadget setup
679 *
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200680 * One of the main tasks of a composite @bind() routine is to
David Brownell40982be2008-06-19 17:52:58 -0700681 * add each of the configurations it supports, using this routine.
682 *
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200683 * This function returns the value of the configuration's @bind(), which
David Brownell40982be2008-06-19 17:52:58 -0700684 * is zero for success else a negative errno value. Binding configurations
685 * assigns global resources including string IDs, and per-configuration
686 * resources such as interface IDs and endpoints.
687 */
Michal Nazarewicz28824b12010-05-05 12:53:13 +0200688int usb_add_config(struct usb_composite_dev *cdev,
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200689 struct usb_configuration *config,
690 int (*bind)(struct usb_configuration *))
David Brownell40982be2008-06-19 17:52:58 -0700691{
692 int status = -EINVAL;
693 struct usb_configuration *c;
694
695 DBG(cdev, "adding config #%u '%s'/%p\n",
696 config->bConfigurationValue,
697 config->label, config);
698
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200699 if (!config->bConfigurationValue || !bind)
David Brownell40982be2008-06-19 17:52:58 -0700700 goto done;
701
702 /* Prevent duplicate configuration identifiers */
703 list_for_each_entry(c, &cdev->configs, list) {
704 if (c->bConfigurationValue == config->bConfigurationValue) {
705 status = -EBUSY;
706 goto done;
707 }
708 }
709
710 config->cdev = cdev;
711 list_add_tail(&config->list, &cdev->configs);
712
713 INIT_LIST_HEAD(&config->functions);
714 config->next_interface_id = 0;
Benoit Goby02e81612012-05-10 10:07:58 +0200715 memset(config->interface, 0, sizeof(config->interface));
David Brownell40982be2008-06-19 17:52:58 -0700716
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200717 status = bind(config);
David Brownell40982be2008-06-19 17:52:58 -0700718 if (status < 0) {
Yongsul Oh124ef382012-03-20 10:38:38 +0900719 while (!list_empty(&config->functions)) {
720 struct usb_function *f;
721
722 f = list_first_entry(&config->functions,
723 struct usb_function, list);
724 list_del(&f->list);
725 if (f->unbind) {
726 DBG(cdev, "unbind function '%s'/%p\n",
727 f->name, f);
728 f->unbind(config, f);
729 /* may free memory for "f" */
730 }
731 }
David Brownell40982be2008-06-19 17:52:58 -0700732 list_del(&config->list);
733 config->cdev = NULL;
734 } else {
735 unsigned i;
736
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300737 DBG(cdev, "cfg %d/%p speeds:%s%s%s\n",
David Brownell40982be2008-06-19 17:52:58 -0700738 config->bConfigurationValue, config,
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300739 config->superspeed ? " super" : "",
David Brownell40982be2008-06-19 17:52:58 -0700740 config->highspeed ? " high" : "",
741 config->fullspeed
742 ? (gadget_is_dualspeed(cdev->gadget)
743 ? " full"
744 : " full/low")
745 : "");
746
747 for (i = 0; i < MAX_CONFIG_INTERFACES; i++) {
748 struct usb_function *f = config->interface[i];
749
750 if (!f)
751 continue;
752 DBG(cdev, " interface %d = %s/%p\n",
753 i, f->name, f);
754 }
755 }
756
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200757 /* set_alt(), or next bind(), sets up
David Brownell40982be2008-06-19 17:52:58 -0700758 * ep->driver_data as needed.
759 */
760 usb_ep_autoconfig_reset(cdev->gadget);
761
762done:
763 if (status)
764 DBG(cdev, "added config '%s'/%u --> %d\n", config->label,
765 config->bConfigurationValue, status);
766 return status;
767}
768
Benoit Goby51cce6f2012-05-10 10:07:57 +0200769static void remove_config(struct usb_composite_dev *cdev,
770 struct usb_configuration *config)
771{
772 while (!list_empty(&config->functions)) {
773 struct usb_function *f;
774
775 f = list_first_entry(&config->functions,
776 struct usb_function, list);
777 list_del(&f->list);
778 if (f->unbind) {
779 DBG(cdev, "unbind function '%s'/%p\n", f->name, f);
780 f->unbind(config, f);
781 /* may free memory for "f" */
782 }
783 }
784 list_del(&config->list);
785 if (config->unbind) {
786 DBG(cdev, "unbind config '%s'/%p\n", config->label, config);
787 config->unbind(config);
788 /* may free memory for "c" */
789 }
790}
791
792/**
793 * usb_remove_config() - remove a configuration from a device.
794 * @cdev: wraps the USB gadget
795 * @config: the configuration
796 *
797 * Drivers must call usb_gadget_disconnect before calling this function
798 * to disconnect the device from the host and make sure the host will not
799 * try to enumerate the device while we are changing the config list.
800 */
801void usb_remove_config(struct usb_composite_dev *cdev,
802 struct usb_configuration *config)
803{
804 unsigned long flags;
805
806 spin_lock_irqsave(&cdev->lock, flags);
807
808 if (cdev->config == config)
809 reset_config(cdev);
810
811 spin_unlock_irqrestore(&cdev->lock, flags);
812
813 remove_config(cdev, config);
814}
815
David Brownell40982be2008-06-19 17:52:58 -0700816/*-------------------------------------------------------------------------*/
817
818/* We support strings in multiple languages ... string descriptor zero
819 * says which languages are supported. The typical case will be that
820 * only one language (probably English) is used, with I18N handled on
821 * the host side.
822 */
823
824static void collect_langs(struct usb_gadget_strings **sp, __le16 *buf)
825{
826 const struct usb_gadget_strings *s;
Dan Carpenter20c5e742012-04-17 09:30:22 +0300827 __le16 language;
David Brownell40982be2008-06-19 17:52:58 -0700828 __le16 *tmp;
829
830 while (*sp) {
831 s = *sp;
832 language = cpu_to_le16(s->language);
833 for (tmp = buf; *tmp && tmp < &buf[126]; tmp++) {
834 if (*tmp == language)
835 goto repeat;
836 }
837 *tmp++ = language;
838repeat:
839 sp++;
840 }
841}
842
843static int lookup_string(
844 struct usb_gadget_strings **sp,
845 void *buf,
846 u16 language,
847 int id
848)
849{
850 struct usb_gadget_strings *s;
851 int value;
852
853 while (*sp) {
854 s = *sp++;
855 if (s->language != language)
856 continue;
857 value = usb_gadget_get_string(s, id, buf);
858 if (value > 0)
859 return value;
860 }
861 return -EINVAL;
862}
863
864static int get_string(struct usb_composite_dev *cdev,
865 void *buf, u16 language, int id)
866{
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +0200867 struct usb_composite_driver *composite = cdev->driver;
David Brownell40982be2008-06-19 17:52:58 -0700868 struct usb_configuration *c;
869 struct usb_function *f;
870 int len;
Michal Nazarewiczad1a8102010-08-12 17:43:46 +0200871 const char *str;
David Brownell40982be2008-06-19 17:52:58 -0700872
873 /* Yes, not only is USB's I18N support probably more than most
874 * folk will ever care about ... also, it's all supported here.
875 * (Except for UTF8 support for Unicode's "Astral Planes".)
876 */
877
878 /* 0 == report all available language codes */
879 if (id == 0) {
880 struct usb_string_descriptor *s = buf;
881 struct usb_gadget_strings **sp;
882
883 memset(s, 0, 256);
884 s->bDescriptorType = USB_DT_STRING;
885
886 sp = composite->strings;
887 if (sp)
888 collect_langs(sp, s->wData);
889
890 list_for_each_entry(c, &cdev->configs, list) {
891 sp = c->strings;
892 if (sp)
893 collect_langs(sp, s->wData);
894
895 list_for_each_entry(f, &c->functions, list) {
896 sp = f->strings;
897 if (sp)
898 collect_langs(sp, s->wData);
899 }
900 }
901
Roel Kluin417b57b2009-08-06 16:09:51 -0700902 for (len = 0; len <= 126 && s->wData[len]; len++)
David Brownell40982be2008-06-19 17:52:58 -0700903 continue;
904 if (!len)
905 return -EINVAL;
906
907 s->bLength = 2 * (len + 1);
908 return s->bLength;
909 }
910
Michal Nazarewiczad1a8102010-08-12 17:43:46 +0200911 /* Otherwise, look up and return a specified string. First
912 * check if the string has not been overridden.
913 */
914 if (cdev->manufacturer_override == id)
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +0200915 str = composite->iManufacturer ?: composite_manufacturer;
Michal Nazarewiczad1a8102010-08-12 17:43:46 +0200916 else if (cdev->product_override == id)
917 str = iProduct ?: composite->iProduct;
918 else if (cdev->serial_override == id)
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +0200919 str = composite->iSerialNumber;
Michal Nazarewiczad1a8102010-08-12 17:43:46 +0200920 else
921 str = NULL;
922 if (str) {
923 struct usb_gadget_strings strings = {
924 .language = language,
925 .strings = &(struct usb_string) { 0xff, str }
926 };
927 return usb_gadget_get_string(&strings, 0xff, buf);
928 }
929
930 /* String IDs are device-scoped, so we look up each string
931 * table we're told about. These lookups are infrequent;
932 * simpler-is-better here.
David Brownell40982be2008-06-19 17:52:58 -0700933 */
934 if (composite->strings) {
935 len = lookup_string(composite->strings, buf, language, id);
936 if (len > 0)
937 return len;
938 }
939 list_for_each_entry(c, &cdev->configs, list) {
940 if (c->strings) {
941 len = lookup_string(c->strings, buf, language, id);
942 if (len > 0)
943 return len;
944 }
945 list_for_each_entry(f, &c->functions, list) {
946 if (!f->strings)
947 continue;
948 len = lookup_string(f->strings, buf, language, id);
949 if (len > 0)
950 return len;
951 }
952 }
953 return -EINVAL;
954}
955
956/**
957 * usb_string_id() - allocate an unused string ID
958 * @cdev: the device whose string descriptor IDs are being allocated
959 * Context: single threaded during gadget setup
960 *
961 * @usb_string_id() is called from bind() callbacks to allocate
962 * string IDs. Drivers for functions, configurations, or gadgets will
963 * then store that ID in the appropriate descriptors and string table.
964 *
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +0200965 * All string identifier should be allocated using this,
966 * @usb_string_ids_tab() or @usb_string_ids_n() routine, to ensure
967 * that for example different functions don't wrongly assign different
968 * meanings to the same identifier.
David Brownell40982be2008-06-19 17:52:58 -0700969 */
Michal Nazarewicz28824b12010-05-05 12:53:13 +0200970int usb_string_id(struct usb_composite_dev *cdev)
David Brownell40982be2008-06-19 17:52:58 -0700971{
972 if (cdev->next_string_id < 254) {
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +0200973 /* string id 0 is reserved by USB spec for list of
974 * supported languages */
975 /* 255 reserved as well? -- mina86 */
David Brownell40982be2008-06-19 17:52:58 -0700976 cdev->next_string_id++;
977 return cdev->next_string_id;
978 }
979 return -ENODEV;
980}
981
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +0200982/**
983 * usb_string_ids() - allocate unused string IDs in batch
984 * @cdev: the device whose string descriptor IDs are being allocated
985 * @str: an array of usb_string objects to assign numbers to
986 * Context: single threaded during gadget setup
987 *
988 * @usb_string_ids() is called from bind() callbacks to allocate
989 * string IDs. Drivers for functions, configurations, or gadgets will
990 * then copy IDs from the string table to the appropriate descriptors
991 * and string table for other languages.
992 *
993 * All string identifier should be allocated using this,
994 * @usb_string_id() or @usb_string_ids_n() routine, to ensure that for
995 * example different functions don't wrongly assign different meanings
996 * to the same identifier.
997 */
998int usb_string_ids_tab(struct usb_composite_dev *cdev, struct usb_string *str)
999{
1000 int next = cdev->next_string_id;
1001
1002 for (; str->s; ++str) {
1003 if (unlikely(next >= 254))
1004 return -ENODEV;
1005 str->id = ++next;
1006 }
1007
1008 cdev->next_string_id = next;
1009
1010 return 0;
1011}
1012
1013/**
1014 * usb_string_ids_n() - allocate unused string IDs in batch
Randy Dunlapd187abb2010-08-11 12:07:13 -07001015 * @c: the device whose string descriptor IDs are being allocated
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +02001016 * @n: number of string IDs to allocate
1017 * Context: single threaded during gadget setup
1018 *
1019 * Returns the first requested ID. This ID and next @n-1 IDs are now
Randy Dunlapd187abb2010-08-11 12:07:13 -07001020 * valid IDs. At least provided that @n is non-zero because if it
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +02001021 * is, returns last requested ID which is now very useful information.
1022 *
1023 * @usb_string_ids_n() is called from bind() callbacks to allocate
1024 * string IDs. Drivers for functions, configurations, or gadgets will
1025 * then store that ID in the appropriate descriptors and string table.
1026 *
1027 * All string identifier should be allocated using this,
1028 * @usb_string_id() or @usb_string_ids_n() routine, to ensure that for
1029 * example different functions don't wrongly assign different meanings
1030 * to the same identifier.
1031 */
1032int usb_string_ids_n(struct usb_composite_dev *c, unsigned n)
1033{
1034 unsigned next = c->next_string_id;
1035 if (unlikely(n > 254 || (unsigned)next + n > 254))
1036 return -ENODEV;
1037 c->next_string_id += n;
1038 return next + 1;
1039}
1040
1041
David Brownell40982be2008-06-19 17:52:58 -07001042/*-------------------------------------------------------------------------*/
1043
1044static void composite_setup_complete(struct usb_ep *ep, struct usb_request *req)
1045{
1046 if (req->status || req->actual != req->length)
1047 DBG((struct usb_composite_dev *) ep->driver_data,
1048 "setup complete --> %d, %d/%d\n",
1049 req->status, req->actual, req->length);
1050}
1051
1052/*
1053 * The setup() callback implements all the ep0 functionality that's
1054 * not handled lower down, in hardware or the hardware driver(like
1055 * device and endpoint feature flags, and their status). It's all
1056 * housekeeping for the gadget function we're implementing. Most of
1057 * the work is in config and function specific setup.
1058 */
1059static int
1060composite_setup(struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl)
1061{
1062 struct usb_composite_dev *cdev = get_gadget_data(gadget);
1063 struct usb_request *req = cdev->req;
1064 int value = -EOPNOTSUPP;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001065 int status = 0;
David Brownell40982be2008-06-19 17:52:58 -07001066 u16 w_index = le16_to_cpu(ctrl->wIndex);
Bryan Wu08889512009-01-08 00:21:19 +08001067 u8 intf = w_index & 0xFF;
David Brownell40982be2008-06-19 17:52:58 -07001068 u16 w_value = le16_to_cpu(ctrl->wValue);
1069 u16 w_length = le16_to_cpu(ctrl->wLength);
1070 struct usb_function *f = NULL;
Laurent Pinchart52426582009-10-21 00:03:38 +02001071 u8 endp;
David Brownell40982be2008-06-19 17:52:58 -07001072
1073 /* partial re-init of the response message; the function or the
1074 * gadget might need to intercept e.g. a control-OUT completion
1075 * when we delegate to it.
1076 */
1077 req->zero = 0;
1078 req->complete = composite_setup_complete;
Maulik Mankad2edb11c2011-02-22 19:08:42 +05301079 req->length = 0;
David Brownell40982be2008-06-19 17:52:58 -07001080 gadget->ep0->driver_data = cdev;
1081
1082 switch (ctrl->bRequest) {
1083
1084 /* we handle all standard USB descriptors */
1085 case USB_REQ_GET_DESCRIPTOR:
1086 if (ctrl->bRequestType != USB_DIR_IN)
1087 goto unknown;
1088 switch (w_value >> 8) {
1089
1090 case USB_DT_DEVICE:
1091 cdev->desc.bNumConfigurations =
1092 count_configs(cdev, USB_DT_DEVICE);
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001093 cdev->desc.bMaxPacketSize0 =
1094 cdev->gadget->ep0->maxpacket;
1095 if (gadget_is_superspeed(gadget)) {
Sebastian Andrzej Siewiora8f21152011-07-19 20:21:52 +02001096 if (gadget->speed >= USB_SPEED_SUPER) {
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001097 cdev->desc.bcdUSB = cpu_to_le16(0x0300);
Sebastian Andrzej Siewiora8f21152011-07-19 20:21:52 +02001098 cdev->desc.bMaxPacketSize0 = 9;
1099 } else {
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001100 cdev->desc.bcdUSB = cpu_to_le16(0x0210);
Sebastian Andrzej Siewiora8f21152011-07-19 20:21:52 +02001101 }
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001102 }
1103
David Brownell40982be2008-06-19 17:52:58 -07001104 value = min(w_length, (u16) sizeof cdev->desc);
1105 memcpy(req->buf, &cdev->desc, value);
1106 break;
1107 case USB_DT_DEVICE_QUALIFIER:
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001108 if (!gadget_is_dualspeed(gadget) ||
1109 gadget->speed >= USB_SPEED_SUPER)
David Brownell40982be2008-06-19 17:52:58 -07001110 break;
1111 device_qual(cdev);
1112 value = min_t(int, w_length,
1113 sizeof(struct usb_qualifier_descriptor));
1114 break;
1115 case USB_DT_OTHER_SPEED_CONFIG:
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001116 if (!gadget_is_dualspeed(gadget) ||
1117 gadget->speed >= USB_SPEED_SUPER)
David Brownell40982be2008-06-19 17:52:58 -07001118 break;
1119 /* FALLTHROUGH */
1120 case USB_DT_CONFIG:
1121 value = config_desc(cdev, w_value);
1122 if (value >= 0)
1123 value = min(w_length, (u16) value);
1124 break;
1125 case USB_DT_STRING:
1126 value = get_string(cdev, req->buf,
1127 w_index, w_value & 0xff);
1128 if (value >= 0)
1129 value = min(w_length, (u16) value);
1130 break;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001131 case USB_DT_BOS:
1132 if (gadget_is_superspeed(gadget)) {
1133 value = bos_desc(cdev);
1134 value = min(w_length, (u16) value);
1135 }
1136 break;
David Brownell40982be2008-06-19 17:52:58 -07001137 }
1138 break;
1139
1140 /* any number of configs can work */
1141 case USB_REQ_SET_CONFIGURATION:
1142 if (ctrl->bRequestType != 0)
1143 goto unknown;
1144 if (gadget_is_otg(gadget)) {
1145 if (gadget->a_hnp_support)
1146 DBG(cdev, "HNP available\n");
1147 else if (gadget->a_alt_hnp_support)
1148 DBG(cdev, "HNP on another port\n");
1149 else
1150 VDBG(cdev, "HNP inactive\n");
1151 }
1152 spin_lock(&cdev->lock);
1153 value = set_config(cdev, ctrl, w_value);
1154 spin_unlock(&cdev->lock);
1155 break;
1156 case USB_REQ_GET_CONFIGURATION:
1157 if (ctrl->bRequestType != USB_DIR_IN)
1158 goto unknown;
1159 if (cdev->config)
1160 *(u8 *)req->buf = cdev->config->bConfigurationValue;
1161 else
1162 *(u8 *)req->buf = 0;
1163 value = min(w_length, (u16) 1);
1164 break;
1165
1166 /* function drivers must handle get/set altsetting; if there's
1167 * no get() method, we know only altsetting zero works.
1168 */
1169 case USB_REQ_SET_INTERFACE:
1170 if (ctrl->bRequestType != USB_RECIP_INTERFACE)
1171 goto unknown;
Jassi Brarff085de2011-02-06 17:39:17 +09001172 if (!cdev->config || intf >= MAX_CONFIG_INTERFACES)
David Brownell40982be2008-06-19 17:52:58 -07001173 break;
Bryan Wu08889512009-01-08 00:21:19 +08001174 f = cdev->config->interface[intf];
David Brownell40982be2008-06-19 17:52:58 -07001175 if (!f)
1176 break;
Bryan Wudd4dff82009-01-08 00:21:18 +08001177 if (w_value && !f->set_alt)
David Brownell40982be2008-06-19 17:52:58 -07001178 break;
1179 value = f->set_alt(f, w_index, w_value);
Roger Quadros1b9ba002011-05-09 13:08:06 +03001180 if (value == USB_GADGET_DELAYED_STATUS) {
1181 DBG(cdev,
1182 "%s: interface %d (%s) requested delayed status\n",
1183 __func__, intf, f->name);
1184 cdev->delayed_status++;
1185 DBG(cdev, "delayed_status count %d\n",
1186 cdev->delayed_status);
1187 }
David Brownell40982be2008-06-19 17:52:58 -07001188 break;
1189 case USB_REQ_GET_INTERFACE:
1190 if (ctrl->bRequestType != (USB_DIR_IN|USB_RECIP_INTERFACE))
1191 goto unknown;
Jassi Brarff085de2011-02-06 17:39:17 +09001192 if (!cdev->config || intf >= MAX_CONFIG_INTERFACES)
David Brownell40982be2008-06-19 17:52:58 -07001193 break;
Bryan Wu08889512009-01-08 00:21:19 +08001194 f = cdev->config->interface[intf];
David Brownell40982be2008-06-19 17:52:58 -07001195 if (!f)
1196 break;
1197 /* lots of interfaces only need altsetting zero... */
1198 value = f->get_alt ? f->get_alt(f, w_index) : 0;
1199 if (value < 0)
1200 break;
1201 *((u8 *)req->buf) = value;
1202 value = min(w_length, (u16) 1);
1203 break;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +03001204
1205 /*
1206 * USB 3.0 additions:
1207 * Function driver should handle get_status request. If such cb
1208 * wasn't supplied we respond with default value = 0
1209 * Note: function driver should supply such cb only for the first
1210 * interface of the function
1211 */
1212 case USB_REQ_GET_STATUS:
1213 if (!gadget_is_superspeed(gadget))
1214 goto unknown;
1215 if (ctrl->bRequestType != (USB_DIR_IN | USB_RECIP_INTERFACE))
1216 goto unknown;
1217 value = 2; /* This is the length of the get_status reply */
1218 put_unaligned_le16(0, req->buf);
1219 if (!cdev->config || intf >= MAX_CONFIG_INTERFACES)
1220 break;
1221 f = cdev->config->interface[intf];
1222 if (!f)
1223 break;
1224 status = f->get_status ? f->get_status(f) : 0;
1225 if (status < 0)
1226 break;
1227 put_unaligned_le16(status & 0x0000ffff, req->buf);
1228 break;
1229 /*
1230 * Function drivers should handle SetFeature/ClearFeature
1231 * (FUNCTION_SUSPEND) request. function_suspend cb should be supplied
1232 * only for the first interface of the function
1233 */
1234 case USB_REQ_CLEAR_FEATURE:
1235 case USB_REQ_SET_FEATURE:
1236 if (!gadget_is_superspeed(gadget))
1237 goto unknown;
1238 if (ctrl->bRequestType != (USB_DIR_OUT | USB_RECIP_INTERFACE))
1239 goto unknown;
1240 switch (w_value) {
1241 case USB_INTRF_FUNC_SUSPEND:
1242 if (!cdev->config || intf >= MAX_CONFIG_INTERFACES)
1243 break;
1244 f = cdev->config->interface[intf];
1245 if (!f)
1246 break;
1247 value = 0;
1248 if (f->func_suspend)
1249 value = f->func_suspend(f, w_index >> 8);
1250 if (value < 0) {
1251 ERROR(cdev,
1252 "func_suspend() returned error %d\n",
1253 value);
1254 value = 0;
1255 }
1256 break;
1257 }
1258 break;
David Brownell40982be2008-06-19 17:52:58 -07001259 default:
1260unknown:
1261 VDBG(cdev,
1262 "non-core control req%02x.%02x v%04x i%04x l%d\n",
1263 ctrl->bRequestType, ctrl->bRequest,
1264 w_value, w_index, w_length);
1265
Laurent Pinchart52426582009-10-21 00:03:38 +02001266 /* functions always handle their interfaces and endpoints...
1267 * punt other recipients (other, WUSB, ...) to the current
David Brownell40982be2008-06-19 17:52:58 -07001268 * configuration code.
1269 *
1270 * REVISIT it could make sense to let the composite device
1271 * take such requests too, if that's ever needed: to work
1272 * in config 0, etc.
1273 */
Laurent Pinchart52426582009-10-21 00:03:38 +02001274 switch (ctrl->bRequestType & USB_RECIP_MASK) {
1275 case USB_RECIP_INTERFACE:
Jassi Brarff085de2011-02-06 17:39:17 +09001276 if (!cdev->config || intf >= MAX_CONFIG_INTERFACES)
Maulik Mankad3c47eb02011-01-13 18:19:56 +05301277 break;
1278 f = cdev->config->interface[intf];
Laurent Pinchart52426582009-10-21 00:03:38 +02001279 break;
1280
1281 case USB_RECIP_ENDPOINT:
1282 endp = ((w_index & 0x80) >> 3) | (w_index & 0x0f);
1283 list_for_each_entry(f, &cdev->config->functions, list) {
1284 if (test_bit(endp, f->endpoints))
1285 break;
1286 }
1287 if (&f->list == &cdev->config->functions)
David Brownell40982be2008-06-19 17:52:58 -07001288 f = NULL;
Laurent Pinchart52426582009-10-21 00:03:38 +02001289 break;
David Brownell40982be2008-06-19 17:52:58 -07001290 }
Laurent Pinchart52426582009-10-21 00:03:38 +02001291
1292 if (f && f->setup)
1293 value = f->setup(f, ctrl);
1294 else {
David Brownell40982be2008-06-19 17:52:58 -07001295 struct usb_configuration *c;
1296
1297 c = cdev->config;
1298 if (c && c->setup)
1299 value = c->setup(c, ctrl);
1300 }
1301
1302 goto done;
1303 }
1304
1305 /* respond with data transfer before status phase? */
Roger Quadros1b9ba002011-05-09 13:08:06 +03001306 if (value >= 0 && value != USB_GADGET_DELAYED_STATUS) {
David Brownell40982be2008-06-19 17:52:58 -07001307 req->length = value;
1308 req->zero = value < w_length;
1309 value = usb_ep_queue(gadget->ep0, req, GFP_ATOMIC);
1310 if (value < 0) {
1311 DBG(cdev, "ep_queue --> %d\n", value);
1312 req->status = 0;
1313 composite_setup_complete(gadget->ep0, req);
1314 }
Roger Quadros1b9ba002011-05-09 13:08:06 +03001315 } else if (value == USB_GADGET_DELAYED_STATUS && w_length != 0) {
1316 WARN(cdev,
1317 "%s: Delayed status not supported for w_length != 0",
1318 __func__);
David Brownell40982be2008-06-19 17:52:58 -07001319 }
1320
1321done:
1322 /* device either stalls (value < 0) or reports success */
1323 return value;
1324}
1325
1326static void composite_disconnect(struct usb_gadget *gadget)
1327{
1328 struct usb_composite_dev *cdev = get_gadget_data(gadget);
1329 unsigned long flags;
1330
1331 /* REVISIT: should we have config and device level
1332 * disconnect callbacks?
1333 */
1334 spin_lock_irqsave(&cdev->lock, flags);
1335 if (cdev->config)
1336 reset_config(cdev);
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001337 if (cdev->driver->disconnect)
1338 cdev->driver->disconnect(cdev);
David Brownell40982be2008-06-19 17:52:58 -07001339 spin_unlock_irqrestore(&cdev->lock, flags);
1340}
1341
1342/*-------------------------------------------------------------------------*/
1343
Fabien Chouteauf48cf802010-04-23 14:21:26 +02001344static ssize_t composite_show_suspended(struct device *dev,
1345 struct device_attribute *attr,
1346 char *buf)
1347{
1348 struct usb_gadget *gadget = dev_to_usb_gadget(dev);
1349 struct usb_composite_dev *cdev = get_gadget_data(gadget);
1350
1351 return sprintf(buf, "%d\n", cdev->suspended);
1352}
1353
1354static DEVICE_ATTR(suspended, 0444, composite_show_suspended, NULL);
1355
Michal Nazarewicz28824b12010-05-05 12:53:13 +02001356static void
David Brownell40982be2008-06-19 17:52:58 -07001357composite_unbind(struct usb_gadget *gadget)
1358{
1359 struct usb_composite_dev *cdev = get_gadget_data(gadget);
1360
1361 /* composite_disconnect() must already have been called
1362 * by the underlying peripheral controller driver!
1363 * so there's no i/o concurrency that could affect the
1364 * state protected by cdev->lock.
1365 */
1366 WARN_ON(cdev->config);
1367
1368 while (!list_empty(&cdev->configs)) {
1369 struct usb_configuration *c;
David Brownell40982be2008-06-19 17:52:58 -07001370 c = list_first_entry(&cdev->configs,
1371 struct usb_configuration, list);
Benoit Goby51cce6f2012-05-10 10:07:57 +02001372 remove_config(cdev, c);
David Brownell40982be2008-06-19 17:52:58 -07001373 }
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001374 if (cdev->driver->unbind)
1375 cdev->driver->unbind(cdev);
David Brownell40982be2008-06-19 17:52:58 -07001376
1377 if (cdev->req) {
1378 kfree(cdev->req->buf);
1379 usb_ep_free_request(gadget->ep0, cdev->req);
1380 }
Pavankumar Kondetidaba5802010-12-16 14:32:25 +05301381 device_remove_file(&gadget->dev, &dev_attr_suspended);
David Brownell40982be2008-06-19 17:52:58 -07001382 kfree(cdev);
1383 set_gadget_data(gadget, NULL);
David Brownell40982be2008-06-19 17:52:58 -07001384}
1385
Michal Nazarewiczad1a8102010-08-12 17:43:46 +02001386static u8 override_id(struct usb_composite_dev *cdev, u8 *desc)
David Brownell40982be2008-06-19 17:52:58 -07001387{
Michal Nazarewiczad1a8102010-08-12 17:43:46 +02001388 if (!*desc) {
1389 int ret = usb_string_id(cdev);
1390 if (unlikely(ret < 0))
1391 WARNING(cdev, "failed to override string ID\n");
1392 else
1393 *desc = ret;
David Brownell40982be2008-06-19 17:52:58 -07001394 }
David Brownell40982be2008-06-19 17:52:58 -07001395
Michal Nazarewiczad1a8102010-08-12 17:43:46 +02001396 return *desc;
David Brownell40982be2008-06-19 17:52:58 -07001397}
1398
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02001399static void update_unchanged_dev_desc(struct usb_device_descriptor *new,
1400 const struct usb_device_descriptor *old)
1401{
1402 __le16 idVendor;
1403 __le16 idProduct;
1404 __le16 bcdDevice;
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +02001405 u8 iSerialNumber;
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +02001406 u8 iManufacturer;
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02001407
1408 /*
1409 * these variables may have been set in
1410 * usb_composite_overwrite_options()
1411 */
1412 idVendor = new->idVendor;
1413 idProduct = new->idProduct;
1414 bcdDevice = new->bcdDevice;
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +02001415 iSerialNumber = new->iSerialNumber;
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +02001416 iManufacturer = new->iManufacturer;
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02001417
1418 *new = *old;
1419 if (idVendor)
1420 new->idVendor = idVendor;
1421 if (idProduct)
1422 new->idProduct = idProduct;
1423 if (bcdDevice)
1424 new->bcdDevice = bcdDevice;
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +02001425 if (iSerialNumber)
1426 new->iSerialNumber = iSerialNumber;
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +02001427 if (iManufacturer)
1428 new->iManufacturer = iManufacturer;
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02001429}
1430
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001431static struct usb_composite_driver *to_cdriver(struct usb_gadget_driver *gdrv)
1432{
1433 return container_of(gdrv, struct usb_composite_driver, gadget_driver);
1434}
1435
1436static int composite_bind(struct usb_gadget *gadget,
1437 struct usb_gadget_driver *gdriver)
David Brownell40982be2008-06-19 17:52:58 -07001438{
1439 struct usb_composite_dev *cdev;
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001440 struct usb_composite_driver *composite = to_cdriver(gdriver);
David Brownell40982be2008-06-19 17:52:58 -07001441 int status = -ENOMEM;
1442
1443 cdev = kzalloc(sizeof *cdev, GFP_KERNEL);
1444 if (!cdev)
1445 return status;
1446
1447 spin_lock_init(&cdev->lock);
1448 cdev->gadget = gadget;
1449 set_gadget_data(gadget, cdev);
1450 INIT_LIST_HEAD(&cdev->configs);
1451
1452 /* preallocate control response and buffer */
1453 cdev->req = usb_ep_alloc_request(gadget->ep0, GFP_KERNEL);
1454 if (!cdev->req)
1455 goto fail;
Sebastian Andrzej Siewiore13f17f2012-09-10 15:01:51 +02001456 cdev->req->buf = kmalloc(USB_COMP_EP0_BUFSIZ, GFP_KERNEL);
David Brownell40982be2008-06-19 17:52:58 -07001457 if (!cdev->req->buf)
1458 goto fail;
1459 cdev->req->complete = composite_setup_complete;
1460 gadget->ep0->driver_data = cdev;
1461
David Brownell40982be2008-06-19 17:52:58 -07001462 cdev->driver = composite;
1463
Parirajan Muthalagu37b58012010-08-25 16:33:26 +05301464 /*
1465 * As per USB compliance update, a device that is actively drawing
1466 * more than 100mA from USB must report itself as bus-powered in
1467 * the GetStatus(DEVICE) call.
1468 */
1469 if (CONFIG_USB_GADGET_VBUS_DRAW <= USB_SELF_POWER_VBUS_MAX_DRAW)
1470 usb_gadget_set_selfpowered(gadget);
David Brownell40982be2008-06-19 17:52:58 -07001471
1472 /* interface and string IDs start at zero via kzalloc.
1473 * we force endpoints to start unassigned; few controller
1474 * drivers will zero ep->driver_data.
1475 */
1476 usb_ep_autoconfig_reset(cdev->gadget);
1477
1478 /* composite gadget needs to assign strings for whole device (like
1479 * serial number), register function drivers, potentially update
1480 * power state and consumption, etc
1481 */
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +02001482 status = composite->bind(cdev);
David Brownell40982be2008-06-19 17:52:58 -07001483 if (status < 0)
1484 goto fail;
1485
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02001486 update_unchanged_dev_desc(&cdev->desc, composite->dev);
Greg Kroah-Hartmandbb442b2010-12-16 15:52:30 -08001487
Marek Belisko78bff3c2010-10-27 10:19:01 +02001488 /* string overrides */
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +02001489 if (!cdev->desc.iManufacturer) {
1490 if (!composite->iManufacturer)
Michal Nazarewiczad1a8102010-08-12 17:43:46 +02001491 snprintf(composite_manufacturer,
1492 sizeof composite_manufacturer,
1493 "%s %s with %s",
1494 init_utsname()->sysname,
1495 init_utsname()->release,
1496 gadget->name);
David Brownell40982be2008-06-19 17:52:58 -07001497
Michal Nazarewiczad1a8102010-08-12 17:43:46 +02001498 cdev->manufacturer_override =
1499 override_id(cdev, &cdev->desc.iManufacturer);
1500 }
1501
1502 if (iProduct || (!cdev->desc.iProduct && composite->iProduct))
1503 cdev->product_override =
1504 override_id(cdev, &cdev->desc.iProduct);
1505
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +02001506 if (composite->iSerialNumber)
Michal Nazarewiczad1a8102010-08-12 17:43:46 +02001507 cdev->serial_override =
1508 override_id(cdev, &cdev->desc.iSerialNumber);
1509
1510 /* has userspace failed to provide a serial number? */
1511 if (composite->needs_serial && !cdev->desc.iSerialNumber)
1512 WARNING(cdev, "userspace failed to provide iSerialNumber\n");
1513
1514 /* finish up */
Fabien Chouteauf48cf802010-04-23 14:21:26 +02001515 status = device_create_file(&gadget->dev, &dev_attr_suspended);
1516 if (status)
1517 goto fail;
1518
David Brownell40982be2008-06-19 17:52:58 -07001519 INFO(cdev, "%s ready\n", composite->name);
1520 return 0;
1521
1522fail:
1523 composite_unbind(gadget);
1524 return status;
1525}
1526
1527/*-------------------------------------------------------------------------*/
1528
1529static void
1530composite_suspend(struct usb_gadget *gadget)
1531{
1532 struct usb_composite_dev *cdev = get_gadget_data(gadget);
1533 struct usb_function *f;
1534
David Brownell89429392009-03-19 14:14:17 -07001535 /* REVISIT: should we have config level
David Brownell40982be2008-06-19 17:52:58 -07001536 * suspend/resume callbacks?
1537 */
1538 DBG(cdev, "suspend\n");
1539 if (cdev->config) {
1540 list_for_each_entry(f, &cdev->config->functions, list) {
1541 if (f->suspend)
1542 f->suspend(f);
1543 }
1544 }
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001545 if (cdev->driver->suspend)
1546 cdev->driver->suspend(cdev);
Fabien Chouteauf48cf802010-04-23 14:21:26 +02001547
1548 cdev->suspended = 1;
Hao Wub23f2f92010-11-29 15:17:03 +08001549
1550 usb_gadget_vbus_draw(gadget, 2);
David Brownell40982be2008-06-19 17:52:58 -07001551}
1552
1553static void
1554composite_resume(struct usb_gadget *gadget)
1555{
1556 struct usb_composite_dev *cdev = get_gadget_data(gadget);
1557 struct usb_function *f;
Hao Wub23f2f92010-11-29 15:17:03 +08001558 u8 maxpower;
David Brownell40982be2008-06-19 17:52:58 -07001559
David Brownell89429392009-03-19 14:14:17 -07001560 /* REVISIT: should we have config level
David Brownell40982be2008-06-19 17:52:58 -07001561 * suspend/resume callbacks?
1562 */
1563 DBG(cdev, "resume\n");
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001564 if (cdev->driver->resume)
1565 cdev->driver->resume(cdev);
David Brownell40982be2008-06-19 17:52:58 -07001566 if (cdev->config) {
1567 list_for_each_entry(f, &cdev->config->functions, list) {
1568 if (f->resume)
1569 f->resume(f);
1570 }
Hao Wub23f2f92010-11-29 15:17:03 +08001571
1572 maxpower = cdev->config->bMaxPower;
1573
1574 usb_gadget_vbus_draw(gadget, maxpower ?
1575 (2 * maxpower) : CONFIG_USB_GADGET_VBUS_DRAW);
David Brownell40982be2008-06-19 17:52:58 -07001576 }
Fabien Chouteauf48cf802010-04-23 14:21:26 +02001577
1578 cdev->suspended = 0;
David Brownell40982be2008-06-19 17:52:58 -07001579}
1580
1581/*-------------------------------------------------------------------------*/
1582
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001583static const struct usb_gadget_driver composite_driver_template = {
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001584 .bind = composite_bind,
Michal Nazarewicz915c8be2009-11-09 14:15:25 +01001585 .unbind = composite_unbind,
David Brownell40982be2008-06-19 17:52:58 -07001586
1587 .setup = composite_setup,
1588 .disconnect = composite_disconnect,
1589
1590 .suspend = composite_suspend,
1591 .resume = composite_resume,
1592
1593 .driver = {
1594 .owner = THIS_MODULE,
1595 },
1596};
1597
1598/**
Michal Nazarewicz07a18bd2010-08-12 17:43:54 +02001599 * usb_composite_probe() - register a composite driver
David Brownell40982be2008-06-19 17:52:58 -07001600 * @driver: the driver to register
Michal Nazarewicz07a18bd2010-08-12 17:43:54 +02001601 * @bind: the callback used to allocate resources that are shared across the
1602 * whole device, such as string IDs, and add its configurations using
1603 * @usb_add_config(). This may fail by returning a negative errno
1604 * value; it should return zero on successful initialization.
David Brownell40982be2008-06-19 17:52:58 -07001605 * Context: single threaded during gadget setup
1606 *
1607 * This function is used to register drivers using the composite driver
1608 * framework. The return value is zero, or a negative errno value.
1609 * Those values normally come from the driver's @bind method, which does
1610 * all the work of setting up the driver to match the hardware.
1611 *
1612 * On successful return, the gadget is ready to respond to requests from
1613 * the host, unless one of its components invokes usb_gadget_disconnect()
1614 * while it was binding. That would usually be done in order to wait for
1615 * some userspace participation.
1616 */
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +02001617int usb_composite_probe(struct usb_composite_driver *driver)
David Brownell40982be2008-06-19 17:52:58 -07001618{
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001619 struct usb_gadget_driver *gadget_driver;
1620
1621 if (!driver || !driver->dev || !driver->bind)
David Brownell40982be2008-06-19 17:52:58 -07001622 return -EINVAL;
1623
1624 if (!driver->name)
1625 driver->name = "composite";
Jassi Brar05c3eeb2011-02-06 18:47:18 +09001626 if (!driver->iProduct)
1627 driver->iProduct = driver->name;
David Brownell40982be2008-06-19 17:52:58 -07001628
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001629 driver->gadget_driver = composite_driver_template;
1630 gadget_driver = &driver->gadget_driver;
1631
1632 gadget_driver->function = (char *) driver->name;
1633 gadget_driver->driver.name = driver->name;
1634 gadget_driver->max_speed = driver->max_speed;
1635
1636 return usb_gadget_probe_driver(gadget_driver);
David Brownell40982be2008-06-19 17:52:58 -07001637}
1638
1639/**
1640 * usb_composite_unregister() - unregister a composite driver
1641 * @driver: the driver to unregister
1642 *
1643 * This function is used to unregister drivers using the composite
1644 * driver framework.
1645 */
Michal Nazarewicz28824b12010-05-05 12:53:13 +02001646void usb_composite_unregister(struct usb_composite_driver *driver)
David Brownell40982be2008-06-19 17:52:58 -07001647{
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001648 usb_gadget_unregister_driver(&driver->gadget_driver);
David Brownell40982be2008-06-19 17:52:58 -07001649}
Roger Quadros1b9ba002011-05-09 13:08:06 +03001650
1651/**
1652 * usb_composite_setup_continue() - Continue with the control transfer
1653 * @cdev: the composite device who's control transfer was kept waiting
1654 *
1655 * This function must be called by the USB function driver to continue
1656 * with the control transfer's data/status stage in case it had requested to
1657 * delay the data/status stages. A USB function's setup handler (e.g. set_alt())
1658 * can request the composite framework to delay the setup request's data/status
1659 * stages by returning USB_GADGET_DELAYED_STATUS.
1660 */
1661void usb_composite_setup_continue(struct usb_composite_dev *cdev)
1662{
1663 int value;
1664 struct usb_request *req = cdev->req;
1665 unsigned long flags;
1666
1667 DBG(cdev, "%s\n", __func__);
1668 spin_lock_irqsave(&cdev->lock, flags);
1669
1670 if (cdev->delayed_status == 0) {
1671 WARN(cdev, "%s: Unexpected call\n", __func__);
1672
1673 } else if (--cdev->delayed_status == 0) {
1674 DBG(cdev, "%s: Completing delayed status\n", __func__);
1675 req->length = 0;
1676 value = usb_ep_queue(cdev->gadget->ep0, req, GFP_ATOMIC);
1677 if (value < 0) {
1678 DBG(cdev, "ep_queue --> %d\n", value);
1679 req->status = 0;
1680 composite_setup_complete(cdev->gadget->ep0, req);
1681 }
1682 }
1683
1684 spin_unlock_irqrestore(&cdev->lock, flags);
1685}
1686
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02001687void usb_composite_overwrite_options(struct usb_composite_dev *cdev,
1688 struct usb_composite_overwrite *covr)
1689{
1690 struct usb_device_descriptor *desc = &cdev->desc;
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +02001691 struct usb_gadget_strings *gstr = cdev->driver->strings[0];
1692 struct usb_string *dev_str = gstr->strings;
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02001693
1694 if (covr->idVendor)
1695 desc->idVendor = cpu_to_le16(covr->idVendor);
1696
1697 if (covr->idProduct)
1698 desc->idProduct = cpu_to_le16(covr->idProduct);
1699
1700 if (covr->bcdDevice)
1701 desc->bcdDevice = cpu_to_le16(covr->bcdDevice);
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +02001702
1703 if (covr->serial_number) {
1704 desc->iSerialNumber = dev_str[USB_GADGET_SERIAL_IDX].id;
1705 dev_str[USB_GADGET_SERIAL_IDX].s = covr->serial_number;
1706 }
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +02001707 if (covr->manufacturer) {
1708 desc->iManufacturer = dev_str[USB_GADGET_MANUFACTURER_IDX].id;
1709 dev_str[USB_GADGET_MANUFACTURER_IDX].s = covr->manufacturer;
1710 }
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +02001711}