blob: 3dc19892cfdc71d43f74da7a8a7ce0cdc3ccf8ff [file] [log] [blame]
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01001/*
2 * g_ffs.c -- user mode file system API for USB composite function controllers
3 *
4 * Copyright (C) 2010 Samsung Electronics
5 * Author: Michal Nazarewicz <m.nazarewicz@samsung.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020022#include <linux/module.h>
23#include <linux/utsname.h>
24
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020025/*
26 * kbuild is not very cooperative with respect to linking separately
27 * compiled library objects into one module. So for now we won't use
28 * separate compilation ... ensuring init/exit sections work to shrink
29 * the runtime footprint, and giving us at least some parts of what
30 * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
31 */
32
33#include "composite.c"
34#include "usbstring.c"
35#include "config.c"
36#include "epautoconf.c"
37
38#if defined CONFIG_USB_FUNCTIONFS_ETH || defined CONFIG_USB_FUNCTIONFS_RNDIS
39# if defined USB_ETH_RNDIS
40# undef USB_ETH_RNDIS
41# endif
42# ifdef CONFIG_USB_FUNCTIONFS_RNDIS
43# define USB_ETH_RNDIS y
44# endif
45
46# include "f_ecm.c"
47# include "f_subset.c"
48# ifdef USB_ETH_RNDIS
49# include "f_rndis.c"
50# include "rndis.c"
51# endif
52# include "u_ether.c"
53
54static u8 gfs_hostaddr[ETH_ALEN];
Michal Nazarewiczf8dae532010-06-25 16:29:27 +020055# ifdef CONFIG_USB_FUNCTIONFS_ETH
56static int eth_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN]);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020057# endif
Michal Nazarewiczf8dae532010-06-25 16:29:27 +020058#else
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020059# define gether_cleanup() do { } while (0)
60# define gether_setup(gadget, hostaddr) ((int)0)
Michal Nazarewiczf8dae532010-06-25 16:29:27 +020061# define gfs_hostaddr NULL
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020062#endif
63
64#include "f_fs.c"
65
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020066#define DRIVER_NAME "g_ffs"
67#define DRIVER_DESC "USB Function Filesystem"
68#define DRIVER_VERSION "24 Aug 2004"
69
70MODULE_DESCRIPTION(DRIVER_DESC);
71MODULE_AUTHOR("Michal Nazarewicz");
72MODULE_LICENSE("GPL");
73
Michal Nazarewiczfc19de62010-08-12 17:43:48 +020074#define GFS_VENDOR_ID 0x1d6b /* Linux Foundation */
75#define GFS_PRODUCT_ID 0x0105 /* FunctionFS Gadget */
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020076
77static struct usb_device_descriptor gfs_dev_desc = {
78 .bLength = sizeof gfs_dev_desc,
79 .bDescriptorType = USB_DT_DEVICE,
80
81 .bcdUSB = cpu_to_le16(0x0200),
82 .bDeviceClass = USB_CLASS_PER_INTERFACE,
83
Michal Nazarewiczfc19de62010-08-12 17:43:48 +020084 .idVendor = cpu_to_le16(GFS_VENDOR_ID),
85 .idProduct = cpu_to_le16(GFS_PRODUCT_ID),
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020086};
87
Michal Nazarewiczfc19de62010-08-12 17:43:48 +020088module_param_named(bDeviceClass, gfs_dev_desc.bDeviceClass, byte, 0644);
89MODULE_PARM_DESC(bDeviceClass, "USB Device class");
90module_param_named(bDeviceSubClass, gfs_dev_desc.bDeviceSubClass, byte, 0644);
91MODULE_PARM_DESC(bDeviceSubClass, "USB Device subclass");
92module_param_named(bDeviceProtocol, gfs_dev_desc.bDeviceProtocol, byte, 0644);
93MODULE_PARM_DESC(bDeviceProtocol, "USB Device protocol");
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020094
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020095static const struct usb_descriptor_header *gfs_otg_desc[] = {
96 (const struct usb_descriptor_header *)
97 &(const struct usb_otg_descriptor) {
98 .bLength = sizeof(struct usb_otg_descriptor),
99 .bDescriptorType = USB_DT_OTG,
100
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200101 /*
102 * REVISIT SRP-only hardware is possible, although
103 * it would not be called "OTG" ...
104 */
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200105 .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
106 },
107
108 NULL
109};
110
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +0100111/* String IDs are assigned dynamically */
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200112static struct usb_string gfs_strings[] = {
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200113#ifdef CONFIG_USB_FUNCTIONFS_RNDIS
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200114 { .s = "FunctionFS + RNDIS" },
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200115#endif
116#ifdef CONFIG_USB_FUNCTIONFS_ETH
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200117 { .s = "FunctionFS + ECM" },
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200118#endif
119#ifdef CONFIG_USB_FUNCTIONFS_GENERIC
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200120 { .s = "FunctionFS" },
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200121#endif
122 { } /* end of list */
123};
124
125static struct usb_gadget_strings *gfs_dev_strings[] = {
126 &(struct usb_gadget_strings) {
127 .language = 0x0409, /* en-us */
128 .strings = gfs_strings,
129 },
130 NULL,
131};
132
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200133struct gfs_configuration {
134 struct usb_configuration c;
135 int (*eth)(struct usb_configuration *c, u8 *ethaddr);
136} gfs_configurations[] = {
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200137#ifdef CONFIG_USB_FUNCTIONFS_RNDIS
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200138 {
139 .eth = rndis_bind_config,
140 },
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200141#endif
142
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200143#ifdef CONFIG_USB_FUNCTIONFS_ETH
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200144 {
145 .eth = eth_bind_config,
146 },
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200147#endif
148
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200149#ifdef CONFIG_USB_FUNCTIONFS_GENERIC
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200150 {
151 },
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200152#endif
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200153};
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200154
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200155static int gfs_bind(struct usb_composite_dev *cdev);
156static int gfs_unbind(struct usb_composite_dev *cdev);
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200157static int gfs_do_config(struct usb_configuration *c);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200158
159static struct usb_composite_driver gfs_driver = {
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200160 .name = DRIVER_NAME,
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200161 .dev = &gfs_dev_desc,
162 .strings = gfs_dev_strings,
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200163 .unbind = gfs_unbind,
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200164 .iProduct = DRIVER_DESC,
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200165};
166
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200167static struct ffs_data *gfs_ffs_data;
168static unsigned long gfs_registered;
169
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200170static int gfs_init(void)
171{
172 ENTER();
173
174 return functionfs_init();
175}
176module_init(gfs_init);
177
178static void gfs_exit(void)
179{
180 ENTER();
181
182 if (test_and_clear_bit(0, &gfs_registered))
183 usb_composite_unregister(&gfs_driver);
184
185 functionfs_cleanup();
186}
187module_exit(gfs_exit);
188
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200189static int functionfs_ready_callback(struct ffs_data *ffs)
190{
191 int ret;
192
193 ENTER();
194
195 if (WARN_ON(test_and_set_bit(0, &gfs_registered)))
196 return -EBUSY;
197
198 gfs_ffs_data = ffs;
Michal Nazarewicz07a18bd2010-08-12 17:43:54 +0200199 ret = usb_composite_probe(&gfs_driver, gfs_bind);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200200 if (unlikely(ret < 0))
201 clear_bit(0, &gfs_registered);
202 return ret;
203}
204
205static void functionfs_closed_callback(struct ffs_data *ffs)
206{
207 ENTER();
208
209 if (test_and_clear_bit(0, &gfs_registered))
210 usb_composite_unregister(&gfs_driver);
211}
212
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200213static int functionfs_check_dev_callback(const char *dev_name)
214{
215 return 0;
216}
217
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200218static int gfs_bind(struct usb_composite_dev *cdev)
219{
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200220 int ret, i;
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200221
222 ENTER();
223
224 if (WARN_ON(!gfs_ffs_data))
225 return -ENODEV;
226
227 ret = gether_setup(cdev->gadget, gfs_hostaddr);
228 if (unlikely(ret < 0))
229 goto error_quick;
230
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200231 ret = usb_string_ids_tab(cdev, gfs_strings);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200232 if (unlikely(ret < 0))
233 goto error;
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200234
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200235 ret = functionfs_bind(gfs_ffs_data, cdev);
236 if (unlikely(ret < 0))
237 goto error;
238
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200239 for (i = 0; i < ARRAY_SIZE(gfs_configurations); ++i) {
240 struct gfs_configuration *c = gfs_configurations + i;
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200241
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200242 c->c.label = gfs_strings[i].s;
243 c->c.iConfiguration = gfs_strings[i].id;
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200244 c->c.bConfigurationValue = 1 + i;
245 c->c.bmAttributes = USB_CONFIG_ATT_SELFPOWER;
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200246
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200247 ret = usb_add_config(cdev, &c->c, gfs_do_config);
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200248 if (unlikely(ret < 0))
249 goto error_unbind;
250 }
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200251
252 return 0;
253
254error_unbind:
255 functionfs_unbind(gfs_ffs_data);
256error:
257 gether_cleanup();
258error_quick:
259 gfs_ffs_data = NULL;
260 return ret;
261}
262
263static int gfs_unbind(struct usb_composite_dev *cdev)
264{
265 ENTER();
266
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200267 /*
268 * We may have been called in an error recovery from
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200269 * composite_bind() after gfs_unbind() failure so we need to
270 * check if gfs_ffs_data is not NULL since gfs_bind() handles
271 * all error recovery itself. I'd rather we werent called
272 * from composite on orror recovery, but what you're gonna
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200273 * do...?
274 */
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200275 if (gfs_ffs_data) {
276 gether_cleanup();
277 functionfs_unbind(gfs_ffs_data);
278 gfs_ffs_data = NULL;
279 }
280
281 return 0;
282}
283
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200284static int gfs_do_config(struct usb_configuration *c)
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200285{
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200286 struct gfs_configuration *gc =
287 container_of(c, struct gfs_configuration, c);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200288 int ret;
289
290 if (WARN_ON(!gfs_ffs_data))
291 return -ENODEV;
292
293 if (gadget_is_otg(c->cdev->gadget)) {
294 c->descriptors = gfs_otg_desc;
295 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
296 }
297
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200298 if (gc->eth) {
299 ret = gc->eth(c, gfs_hostaddr);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200300 if (unlikely(ret < 0))
301 return ret;
302 }
303
Michal Nazarewicz7898aee2010-06-16 12:07:58 +0200304 ret = functionfs_bind_config(c->cdev, c, gfs_ffs_data);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200305 if (unlikely(ret < 0))
306 return ret;
307
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200308 /*
309 * After previous do_configs there may be some invalid
Michal Nazarewiczf588c0d2010-06-14 10:43:34 +0200310 * pointers in c->interface array. This happens every time
311 * a user space function with fewer interfaces than a user
312 * space function that was run before the new one is run. The
313 * compasit's set_config() assumes that if there is no more
314 * then MAX_CONFIG_INTERFACES interfaces in a configuration
315 * then there is a NULL pointer after the last interface in
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200316 * c->interface array. We need to make sure this is true.
317 */
Michal Nazarewiczf588c0d2010-06-14 10:43:34 +0200318 if (c->next_interface_id < ARRAY_SIZE(c->interface))
319 c->interface[c->next_interface_id] = NULL;
320
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200321 return 0;
322}
323
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200324#ifdef CONFIG_USB_FUNCTIONFS_ETH
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200325
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200326static int eth_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN])
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200327{
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200328 return can_support_ecm(c->cdev->gadget)
329 ? ecm_bind_config(c, ethaddr)
330 : geth_bind_config(c, ethaddr);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200331}
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200332
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200333#endif