a3e72dfa69961be39d1ce70bccd6d458c1d984c6
[deliverable/linux.git] / include / linux / usb / composite.h
1 /*
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
40 /*
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 */
48
49 struct usb_configuration;
50
51 /**
52 * struct usb_function - describes one function of a configuration
53 * @name: For diagnostics, identifies the function.
54 * @strings: tables of strings, keyed by identifiers assigned during bind()
55 * and by language IDs provided in control requests
56 * @descriptors: Table of full (or low) speed descriptors, using interface and
57 * string identifiers assigned during @bind(). If this pointer is null,
58 * the function will not be available at full speed (or at low speed).
59 * @hs_descriptors: Table of high speed descriptors, using interface and
60 * string identifiers assigned during @bind(). If this pointer is null,
61 * the function will not be available at high speed.
62 * @config: assigned when @usb_add_function() is called; this is the
63 * configuration with which this function is associated.
64 * @bind: Before the gadget can register, all of its functions bind() to the
65 * available resources including string and interface identifiers used
66 * in interface or class descriptors; endpoints; I/O buffers; and so on.
67 * @unbind: Reverses @bind; called as a side effect of unregistering the
68 * driver which added this function.
69 * @set_alt: (REQUIRED) Reconfigures altsettings; function drivers may
70 * initialize usb_ep.driver data at this time (when it is used).
71 * Note that setting an interface to its current altsetting resets
72 * interface state, and that all interfaces have a disabled state.
73 * @get_alt: Returns the active altsetting. If this is not provided,
74 * then only altsetting zero is supported.
75 * @disable: (REQUIRED) Indicates the function should be disabled. Reasons
76 * include host resetting or reconfiguring the gadget, and disconnection.
77 * @setup: Used for interface-specific control requests.
78 * @suspend: Notifies functions when the host stops sending USB traffic.
79 * @resume: Notifies functions when the host restarts USB traffic.
80 *
81 * A single USB function uses one or more interfaces, and should in most
82 * cases support operation at both full and high speeds. Each function is
83 * associated by @usb_add_function() with a one configuration; that function
84 * causes @bind() to be called so resources can be allocated as part of
85 * setting up a gadget driver. Those resources include endpoints, which
86 * should be allocated using @usb_ep_autoconfig().
87 *
88 * To support dual speed operation, a function driver provides descriptors
89 * for both high and full speed operation. Except in rare cases that don't
90 * involve bulk endpoints, each speed needs different endpoint descriptors.
91 *
92 * Function drivers choose their own strategies for managing instance data.
93 * The simplest strategy just declares it "static', which means the function
94 * can only be activated once. If the function needs to be exposed in more
95 * than one configuration at a given speed, it needs to support multiple
96 * usb_function structures (one for each configuration).
97 *
98 * A more complex strategy might encapsulate a @usb_function structure inside
99 * a driver-specific instance structure to allows multiple activations. An
100 * example of multiple activations might be a CDC ACM function that supports
101 * two or more distinct instances within the same configuration, providing
102 * several independent logical data links to a USB host.
103 */
104 struct usb_function {
105 const char *name;
106 struct usb_gadget_strings **strings;
107 struct usb_descriptor_header **descriptors;
108 struct usb_descriptor_header **hs_descriptors;
109
110 struct usb_configuration *config;
111
112 /* REVISIT: bind() functions can be marked __init, which
113 * makes trouble for section mismatch analysis. See if
114 * we can't restructure things to avoid mismatching.
115 * Related: unbind() may kfree() but bind() won't...
116 */
117
118 /* configuration management: bind/unbind */
119 int (*bind)(struct usb_configuration *,
120 struct usb_function *);
121 void (*unbind)(struct usb_configuration *,
122 struct usb_function *);
123
124 /* runtime state management */
125 int (*set_alt)(struct usb_function *,
126 unsigned interface, unsigned alt);
127 int (*get_alt)(struct usb_function *,
128 unsigned interface);
129 void (*disable)(struct usb_function *);
130 int (*setup)(struct usb_function *,
131 const struct usb_ctrlrequest *);
132 void (*suspend)(struct usb_function *);
133 void (*resume)(struct usb_function *);
134
135 /* private: */
136 /* internals */
137 struct list_head list;
138 DECLARE_BITMAP(endpoints, 32);
139 };
140
141 int usb_add_function(struct usb_configuration *, struct usb_function *);
142
143 int usb_function_deactivate(struct usb_function *);
144 int usb_function_activate(struct usb_function *);
145
146 int usb_interface_id(struct usb_configuration *, struct usb_function *);
147
148 int config_ep_by_speed(struct usb_gadget *g, struct usb_function *f,
149 struct usb_ep *_ep);
150
151 #define MAX_CONFIG_INTERFACES 16 /* arbitrary; max 255 */
152
153 /**
154 * struct usb_configuration - represents one gadget configuration
155 * @label: For diagnostics, describes the configuration.
156 * @strings: Tables of strings, keyed by identifiers assigned during @bind()
157 * and by language IDs provided in control requests.
158 * @descriptors: Table of descriptors preceding all function descriptors.
159 * Examples include OTG and vendor-specific descriptors.
160 * @unbind: Reverses @bind; called as a side effect of unregistering the
161 * driver which added this configuration.
162 * @setup: Used to delegate control requests that aren't handled by standard
163 * device infrastructure or directed at a specific interface.
164 * @bConfigurationValue: Copied into configuration descriptor.
165 * @iConfiguration: Copied into configuration descriptor.
166 * @bmAttributes: Copied into configuration descriptor.
167 * @bMaxPower: Copied into configuration descriptor.
168 * @cdev: assigned by @usb_add_config() before calling @bind(); this is
169 * the device associated with this configuration.
170 *
171 * Configurations are building blocks for gadget drivers structured around
172 * function drivers. Simple USB gadgets require only one function and one
173 * configuration, and handle dual-speed hardware by always providing the same
174 * functionality. Slightly more complex gadgets may have more than one
175 * single-function configuration at a given speed; or have configurations
176 * that only work at one speed.
177 *
178 * Composite devices are, by definition, ones with configurations which
179 * include more than one function.
180 *
181 * The lifecycle of a usb_configuration includes allocation, initialization
182 * of the fields described above, and calling @usb_add_config() to set up
183 * internal data and bind it to a specific device. The configuration's
184 * @bind() method is then used to initialize all the functions and then
185 * call @usb_add_function() for them.
186 *
187 * Those functions would normally be independent of each other, but that's
188 * not mandatory. CDC WMC devices are an example where functions often
189 * depend on other functions, with some functions subsidiary to others.
190 * Such interdependency may be managed in any way, so long as all of the
191 * descriptors complete by the time the composite driver returns from
192 * its bind() routine.
193 */
194 struct usb_configuration {
195 const char *label;
196 struct usb_gadget_strings **strings;
197 const struct usb_descriptor_header **descriptors;
198
199 /* REVISIT: bind() functions can be marked __init, which
200 * makes trouble for section mismatch analysis. See if
201 * we can't restructure things to avoid mismatching...
202 */
203
204 /* configuration management: unbind/setup */
205 void (*unbind)(struct usb_configuration *);
206 int (*setup)(struct usb_configuration *,
207 const struct usb_ctrlrequest *);
208
209 /* fields in the config descriptor */
210 u8 bConfigurationValue;
211 u8 iConfiguration;
212 u8 bmAttributes;
213 u8 bMaxPower;
214
215 struct usb_composite_dev *cdev;
216
217 /* private: */
218 /* internals */
219 struct list_head list;
220 struct list_head functions;
221 u8 next_interface_id;
222 unsigned highspeed:1;
223 unsigned fullspeed:1;
224 struct usb_function *interface[MAX_CONFIG_INTERFACES];
225 };
226
227 int usb_add_config(struct usb_composite_dev *,
228 struct usb_configuration *,
229 int (*)(struct usb_configuration *));
230
231 /**
232 * struct usb_composite_driver - groups configurations into a gadget
233 * @name: For diagnostics, identifies the driver.
234 * @iProduct: Used as iProduct override if @dev->iProduct is not set.
235 * If NULL value of @name is taken.
236 * @iManufacturer: Used as iManufacturer override if @dev->iManufacturer is
237 * not set. If NULL a default "<system> <release> with <udc>" value
238 * will be used.
239 * @dev: Template descriptor for the device, including default device
240 * identifiers.
241 * @strings: tables of strings, keyed by identifiers assigned during bind()
242 * and language IDs provided in control requests
243 * @max_speed: Highest speed the driver supports.
244 * @needs_serial: set to 1 if the gadget needs userspace to provide
245 * a serial number. If one is not provided, warning will be printed.
246 * @unbind: Reverses bind; called as a side effect of unregistering
247 * this driver.
248 * @disconnect: optional driver disconnect method
249 * @suspend: Notifies when the host stops sending USB traffic,
250 * after function notifications
251 * @resume: Notifies configuration when the host restarts USB traffic,
252 * before function notifications
253 *
254 * Devices default to reporting self powered operation. Devices which rely
255 * on bus powered operation should report this in their @bind() method.
256 *
257 * Before returning from bind, various fields in the template descriptor
258 * may be overridden. These include the idVendor/idProduct/bcdDevice values
259 * normally to bind the appropriate host side driver, and the three strings
260 * (iManufacturer, iProduct, iSerialNumber) normally used to provide user
261 * meaningful device identifiers. (The strings will not be defined unless
262 * they are defined in @dev and @strings.) The correct ep0 maxpacket size
263 * is also reported, as defined by the underlying controller driver.
264 */
265 struct usb_composite_driver {
266 const char *name;
267 const char *iProduct;
268 const char *iManufacturer;
269 const struct usb_device_descriptor *dev;
270 struct usb_gadget_strings **strings;
271 enum usb_device_speed max_speed;
272 unsigned needs_serial:1;
273
274 int (*unbind)(struct usb_composite_dev *);
275
276 void (*disconnect)(struct usb_composite_dev *);
277
278 /* global suspend hooks */
279 void (*suspend)(struct usb_composite_dev *);
280 void (*resume)(struct usb_composite_dev *);
281 };
282
283 extern int usb_composite_probe(struct usb_composite_driver *driver,
284 int (*bind)(struct usb_composite_dev *cdev));
285 extern void usb_composite_unregister(struct usb_composite_driver *driver);
286 extern void usb_composite_setup_continue(struct usb_composite_dev *cdev);
287
288
289 /**
290 * struct usb_composite_device - represents one composite usb gadget
291 * @gadget: read-only, abstracts the gadget's usb peripheral controller
292 * @req: used for control responses; buffer is pre-allocated
293 * @bufsiz: size of buffer pre-allocated in @req
294 * @config: the currently active configuration
295 *
296 * One of these devices is allocated and initialized before the
297 * associated device driver's bind() is called.
298 *
299 * OPEN ISSUE: it appears that some WUSB devices will need to be
300 * built by combining a normal (wired) gadget with a wireless one.
301 * This revision of the gadget framework should probably try to make
302 * sure doing that won't hurt too much.
303 *
304 * One notion for how to handle Wireless USB devices involves:
305 * (a) a second gadget here, discovery mechanism TBD, but likely
306 * needing separate "register/unregister WUSB gadget" calls;
307 * (b) updates to usb_gadget to include flags "is it wireless",
308 * "is it wired", plus (presumably in a wrapper structure)
309 * bandgroup and PHY info;
310 * (c) presumably a wireless_ep wrapping a usb_ep, and reporting
311 * wireless-specific parameters like maxburst and maxsequence;
312 * (d) configurations that are specific to wireless links;
313 * (e) function drivers that understand wireless configs and will
314 * support wireless for (additional) function instances;
315 * (f) a function to support association setup (like CBAF), not
316 * necessarily requiring a wireless adapter;
317 * (g) composite device setup that can create one or more wireless
318 * configs, including appropriate association setup support;
319 * (h) more, TBD.
320 */
321 struct usb_composite_dev {
322 struct usb_gadget *gadget;
323 struct usb_request *req;
324 unsigned bufsiz;
325
326 struct usb_configuration *config;
327
328 /* private: */
329 /* internals */
330 unsigned int suspended:1;
331 struct usb_device_descriptor desc;
332 struct list_head configs;
333 struct usb_composite_driver *driver;
334 u8 next_string_id;
335 u8 manufacturer_override;
336 u8 product_override;
337 u8 serial_override;
338
339 /* the gadget driver won't enable the data pullup
340 * while the deactivation count is nonzero.
341 */
342 unsigned deactivations;
343
344 /* the composite driver won't complete the control transfer's
345 * data/status stages till delayed_status is zero.
346 */
347 int delayed_status;
348
349 /* protects deactivations and delayed_status counts*/
350 spinlock_t lock;
351 };
352
353 extern int usb_string_id(struct usb_composite_dev *c);
354 extern int usb_string_ids_tab(struct usb_composite_dev *c,
355 struct usb_string *str);
356 extern int usb_string_ids_n(struct usb_composite_dev *c, unsigned n);
357
358
359 /* messaging utils */
360 #define DBG(d, fmt, args...) \
361 dev_dbg(&(d)->gadget->dev , fmt , ## args)
362 #define VDBG(d, fmt, args...) \
363 dev_vdbg(&(d)->gadget->dev , fmt , ## args)
364 #define ERROR(d, fmt, args...) \
365 dev_err(&(d)->gadget->dev , fmt , ## args)
366 #define WARNING(d, fmt, args...) \
367 dev_warn(&(d)->gadget->dev , fmt , ## args)
368 #define INFO(d, fmt, args...) \
369 dev_info(&(d)->gadget->dev , fmt , ## args)
370
371 #endif /* __LINUX_USB_COMPOSITE_H */
This page took 0.037861 seconds and 4 git commands to generate.