blob: 704c2800ac003ca8ecd4f372e0b534c7273398c0 [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 Nazarewiczaa02f172010-11-17 17:09:47 +010022#define pr_fmt(fmt) "g_ffs: " fmt
23
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020024#include <linux/module.h>
25#include <linux/utsname.h>
26
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020027/*
28 * kbuild is not very cooperative with respect to linking separately
29 * compiled library objects into one module. So for now we won't use
30 * separate compilation ... ensuring init/exit sections work to shrink
31 * the runtime footprint, and giving us at least some parts of what
32 * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
33 */
34
35#include "composite.c"
36#include "usbstring.c"
37#include "config.c"
38#include "epautoconf.c"
39
40#if defined CONFIG_USB_FUNCTIONFS_ETH || defined CONFIG_USB_FUNCTIONFS_RNDIS
41# if defined USB_ETH_RNDIS
42# undef USB_ETH_RNDIS
43# endif
44# ifdef CONFIG_USB_FUNCTIONFS_RNDIS
45# define USB_ETH_RNDIS y
46# endif
47
48# include "f_ecm.c"
49# include "f_subset.c"
50# ifdef USB_ETH_RNDIS
51# include "f_rndis.c"
52# include "rndis.c"
53# endif
54# include "u_ether.c"
55
56static u8 gfs_hostaddr[ETH_ALEN];
Michal Nazarewiczf8dae532010-06-25 16:29:27 +020057# ifdef CONFIG_USB_FUNCTIONFS_ETH
58static int eth_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN]);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020059# endif
Michal Nazarewiczf8dae532010-06-25 16:29:27 +020060#else
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020061# define gether_cleanup() do { } while (0)
62# define gether_setup(gadget, hostaddr) ((int)0)
Michal Nazarewiczf8dae532010-06-25 16:29:27 +020063# define gfs_hostaddr NULL
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020064#endif
65
66#include "f_fs.c"
67
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020068#define DRIVER_NAME "g_ffs"
69#define DRIVER_DESC "USB Function Filesystem"
70#define DRIVER_VERSION "24 Aug 2004"
71
72MODULE_DESCRIPTION(DRIVER_DESC);
73MODULE_AUTHOR("Michal Nazarewicz");
74MODULE_LICENSE("GPL");
75
Michal Nazarewiczfc19de62010-08-12 17:43:48 +020076#define GFS_VENDOR_ID 0x1d6b /* Linux Foundation */
77#define GFS_PRODUCT_ID 0x0105 /* FunctionFS Gadget */
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020078
79static struct usb_device_descriptor gfs_dev_desc = {
80 .bLength = sizeof gfs_dev_desc,
81 .bDescriptorType = USB_DT_DEVICE,
82
83 .bcdUSB = cpu_to_le16(0x0200),
84 .bDeviceClass = USB_CLASS_PER_INTERFACE,
85
Michal Nazarewiczfc19de62010-08-12 17:43:48 +020086 .idVendor = cpu_to_le16(GFS_VENDOR_ID),
87 .idProduct = cpu_to_le16(GFS_PRODUCT_ID),
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020088};
89
Michal Nazarewiczfc19de62010-08-12 17:43:48 +020090module_param_named(bDeviceClass, gfs_dev_desc.bDeviceClass, byte, 0644);
91MODULE_PARM_DESC(bDeviceClass, "USB Device class");
92module_param_named(bDeviceSubClass, gfs_dev_desc.bDeviceSubClass, byte, 0644);
93MODULE_PARM_DESC(bDeviceSubClass, "USB Device subclass");
94module_param_named(bDeviceProtocol, gfs_dev_desc.bDeviceProtocol, byte, 0644);
95MODULE_PARM_DESC(bDeviceProtocol, "USB Device protocol");
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020096
Michal Nazarewiczc6c56002010-05-05 12:53:15 +020097static const struct usb_descriptor_header *gfs_otg_desc[] = {
98 (const struct usb_descriptor_header *)
99 &(const struct usb_otg_descriptor) {
100 .bLength = sizeof(struct usb_otg_descriptor),
101 .bDescriptorType = USB_DT_OTG,
102
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200103 /*
104 * REVISIT SRP-only hardware is possible, although
105 * it would not be called "OTG" ...
106 */
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200107 .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
108 },
109
110 NULL
111};
112
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +0100113/* String IDs are assigned dynamically */
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200114static struct usb_string gfs_strings[] = {
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200115#ifdef CONFIG_USB_FUNCTIONFS_RNDIS
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200116 { .s = "FunctionFS + RNDIS" },
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200117#endif
118#ifdef CONFIG_USB_FUNCTIONFS_ETH
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200119 { .s = "FunctionFS + ECM" },
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200120#endif
121#ifdef CONFIG_USB_FUNCTIONFS_GENERIC
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200122 { .s = "FunctionFS" },
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200123#endif
124 { } /* end of list */
125};
126
127static struct usb_gadget_strings *gfs_dev_strings[] = {
128 &(struct usb_gadget_strings) {
129 .language = 0x0409, /* en-us */
130 .strings = gfs_strings,
131 },
132 NULL,
133};
134
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200135struct gfs_configuration {
136 struct usb_configuration c;
137 int (*eth)(struct usb_configuration *c, u8 *ethaddr);
138} gfs_configurations[] = {
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200139#ifdef CONFIG_USB_FUNCTIONFS_RNDIS
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200140 {
141 .eth = rndis_bind_config,
142 },
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200143#endif
144
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200145#ifdef CONFIG_USB_FUNCTIONFS_ETH
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200146 {
147 .eth = eth_bind_config,
148 },
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200149#endif
150
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200151#ifdef CONFIG_USB_FUNCTIONFS_GENERIC
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200152 {
153 },
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200154#endif
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200155};
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200156
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200157static int gfs_bind(struct usb_composite_dev *cdev);
158static int gfs_unbind(struct usb_composite_dev *cdev);
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200159static int gfs_do_config(struct usb_configuration *c);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200160
161static struct usb_composite_driver gfs_driver = {
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200162 .name = DRIVER_NAME,
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200163 .dev = &gfs_dev_desc,
164 .strings = gfs_dev_strings,
Tatyana Brokhman35a0e0b2011-06-29 16:41:49 +0300165 .max_speed = USB_SPEED_HIGH,
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200166 .unbind = gfs_unbind,
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200167 .iProduct = DRIVER_DESC,
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200168};
169
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200170static struct ffs_data *gfs_ffs_data;
171static unsigned long gfs_registered;
172
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200173static int gfs_init(void)
174{
175 ENTER();
176
177 return functionfs_init();
178}
179module_init(gfs_init);
180
181static void gfs_exit(void)
182{
183 ENTER();
184
185 if (test_and_clear_bit(0, &gfs_registered))
186 usb_composite_unregister(&gfs_driver);
187
188 functionfs_cleanup();
189}
190module_exit(gfs_exit);
191
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200192static int functionfs_ready_callback(struct ffs_data *ffs)
193{
194 int ret;
195
196 ENTER();
197
198 if (WARN_ON(test_and_set_bit(0, &gfs_registered)))
199 return -EBUSY;
200
201 gfs_ffs_data = ffs;
Michal Nazarewicz07a18bd2010-08-12 17:43:54 +0200202 ret = usb_composite_probe(&gfs_driver, gfs_bind);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200203 if (unlikely(ret < 0))
204 clear_bit(0, &gfs_registered);
205 return ret;
206}
207
208static void functionfs_closed_callback(struct ffs_data *ffs)
209{
210 ENTER();
211
212 if (test_and_clear_bit(0, &gfs_registered))
213 usb_composite_unregister(&gfs_driver);
214}
215
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200216static int functionfs_check_dev_callback(const char *dev_name)
217{
218 return 0;
219}
220
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200221static int gfs_bind(struct usb_composite_dev *cdev)
222{
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200223 int ret, i;
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200224
225 ENTER();
226
227 if (WARN_ON(!gfs_ffs_data))
228 return -ENODEV;
229
230 ret = gether_setup(cdev->gadget, gfs_hostaddr);
231 if (unlikely(ret < 0))
232 goto error_quick;
233
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200234 ret = usb_string_ids_tab(cdev, gfs_strings);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200235 if (unlikely(ret < 0))
236 goto error;
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200237
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200238 ret = functionfs_bind(gfs_ffs_data, cdev);
239 if (unlikely(ret < 0))
240 goto error;
241
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200242 for (i = 0; i < ARRAY_SIZE(gfs_configurations); ++i) {
243 struct gfs_configuration *c = gfs_configurations + i;
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200244
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200245 c->c.label = gfs_strings[i].s;
246 c->c.iConfiguration = gfs_strings[i].id;
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200247 c->c.bConfigurationValue = 1 + i;
248 c->c.bmAttributes = USB_CONFIG_ATT_SELFPOWER;
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200249
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200250 ret = usb_add_config(cdev, &c->c, gfs_do_config);
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200251 if (unlikely(ret < 0))
252 goto error_unbind;
253 }
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200254
255 return 0;
256
257error_unbind:
258 functionfs_unbind(gfs_ffs_data);
259error:
260 gether_cleanup();
261error_quick:
262 gfs_ffs_data = NULL;
263 return ret;
264}
265
266static int gfs_unbind(struct usb_composite_dev *cdev)
267{
268 ENTER();
269
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200270 /*
271 * We may have been called in an error recovery from
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200272 * composite_bind() after gfs_unbind() failure so we need to
273 * check if gfs_ffs_data is not NULL since gfs_bind() handles
274 * all error recovery itself. I'd rather we werent called
275 * from composite on orror recovery, but what you're gonna
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200276 * do...?
277 */
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200278 if (gfs_ffs_data) {
279 gether_cleanup();
280 functionfs_unbind(gfs_ffs_data);
281 gfs_ffs_data = NULL;
282 }
283
284 return 0;
285}
286
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200287static int gfs_do_config(struct usb_configuration *c)
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200288{
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200289 struct gfs_configuration *gc =
290 container_of(c, struct gfs_configuration, c);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200291 int ret;
292
293 if (WARN_ON(!gfs_ffs_data))
294 return -ENODEV;
295
296 if (gadget_is_otg(c->cdev->gadget)) {
297 c->descriptors = gfs_otg_desc;
298 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
299 }
300
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200301 if (gc->eth) {
302 ret = gc->eth(c, gfs_hostaddr);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200303 if (unlikely(ret < 0))
304 return ret;
305 }
306
Michal Nazarewicz7898aee2010-06-16 12:07:58 +0200307 ret = functionfs_bind_config(c->cdev, c, gfs_ffs_data);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200308 if (unlikely(ret < 0))
309 return ret;
310
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200311 /*
312 * After previous do_configs there may be some invalid
Michal Nazarewiczf588c0d2010-06-14 10:43:34 +0200313 * pointers in c->interface array. This happens every time
314 * a user space function with fewer interfaces than a user
315 * space function that was run before the new one is run. The
316 * compasit's set_config() assumes that if there is no more
317 * then MAX_CONFIG_INTERFACES interfaces in a configuration
318 * then there is a NULL pointer after the last interface in
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200319 * c->interface array. We need to make sure this is true.
320 */
Michal Nazarewiczf588c0d2010-06-14 10:43:34 +0200321 if (c->next_interface_id < ARRAY_SIZE(c->interface))
322 c->interface[c->next_interface_id] = NULL;
323
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200324 return 0;
325}
326
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200327#ifdef CONFIG_USB_FUNCTIONFS_ETH
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200328
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200329static int eth_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN])
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200330{
Michal Nazarewiczf8dae532010-06-25 16:29:27 +0200331 return can_support_ecm(c->cdev->gadget)
332 ? ecm_bind_config(c, ethaddr)
333 : geth_bind_config(c, ethaddr);
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200334}
Michal Nazarewiczfc19de62010-08-12 17:43:48 +0200335
Michal Nazarewiczc6c56002010-05-05 12:53:15 +0200336#endif