blob: 3c671c1b37f65350c7f18a6afac3e6a7c594a820 [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>
David Brownell40982be2008-06-19 17:52:58 -070042
Roger Quadros1b9ba002011-05-09 13:08:06 +030043/*
44 * USB function drivers should return USB_GADGET_DELAYED_STATUS if they
45 * wish to delay the data/status stages of the control transfer till they
46 * are ready. The control transfer will then be kept from completing till
47 * all the function drivers that requested for USB_GADGET_DELAYED_STAUS
48 * invoke usb_composite_setup_continue().
49 */
50#define USB_GADGET_DELAYED_STATUS 0x7fff /* Impossibly large value */
David Brownell40982be2008-06-19 17:52:58 -070051
Sebastian Andrzej Siewiore13f17f2012-09-10 15:01:51 +020052/* big enough to hold our biggest descriptor */
53#define USB_COMP_EP0_BUFSIZ 1024
54
Sebastian Andrzej Siewiorbcb2f992012-10-22 22:14:57 +020055#define USB_MS_TO_HS_INTERVAL(x) (ilog2((x * 1000 / 125)) + 1)
David Brownell40982be2008-06-19 17:52:58 -070056struct usb_configuration;
57
58/**
59 * struct usb_function - describes one function of a configuration
60 * @name: For diagnostics, identifies the function.
61 * @strings: tables of strings, keyed by identifiers assigned during bind()
62 * and by language IDs provided in control requests
63 * @descriptors: Table of full (or low) speed descriptors, using interface and
64 * string identifiers assigned during @bind(). If this pointer is null,
65 * the function will not be available at full speed (or at low speed).
66 * @hs_descriptors: Table of high speed descriptors, using interface and
67 * string identifiers assigned during @bind(). If this pointer is null,
68 * the function will not be available at high speed.
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +030069 * @ss_descriptors: Table of super speed descriptors, using interface and
70 * string identifiers assigned during @bind(). If this
71 * pointer is null after initiation, the function will not
72 * be available at super speed.
David Brownell40982be2008-06-19 17:52:58 -070073 * @config: assigned when @usb_add_function() is called; this is the
74 * configuration with which this function is associated.
75 * @bind: Before the gadget can register, all of its functions bind() to the
76 * available resources including string and interface identifiers used
77 * in interface or class descriptors; endpoints; I/O buffers; and so on.
78 * @unbind: Reverses @bind; called as a side effect of unregistering the
79 * driver which added this function.
Sebastian Andrzej Siewiorde53c252012-12-23 21:10:00 +010080 * @free_func: free the struct usb_function.
81 * @mod: (internal) points to the module that created this structure.
David Brownell40982be2008-06-19 17:52:58 -070082 * @set_alt: (REQUIRED) Reconfigures altsettings; function drivers may
83 * initialize usb_ep.driver data at this time (when it is used).
84 * Note that setting an interface to its current altsetting resets
85 * interface state, and that all interfaces have a disabled state.
86 * @get_alt: Returns the active altsetting. If this is not provided,
87 * then only altsetting zero is supported.
88 * @disable: (REQUIRED) Indicates the function should be disabled. Reasons
89 * include host resetting or reconfiguring the gadget, and disconnection.
90 * @setup: Used for interface-specific control requests.
91 * @suspend: Notifies functions when the host stops sending USB traffic.
92 * @resume: Notifies functions when the host restarts USB traffic.
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +030093 * @get_status: Returns function status as a reply to
94 * GetStatus() request when the recepient is Interface.
95 * @func_suspend: callback to be called when
96 * SetFeature(FUNCTION_SUSPEND) is reseived
David Brownell40982be2008-06-19 17:52:58 -070097 *
98 * A single USB function uses one or more interfaces, and should in most
99 * cases support operation at both full and high speeds. Each function is
100 * associated by @usb_add_function() with a one configuration; that function
101 * causes @bind() to be called so resources can be allocated as part of
102 * setting up a gadget driver. Those resources include endpoints, which
103 * should be allocated using @usb_ep_autoconfig().
104 *
105 * To support dual speed operation, a function driver provides descriptors
106 * for both high and full speed operation. Except in rare cases that don't
107 * involve bulk endpoints, each speed needs different endpoint descriptors.
108 *
109 * Function drivers choose their own strategies for managing instance data.
110 * The simplest strategy just declares it "static', which means the function
111 * can only be activated once. If the function needs to be exposed in more
112 * than one configuration at a given speed, it needs to support multiple
113 * usb_function structures (one for each configuration).
114 *
115 * A more complex strategy might encapsulate a @usb_function structure inside
116 * a driver-specific instance structure to allows multiple activations. An
117 * example of multiple activations might be a CDC ACM function that supports
118 * two or more distinct instances within the same configuration, providing
119 * several independent logical data links to a USB host.
120 */
Sebastian Andrzej Siewiorde53c252012-12-23 21:10:00 +0100121
David Brownell40982be2008-06-19 17:52:58 -0700122struct usb_function {
123 const char *name;
124 struct usb_gadget_strings **strings;
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +0200125 struct usb_descriptor_header **fs_descriptors;
David Brownell40982be2008-06-19 17:52:58 -0700126 struct usb_descriptor_header **hs_descriptors;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300127 struct usb_descriptor_header **ss_descriptors;
David Brownell40982be2008-06-19 17:52:58 -0700128
129 struct usb_configuration *config;
130
131 /* REVISIT: bind() functions can be marked __init, which
132 * makes trouble for section mismatch analysis. See if
133 * we can't restructure things to avoid mismatching.
134 * Related: unbind() may kfree() but bind() won't...
135 */
136
137 /* configuration management: bind/unbind */
138 int (*bind)(struct usb_configuration *,
139 struct usb_function *);
140 void (*unbind)(struct usb_configuration *,
141 struct usb_function *);
Sebastian Andrzej Siewiorde53c252012-12-23 21:10:00 +0100142 void (*free_func)(struct usb_function *f);
143 struct module *mod;
David Brownell40982be2008-06-19 17:52:58 -0700144
145 /* runtime state management */
146 int (*set_alt)(struct usb_function *,
147 unsigned interface, unsigned alt);
148 int (*get_alt)(struct usb_function *,
149 unsigned interface);
150 void (*disable)(struct usb_function *);
151 int (*setup)(struct usb_function *,
152 const struct usb_ctrlrequest *);
153 void (*suspend)(struct usb_function *);
154 void (*resume)(struct usb_function *);
155
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300156 /* USB 3.0 additions */
157 int (*get_status)(struct usb_function *);
158 int (*func_suspend)(struct usb_function *,
159 u8 suspend_opt);
Randy Dunlapcac85a82009-04-29 21:04:19 -0700160 /* private: */
David Brownell40982be2008-06-19 17:52:58 -0700161 /* internals */
162 struct list_head list;
Laurent Pinchart52426582009-10-21 00:03:38 +0200163 DECLARE_BITMAP(endpoints, 32);
Sebastian Andrzej Siewior0062f6e2012-12-23 21:10:15 +0100164 const struct usb_function_instance *fi;
David Brownell40982be2008-06-19 17:52:58 -0700165};
166
167int usb_add_function(struct usb_configuration *, struct usb_function *);
168
David Brownell60beed92008-08-18 17:38:22 -0700169int usb_function_deactivate(struct usb_function *);
170int usb_function_activate(struct usb_function *);
171
David Brownell40982be2008-06-19 17:52:58 -0700172int usb_interface_id(struct usb_configuration *, struct usb_function *);
173
Tatyana Brokhman48767a42011-06-28 16:33:49 +0300174int config_ep_by_speed(struct usb_gadget *g, struct usb_function *f,
175 struct usb_ep *_ep);
176
David Brownell40982be2008-06-19 17:52:58 -0700177#define MAX_CONFIG_INTERFACES 16 /* arbitrary; max 255 */
178
179/**
180 * struct usb_configuration - represents one gadget configuration
181 * @label: For diagnostics, describes the configuration.
182 * @strings: Tables of strings, keyed by identifiers assigned during @bind()
183 * and by language IDs provided in control requests.
184 * @descriptors: Table of descriptors preceding all function descriptors.
185 * Examples include OTG and vendor-specific descriptors.
David Brownell40982be2008-06-19 17:52:58 -0700186 * @unbind: Reverses @bind; called as a side effect of unregistering the
187 * driver which added this configuration.
188 * @setup: Used to delegate control requests that aren't handled by standard
189 * device infrastructure or directed at a specific interface.
190 * @bConfigurationValue: Copied into configuration descriptor.
191 * @iConfiguration: Copied into configuration descriptor.
192 * @bmAttributes: Copied into configuration descriptor.
Sebastian Andrzej Siewior8f900a92012-12-03 20:07:05 +0100193 * @MaxPower: Power consumtion in mA. Used to compute bMaxPower in the
194 * configuration descriptor after considering the bus speed.
David Brownell40982be2008-06-19 17:52:58 -0700195 * @cdev: assigned by @usb_add_config() before calling @bind(); this is
196 * the device associated with this configuration.
197 *
198 * Configurations are building blocks for gadget drivers structured around
199 * function drivers. Simple USB gadgets require only one function and one
200 * configuration, and handle dual-speed hardware by always providing the same
201 * functionality. Slightly more complex gadgets may have more than one
202 * single-function configuration at a given speed; or have configurations
203 * that only work at one speed.
204 *
205 * Composite devices are, by definition, ones with configurations which
206 * include more than one function.
207 *
208 * The lifecycle of a usb_configuration includes allocation, initialization
209 * of the fields described above, and calling @usb_add_config() to set up
210 * internal data and bind it to a specific device. The configuration's
211 * @bind() method is then used to initialize all the functions and then
212 * call @usb_add_function() for them.
213 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300214 * Those functions would normally be independent of each other, but that's
David Brownell40982be2008-06-19 17:52:58 -0700215 * not mandatory. CDC WMC devices are an example where functions often
216 * depend on other functions, with some functions subsidiary to others.
217 * Such interdependency may be managed in any way, so long as all of the
218 * descriptors complete by the time the composite driver returns from
219 * its bind() routine.
220 */
221struct usb_configuration {
222 const char *label;
223 struct usb_gadget_strings **strings;
224 const struct usb_descriptor_header **descriptors;
225
226 /* REVISIT: bind() functions can be marked __init, which
227 * makes trouble for section mismatch analysis. See if
228 * we can't restructure things to avoid mismatching...
229 */
230
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200231 /* configuration management: unbind/setup */
David Brownell40982be2008-06-19 17:52:58 -0700232 void (*unbind)(struct usb_configuration *);
233 int (*setup)(struct usb_configuration *,
234 const struct usb_ctrlrequest *);
235
236 /* fields in the config descriptor */
237 u8 bConfigurationValue;
238 u8 iConfiguration;
239 u8 bmAttributes;
Sebastian Andrzej Siewior8f900a92012-12-03 20:07:05 +0100240 u16 MaxPower;
David Brownell40982be2008-06-19 17:52:58 -0700241
242 struct usb_composite_dev *cdev;
243
Randy Dunlapcac85a82009-04-29 21:04:19 -0700244 /* private: */
David Brownell40982be2008-06-19 17:52:58 -0700245 /* internals */
246 struct list_head list;
247 struct list_head functions;
248 u8 next_interface_id;
Tatyana Brokhmanbdb64d72011-06-29 16:41:50 +0300249 unsigned superspeed:1;
David Brownell40982be2008-06-19 17:52:58 -0700250 unsigned highspeed:1;
251 unsigned fullspeed:1;
252 struct usb_function *interface[MAX_CONFIG_INTERFACES];
253};
254
255int usb_add_config(struct usb_composite_dev *,
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200256 struct usb_configuration *,
257 int (*)(struct usb_configuration *));
David Brownell40982be2008-06-19 17:52:58 -0700258
Benoit Goby51cce6f2012-05-10 10:07:57 +0200259void usb_remove_config(struct usb_composite_dev *,
260 struct usb_configuration *);
261
Sebastian Andrzej Siewior276e2e42012-09-06 20:11:21 +0200262/* predefined index for usb_composite_driver */
263enum {
264 USB_GADGET_MANUFACTURER_IDX = 0,
265 USB_GADGET_PRODUCT_IDX,
266 USB_GADGET_SERIAL_IDX,
267 USB_GADGET_FIRST_AVAIL_IDX,
268};
269
David Brownell40982be2008-06-19 17:52:58 -0700270/**
271 * struct usb_composite_driver - groups configurations into a gadget
272 * @name: For diagnostics, identifies the driver.
273 * @dev: Template descriptor for the device, including default device
274 * identifiers.
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +0200275 * @strings: tables of strings, keyed by identifiers assigned during @bind
Sebastian Andrzej Siewior276e2e42012-09-06 20:11:21 +0200276 * and language IDs provided in control requests. Note: The first entries
277 * are predefined. The first entry that may be used is
278 * USB_GADGET_FIRST_AVAIL_IDX
Tatyana Brokhman35a0e0b2011-06-29 16:41:49 +0300279 * @max_speed: Highest speed the driver supports.
Michal Nazarewiczad1a8102010-08-12 17:43:46 +0200280 * @needs_serial: set to 1 if the gadget needs userspace to provide
281 * a serial number. If one is not provided, warning will be printed.
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +0200282 * @bind: (REQUIRED) Used to allocate resources that are shared across the
283 * whole device, such as string IDs, and add its configurations using
284 * @usb_add_config(). This may fail by returning a negative errno
285 * value; it should return zero on successful initialization.
286 * @unbind: Reverses @bind; called as a side effect of unregistering
David Brownell40982be2008-06-19 17:52:58 -0700287 * this driver.
Randy Dunlapd187abb2010-08-11 12:07:13 -0700288 * @disconnect: optional driver disconnect method
David Brownell89429392009-03-19 14:14:17 -0700289 * @suspend: Notifies when the host stops sending USB traffic,
290 * after function notifications
291 * @resume: Notifies configuration when the host restarts USB traffic,
292 * before function notifications
David Brownell40982be2008-06-19 17:52:58 -0700293 *
294 * Devices default to reporting self powered operation. Devices which rely
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +0200295 * on bus powered operation should report this in their @bind method.
David Brownell40982be2008-06-19 17:52:58 -0700296 *
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +0200297 * Before returning from @bind, various fields in the template descriptor
David Brownell40982be2008-06-19 17:52:58 -0700298 * may be overridden. These include the idVendor/idProduct/bcdDevice values
299 * normally to bind the appropriate host side driver, and the three strings
300 * (iManufacturer, iProduct, iSerialNumber) normally used to provide user
301 * meaningful device identifiers. (The strings will not be defined unless
302 * they are defined in @dev and @strings.) The correct ep0 maxpacket size
303 * is also reported, as defined by the underlying controller driver.
304 */
305struct usb_composite_driver {
306 const char *name;
307 const struct usb_device_descriptor *dev;
308 struct usb_gadget_strings **strings;
Tatyana Brokhman35a0e0b2011-06-29 16:41:49 +0300309 enum usb_device_speed max_speed;
Michal Nazarewiczad1a8102010-08-12 17:43:46 +0200310 unsigned needs_serial:1;
David Brownell40982be2008-06-19 17:52:58 -0700311
Sebastian Andrzej Siewiorfac3a432012-09-06 20:11:01 +0200312 int (*bind)(struct usb_composite_dev *cdev);
David Brownell40982be2008-06-19 17:52:58 -0700313 int (*unbind)(struct usb_composite_dev *);
David Brownell89429392009-03-19 14:14:17 -0700314
Michal Nazarewicz3f3e12d2010-06-21 13:57:08 +0200315 void (*disconnect)(struct usb_composite_dev *);
316
David Brownell89429392009-03-19 14:14:17 -0700317 /* global suspend hooks */
318 void (*suspend)(struct usb_composite_dev *);
319 void (*resume)(struct usb_composite_dev *);
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +0200320 struct usb_gadget_driver gadget_driver;
David Brownell40982be2008-06-19 17:52:58 -0700321};
322
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200323extern int usb_composite_probe(struct usb_composite_driver *driver);
Michal Nazarewicz07a18bd2010-08-12 17:43:54 +0200324extern void usb_composite_unregister(struct usb_composite_driver *driver);
Roger Quadros1b9ba002011-05-09 13:08:06 +0300325extern void usb_composite_setup_continue(struct usb_composite_dev *cdev);
Sebastian Andrzej Siewiora5923342012-12-23 21:10:20 +0100326extern int composite_dev_prepare(struct usb_composite_driver *composite,
327 struct usb_composite_dev *cdev);
328void composite_dev_cleanup(struct usb_composite_dev *cdev);
David Brownell40982be2008-06-19 17:52:58 -0700329
Sebastian Andrzej Siewiora5923342012-12-23 21:10:20 +0100330static inline struct usb_composite_driver *to_cdriver(
331 struct usb_gadget_driver *gdrv)
332{
333 return container_of(gdrv, struct usb_composite_driver, gadget_driver);
334}
David Brownell40982be2008-06-19 17:52:58 -0700335
336/**
337 * struct usb_composite_device - represents one composite usb gadget
338 * @gadget: read-only, abstracts the gadget's usb peripheral controller
339 * @req: used for control responses; buffer is pre-allocated
David Brownell40982be2008-06-19 17:52:58 -0700340 * @config: the currently active configuration
341 *
342 * One of these devices is allocated and initialized before the
343 * associated device driver's bind() is called.
344 *
345 * OPEN ISSUE: it appears that some WUSB devices will need to be
346 * built by combining a normal (wired) gadget with a wireless one.
347 * This revision of the gadget framework should probably try to make
348 * sure doing that won't hurt too much.
349 *
350 * One notion for how to handle Wireless USB devices involves:
351 * (a) a second gadget here, discovery mechanism TBD, but likely
352 * needing separate "register/unregister WUSB gadget" calls;
353 * (b) updates to usb_gadget to include flags "is it wireless",
354 * "is it wired", plus (presumably in a wrapper structure)
355 * bandgroup and PHY info;
356 * (c) presumably a wireless_ep wrapping a usb_ep, and reporting
357 * wireless-specific parameters like maxburst and maxsequence;
358 * (d) configurations that are specific to wireless links;
359 * (e) function drivers that understand wireless configs and will
360 * support wireless for (additional) function instances;
361 * (f) a function to support association setup (like CBAF), not
362 * necessarily requiring a wireless adapter;
363 * (g) composite device setup that can create one or more wireless
364 * configs, including appropriate association setup support;
365 * (h) more, TBD.
366 */
367struct usb_composite_dev {
368 struct usb_gadget *gadget;
369 struct usb_request *req;
David Brownell40982be2008-06-19 17:52:58 -0700370
371 struct usb_configuration *config;
372
Randy Dunlapcac85a82009-04-29 21:04:19 -0700373 /* private: */
David Brownell40982be2008-06-19 17:52:58 -0700374 /* internals */
Fabien Chouteauf48cf802010-04-23 14:21:26 +0200375 unsigned int suspended:1;
David Brownell40982be2008-06-19 17:52:58 -0700376 struct usb_device_descriptor desc;
377 struct list_head configs;
Sebastian Andrzej Siewior9bb28592012-12-23 21:10:22 +0100378 struct list_head gstrings;
David Brownell40982be2008-06-19 17:52:58 -0700379 struct usb_composite_driver *driver;
380 u8 next_string_id;
Sebastian Andrzej Siewiorcc2683c2012-09-10 15:01:58 +0200381 char *def_manufacturer;
David Brownell40982be2008-06-19 17:52:58 -0700382
David Brownell60beed92008-08-18 17:38:22 -0700383 /* the gadget driver won't enable the data pullup
384 * while the deactivation count is nonzero.
385 */
386 unsigned deactivations;
David Brownell40982be2008-06-19 17:52:58 -0700387
Roger Quadros1b9ba002011-05-09 13:08:06 +0300388 /* the composite driver won't complete the control transfer's
389 * data/status stages till delayed_status is zero.
390 */
391 int delayed_status;
392
393 /* protects deactivations and delayed_status counts*/
David Brownell60beed92008-08-18 17:38:22 -0700394 spinlock_t lock;
David Brownell40982be2008-06-19 17:52:58 -0700395};
396
397extern int usb_string_id(struct usb_composite_dev *c);
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +0200398extern int usb_string_ids_tab(struct usb_composite_dev *c,
399 struct usb_string *str);
Sebastian Andrzej Siewior9bb28592012-12-23 21:10:22 +0100400extern struct usb_string *usb_gstrings_attach(struct usb_composite_dev *cdev,
401 struct usb_gadget_strings **sp, unsigned n_strings);
402
Michal Nazarewiczf2adc4f2010-06-16 12:07:59 +0200403extern int usb_string_ids_n(struct usb_composite_dev *c, unsigned n);
404
Sebastian Andrzej Siewior2d5a8892012-12-23 21:10:21 +0100405extern void composite_disconnect(struct usb_gadget *gadget);
406extern int composite_setup(struct usb_gadget *gadget,
407 const struct usb_ctrlrequest *ctrl);
408
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +0200409/*
410 * Some systems will need runtime overrides for the product identifiers
411 * published in the device descriptor, either numbers or strings or both.
412 * String parameters are in UTF-8 (superset of ASCII's 7 bit characters).
413 */
414struct usb_composite_overwrite {
415 u16 idVendor;
416 u16 idProduct;
417 u16 bcdDevice;
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +0200418 char *serial_number;
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +0200419 char *manufacturer;
Sebastian Andrzej Siewior2d35ee42012-09-10 15:01:56 +0200420 char *product;
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +0200421};
422#define USB_GADGET_COMPOSITE_OPTIONS() \
423 static struct usb_composite_overwrite coverwrite; \
424 \
425 module_param_named(idVendor, coverwrite.idVendor, ushort, S_IRUGO); \
426 MODULE_PARM_DESC(idVendor, "USB Vendor ID"); \
427 \
428 module_param_named(idProduct, coverwrite.idProduct, ushort, S_IRUGO); \
429 MODULE_PARM_DESC(idProduct, "USB Product ID"); \
430 \
431 module_param_named(bcdDevice, coverwrite.bcdDevice, ushort, S_IRUGO); \
Sebastian Andrzej Siewior1cf0d262012-09-10 15:01:54 +0200432 MODULE_PARM_DESC(bcdDevice, "USB Device version (BCD)"); \
433 \
434 module_param_named(iSerialNumber, coverwrite.serial_number, charp, \
435 S_IRUGO); \
Sebastian Andrzej Siewior03de9bf2012-09-10 15:01:55 +0200436 MODULE_PARM_DESC(iSerialNumber, "SerialNumber string"); \
437 \
438 module_param_named(iManufacturer, coverwrite.manufacturer, charp, \
439 S_IRUGO); \
Sebastian Andrzej Siewior2d35ee42012-09-10 15:01:56 +0200440 MODULE_PARM_DESC(iManufacturer, "USB Manufacturer string"); \
441 \
442 module_param_named(iProduct, coverwrite.product, charp, S_IRUGO); \
443 MODULE_PARM_DESC(iProduct, "USB Product string")
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +0200444
445void usb_composite_overwrite_options(struct usb_composite_dev *cdev,
446 struct usb_composite_overwrite *covr);
David Brownell40982be2008-06-19 17:52:58 -0700447
Sebastian Andrzej Siewiored9cbda2012-09-10 09:16:07 +0200448static inline u16 get_default_bcdDevice(void)
449{
450 u16 bcdDevice;
451
452 bcdDevice = bin2bcd((LINUX_VERSION_CODE >> 16 & 0xff)) << 8;
453 bcdDevice |= bin2bcd((LINUX_VERSION_CODE >> 8 & 0xff));
454 return bcdDevice;
455}
456
Sebastian Andrzej Siewiorde53c252012-12-23 21:10:00 +0100457struct usb_function_driver {
458 const char *name;
459 struct module *mod;
460 struct list_head list;
461 struct usb_function_instance *(*alloc_inst)(void);
462 struct usb_function *(*alloc_func)(struct usb_function_instance *inst);
463};
464
465struct usb_function_instance {
466 struct usb_function_driver *fd;
467 void (*free_func_inst)(struct usb_function_instance *inst);
468};
469
470void usb_function_unregister(struct usb_function_driver *f);
471int usb_function_register(struct usb_function_driver *newf);
472void usb_put_function_instance(struct usb_function_instance *fi);
473void usb_put_function(struct usb_function *f);
474struct usb_function_instance *usb_get_function_instance(const char *name);
475struct usb_function *usb_get_function(struct usb_function_instance *fi);
476
477struct usb_configuration *usb_get_config(struct usb_composite_dev *cdev,
478 int val);
479int usb_add_config_only(struct usb_composite_dev *cdev,
480 struct usb_configuration *config);
Sebastian Andrzej Siewiorb47357782012-12-23 21:10:05 +0100481void usb_remove_function(struct usb_configuration *c, struct usb_function *f);
Sebastian Andrzej Siewiorde53c252012-12-23 21:10:00 +0100482
483#define DECLARE_USB_FUNCTION(_name, _inst_alloc, _func_alloc) \
484 static struct usb_function_driver _name ## usb_func = { \
485 .name = __stringify(_name), \
486 .mod = THIS_MODULE, \
487 .alloc_inst = _inst_alloc, \
488 .alloc_func = _func_alloc, \
489 }; \
490 MODULE_ALIAS("usbfunc:"__stringify(_name));
491
492#define DECLARE_USB_FUNCTION_INIT(_name, _inst_alloc, _func_alloc) \
493 DECLARE_USB_FUNCTION(_name, _inst_alloc, _func_alloc) \
494 static int __init _name ## mod_init(void) \
495 { \
496 return usb_function_register(&_name ## usb_func); \
497 } \
498 static void __exit _name ## mod_exit(void) \
499 { \
500 usb_function_unregister(&_name ## usb_func); \
501 } \
502 module_init(_name ## mod_init); \
503 module_exit(_name ## mod_exit)
504
David Brownell40982be2008-06-19 17:52:58 -0700505/* messaging utils */
506#define DBG(d, fmt, args...) \
507 dev_dbg(&(d)->gadget->dev , fmt , ## args)
508#define VDBG(d, fmt, args...) \
509 dev_vdbg(&(d)->gadget->dev , fmt , ## args)
510#define ERROR(d, fmt, args...) \
511 dev_err(&(d)->gadget->dev , fmt , ## args)
Arjan van de Venb6c63932008-07-25 01:45:52 -0700512#define WARNING(d, fmt, args...) \
David Brownell40982be2008-06-19 17:52:58 -0700513 dev_warn(&(d)->gadget->dev , fmt , ## args)
514#define INFO(d, fmt, args...) \
515 dev_info(&(d)->gadget->dev , fmt , ## args)
516
517#endif /* __LINUX_USB_COMPOSITE_H */