blob: 65ae0a3feb5be1e378b719c2ff52b83d1a9515cf [file] [log] [blame]
David Brownell40982be2008-06-19 17:52:58 -07001/*
2 * composite.h -- framework for usb gadgets which are composite devices
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.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#ifndef __LINUX_USB_COMPOSITE_H
22#define __LINUX_USB_COMPOSITE_H
23
24/*
25 * This framework is an optional layer on top of the USB Gadget interface,
26 * making it easier to build (a) Composite devices, supporting multiple
27 * functions within any single configuration, and (b) Multi-configuration
28 * devices, also supporting multiple functions but without necessarily
29 * having more than one function per configuration.
30 *
31 * Example: a device with a single configuration supporting both network
32 * link and mass storage functions is a composite device. Those functions
33 * might alternatively be packaged in individual configurations, but in
34 * the composite model the host can use both functions at the same time.
35 */
36
37#include <linux/usb/ch9.h>
38#include <linux/usb/gadget.h>
39
Roger Quadros1b9ba002011-05-09 13:08:06 +030040/*
41 * USB function drivers should return USB_GADGET_DELAYED_STATUS if they
42 * wish to delay the data/status stages of the control transfer till they
43 * are ready. The control transfer will then be kept from completing till
44 * all the function drivers that requested for USB_GADGET_DELAYED_STAUS
45 * invoke usb_composite_setup_continue().
46 */
47#define USB_GADGET_DELAYED_STATUS 0x7fff /* Impossibly large value */
David Brownell40982be2008-06-19 17:52:58 -070048
Sebastian Andrzej Siewiore13f17f2012-09-10 15:01:51 +020049/* big enough to hold our biggest descriptor */
50#define USB_COMP_EP0_BUFSIZ 1024
51
David Brownell40982be2008-06-19 17:52:58 -070052struct usb_configuration;
53
54/**
55 * struct usb_function - describes one function of a configuration
56 * @name: For diagnostics, identifies the function.
57 * @strings: tables of strings, keyed by identifiers assigned during bind()
58 * and by language IDs provided in control requests
59 * @descriptors: Table of full (or low) speed descriptors, using interface and
60 * string identifiers assigned during @bind(). If this pointer is null,
61 * the function will not be available at full speed (or at low speed).
62 * @hs_descriptors: Table of high speed descriptors, using interface and
63 * string identifiers assigned during @bind(). If this pointer is null,
64 * the function will not be available at high speed.
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +030065 * @ss_descriptors: Table of super speed descriptors, using interface and
66 * string identifiers assigned during @bind(). If this
67 * pointer is null after initiation, the function will not
68 * be available at super speed.
David Brownell40982be2008-06-19 17:52:58 -070069 * @config: assigned when @usb_add_function() is called; this is the
70 * configuration with which this function is associated.
71 * @bind: Before the gadget can register, all of its functions bind() to the
72 * available resources including string and interface identifiers used
73 * in interface or class descriptors; endpoints; I/O buffers; and so on.
74 * @unbind: Reverses @bind; called as a side effect of unregistering the
75 * driver which added this function.
76 * @set_alt: (REQUIRED) Reconfigures altsettings; function drivers may
77 * initialize usb_ep.driver data at this time (when it is used).
78 * Note that setting an interface to its current altsetting resets
79 * interface state, and that all interfaces have a disabled state.
80 * @get_alt: Returns the active altsetting. If this is not provided,
81 * then only altsetting zero is supported.
82 * @disable: (REQUIRED) Indicates the function should be disabled. Reasons
83 * include host resetting or reconfiguring the gadget, and disconnection.
84 * @setup: Used for interface-specific control requests.
85 * @suspend: Notifies functions when the host stops sending USB traffic.
86 * @resume: Notifies functions when the host restarts USB traffic.
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +030087 * @get_status: Returns function status as a reply to
88 * GetStatus() request when the recepient is Interface.
89 * @func_suspend: callback to be called when
90 * SetFeature(FUNCTION_SUSPEND) is reseived
David Brownell40982be2008-06-19 17:52:58 -070091 *
92 * A single USB function uses one or more interfaces, and should in most
93 * cases support operation at both full and high speeds. Each function is
94 * associated by @usb_add_function() with a one configuration; that function
95 * causes @bind() to be called so resources can be allocated as part of
96 * setting up a gadget driver. Those resources include endpoints, which
97 * should be allocated using @usb_ep_autoconfig().
98 *
99 * To support dual speed operation, a function driver provides descriptors
100 * for both high and full speed operation. Except in rare cases that don't
101 * involve bulk endpoints, each speed needs different endpoint descriptors.
102 *
103 * Function drivers choose their own strategies for managing instance data.
104 * The simplest strategy just declares it "static', which means the function
105 * can only be activated once. If the function needs to be exposed in more
106 * than one configuration at a given speed, it needs to support multiple
107 * usb_function structures (one for each configuration).
108 *
109 * A more complex strategy might encapsulate a @usb_function structure inside
110 * a driver-specific instance structure to allows multiple activations. An
111 * example of multiple activations might be a CDC ACM function that supports
112 * two or more distinct instances within the same configuration, providing
113 * several independent logical data links to a USB host.
114 */
115struct usb_function {
116 const char *name;
117 struct usb_gadget_strings **strings;
118 struct usb_descriptor_header **descriptors;
119 struct usb_descriptor_header **hs_descriptors;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300120 struct usb_descriptor_header **ss_descriptors;
David Brownell40982be2008-06-19 17:52:58 -0700121
122 struct usb_configuration *config;
123
124 /* REVISIT: bind() functions can be marked __init, which
125 * makes trouble for section mismatch analysis. See if
126 * we can't restructure things to avoid mismatching.
127 * Related: unbind() may kfree() but bind() won't...
128 */
129
130 /* configuration management: bind/unbind */
131 int (*bind)(struct usb_configuration *,
132 struct usb_function *);
133 void (*unbind)(struct usb_configuration *,
134 struct usb_function *);
135
136 /* runtime state management */
137 int (*set_alt)(struct usb_function *,
138 unsigned interface, unsigned alt);
139 int (*get_alt)(struct usb_function *,
140 unsigned interface);
141 void (*disable)(struct usb_function *);
142 int (*setup)(struct usb_function *,
143 const struct usb_ctrlrequest *);
144 void (*suspend)(struct usb_function *);
145 void (*resume)(struct usb_function *);
146
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300147 /* USB 3.0 additions */
148 int (*get_status)(struct usb_function *);
149 int (*func_suspend)(struct usb_function *,
150 u8 suspend_opt);
Randy Dunlapcac85a82009-04-29 21:04:19 -0700151 /* private: */
David Brownell40982be2008-06-19 17:52:58 -0700152 /* internals */
153 struct list_head list;
Laurent Pinchart52426582009-10-21 00:03:38 +0200154 DECLARE_BITMAP(endpoints, 32);
David Brownell40982be2008-06-19 17:52:58 -0700155};
156
157int usb_add_function(struct usb_configuration *, struct usb_function *);
158
David Brownell60beed92008-08-18 17:38:22 -0700159int usb_function_deactivate(struct usb_function *);
160int usb_function_activate(struct usb_function *);
161
David Brownell40982be2008-06-19 17:52:58 -0700162int usb_interface_id(struct usb_configuration *, struct usb_function *);
163
Tatyana Brokhman48767a42011-06-28 16:33:49 +0300164int config_ep_by_speed(struct usb_gadget *g, struct usb_function *f,
165 struct usb_ep *_ep);
166
David Brownell40982be2008-06-19 17:52:58 -0700167#define MAX_CONFIG_INTERFACES 16 /* arbitrary; max 255 */
168
169/**
170 * struct usb_configuration - represents one gadget configuration
171 * @label: For diagnostics, describes the configuration.
172 * @strings: Tables of strings, keyed by identifiers assigned during @bind()
173 * and by language IDs provided in control requests.
174 * @descriptors: Table of descriptors preceding all function descriptors.
175 * Examples include OTG and vendor-specific descriptors.
David Brownell40982be2008-06-19 17:52:58 -0700176 * @unbind: Reverses @bind; called as a side effect of unregistering the
177 * driver which added this configuration.
178 * @setup: Used to delegate control requests that aren't handled by standard
179 * device infrastructure or directed at a specific interface.
180 * @bConfigurationValue: Copied into configuration descriptor.
181 * @iConfiguration: Copied into configuration descriptor.
182 * @bmAttributes: Copied into configuration descriptor.
183 * @bMaxPower: Copied into configuration descriptor.
184 * @cdev: assigned by @usb_add_config() before calling @bind(); this is
185 * the device associated with this configuration.
186 *
187 * Configurations are building blocks for gadget drivers structured around
188 * function drivers. Simple USB gadgets require only one function and one
189 * configuration, and handle dual-speed hardware by always providing the same
190 * functionality. Slightly more complex gadgets may have more than one
191 * single-function configuration at a given speed; or have configurations
192 * that only work at one speed.
193 *
194 * Composite devices are, by definition, ones with configurations which
195 * include more than one function.
196 *
197 * The lifecycle of a usb_configuration includes allocation, initialization
198 * of the fields described above, and calling @usb_add_config() to set up
199 * internal data and bind it to a specific device. The configuration's
200 * @bind() method is then used to initialize all the functions and then
201 * call @usb_add_function() for them.
202 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300203 * Those functions would normally be independent of each other, but that's
David Brownell40982be2008-06-19 17:52:58 -0700204 * not mandatory. CDC WMC devices are an example where functions often
205 * depend on other functions, with some functions subsidiary to others.
206 * Such interdependency may be managed in any way, so long as all of the
207 * descriptors complete by the time the composite driver returns from
208 * its bind() routine.
209 */
210struct usb_configuration {
211 const char *label;
212 struct usb_gadget_strings **strings;
213 const struct usb_descriptor_header **descriptors;
214
215 /* REVISIT: bind() functions can be marked __init, which
216 * makes trouble for section mismatch analysis. See if
217 * we can't restructure things to avoid mismatching...
218 */
219
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200220 /* configuration management: unbind/setup */
David Brownell40982be2008-06-19 17:52:58 -0700221 void (*unbind)(struct usb_configuration *);
222 int (*setup)(struct usb_configuration *,
223 const struct usb_ctrlrequest *);
224
225 /* fields in the config descriptor */
226 u8 bConfigurationValue;
227 u8 iConfiguration;
228 u8 bmAttributes;
229 u8 bMaxPower;
230
231 struct usb_composite_dev *cdev;
232
Randy Dunlapcac85a82009-04-29 21:04:19 -0700233 /* private: */
David Brownell40982be2008-06-19 17:52:58 -0700234 /* internals */
235 struct list_head list;
236 struct list_head functions;
237 u8 next_interface_id;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300238 unsigned superspeed:1;
David Brownell40982be2008-06-19 17:52:58 -0700239 unsigned highspeed:1;
240 unsigned fullspeed:1;
241 struct usb_function *interface[MAX_CONFIG_INTERFACES];
242};
243
244int usb_add_config(struct usb_composite_dev *,
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200245 struct usb_configuration *,
246 int (*)(struct usb_configuration *));
David Brownell40982be2008-06-19 17:52:58 -0700247
Benoit Goby51cce6f2012-05-10 10:07:57 +0200248void usb_remove_config(struct usb_composite_dev *,
249 struct usb_configuration *);
250
Sebastian Andrzej Siewior276e2e42012-09-06 20:11:21 +0200251/* predefined index for usb_composite_driver */
252enum {
253 USB_GADGET_MANUFACTURER_IDX = 0,
254 USB_GADGET_PRODUCT_IDX,
255 USB_GADGET_SERIAL_IDX,
256 USB_GADGET_FIRST_AVAIL_IDX,
257};
258
David Brownell40982be2008-06-19 17:52:58 -0700259/**
260 * struct usb_composite_driver - groups configurations into a gadget
261 * @name: For diagnostics, identifies the driver.
262 * @dev: Template descriptor for the device, including default device
263 * identifiers.
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +0200264 * @strings: tables of strings, keyed by identifiers assigned during @bind
Sebastian Andrzej Siewior276e2e42012-09-06 20:11:21 +0200265 * and language IDs provided in control requests. Note: The first entries
266 * are predefined. The first entry that may be used is
267 * USB_GADGET_FIRST_AVAIL_IDX
Tatyana Brokhman35a0e0b2011-06-29 16:41:49 +0300268 * @max_speed: Highest speed the driver supports.
Michal Nazarewiczad1a8102010-08-12 17:43:46 +0200269 * @needs_serial: set to 1 if the gadget needs userspace to provide
270 * a serial number. If one is not provided, warning will be printed.
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +0200271 * @bind: (REQUIRED) Used to allocate resources that are shared across the
272 * whole device, such as string IDs, and add its configurations using
273 * @usb_add_config(). This may fail by returning a negative errno
274 * value; it should return zero on successful initialization.
275 * @unbind: Reverses @bind; called as a side effect of unregistering
David Brownell40982be2008-06-19 17:52:58 -0700276 * this driver.
Randy Dunlapd187abb2010-08-11 12:07:13 -0700277 * @disconnect: optional driver disconnect method
David Brownell89429392009-03-19 14:14:17 -0700278 * @suspend: Notifies when the host stops sending USB traffic,
279 * after function notifications
280 * @resume: Notifies configuration when the host restarts USB traffic,
281 * before function notifications
David Brownell40982be2008-06-19 17:52:58 -0700282 *
283 * Devices default to reporting self powered operation. Devices which rely
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +0200284 * on bus powered operation should report this in their @bind method.
David Brownell40982be2008-06-19 17:52:58 -0700285 *
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +0200286 * Before returning from @bind, various fields in the template descriptor
David Brownell40982be2008-06-19 17:52:58 -0700287 * may be overridden. These include the idVendor/idProduct/bcdDevice values
288 * normally to bind the appropriate host side driver, and the three strings
289 * (iManufacturer, iProduct, iSerialNumber) normally used to provide user
290 * meaningful device identifiers. (The strings will not be defined unless
291 * they are defined in @dev and @strings.) The correct ep0 maxpacket size
292 * is also reported, as defined by the underlying controller driver.
293 */
294struct usb_composite_driver {
295 const char *name;
296 const struct usb_device_descriptor *dev;
297 struct usb_gadget_strings **strings;
Tatyana Brokhman35a0e0b2011-06-29 16:41:49 +0300298 enum usb_device_speed max_speed;
Michal Nazarewiczad1a8102010-08-12 17:43:46 +0200299 unsigned needs_serial:1;
David Brownell40982be2008-06-19 17:52:58 -0700300
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +0200301 int (*bind)(struct usb_composite_dev *cdev);
David Brownell40982be2008-06-19 17:52:58 -0700302 int (*unbind)(struct usb_composite_dev *);
David Brownell89429392009-03-19 14:14:17 -0700303
Michal Nazarewicz3f3e12d2010-06-21 13:57:08 +0200304 void (*disconnect)(struct usb_composite_dev *);
305
David Brownell89429392009-03-19 14:14:17 -0700306 /* global suspend hooks */
307 void (*suspend)(struct usb_composite_dev *);
308 void (*resume)(struct usb_composite_dev *);
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +0200309 struct usb_gadget_driver gadget_driver;
David Brownell40982be2008-06-19 17:52:58 -0700310};
311
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200312extern int usb_composite_probe(struct usb_composite_driver *driver);
Michal Nazarewicz07a18bd2010-08-12 17:43:54 +0200313extern void usb_composite_unregister(struct usb_composite_driver *driver);
Roger Quadros1b9ba002011-05-09 13:08:06 +0300314extern void usb_composite_setup_continue(struct usb_composite_dev *cdev);
David Brownell40982be2008-06-19 17:52:58 -0700315
316
317/**
318 * struct usb_composite_device - represents one composite usb gadget
319 * @gadget: read-only, abstracts the gadget's usb peripheral controller
320 * @req: used for control responses; buffer is pre-allocated
David Brownell40982be2008-06-19 17:52:58 -0700321 * @config: the currently active configuration
322 *
323 * One of these devices is allocated and initialized before the
324 * associated device driver's bind() is called.
325 *
326 * OPEN ISSUE: it appears that some WUSB devices will need to be
327 * built by combining a normal (wired) gadget with a wireless one.
328 * This revision of the gadget framework should probably try to make
329 * sure doing that won't hurt too much.
330 *
331 * One notion for how to handle Wireless USB devices involves:
332 * (a) a second gadget here, discovery mechanism TBD, but likely
333 * needing separate "register/unregister WUSB gadget" calls;
334 * (b) updates to usb_gadget to include flags "is it wireless",
335 * "is it wired", plus (presumably in a wrapper structure)
336 * bandgroup and PHY info;
337 * (c) presumably a wireless_ep wrapping a usb_ep, and reporting
338 * wireless-specific parameters like maxburst and maxsequence;
339 * (d) configurations that are specific to wireless links;
340 * (e) function drivers that understand wireless configs and will
341 * support wireless for (additional) function instances;
342 * (f) a function to support association setup (like CBAF), not
343 * necessarily requiring a wireless adapter;
344 * (g) composite device setup that can create one or more wireless
345 * configs, including appropriate association setup support;
346 * (h) more, TBD.
347 */
348struct usb_composite_dev {
349 struct usb_gadget *gadget;
350 struct usb_request *req;
David Brownell40982be2008-06-19 17:52:58 -0700351
352 struct usb_configuration *config;
353
Randy Dunlapcac85a82009-04-29 21:04:19 -0700354 /* private: */
David Brownell40982be2008-06-19 17:52:58 -0700355 /* internals */
Fabien Chouteauf48cf802010-04-23 14:21:26 +0200356 unsigned int suspended:1;
David Brownell40982be2008-06-19 17:52:58 -0700357 struct usb_device_descriptor desc;
358 struct list_head configs;
359 struct usb_composite_driver *driver;
360 u8 next_string_id;
Sebastian Andrzej Siewiorcc2683c2012-09-10 15:01:58 +0200361 char *def_manufacturer;
David Brownell40982be2008-06-19 17:52:58 -0700362
David Brownell60beed92008-08-18 17:38:22 -0700363 /* the gadget driver won't enable the data pullup
364 * while the deactivation count is nonzero.
365 */
366 unsigned deactivations;
David Brownell40982be2008-06-19 17:52:58 -0700367
Roger Quadros1b9ba002011-05-09 13:08:06 +0300368 /* the composite driver won't complete the control transfer's
369 * data/status stages till delayed_status is zero.
370 */
371 int delayed_status;
372
373 /* protects deactivations and delayed_status counts*/
David Brownell60beed92008-08-18 17:38:22 -0700374 spinlock_t lock;
David Brownell40982be2008-06-19 17:52:58 -0700375};
376
377extern int usb_string_id(struct usb_composite_dev *c);
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +0200378extern int usb_string_ids_tab(struct usb_composite_dev *c,
379 struct usb_string *str);
380extern int usb_string_ids_n(struct usb_composite_dev *c, unsigned n);
381
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +0200382/*
383 * Some systems will need runtime overrides for the product identifiers
384 * published in the device descriptor, either numbers or strings or both.
385 * String parameters are in UTF-8 (superset of ASCII's 7 bit characters).
386 */
387struct usb_composite_overwrite {
388 u16 idVendor;
389 u16 idProduct;
390 u16 bcdDevice;
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +0200391 char *serial_number;
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +0200392 char *manufacturer;
Sebastian Andrzej Siewior2d35ee42012-09-10 15:01:56 +0200393 char *product;
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +0200394};
395#define USB_GADGET_COMPOSITE_OPTIONS() \
396 static struct usb_composite_overwrite coverwrite; \
397 \
398 module_param_named(idVendor, coverwrite.idVendor, ushort, S_IRUGO); \
399 MODULE_PARM_DESC(idVendor, "USB Vendor ID"); \
400 \
401 module_param_named(idProduct, coverwrite.idProduct, ushort, S_IRUGO); \
402 MODULE_PARM_DESC(idProduct, "USB Product ID"); \
403 \
404 module_param_named(bcdDevice, coverwrite.bcdDevice, ushort, S_IRUGO); \
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +0200405 MODULE_PARM_DESC(bcdDevice, "USB Device version (BCD)"); \
406 \
407 module_param_named(iSerialNumber, coverwrite.serial_number, charp, \
408 S_IRUGO); \
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +0200409 MODULE_PARM_DESC(iSerialNumber, "SerialNumber string"); \
410 \
411 module_param_named(iManufacturer, coverwrite.manufacturer, charp, \
412 S_IRUGO); \
Sebastian Andrzej Siewior2d35ee42012-09-10 15:01:56 +0200413 MODULE_PARM_DESC(iManufacturer, "USB Manufacturer string"); \
414 \
415 module_param_named(iProduct, coverwrite.product, charp, S_IRUGO); \
416 MODULE_PARM_DESC(iProduct, "USB Product string")
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +0200417
418void usb_composite_overwrite_options(struct usb_composite_dev *cdev,
419 struct usb_composite_overwrite *covr);
David Brownell40982be2008-06-19 17:52:58 -0700420
421/* messaging utils */
422#define DBG(d, fmt, args...) \
423 dev_dbg(&(d)->gadget->dev , fmt , ## args)
424#define VDBG(d, fmt, args...) \
425 dev_vdbg(&(d)->gadget->dev , fmt , ## args)
426#define ERROR(d, fmt, args...) \
427 dev_err(&(d)->gadget->dev , fmt , ## args)
Arjan van de Venb6c63932008-07-25 01:45:52 -0700428#define WARNING(d, fmt, args...) \
David Brownell40982be2008-06-19 17:52:58 -0700429 dev_warn(&(d)->gadget->dev , fmt , ## args)
430#define INFO(d, fmt, args...) \
431 dev_info(&(d)->gadget->dev , fmt , ## args)
432
433#endif /* __LINUX_USB_COMPOSITE_H */