Merge branch 'ras-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / drivers / usb / gadget / legacy / g_ffs.c
CommitLineData
5ab54cf7
MN
1/*
2 * g_ffs.c -- user mode file system API for USB composite function controllers
3 *
4 * Copyright (C) 2010 Samsung Electronics
54b8360f 5 * Author: Michal Nazarewicz <mina86@mina86.com>
5ab54cf7
MN
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.
5ab54cf7
MN
11 */
12
aa02f172
MN
13#define pr_fmt(fmt) "g_ffs: " fmt
14
c6c56008 15#include <linux/module.h>
6f823cd5 16
c6c56008 17#if defined CONFIG_USB_FUNCTIONFS_ETH || defined CONFIG_USB_FUNCTIONFS_RNDIS
85aec59f
AP
18#include <linux/netdevice.h>
19
c6c56008
MN
20# if defined USB_ETH_RNDIS
21# undef USB_ETH_RNDIS
22# endif
23# ifdef CONFIG_USB_FUNCTIONFS_RNDIS
24# define USB_ETH_RNDIS y
25# endif
26
f212ad4e 27# include "u_ecm.h"
85aec59f 28# include "u_gether.h"
c6c56008 29# ifdef USB_ETH_RNDIS
6e257b14 30# include "u_rndis.h"
cbbd14a9 31# include "rndis.h"
c6c56008 32# endif
f1a1823f 33# include "u_ether.h"
c6c56008 34
f212ad4e
AP
35USB_ETHERNET_MODULE_PARAMETERS();
36
f8dae531 37# ifdef CONFIG_USB_FUNCTIONFS_ETH
6e257b14 38static int eth_bind_config(struct usb_configuration *c);
f212ad4e
AP
39static struct usb_function_instance *fi_ecm;
40static struct usb_function *f_ecm;
85aec59f
AP
41static struct usb_function_instance *fi_geth;
42static struct usb_function *f_geth;
c6c56008 43# endif
6e257b14
AP
44# ifdef CONFIG_USB_FUNCTIONFS_RNDIS
45static int bind_rndis_config(struct usb_configuration *c);
46static struct usb_function_instance *fi_rndis;
47static struct usb_function *f_rndis;
48# endif
c6c56008
MN
49#endif
50
6f823cd5 51#include "u_fs.h"
c6c56008 52
c6c56008
MN
53#define DRIVER_NAME "g_ffs"
54#define DRIVER_DESC "USB Function Filesystem"
55#define DRIVER_VERSION "24 Aug 2004"
56
57MODULE_DESCRIPTION(DRIVER_DESC);
58MODULE_AUTHOR("Michal Nazarewicz");
59MODULE_LICENSE("GPL");
60
fc19de61
MN
61#define GFS_VENDOR_ID 0x1d6b /* Linux Foundation */
62#define GFS_PRODUCT_ID 0x0105 /* FunctionFS Gadget */
c6c56008 63
581791f5
AP
64#define GFS_MAX_DEVS 10
65
7d16e8d3
SAS
66USB_GADGET_COMPOSITE_OPTIONS();
67
c6c56008
MN
68static struct usb_device_descriptor gfs_dev_desc = {
69 .bLength = sizeof gfs_dev_desc,
70 .bDescriptorType = USB_DT_DEVICE,
71
0aecfc1b 72 /* .bcdUSB = DYNAMIC */
c6c56008
MN
73 .bDeviceClass = USB_CLASS_PER_INTERFACE,
74
fc19de61
MN
75 .idVendor = cpu_to_le16(GFS_VENDOR_ID),
76 .idProduct = cpu_to_le16(GFS_PRODUCT_ID),
c6c56008
MN
77};
78
581791f5
AP
79static char *func_names[GFS_MAX_DEVS];
80static unsigned int func_num;
81
fc19de61
MN
82module_param_named(bDeviceClass, gfs_dev_desc.bDeviceClass, byte, 0644);
83MODULE_PARM_DESC(bDeviceClass, "USB Device class");
84module_param_named(bDeviceSubClass, gfs_dev_desc.bDeviceSubClass, byte, 0644);
85MODULE_PARM_DESC(bDeviceSubClass, "USB Device subclass");
86module_param_named(bDeviceProtocol, gfs_dev_desc.bDeviceProtocol, byte, 0644);
87MODULE_PARM_DESC(bDeviceProtocol, "USB Device protocol");
581791f5
AP
88module_param_array_named(functions, func_names, charp, &func_num, 0);
89MODULE_PARM_DESC(functions, "USB Functions list");
c6c56008 90
75c9310a 91static const struct usb_descriptor_header *gfs_otg_desc[2];
c6c56008 92
5ab54cf7 93/* String IDs are assigned dynamically */
c6c56008 94static struct usb_string gfs_strings[] = {
276e2e4f 95 [USB_GADGET_MANUFACTURER_IDX].s = "",
d33f74fc 96 [USB_GADGET_PRODUCT_IDX].s = DRIVER_DESC,
276e2e4f 97 [USB_GADGET_SERIAL_IDX].s = "",
c6c56008 98#ifdef CONFIG_USB_FUNCTIONFS_RNDIS
f8dae531 99 { .s = "FunctionFS + RNDIS" },
c6c56008
MN
100#endif
101#ifdef CONFIG_USB_FUNCTIONFS_ETH
f8dae531 102 { .s = "FunctionFS + ECM" },
c6c56008
MN
103#endif
104#ifdef CONFIG_USB_FUNCTIONFS_GENERIC
f8dae531 105 { .s = "FunctionFS" },
c6c56008
MN
106#endif
107 { } /* end of list */
108};
109
110static struct usb_gadget_strings *gfs_dev_strings[] = {
111 &(struct usb_gadget_strings) {
112 .language = 0x0409, /* en-us */
113 .strings = gfs_strings,
114 },
115 NULL,
116};
117
f8dae531
MN
118struct gfs_configuration {
119 struct usb_configuration c;
6e257b14 120 int (*eth)(struct usb_configuration *c);
6f823cd5 121 int num;
2b87cd24
LP
122};
123
124static struct gfs_configuration gfs_configurations[] = {
c6c56008 125#ifdef CONFIG_USB_FUNCTIONFS_RNDIS
f8dae531 126 {
6e257b14 127 .eth = bind_rndis_config,
f8dae531 128 },
c6c56008
MN
129#endif
130
c6c56008 131#ifdef CONFIG_USB_FUNCTIONFS_ETH
f8dae531
MN
132 {
133 .eth = eth_bind_config,
134 },
c6c56008
MN
135#endif
136
c6c56008 137#ifdef CONFIG_USB_FUNCTIONFS_GENERIC
f8dae531
MN
138 {
139 },
c6c56008 140#endif
f8dae531 141};
c6c56008 142
6f823cd5
AP
143static void *functionfs_acquire_dev(struct ffs_dev *dev);
144static void functionfs_release_dev(struct ffs_dev *dev);
4b187fce
AP
145static int functionfs_ready_callback(struct ffs_data *ffs);
146static void functionfs_closed_callback(struct ffs_data *ffs);
c6c56008
MN
147static int gfs_bind(struct usb_composite_dev *cdev);
148static int gfs_unbind(struct usb_composite_dev *cdev);
f8dae531 149static int gfs_do_config(struct usb_configuration *c);
c6c56008 150
6f823cd5 151
c94e289f 152static struct usb_composite_driver gfs_driver = {
fc19de61 153 .name = DRIVER_NAME,
c6c56008
MN
154 .dev = &gfs_dev_desc,
155 .strings = gfs_dev_strings,
35a0e0bf 156 .max_speed = USB_SPEED_HIGH,
03e42bd5 157 .bind = gfs_bind,
c6c56008
MN
158 .unbind = gfs_unbind,
159};
160
581791f5 161static unsigned int missing_funcs;
581791f5
AP
162static bool gfs_registered;
163static bool gfs_single_func;
6f823cd5
AP
164static struct usb_function_instance **fi_ffs;
165static struct usb_function **f_ffs[] = {
166#ifdef CONFIG_USB_FUNCTIONFS_RNDIS
167 NULL,
168#endif
169
170#ifdef CONFIG_USB_FUNCTIONFS_ETH
171 NULL,
172#endif
173
174#ifdef CONFIG_USB_FUNCTIONFS_GENERIC
175 NULL,
176#endif
177};
178
179#define N_CONF ARRAY_SIZE(f_ffs)
c6c56008 180
8545e603 181static int __init gfs_init(void)
c6c56008 182{
6f823cd5 183 struct f_fs_opts *opts;
581791f5 184 int i;
4b187fce 185 int ret = 0;
581791f5 186
c6c56008
MN
187 ENTER();
188
4b187fce 189 if (func_num < 2) {
581791f5
AP
190 gfs_single_func = true;
191 func_num = 1;
192 }
193
6f823cd5
AP
194 /*
195 * Allocate in one chunk for easier maintenance
196 */
197 f_ffs[0] = kcalloc(func_num * N_CONF, sizeof(*f_ffs), GFP_KERNEL);
198 if (!f_ffs[0]) {
199 ret = -ENOMEM;
200 goto no_func;
201 }
202 for (i = 1; i < N_CONF; ++i)
203 f_ffs[i] = f_ffs[0] + i * func_num;
204
205 fi_ffs = kcalloc(func_num, sizeof(*fi_ffs), GFP_KERNEL);
206 if (!fi_ffs) {
207 ret = -ENOMEM;
208 goto no_func;
209 }
581791f5 210
4b187fce 211 for (i = 0; i < func_num; i++) {
6f823cd5
AP
212 fi_ffs[i] = usb_get_function_instance("ffs");
213 if (IS_ERR(fi_ffs[i])) {
214 ret = PTR_ERR(fi_ffs[i]);
4b187fce
AP
215 --i;
216 goto no_dev;
217 }
6f823cd5 218 opts = to_f_fs_opts(fi_ffs[i]);
4b187fce 219 if (gfs_single_func)
6f823cd5 220 ret = ffs_single_dev(opts->dev);
4b187fce 221 else
6f823cd5 222 ret = ffs_name_dev(opts->dev, func_names[i]);
4b187fce
AP
223 if (ret)
224 goto no_dev;
6f823cd5
AP
225 opts->dev->ffs_ready_callback = functionfs_ready_callback;
226 opts->dev->ffs_closed_callback = functionfs_closed_callback;
227 opts->dev->ffs_acquire_dev_callback = functionfs_acquire_dev;
228 opts->dev->ffs_release_dev_callback = functionfs_release_dev;
229 opts->no_configfs = true;
4b187fce 230 }
581791f5
AP
231
232 missing_funcs = func_num;
233
4b187fce
AP
234 return 0;
235no_dev:
4b187fce 236 while (i >= 0)
6f823cd5
AP
237 usb_put_function_instance(fi_ffs[i--]);
238 kfree(fi_ffs);
239no_func:
240 kfree(f_ffs[0]);
4b187fce 241 return ret;
c6c56008
MN
242}
243module_init(gfs_init);
244
8545e603 245static void __exit gfs_exit(void)
c6c56008 246{
4b187fce
AP
247 int i;
248
c6c56008
MN
249 ENTER();
250
581791f5 251 if (gfs_registered)
c6c56008 252 usb_composite_unregister(&gfs_driver);
581791f5 253 gfs_registered = false;
c6c56008 254
6f823cd5
AP
255 kfree(f_ffs[0]);
256
4b187fce 257 for (i = 0; i < func_num; i++)
6f823cd5
AP
258 usb_put_function_instance(fi_ffs[i]);
259
260 kfree(fi_ffs);
c6c56008
MN
261}
262module_exit(gfs_exit);
263
6f823cd5
AP
264static void *functionfs_acquire_dev(struct ffs_dev *dev)
265{
266 if (!try_module_get(THIS_MODULE))
d668b4f3 267 return ERR_PTR(-ENOENT);
872ce511 268
2b87cd24 269 return NULL;
6f823cd5
AP
270}
271
272static void functionfs_release_dev(struct ffs_dev *dev)
273{
274 module_put(THIS_MODULE);
275}
276
4b187fce 277/*
872ce511 278 * The caller of this function takes ffs_lock
4b187fce 279 */
c6c56008
MN
280static int functionfs_ready_callback(struct ffs_data *ffs)
281{
4b187fce 282 int ret = 0;
581791f5 283
4b187fce
AP
284 if (--missing_funcs)
285 return 0;
c6c56008 286
4b187fce
AP
287 if (gfs_registered)
288 return -EBUSY;
581791f5 289
581791f5 290 gfs_registered = true;
c6c56008 291
03e42bd5 292 ret = usb_composite_probe(&gfs_driver);
c41b33c5
KO
293 if (unlikely(ret < 0)) {
294 ++missing_funcs;
581791f5 295 gfs_registered = false;
c41b33c5 296 }
872ce511 297
c6c56008
MN
298 return ret;
299}
300
4b187fce 301/*
872ce511 302 * The caller of this function takes ffs_lock
4b187fce 303 */
c6c56008
MN
304static void functionfs_closed_callback(struct ffs_data *ffs)
305{
581791f5
AP
306 missing_funcs++;
307
308 if (gfs_registered)
c6c56008 309 usb_composite_unregister(&gfs_driver);
581791f5 310 gfs_registered = false;
581791f5
AP
311}
312
313/*
4b187fce 314 * It is assumed that gfs_bind is called from a context where ffs_lock is held
581791f5 315 */
c6c56008
MN
316static int gfs_bind(struct usb_composite_dev *cdev)
317{
6e257b14 318#if defined CONFIG_USB_FUNCTIONFS_ETH || defined CONFIG_USB_FUNCTIONFS_RNDIS
85aec59f
AP
319 struct net_device *net;
320#endif
f8dae531 321 int ret, i;
c6c56008
MN
322
323 ENTER();
324
581791f5 325 if (missing_funcs)
c6c56008 326 return -ENODEV;
f212ad4e
AP
327#if defined CONFIG_USB_FUNCTIONFS_ETH
328 if (can_support_ecm(cdev->gadget)) {
329 struct f_ecm_opts *ecm_opts;
330
331 fi_ecm = usb_get_function_instance("ecm");
332 if (IS_ERR(fi_ecm))
333 return PTR_ERR(fi_ecm);
334 ecm_opts = container_of(fi_ecm, struct f_ecm_opts, func_inst);
85aec59f 335 net = ecm_opts->net;
f212ad4e 336 } else {
85aec59f
AP
337 struct f_gether_opts *geth_opts;
338
339 fi_geth = usb_get_function_instance("geth");
340 if (IS_ERR(fi_geth))
341 return PTR_ERR(fi_geth);
342 geth_opts = container_of(fi_geth, struct f_gether_opts,
343 func_inst);
344 net = geth_opts->net;
f212ad4e 345 }
6e257b14
AP
346#endif
347
348#ifdef CONFIG_USB_FUNCTIONFS_RNDIS
349 {
6e257b14
AP
350 fi_rndis = usb_get_function_instance("rndis");
351 if (IS_ERR(fi_rndis)) {
352 ret = PTR_ERR(fi_rndis);
353 goto error;
354 }
6e257b14 355#ifndef CONFIG_USB_FUNCTIONFS_ETH
872ce511
MN
356 net = container_of(fi_rndis, struct f_rndis_opts,
357 func_inst)->net;
6e257b14
AP
358#endif
359 }
360#endif
85aec59f 361
6e257b14
AP
362#if defined CONFIG_USB_FUNCTIONFS_ETH || defined CONFIG_USB_FUNCTIONFS_RNDIS
363 gether_set_qmult(net, qmult);
85aec59f
AP
364 if (!gether_set_host_addr(net, host_addr))
365 pr_info("using host ethernet address: %s", host_addr);
366 if (!gether_set_dev_addr(net, dev_addr))
367 pr_info("using self ethernet address: %s", dev_addr);
d6a01439 368#endif
f212ad4e
AP
369
370#if defined CONFIG_USB_FUNCTIONFS_RNDIS && defined CONFIG_USB_FUNCTIONFS_ETH
85aec59f
AP
371 gether_set_gadget(net, cdev->gadget);
372 ret = gether_register_netdev(net);
373 if (ret)
6e257b14 374 goto error_rndis;
85aec59f 375
f212ad4e
AP
376 if (can_support_ecm(cdev->gadget)) {
377 struct f_ecm_opts *ecm_opts;
378
379 ecm_opts = container_of(fi_ecm, struct f_ecm_opts, func_inst);
f212ad4e 380 ecm_opts->bound = true;
85aec59f
AP
381 } else {
382 struct f_gether_opts *geth_opts;
383
384 geth_opts = container_of(fi_geth, struct f_gether_opts,
385 func_inst);
386 geth_opts->bound = true;
d6a01439 387 }
6e257b14
AP
388
389 rndis_borrow_net(fi_rndis, net);
f212ad4e 390#endif
c6c56008 391
6f823cd5 392 /* TODO: gstrings_attach? */
f8dae531 393 ret = usb_string_ids_tab(cdev, gfs_strings);
c6c56008 394 if (unlikely(ret < 0))
6e257b14 395 goto error_rndis;
d33f74fc 396 gfs_dev_desc.iProduct = gfs_strings[USB_GADGET_PRODUCT_IDX].id;
c6c56008 397
75c9310a
LJ
398 if (gadget_is_otg(cdev->gadget) && !gfs_otg_desc[0]) {
399 struct usb_descriptor_header *usb_desc;
400
401 usb_desc = usb_otg_descriptor_alloc(cdev->gadget);
402 if (!usb_desc)
403 goto error_rndis;
404 usb_otg_descriptor_init(cdev->gadget, usb_desc);
405 gfs_otg_desc[0] = usb_desc;
406 gfs_otg_desc[1] = NULL;
407 }
408
f8dae531
MN
409 for (i = 0; i < ARRAY_SIZE(gfs_configurations); ++i) {
410 struct gfs_configuration *c = gfs_configurations + i;
276e2e4f 411 int sid = USB_GADGET_FIRST_AVAIL_IDX + i;
c6c56008 412
276e2e4f
SAS
413 c->c.label = gfs_strings[sid].s;
414 c->c.iConfiguration = gfs_strings[sid].id;
f8dae531
MN
415 c->c.bConfigurationValue = 1 + i;
416 c->c.bmAttributes = USB_CONFIG_ATT_SELFPOWER;
c6c56008 417
6f823cd5
AP
418 c->num = i;
419
c9bfff9c 420 ret = usb_add_config(cdev, &c->c, gfs_do_config);
f8dae531
MN
421 if (unlikely(ret < 0))
422 goto error_unbind;
423 }
7d16e8d3 424 usb_composite_overwrite_options(cdev, &coverwrite);
c6c56008
MN
425 return 0;
426
6f823cd5 427/* TODO */
c6c56008 428error_unbind:
75c9310a
LJ
429 kfree(gfs_otg_desc[0]);
430 gfs_otg_desc[0] = NULL;
6e257b14
AP
431error_rndis:
432#ifdef CONFIG_USB_FUNCTIONFS_RNDIS
433 usb_put_function_instance(fi_rndis);
c6c56008 434error:
6e257b14 435#endif
f212ad4e
AP
436#if defined CONFIG_USB_FUNCTIONFS_ETH
437 if (can_support_ecm(cdev->gadget))
438 usb_put_function_instance(fi_ecm);
439 else
85aec59f 440 usb_put_function_instance(fi_geth);
f212ad4e 441#endif
c6c56008
MN
442 return ret;
443}
444
581791f5 445/*
4b187fce 446 * It is assumed that gfs_unbind is called from a context where ffs_lock is held
581791f5 447 */
c6c56008
MN
448static int gfs_unbind(struct usb_composite_dev *cdev)
449{
581791f5
AP
450 int i;
451
c6c56008
MN
452 ENTER();
453
f212ad4e 454
6e257b14
AP
455#ifdef CONFIG_USB_FUNCTIONFS_RNDIS
456 usb_put_function(f_rndis);
457 usb_put_function_instance(fi_rndis);
458#endif
459
f212ad4e
AP
460#if defined CONFIG_USB_FUNCTIONFS_ETH
461 if (can_support_ecm(cdev->gadget)) {
462 usb_put_function(f_ecm);
463 usb_put_function_instance(fi_ecm);
464 } else {
85aec59f
AP
465 usb_put_function(f_geth);
466 usb_put_function_instance(fi_geth);
f212ad4e 467 }
f212ad4e 468#endif
6f823cd5
AP
469 for (i = 0; i < N_CONF * func_num; ++i)
470 usb_put_function(*(f_ffs[0] + i));
c6c56008 471
75c9310a
LJ
472 kfree(gfs_otg_desc[0]);
473 gfs_otg_desc[0] = NULL;
474
c6c56008
MN
475 return 0;
476}
477
581791f5
AP
478/*
479 * It is assumed that gfs_do_config is called from a context where
4b187fce 480 * ffs_lock is held
581791f5 481 */
f8dae531 482static int gfs_do_config(struct usb_configuration *c)
c6c56008 483{
f8dae531
MN
484 struct gfs_configuration *gc =
485 container_of(c, struct gfs_configuration, c);
581791f5 486 int i;
c6c56008
MN
487 int ret;
488
581791f5 489 if (missing_funcs)
c6c56008
MN
490 return -ENODEV;
491
492 if (gadget_is_otg(c->cdev->gadget)) {
493 c->descriptors = gfs_otg_desc;
494 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
495 }
496
f8dae531 497 if (gc->eth) {
6e257b14 498 ret = gc->eth(c);
c6c56008
MN
499 if (unlikely(ret < 0))
500 return ret;
501 }
502
581791f5 503 for (i = 0; i < func_num; i++) {
6f823cd5
AP
504 f_ffs[gc->num][i] = usb_get_function(fi_ffs[i]);
505 if (IS_ERR(f_ffs[gc->num][i])) {
506 ret = PTR_ERR(f_ffs[gc->num][i]);
507 goto error;
508 }
509 ret = usb_add_function(c, f_ffs[gc->num][i]);
510 if (ret < 0) {
511 usb_put_function(f_ffs[gc->num][i]);
512 goto error;
513 }
581791f5 514 }
c6c56008 515
fc19de61
MN
516 /*
517 * After previous do_configs there may be some invalid
f588c0db
MN
518 * pointers in c->interface array. This happens every time
519 * a user space function with fewer interfaces than a user
520 * space function that was run before the new one is run. The
521 * compasit's set_config() assumes that if there is no more
522 * then MAX_CONFIG_INTERFACES interfaces in a configuration
523 * then there is a NULL pointer after the last interface in
fc19de61
MN
524 * c->interface array. We need to make sure this is true.
525 */
f588c0db
MN
526 if (c->next_interface_id < ARRAY_SIZE(c->interface))
527 c->interface[c->next_interface_id] = NULL;
528
c6c56008 529 return 0;
6f823cd5
AP
530error:
531 while (--i >= 0) {
532 if (!IS_ERR(f_ffs[gc->num][i]))
533 usb_remove_function(c, f_ffs[gc->num][i]);
534 usb_put_function(f_ffs[gc->num][i]);
535 }
536 return ret;
c6c56008
MN
537}
538
c6c56008 539#ifdef CONFIG_USB_FUNCTIONFS_ETH
fc19de61 540
6e257b14 541static int eth_bind_config(struct usb_configuration *c)
c6c56008 542{
f212ad4e
AP
543 int status = 0;
544
545 if (can_support_ecm(c->cdev->gadget)) {
546 f_ecm = usb_get_function(fi_ecm);
547 if (IS_ERR(f_ecm))
548 return PTR_ERR(f_ecm);
549
550 status = usb_add_function(c, f_ecm);
551 if (status < 0)
552 usb_put_function(f_ecm);
553
554 } else {
85aec59f
AP
555 f_geth = usb_get_function(fi_geth);
556 if (IS_ERR(f_geth))
557 return PTR_ERR(f_geth);
558
559 status = usb_add_function(c, f_geth);
560 if (status < 0)
561 usb_put_function(f_geth);
f212ad4e
AP
562 }
563 return status;
c6c56008 564}
fc19de61 565
c6c56008 566#endif
6e257b14
AP
567
568#ifdef CONFIG_USB_FUNCTIONFS_RNDIS
569
570static int bind_rndis_config(struct usb_configuration *c)
571{
572 int status = 0;
573
574 f_rndis = usb_get_function(fi_rndis);
575 if (IS_ERR(f_rndis))
576 return PTR_ERR(f_rndis);
577
578 status = usb_add_function(c, f_rndis);
579 if (status < 0)
580 usb_put_function(f_rndis);
581
582 return status;
583}
584
585#endif