blob: 9c3903d767812274a4e3479bfaad9d182e5b42b2 [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
Sebastian Andrzej Siewiored9cbda2012-09-10 09:16:07 +020037#include <linux/bcd.h>
38#include <linux/version.h>
David Brownell40982be2008-06-19 17:52:58 -070039#include <linux/usb/ch9.h>
40#include <linux/usb/gadget.h>
Sebastian Andrzej Siewiorbcb2f992012-10-22 22:14:57 +020041#include <linux/log2.h>
Sebastian Andrzej Siewior88af8bb2012-12-23 21:10:24 +010042#include <linux/configfs.h>
David Brownell40982be2008-06-19 17:52:58 -070043
Roger Quadros1b9ba002011-05-09 13:08:06 +030044/*
45 * USB function drivers should return USB_GADGET_DELAYED_STATUS if they
46 * wish to delay the data/status stages of the control transfer till they
47 * are ready. The control transfer will then be kept from completing till
48 * all the function drivers that requested for USB_GADGET_DELAYED_STAUS
49 * invoke usb_composite_setup_continue().
50 */
51#define USB_GADGET_DELAYED_STATUS 0x7fff /* Impossibly large value */
David Brownell40982be2008-06-19 17:52:58 -070052
Sebastian Andrzej Siewiore13f17f2012-09-10 15:01:51 +020053/* big enough to hold our biggest descriptor */
54#define USB_COMP_EP0_BUFSIZ 1024
55
Sebastian Andrzej Siewiorbcb2f992012-10-22 22:14:57 +020056#define USB_MS_TO_HS_INTERVAL(x) (ilog2((x * 1000 / 125)) + 1)
David Brownell40982be2008-06-19 17:52:58 -070057struct usb_configuration;
58
59/**
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +020060 * struct usb_os_desc_ext_prop - describes one "Extended Property"
61 * @entry: used to keep a list of extended properties
62 * @type: Extended Property type
63 * @name_len: Extended Property unicode name length, including terminating '\0'
64 * @name: Extended Property name
65 * @data_len: Length of Extended Property blob (for unicode store double len)
66 * @data: Extended Property blob
67 */
68struct usb_os_desc_ext_prop {
69 struct list_head entry;
70 u8 type;
71 int name_len;
72 char *name;
73 int data_len;
74 char *data;
75};
76
77/**
78 * struct usb_os_desc - describes OS descriptors associated with one interface
79 * @ext_compat_id: 16 bytes of "Compatible ID" and "Subcompatible ID"
80 * @ext_prop: Extended Properties list
81 * @ext_prop_len: Total length of Extended Properties blobs
82 * @ext_prop_count: Number of Extended Properties
Andrzej Pietrasiewiczda424312014-05-08 14:06:26 +020083 * @opts_mutex: Optional mutex protecting config data of a usb_function_instance
84 * @group: Represents OS descriptors associated with an interface in configfs
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +020085 */
86struct usb_os_desc {
87 char *ext_compat_id;
88 struct list_head ext_prop;
89 int ext_prop_len;
90 int ext_prop_count;
Andrzej Pietrasiewiczda424312014-05-08 14:06:26 +020091 struct mutex *opts_mutex;
92 struct config_group group;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +020093};
94
95/**
96 * struct usb_os_desc_table - describes OS descriptors associated with one
97 * interface of a usb_function
98 * @if_id: Interface id
99 * @os_desc: "Extended Compatibility ID" and "Extended Properties" of the
100 * interface
101 *
102 * Each interface can have at most one "Extended Compatibility ID" and a
103 * number of "Extended Properties".
104 */
105struct usb_os_desc_table {
106 int if_id;
107 struct usb_os_desc *os_desc;
108};
109
110/**
David Brownell40982be2008-06-19 17:52:58 -0700111 * struct usb_function - describes one function of a configuration
112 * @name: For diagnostics, identifies the function.
113 * @strings: tables of strings, keyed by identifiers assigned during bind()
114 * and by language IDs provided in control requests
Nishanth Menon43febb22013-03-04 16:52:38 -0600115 * @fs_descriptors: Table of full (or low) speed descriptors, using interface and
David Brownell40982be2008-06-19 17:52:58 -0700116 * string identifiers assigned during @bind(). If this pointer is null,
117 * the function will not be available at full speed (or at low speed).
118 * @hs_descriptors: Table of high speed descriptors, using interface and
119 * string identifiers assigned during @bind(). If this pointer is null,
120 * the function will not be available at high speed.
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300121 * @ss_descriptors: Table of super speed descriptors, using interface and
122 * string identifiers assigned during @bind(). If this
123 * pointer is null after initiation, the function will not
124 * be available at super speed.
David Brownell40982be2008-06-19 17:52:58 -0700125 * @config: assigned when @usb_add_function() is called; this is the
126 * configuration with which this function is associated.
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +0200127 * @os_desc_table: Table of (interface id, os descriptors) pairs. The function
128 * can expose more than one interface. If an interface is a member of
129 * an IAD, only the first interface of IAD has its entry in the table.
130 * @os_desc_n: Number of entries in os_desc_table
David Brownell40982be2008-06-19 17:52:58 -0700131 * @bind: Before the gadget can register, all of its functions bind() to the
132 * available resources including string and interface identifiers used
133 * in interface or class descriptors; endpoints; I/O buffers; and so on.
134 * @unbind: Reverses @bind; called as a side effect of unregistering the
135 * driver which added this function.
Sebastian Andrzej Siewiorde53c252012-12-23 21:10:00 +0100136 * @free_func: free the struct usb_function.
137 * @mod: (internal) points to the module that created this structure.
David Brownell40982be2008-06-19 17:52:58 -0700138 * @set_alt: (REQUIRED) Reconfigures altsettings; function drivers may
139 * initialize usb_ep.driver data at this time (when it is used).
140 * Note that setting an interface to its current altsetting resets
141 * interface state, and that all interfaces have a disabled state.
142 * @get_alt: Returns the active altsetting. If this is not provided,
143 * then only altsetting zero is supported.
144 * @disable: (REQUIRED) Indicates the function should be disabled. Reasons
145 * include host resetting or reconfiguring the gadget, and disconnection.
146 * @setup: Used for interface-specific control requests.
147 * @suspend: Notifies functions when the host stops sending USB traffic.
148 * @resume: Notifies functions when the host restarts USB traffic.
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300149 * @get_status: Returns function status as a reply to
Masanari Iidae2278672014-02-18 22:54:36 +0900150 * GetStatus() request when the recipient is Interface.
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300151 * @func_suspend: callback to be called when
152 * SetFeature(FUNCTION_SUSPEND) is reseived
David Brownell40982be2008-06-19 17:52:58 -0700153 *
154 * A single USB function uses one or more interfaces, and should in most
155 * cases support operation at both full and high speeds. Each function is
156 * associated by @usb_add_function() with a one configuration; that function
157 * causes @bind() to be called so resources can be allocated as part of
158 * setting up a gadget driver. Those resources include endpoints, which
159 * should be allocated using @usb_ep_autoconfig().
160 *
161 * To support dual speed operation, a function driver provides descriptors
162 * for both high and full speed operation. Except in rare cases that don't
163 * involve bulk endpoints, each speed needs different endpoint descriptors.
164 *
165 * Function drivers choose their own strategies for managing instance data.
166 * The simplest strategy just declares it "static', which means the function
167 * can only be activated once. If the function needs to be exposed in more
168 * than one configuration at a given speed, it needs to support multiple
169 * usb_function structures (one for each configuration).
170 *
171 * A more complex strategy might encapsulate a @usb_function structure inside
172 * a driver-specific instance structure to allows multiple activations. An
173 * example of multiple activations might be a CDC ACM function that supports
174 * two or more distinct instances within the same configuration, providing
175 * several independent logical data links to a USB host.
176 */
Sebastian Andrzej Siewiorde53c252012-12-23 21:10:00 +0100177
David Brownell40982be2008-06-19 17:52:58 -0700178struct usb_function {
179 const char *name;
180 struct usb_gadget_strings **strings;
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +0200181 struct usb_descriptor_header **fs_descriptors;
David Brownell40982be2008-06-19 17:52:58 -0700182 struct usb_descriptor_header **hs_descriptors;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300183 struct usb_descriptor_header **ss_descriptors;
David Brownell40982be2008-06-19 17:52:58 -0700184
185 struct usb_configuration *config;
186
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +0200187 struct usb_os_desc_table *os_desc_table;
188 unsigned os_desc_n;
189
David Brownell40982be2008-06-19 17:52:58 -0700190 /* REVISIT: bind() functions can be marked __init, which
191 * makes trouble for section mismatch analysis. See if
192 * we can't restructure things to avoid mismatching.
193 * Related: unbind() may kfree() but bind() won't...
194 */
195
196 /* configuration management: bind/unbind */
197 int (*bind)(struct usb_configuration *,
198 struct usb_function *);
199 void (*unbind)(struct usb_configuration *,
200 struct usb_function *);
Sebastian Andrzej Siewiorde53c252012-12-23 21:10:00 +0100201 void (*free_func)(struct usb_function *f);
202 struct module *mod;
David Brownell40982be2008-06-19 17:52:58 -0700203
204 /* runtime state management */
205 int (*set_alt)(struct usb_function *,
206 unsigned interface, unsigned alt);
207 int (*get_alt)(struct usb_function *,
208 unsigned interface);
209 void (*disable)(struct usb_function *);
210 int (*setup)(struct usb_function *,
211 const struct usb_ctrlrequest *);
212 void (*suspend)(struct usb_function *);
213 void (*resume)(struct usb_function *);
214
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300215 /* USB 3.0 additions */
216 int (*get_status)(struct usb_function *);
217 int (*func_suspend)(struct usb_function *,
218 u8 suspend_opt);
Randy Dunlapcac85a82009-04-29 21:04:19 -0700219 /* private: */
David Brownell40982be2008-06-19 17:52:58 -0700220 /* internals */
221 struct list_head list;
Laurent Pinchart52426582009-10-21 00:03:38 +0200222 DECLARE_BITMAP(endpoints, 32);
Sebastian Andrzej Siewior0062f6e2012-12-23 21:10:15 +0100223 const struct usb_function_instance *fi;
David Brownell40982be2008-06-19 17:52:58 -0700224};
225
226int usb_add_function(struct usb_configuration *, struct usb_function *);
227
David Brownell60beed92008-08-18 17:38:22 -0700228int usb_function_deactivate(struct usb_function *);
229int usb_function_activate(struct usb_function *);
230
David Brownell40982be2008-06-19 17:52:58 -0700231int usb_interface_id(struct usb_configuration *, struct usb_function *);
232
Tatyana Brokhman48767a42011-06-28 16:33:49 +0300233int config_ep_by_speed(struct usb_gadget *g, struct usb_function *f,
234 struct usb_ep *_ep);
235
David Brownell40982be2008-06-19 17:52:58 -0700236#define MAX_CONFIG_INTERFACES 16 /* arbitrary; max 255 */
237
238/**
239 * struct usb_configuration - represents one gadget configuration
240 * @label: For diagnostics, describes the configuration.
241 * @strings: Tables of strings, keyed by identifiers assigned during @bind()
242 * and by language IDs provided in control requests.
243 * @descriptors: Table of descriptors preceding all function descriptors.
244 * Examples include OTG and vendor-specific descriptors.
David Brownell40982be2008-06-19 17:52:58 -0700245 * @unbind: Reverses @bind; called as a side effect of unregistering the
246 * driver which added this configuration.
247 * @setup: Used to delegate control requests that aren't handled by standard
248 * device infrastructure or directed at a specific interface.
249 * @bConfigurationValue: Copied into configuration descriptor.
250 * @iConfiguration: Copied into configuration descriptor.
251 * @bmAttributes: Copied into configuration descriptor.
Sebastian Andrzej Siewior8f900a92012-12-03 20:07:05 +0100252 * @MaxPower: Power consumtion in mA. Used to compute bMaxPower in the
253 * configuration descriptor after considering the bus speed.
David Brownell40982be2008-06-19 17:52:58 -0700254 * @cdev: assigned by @usb_add_config() before calling @bind(); this is
255 * the device associated with this configuration.
256 *
257 * Configurations are building blocks for gadget drivers structured around
258 * function drivers. Simple USB gadgets require only one function and one
259 * configuration, and handle dual-speed hardware by always providing the same
260 * functionality. Slightly more complex gadgets may have more than one
261 * single-function configuration at a given speed; or have configurations
262 * that only work at one speed.
263 *
264 * Composite devices are, by definition, ones with configurations which
265 * include more than one function.
266 *
267 * The lifecycle of a usb_configuration includes allocation, initialization
268 * of the fields described above, and calling @usb_add_config() to set up
269 * internal data and bind it to a specific device. The configuration's
270 * @bind() method is then used to initialize all the functions and then
271 * call @usb_add_function() for them.
272 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300273 * Those functions would normally be independent of each other, but that's
David Brownell40982be2008-06-19 17:52:58 -0700274 * not mandatory. CDC WMC devices are an example where functions often
275 * depend on other functions, with some functions subsidiary to others.
276 * Such interdependency may be managed in any way, so long as all of the
277 * descriptors complete by the time the composite driver returns from
278 * its bind() routine.
279 */
280struct usb_configuration {
281 const char *label;
282 struct usb_gadget_strings **strings;
283 const struct usb_descriptor_header **descriptors;
284
285 /* REVISIT: bind() functions can be marked __init, which
286 * makes trouble for section mismatch analysis. See if
287 * we can't restructure things to avoid mismatching...
288 */
289
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200290 /* configuration management: unbind/setup */
David Brownell40982be2008-06-19 17:52:58 -0700291 void (*unbind)(struct usb_configuration *);
292 int (*setup)(struct usb_configuration *,
293 const struct usb_ctrlrequest *);
294
295 /* fields in the config descriptor */
296 u8 bConfigurationValue;
297 u8 iConfiguration;
298 u8 bmAttributes;
Sebastian Andrzej Siewior8f900a92012-12-03 20:07:05 +0100299 u16 MaxPower;
David Brownell40982be2008-06-19 17:52:58 -0700300
301 struct usb_composite_dev *cdev;
302
Randy Dunlapcac85a82009-04-29 21:04:19 -0700303 /* private: */
David Brownell40982be2008-06-19 17:52:58 -0700304 /* internals */
305 struct list_head list;
306 struct list_head functions;
307 u8 next_interface_id;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300308 unsigned superspeed:1;
David Brownell40982be2008-06-19 17:52:58 -0700309 unsigned highspeed:1;
310 unsigned fullspeed:1;
311 struct usb_function *interface[MAX_CONFIG_INTERFACES];
312};
313
314int usb_add_config(struct usb_composite_dev *,
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200315 struct usb_configuration *,
316 int (*)(struct usb_configuration *));
David Brownell40982be2008-06-19 17:52:58 -0700317
Benoit Goby51cce6f2012-05-10 10:07:57 +0200318void usb_remove_config(struct usb_composite_dev *,
319 struct usb_configuration *);
320
Sebastian Andrzej Siewior276e2e42012-09-06 20:11:21 +0200321/* predefined index for usb_composite_driver */
322enum {
323 USB_GADGET_MANUFACTURER_IDX = 0,
324 USB_GADGET_PRODUCT_IDX,
325 USB_GADGET_SERIAL_IDX,
326 USB_GADGET_FIRST_AVAIL_IDX,
327};
328
David Brownell40982be2008-06-19 17:52:58 -0700329/**
330 * struct usb_composite_driver - groups configurations into a gadget
331 * @name: For diagnostics, identifies the driver.
332 * @dev: Template descriptor for the device, including default device
333 * identifiers.
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +0200334 * @strings: tables of strings, keyed by identifiers assigned during @bind
Sebastian Andrzej Siewior276e2e42012-09-06 20:11:21 +0200335 * and language IDs provided in control requests. Note: The first entries
336 * are predefined. The first entry that may be used is
337 * USB_GADGET_FIRST_AVAIL_IDX
Tatyana Brokhman35a0e0b2011-06-29 16:41:49 +0300338 * @max_speed: Highest speed the driver supports.
Michal Nazarewiczad1a8102010-08-12 17:43:46 +0200339 * @needs_serial: set to 1 if the gadget needs userspace to provide
340 * a serial number. If one is not provided, warning will be printed.
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +0200341 * @bind: (REQUIRED) Used to allocate resources that are shared across the
342 * whole device, such as string IDs, and add its configurations using
343 * @usb_add_config(). This may fail by returning a negative errno
344 * value; it should return zero on successful initialization.
345 * @unbind: Reverses @bind; called as a side effect of unregistering
David Brownell40982be2008-06-19 17:52:58 -0700346 * this driver.
Randy Dunlapd187abb2010-08-11 12:07:13 -0700347 * @disconnect: optional driver disconnect method
David Brownell89429392009-03-19 14:14:17 -0700348 * @suspend: Notifies when the host stops sending USB traffic,
349 * after function notifications
350 * @resume: Notifies configuration when the host restarts USB traffic,
351 * before function notifications
Nishanth Menon43febb22013-03-04 16:52:38 -0600352 * @gadget_driver: Gadget driver controlling this driver
David Brownell40982be2008-06-19 17:52:58 -0700353 *
354 * Devices default to reporting self powered operation. Devices which rely
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +0200355 * on bus powered operation should report this in their @bind method.
David Brownell40982be2008-06-19 17:52:58 -0700356 *
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +0200357 * Before returning from @bind, various fields in the template descriptor
David Brownell40982be2008-06-19 17:52:58 -0700358 * may be overridden. These include the idVendor/idProduct/bcdDevice values
359 * normally to bind the appropriate host side driver, and the three strings
360 * (iManufacturer, iProduct, iSerialNumber) normally used to provide user
361 * meaningful device identifiers. (The strings will not be defined unless
362 * they are defined in @dev and @strings.) The correct ep0 maxpacket size
363 * is also reported, as defined by the underlying controller driver.
364 */
365struct usb_composite_driver {
366 const char *name;
367 const struct usb_device_descriptor *dev;
368 struct usb_gadget_strings **strings;
Tatyana Brokhman35a0e0b2011-06-29 16:41:49 +0300369 enum usb_device_speed max_speed;
Michal Nazarewiczad1a8102010-08-12 17:43:46 +0200370 unsigned needs_serial:1;
David Brownell40982be2008-06-19 17:52:58 -0700371
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +0200372 int (*bind)(struct usb_composite_dev *cdev);
David Brownell40982be2008-06-19 17:52:58 -0700373 int (*unbind)(struct usb_composite_dev *);
David Brownell89429392009-03-19 14:14:17 -0700374
Michal Nazarewicz3f3e12d2010-06-21 13:57:08 +0200375 void (*disconnect)(struct usb_composite_dev *);
376
David Brownell89429392009-03-19 14:14:17 -0700377 /* global suspend hooks */
378 void (*suspend)(struct usb_composite_dev *);
379 void (*resume)(struct usb_composite_dev *);
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +0200380 struct usb_gadget_driver gadget_driver;
David Brownell40982be2008-06-19 17:52:58 -0700381};
382
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200383extern int usb_composite_probe(struct usb_composite_driver *driver);
Michal Nazarewicz07a18bd2010-08-12 17:43:54 +0200384extern void usb_composite_unregister(struct usb_composite_driver *driver);
Roger Quadros1b9ba002011-05-09 13:08:06 +0300385extern void usb_composite_setup_continue(struct usb_composite_dev *cdev);
Sebastian Andrzej Siewiora5923342012-12-23 21:10:20 +0100386extern int composite_dev_prepare(struct usb_composite_driver *composite,
387 struct usb_composite_dev *cdev);
Andrzej Pietrasiewiczda424312014-05-08 14:06:26 +0200388extern int composite_os_desc_req_prepare(struct usb_composite_dev *cdev,
389 struct usb_ep *ep0);
Sebastian Andrzej Siewiora5923342012-12-23 21:10:20 +0100390void composite_dev_cleanup(struct usb_composite_dev *cdev);
David Brownell40982be2008-06-19 17:52:58 -0700391
Sebastian Andrzej Siewiora5923342012-12-23 21:10:20 +0100392static inline struct usb_composite_driver *to_cdriver(
393 struct usb_gadget_driver *gdrv)
394{
395 return container_of(gdrv, struct usb_composite_driver, gadget_driver);
396}
David Brownell40982be2008-06-19 17:52:58 -0700397
Andrzej Pietrasiewicz19824d52014-05-08 14:06:22 +0200398#define OS_STRING_QW_SIGN_LEN 14
399#define OS_STRING_IDX 0xEE
400
David Brownell40982be2008-06-19 17:52:58 -0700401/**
402 * struct usb_composite_device - represents one composite usb gadget
403 * @gadget: read-only, abstracts the gadget's usb peripheral controller
404 * @req: used for control responses; buffer is pre-allocated
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +0200405 * @os_desc_req: used for OS descriptors responses; buffer is pre-allocated
David Brownell40982be2008-06-19 17:52:58 -0700406 * @config: the currently active configuration
Andrzej Pietrasiewicz19824d52014-05-08 14:06:22 +0200407 * @qw_sign: qwSignature part of the OS string
408 * @b_vendor_code: bMS_VendorCode part of the OS string
409 * @use_os_string: false by default, interested gadgets set it
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +0200410 * @os_desc_config: the configuration to be used with OS descriptors
David Brownell40982be2008-06-19 17:52:58 -0700411 *
412 * One of these devices is allocated and initialized before the
413 * associated device driver's bind() is called.
414 *
415 * OPEN ISSUE: it appears that some WUSB devices will need to be
416 * built by combining a normal (wired) gadget with a wireless one.
417 * This revision of the gadget framework should probably try to make
418 * sure doing that won't hurt too much.
419 *
420 * One notion for how to handle Wireless USB devices involves:
421 * (a) a second gadget here, discovery mechanism TBD, but likely
422 * needing separate "register/unregister WUSB gadget" calls;
423 * (b) updates to usb_gadget to include flags "is it wireless",
424 * "is it wired", plus (presumably in a wrapper structure)
425 * bandgroup and PHY info;
426 * (c) presumably a wireless_ep wrapping a usb_ep, and reporting
427 * wireless-specific parameters like maxburst and maxsequence;
428 * (d) configurations that are specific to wireless links;
429 * (e) function drivers that understand wireless configs and will
430 * support wireless for (additional) function instances;
431 * (f) a function to support association setup (like CBAF), not
432 * necessarily requiring a wireless adapter;
433 * (g) composite device setup that can create one or more wireless
434 * configs, including appropriate association setup support;
435 * (h) more, TBD.
436 */
437struct usb_composite_dev {
438 struct usb_gadget *gadget;
439 struct usb_request *req;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +0200440 struct usb_request *os_desc_req;
David Brownell40982be2008-06-19 17:52:58 -0700441
442 struct usb_configuration *config;
443
Andrzej Pietrasiewicz19824d52014-05-08 14:06:22 +0200444 /* OS String is a custom (yet popular) extension to the USB standard. */
445 u8 qw_sign[OS_STRING_QW_SIGN_LEN];
446 u8 b_vendor_code;
Andrzej Pietrasiewicz37a3a532014-05-08 14:06:23 +0200447 struct usb_configuration *os_desc_config;
Andrzej Pietrasiewicz19824d52014-05-08 14:06:22 +0200448 unsigned int use_os_string:1;
449
Randy Dunlapcac85a82009-04-29 21:04:19 -0700450 /* private: */
David Brownell40982be2008-06-19 17:52:58 -0700451 /* internals */
Fabien Chouteauf48cf802010-04-23 14:21:26 +0200452 unsigned int suspended:1;
David Brownell40982be2008-06-19 17:52:58 -0700453 struct usb_device_descriptor desc;
454 struct list_head configs;
Sebastian Andrzej Siewior9bb28592012-12-23 21:10:22 +0100455 struct list_head gstrings;
David Brownell40982be2008-06-19 17:52:58 -0700456 struct usb_composite_driver *driver;
457 u8 next_string_id;
Sebastian Andrzej Siewiorcc2683c2012-09-10 15:01:58 +0200458 char *def_manufacturer;
David Brownell40982be2008-06-19 17:52:58 -0700459
David Brownell60beed92008-08-18 17:38:22 -0700460 /* the gadget driver won't enable the data pullup
461 * while the deactivation count is nonzero.
462 */
463 unsigned deactivations;
David Brownell40982be2008-06-19 17:52:58 -0700464
Roger Quadros1b9ba002011-05-09 13:08:06 +0300465 /* the composite driver won't complete the control transfer's
466 * data/status stages till delayed_status is zero.
467 */
468 int delayed_status;
469
470 /* protects deactivations and delayed_status counts*/
David Brownell60beed92008-08-18 17:38:22 -0700471 spinlock_t lock;
David Brownell40982be2008-06-19 17:52:58 -0700472};
473
474extern int usb_string_id(struct usb_composite_dev *c);
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +0200475extern int usb_string_ids_tab(struct usb_composite_dev *c,
476 struct usb_string *str);
Sebastian Andrzej Siewior9bb28592012-12-23 21:10:22 +0100477extern struct usb_string *usb_gstrings_attach(struct usb_composite_dev *cdev,
478 struct usb_gadget_strings **sp, unsigned n_strings);
479
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +0200480extern int usb_string_ids_n(struct usb_composite_dev *c, unsigned n);
481
Sebastian Andrzej Siewior2d5a8892012-12-23 21:10:21 +0100482extern void composite_disconnect(struct usb_gadget *gadget);
483extern int composite_setup(struct usb_gadget *gadget,
484 const struct usb_ctrlrequest *ctrl);
485
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +0200486/*
487 * Some systems will need runtime overrides for the product identifiers
488 * published in the device descriptor, either numbers or strings or both.
489 * String parameters are in UTF-8 (superset of ASCII's 7 bit characters).
490 */
491struct usb_composite_overwrite {
492 u16 idVendor;
493 u16 idProduct;
494 u16 bcdDevice;
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +0200495 char *serial_number;
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +0200496 char *manufacturer;
Sebastian Andrzej Siewior2d35ee42012-09-10 15:01:56 +0200497 char *product;
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +0200498};
499#define USB_GADGET_COMPOSITE_OPTIONS() \
500 static struct usb_composite_overwrite coverwrite; \
501 \
502 module_param_named(idVendor, coverwrite.idVendor, ushort, S_IRUGO); \
503 MODULE_PARM_DESC(idVendor, "USB Vendor ID"); \
504 \
505 module_param_named(idProduct, coverwrite.idProduct, ushort, S_IRUGO); \
506 MODULE_PARM_DESC(idProduct, "USB Product ID"); \
507 \
508 module_param_named(bcdDevice, coverwrite.bcdDevice, ushort, S_IRUGO); \
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +0200509 MODULE_PARM_DESC(bcdDevice, "USB Device version (BCD)"); \
510 \
511 module_param_named(iSerialNumber, coverwrite.serial_number, charp, \
512 S_IRUGO); \
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +0200513 MODULE_PARM_DESC(iSerialNumber, "SerialNumber string"); \
514 \
515 module_param_named(iManufacturer, coverwrite.manufacturer, charp, \
516 S_IRUGO); \
Sebastian Andrzej Siewior2d35ee42012-09-10 15:01:56 +0200517 MODULE_PARM_DESC(iManufacturer, "USB Manufacturer string"); \
518 \
519 module_param_named(iProduct, coverwrite.product, charp, S_IRUGO); \
520 MODULE_PARM_DESC(iProduct, "USB Product string")
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +0200521
522void usb_composite_overwrite_options(struct usb_composite_dev *cdev,
523 struct usb_composite_overwrite *covr);
David Brownell40982be2008-06-19 17:52:58 -0700524
Sebastian Andrzej Siewiored9cbda2012-09-10 09:16:07 +0200525static inline u16 get_default_bcdDevice(void)
526{
527 u16 bcdDevice;
528
529 bcdDevice = bin2bcd((LINUX_VERSION_CODE >> 16 & 0xff)) << 8;
530 bcdDevice |= bin2bcd((LINUX_VERSION_CODE >> 8 & 0xff));
531 return bcdDevice;
532}
533
Sebastian Andrzej Siewiorde53c252012-12-23 21:10:00 +0100534struct usb_function_driver {
535 const char *name;
536 struct module *mod;
537 struct list_head list;
538 struct usb_function_instance *(*alloc_inst)(void);
539 struct usb_function *(*alloc_func)(struct usb_function_instance *inst);
540};
541
542struct usb_function_instance {
Sebastian Andrzej Siewior88af8bb2012-12-23 21:10:24 +0100543 struct config_group group;
544 struct list_head cfs_list;
Sebastian Andrzej Siewiorde53c252012-12-23 21:10:00 +0100545 struct usb_function_driver *fd;
Andrzej Pietrasiewicz19338612013-12-03 15:15:21 +0100546 int (*set_inst_name)(struct usb_function_instance *inst,
547 const char *name);
Sebastian Andrzej Siewiorde53c252012-12-23 21:10:00 +0100548 void (*free_func_inst)(struct usb_function_instance *inst);
549};
550
551void usb_function_unregister(struct usb_function_driver *f);
552int usb_function_register(struct usb_function_driver *newf);
553void usb_put_function_instance(struct usb_function_instance *fi);
554void usb_put_function(struct usb_function *f);
555struct usb_function_instance *usb_get_function_instance(const char *name);
556struct usb_function *usb_get_function(struct usb_function_instance *fi);
557
558struct usb_configuration *usb_get_config(struct usb_composite_dev *cdev,
559 int val);
560int usb_add_config_only(struct usb_composite_dev *cdev,
561 struct usb_configuration *config);
Sebastian Andrzej Siewiorb47357782012-12-23 21:10:05 +0100562void usb_remove_function(struct usb_configuration *c, struct usb_function *f);
Sebastian Andrzej Siewiorde53c252012-12-23 21:10:00 +0100563
564#define DECLARE_USB_FUNCTION(_name, _inst_alloc, _func_alloc) \
565 static struct usb_function_driver _name ## usb_func = { \
566 .name = __stringify(_name), \
567 .mod = THIS_MODULE, \
568 .alloc_inst = _inst_alloc, \
569 .alloc_func = _func_alloc, \
570 }; \
571 MODULE_ALIAS("usbfunc:"__stringify(_name));
572
573#define DECLARE_USB_FUNCTION_INIT(_name, _inst_alloc, _func_alloc) \
574 DECLARE_USB_FUNCTION(_name, _inst_alloc, _func_alloc) \
575 static int __init _name ## mod_init(void) \
576 { \
577 return usb_function_register(&_name ## usb_func); \
578 } \
579 static void __exit _name ## mod_exit(void) \
580 { \
581 usb_function_unregister(&_name ## usb_func); \
582 } \
583 module_init(_name ## mod_init); \
584 module_exit(_name ## mod_exit)
585
David Brownell40982be2008-06-19 17:52:58 -0700586/* messaging utils */
587#define DBG(d, fmt, args...) \
588 dev_dbg(&(d)->gadget->dev , fmt , ## args)
589#define VDBG(d, fmt, args...) \
590 dev_vdbg(&(d)->gadget->dev , fmt , ## args)
591#define ERROR(d, fmt, args...) \
592 dev_err(&(d)->gadget->dev , fmt , ## args)
Arjan van de Venb6c63932008-07-25 01:45:52 -0700593#define WARNING(d, fmt, args...) \
David Brownell40982be2008-06-19 17:52:58 -0700594 dev_warn(&(d)->gadget->dev , fmt , ## args)
595#define INFO(d, fmt, args...) \
596 dev_info(&(d)->gadget->dev , fmt , ## args)
597
598#endif /* __LINUX_USB_COMPOSITE_H */