2010-11-12 21:29:28 +08:00
|
|
|
/*
|
|
|
|
* g_ffs.c -- user mode file system API for USB composite function controllers
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Samsung Electronics
|
2012-01-13 22:05:16 +08:00
|
|
|
* Author: Michal Nazarewicz <mina86@mina86.com>
|
2010-11-12 21:29:28 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
2010-11-18 00:09:47 +08:00
|
|
|
#define pr_fmt(fmt) "g_ffs: " fmt
|
|
|
|
|
2010-05-05 18:53:15 +08:00
|
|
|
#include <linux/module.h>
|
|
|
|
/*
|
|
|
|
* kbuild is not very cooperative with respect to linking separately
|
|
|
|
* compiled library objects into one module. So for now we won't use
|
|
|
|
* separate compilation ... ensuring init/exit sections work to shrink
|
|
|
|
* the runtime footprint, and giving us at least some parts of what
|
|
|
|
* a "gcc --combine ... part1.c part2.c part3.c ... " build would.
|
|
|
|
*/
|
|
|
|
#if defined CONFIG_USB_FUNCTIONFS_ETH || defined CONFIG_USB_FUNCTIONFS_RNDIS
|
|
|
|
# if defined USB_ETH_RNDIS
|
|
|
|
# undef USB_ETH_RNDIS
|
|
|
|
# endif
|
|
|
|
# ifdef CONFIG_USB_FUNCTIONFS_RNDIS
|
|
|
|
# define USB_ETH_RNDIS y
|
|
|
|
# endif
|
|
|
|
|
2013-12-03 22:15:23 +08:00
|
|
|
# include "u_ecm.h"
|
2013-05-28 15:15:53 +08:00
|
|
|
#define USB_FSUBSET_INCLUDED
|
2010-05-05 18:53:15 +08:00
|
|
|
# include "f_subset.c"
|
|
|
|
# ifdef USB_ETH_RNDIS
|
2013-05-28 15:15:57 +08:00
|
|
|
# define USB_FRNDIS_INCLUDED
|
2010-05-05 18:53:15 +08:00
|
|
|
# include "f_rndis.c"
|
2013-05-24 16:23:02 +08:00
|
|
|
# include "rndis.h"
|
2010-05-05 18:53:15 +08:00
|
|
|
# endif
|
usb: gadget: u_ether: convert into module
u_ether.c has been #include'd by all gadgets which implement
USB Ethernet functions. In order to add configfs support,
the f_ecm.c, f_eem.c, f_ncm.c, f_subset.c, f_rndis.c need to be
converted into modules and must not be #include'd. Consequently,
the u_ether.c needs to be a module too, in a manner similar
to u_serial.c. The resulting module should not take any parameters,
so they are pushed to the current users of it, that is ether.c,
g_ffs.c, multi.c, ncm.c, nokia.c.
Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
2013-05-23 15:22:03 +08:00
|
|
|
# include "u_ether.h"
|
2010-05-05 18:53:15 +08:00
|
|
|
|
2013-12-03 22:15:23 +08:00
|
|
|
USB_ETHERNET_MODULE_PARAMETERS();
|
|
|
|
|
usb: gadget: u_ether: convert into module
u_ether.c has been #include'd by all gadgets which implement
USB Ethernet functions. In order to add configfs support,
the f_ecm.c, f_eem.c, f_ncm.c, f_subset.c, f_rndis.c need to be
converted into modules and must not be #include'd. Consequently,
the u_ether.c needs to be a module too, in a manner similar
to u_serial.c. The resulting module should not take any parameters,
so they are pushed to the current users of it, that is ether.c,
g_ffs.c, multi.c, ncm.c, nokia.c.
Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
2013-05-23 15:22:03 +08:00
|
|
|
static u8 gfs_host_mac[ETH_ALEN];
|
2012-12-24 04:10:12 +08:00
|
|
|
static struct eth_dev *the_dev;
|
2010-06-25 22:29:27 +08:00
|
|
|
# ifdef CONFIG_USB_FUNCTIONFS_ETH
|
2012-12-24 04:10:12 +08:00
|
|
|
static int eth_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN],
|
|
|
|
struct eth_dev *dev);
|
2013-12-03 22:15:23 +08:00
|
|
|
static struct usb_function_instance *fi_ecm;
|
|
|
|
static struct usb_function *f_ecm;
|
2010-05-05 18:53:15 +08:00
|
|
|
# endif
|
2010-06-25 22:29:27 +08:00
|
|
|
#else
|
2012-12-24 04:10:12 +08:00
|
|
|
# define the_dev NULL
|
|
|
|
# define gether_cleanup(dev) do { } while (0)
|
usb: gadget: u_ether: convert into module
u_ether.c has been #include'd by all gadgets which implement
USB Ethernet functions. In order to add configfs support,
the f_ecm.c, f_eem.c, f_ncm.c, f_subset.c, f_rndis.c need to be
converted into modules and must not be #include'd. Consequently,
the u_ether.c needs to be a module too, in a manner similar
to u_serial.c. The resulting module should not take any parameters,
so they are pushed to the current users of it, that is ether.c,
g_ffs.c, multi.c, ncm.c, nokia.c.
Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
2013-05-23 15:22:03 +08:00
|
|
|
# define gfs_host_mac NULL
|
2012-12-24 04:10:12 +08:00
|
|
|
struct eth_dev;
|
2010-05-05 18:53:15 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "f_fs.c"
|
|
|
|
|
|
|
|
#define DRIVER_NAME "g_ffs"
|
|
|
|
#define DRIVER_DESC "USB Function Filesystem"
|
|
|
|
#define DRIVER_VERSION "24 Aug 2004"
|
|
|
|
|
|
|
|
MODULE_DESCRIPTION(DRIVER_DESC);
|
|
|
|
MODULE_AUTHOR("Michal Nazarewicz");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
2010-08-12 23:43:48 +08:00
|
|
|
#define GFS_VENDOR_ID 0x1d6b /* Linux Foundation */
|
|
|
|
#define GFS_PRODUCT_ID 0x0105 /* FunctionFS Gadget */
|
2010-05-05 18:53:15 +08:00
|
|
|
|
2012-05-14 21:51:52 +08:00
|
|
|
#define GFS_MAX_DEVS 10
|
|
|
|
|
|
|
|
struct gfs_ffs_obj {
|
|
|
|
const char *name;
|
|
|
|
bool mounted;
|
|
|
|
bool desc_ready;
|
|
|
|
struct ffs_data *ffs_data;
|
|
|
|
};
|
|
|
|
|
2012-09-10 21:01:53 +08:00
|
|
|
USB_GADGET_COMPOSITE_OPTIONS();
|
|
|
|
|
2010-05-05 18:53:15 +08:00
|
|
|
static struct usb_device_descriptor gfs_dev_desc = {
|
|
|
|
.bLength = sizeof gfs_dev_desc,
|
|
|
|
.bDescriptorType = USB_DT_DEVICE,
|
|
|
|
|
|
|
|
.bcdUSB = cpu_to_le16(0x0200),
|
|
|
|
.bDeviceClass = USB_CLASS_PER_INTERFACE,
|
|
|
|
|
2010-08-12 23:43:48 +08:00
|
|
|
.idVendor = cpu_to_le16(GFS_VENDOR_ID),
|
|
|
|
.idProduct = cpu_to_le16(GFS_PRODUCT_ID),
|
2010-05-05 18:53:15 +08:00
|
|
|
};
|
|
|
|
|
2012-05-14 21:51:52 +08:00
|
|
|
static char *func_names[GFS_MAX_DEVS];
|
|
|
|
static unsigned int func_num;
|
|
|
|
|
2010-08-12 23:43:48 +08:00
|
|
|
module_param_named(bDeviceClass, gfs_dev_desc.bDeviceClass, byte, 0644);
|
|
|
|
MODULE_PARM_DESC(bDeviceClass, "USB Device class");
|
|
|
|
module_param_named(bDeviceSubClass, gfs_dev_desc.bDeviceSubClass, byte, 0644);
|
|
|
|
MODULE_PARM_DESC(bDeviceSubClass, "USB Device subclass");
|
|
|
|
module_param_named(bDeviceProtocol, gfs_dev_desc.bDeviceProtocol, byte, 0644);
|
|
|
|
MODULE_PARM_DESC(bDeviceProtocol, "USB Device protocol");
|
2012-05-14 21:51:52 +08:00
|
|
|
module_param_array_named(functions, func_names, charp, &func_num, 0);
|
|
|
|
MODULE_PARM_DESC(functions, "USB Functions list");
|
2010-05-05 18:53:15 +08:00
|
|
|
|
|
|
|
static const struct usb_descriptor_header *gfs_otg_desc[] = {
|
|
|
|
(const struct usb_descriptor_header *)
|
|
|
|
&(const struct usb_otg_descriptor) {
|
|
|
|
.bLength = sizeof(struct usb_otg_descriptor),
|
|
|
|
.bDescriptorType = USB_DT_OTG,
|
|
|
|
|
2010-08-12 23:43:48 +08:00
|
|
|
/*
|
|
|
|
* REVISIT SRP-only hardware is possible, although
|
|
|
|
* it would not be called "OTG" ...
|
|
|
|
*/
|
2010-05-05 18:53:15 +08:00
|
|
|
.bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
|
|
|
|
},
|
|
|
|
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2010-11-12 21:29:28 +08:00
|
|
|
/* String IDs are assigned dynamically */
|
2010-05-05 18:53:15 +08:00
|
|
|
static struct usb_string gfs_strings[] = {
|
2012-09-07 02:11:21 +08:00
|
|
|
[USB_GADGET_MANUFACTURER_IDX].s = "",
|
2012-09-10 21:01:57 +08:00
|
|
|
[USB_GADGET_PRODUCT_IDX].s = DRIVER_DESC,
|
2012-09-07 02:11:21 +08:00
|
|
|
[USB_GADGET_SERIAL_IDX].s = "",
|
2010-05-05 18:53:15 +08:00
|
|
|
#ifdef CONFIG_USB_FUNCTIONFS_RNDIS
|
2010-06-25 22:29:27 +08:00
|
|
|
{ .s = "FunctionFS + RNDIS" },
|
2010-05-05 18:53:15 +08:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_USB_FUNCTIONFS_ETH
|
2010-06-25 22:29:27 +08:00
|
|
|
{ .s = "FunctionFS + ECM" },
|
2010-05-05 18:53:15 +08:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_USB_FUNCTIONFS_GENERIC
|
2010-06-25 22:29:27 +08:00
|
|
|
{ .s = "FunctionFS" },
|
2010-05-05 18:53:15 +08:00
|
|
|
#endif
|
|
|
|
{ } /* end of list */
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct usb_gadget_strings *gfs_dev_strings[] = {
|
|
|
|
&(struct usb_gadget_strings) {
|
|
|
|
.language = 0x0409, /* en-us */
|
|
|
|
.strings = gfs_strings,
|
|
|
|
},
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2010-06-25 22:29:27 +08:00
|
|
|
struct gfs_configuration {
|
|
|
|
struct usb_configuration c;
|
2012-12-24 04:10:12 +08:00
|
|
|
int (*eth)(struct usb_configuration *c, u8 *ethaddr,
|
|
|
|
struct eth_dev *dev);
|
2010-06-25 22:29:27 +08:00
|
|
|
} gfs_configurations[] = {
|
2010-05-05 18:53:15 +08:00
|
|
|
#ifdef CONFIG_USB_FUNCTIONFS_RNDIS
|
2010-06-25 22:29:27 +08:00
|
|
|
{
|
|
|
|
.eth = rndis_bind_config,
|
|
|
|
},
|
2010-05-05 18:53:15 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_USB_FUNCTIONFS_ETH
|
2010-06-25 22:29:27 +08:00
|
|
|
{
|
|
|
|
.eth = eth_bind_config,
|
|
|
|
},
|
2010-05-05 18:53:15 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_USB_FUNCTIONFS_GENERIC
|
2010-06-25 22:29:27 +08:00
|
|
|
{
|
|
|
|
},
|
2010-05-05 18:53:15 +08:00
|
|
|
#endif
|
2010-06-25 22:29:27 +08:00
|
|
|
};
|
2010-05-05 18:53:15 +08:00
|
|
|
|
|
|
|
static int gfs_bind(struct usb_composite_dev *cdev);
|
|
|
|
static int gfs_unbind(struct usb_composite_dev *cdev);
|
2010-06-25 22:29:27 +08:00
|
|
|
static int gfs_do_config(struct usb_configuration *c);
|
2010-05-05 18:53:15 +08:00
|
|
|
|
2012-09-07 02:11:03 +08:00
|
|
|
static __refdata struct usb_composite_driver gfs_driver = {
|
2010-08-12 23:43:48 +08:00
|
|
|
.name = DRIVER_NAME,
|
2010-05-05 18:53:15 +08:00
|
|
|
.dev = &gfs_dev_desc,
|
|
|
|
.strings = gfs_dev_strings,
|
2011-06-29 21:41:49 +08:00
|
|
|
.max_speed = USB_SPEED_HIGH,
|
2012-09-07 02:11:04 +08:00
|
|
|
.bind = gfs_bind,
|
2010-05-05 18:53:15 +08:00
|
|
|
.unbind = gfs_unbind,
|
|
|
|
};
|
|
|
|
|
2012-05-14 21:51:52 +08:00
|
|
|
static DEFINE_MUTEX(gfs_lock);
|
|
|
|
static unsigned int missing_funcs;
|
|
|
|
static bool gfs_registered;
|
|
|
|
static bool gfs_single_func;
|
|
|
|
static struct gfs_ffs_obj *ffs_tab;
|
2010-05-05 18:53:15 +08:00
|
|
|
|
2012-03-12 19:55:42 +08:00
|
|
|
static int __init gfs_init(void)
|
2010-05-05 18:53:15 +08:00
|
|
|
{
|
2012-05-14 21:51:52 +08:00
|
|
|
int i;
|
|
|
|
|
2010-05-05 18:53:15 +08:00
|
|
|
ENTER();
|
|
|
|
|
2012-05-14 21:51:52 +08:00
|
|
|
if (!func_num) {
|
|
|
|
gfs_single_func = true;
|
|
|
|
func_num = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ffs_tab = kcalloc(func_num, sizeof *ffs_tab, GFP_KERNEL);
|
|
|
|
if (!ffs_tab)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
if (!gfs_single_func)
|
|
|
|
for (i = 0; i < func_num; i++)
|
|
|
|
ffs_tab[i].name = func_names[i];
|
|
|
|
|
|
|
|
missing_funcs = func_num;
|
|
|
|
|
2010-05-05 18:53:15 +08:00
|
|
|
return functionfs_init();
|
|
|
|
}
|
|
|
|
module_init(gfs_init);
|
|
|
|
|
2012-03-12 19:55:42 +08:00
|
|
|
static void __exit gfs_exit(void)
|
2010-05-05 18:53:15 +08:00
|
|
|
{
|
|
|
|
ENTER();
|
2012-05-14 21:51:52 +08:00
|
|
|
mutex_lock(&gfs_lock);
|
2010-05-05 18:53:15 +08:00
|
|
|
|
2012-05-14 21:51:52 +08:00
|
|
|
if (gfs_registered)
|
2010-05-05 18:53:15 +08:00
|
|
|
usb_composite_unregister(&gfs_driver);
|
2012-05-14 21:51:52 +08:00
|
|
|
gfs_registered = false;
|
2010-05-05 18:53:15 +08:00
|
|
|
|
|
|
|
functionfs_cleanup();
|
2012-05-14 21:51:52 +08:00
|
|
|
|
|
|
|
mutex_unlock(&gfs_lock);
|
|
|
|
kfree(ffs_tab);
|
2010-05-05 18:53:15 +08:00
|
|
|
}
|
|
|
|
module_exit(gfs_exit);
|
|
|
|
|
2012-05-14 21:51:52 +08:00
|
|
|
static struct gfs_ffs_obj *gfs_find_dev(const char *dev_name)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
ENTER();
|
|
|
|
|
|
|
|
if (gfs_single_func)
|
|
|
|
return &ffs_tab[0];
|
|
|
|
|
|
|
|
for (i = 0; i < func_num; i++)
|
|
|
|
if (strcmp(ffs_tab[i].name, dev_name) == 0)
|
|
|
|
return &ffs_tab[i];
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-05-05 18:53:15 +08:00
|
|
|
static int functionfs_ready_callback(struct ffs_data *ffs)
|
|
|
|
{
|
2012-05-14 21:51:52 +08:00
|
|
|
struct gfs_ffs_obj *ffs_obj;
|
2010-05-05 18:53:15 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ENTER();
|
2012-05-14 21:51:52 +08:00
|
|
|
mutex_lock(&gfs_lock);
|
|
|
|
|
|
|
|
ffs_obj = ffs->private_data;
|
|
|
|
if (!ffs_obj) {
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (WARN_ON(ffs_obj->desc_ready)) {
|
|
|
|
ret = -EBUSY;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
ffs_obj->desc_ready = true;
|
|
|
|
ffs_obj->ffs_data = ffs;
|
2010-05-05 18:53:15 +08:00
|
|
|
|
2012-05-14 21:51:52 +08:00
|
|
|
if (--missing_funcs) {
|
|
|
|
ret = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gfs_registered) {
|
|
|
|
ret = -EBUSY;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
gfs_registered = true;
|
2010-05-05 18:53:15 +08:00
|
|
|
|
2012-09-07 02:11:04 +08:00
|
|
|
ret = usb_composite_probe(&gfs_driver);
|
2010-05-05 18:53:15 +08:00
|
|
|
if (unlikely(ret < 0))
|
2012-05-14 21:51:52 +08:00
|
|
|
gfs_registered = false;
|
|
|
|
|
|
|
|
done:
|
|
|
|
mutex_unlock(&gfs_lock);
|
2010-05-05 18:53:15 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void functionfs_closed_callback(struct ffs_data *ffs)
|
|
|
|
{
|
2012-05-14 21:51:52 +08:00
|
|
|
struct gfs_ffs_obj *ffs_obj;
|
|
|
|
|
2010-05-05 18:53:15 +08:00
|
|
|
ENTER();
|
2012-05-14 21:51:52 +08:00
|
|
|
mutex_lock(&gfs_lock);
|
2010-05-05 18:53:15 +08:00
|
|
|
|
2012-05-14 21:51:52 +08:00
|
|
|
ffs_obj = ffs->private_data;
|
|
|
|
if (!ffs_obj)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
ffs_obj->desc_ready = false;
|
|
|
|
missing_funcs++;
|
|
|
|
|
|
|
|
if (gfs_registered)
|
2010-05-05 18:53:15 +08:00
|
|
|
usb_composite_unregister(&gfs_driver);
|
2012-05-14 21:51:52 +08:00
|
|
|
gfs_registered = false;
|
|
|
|
|
|
|
|
done:
|
|
|
|
mutex_unlock(&gfs_lock);
|
2010-05-05 18:53:15 +08:00
|
|
|
}
|
|
|
|
|
2012-05-14 21:51:52 +08:00
|
|
|
static void *functionfs_acquire_dev_callback(const char *dev_name)
|
2010-05-05 18:53:15 +08:00
|
|
|
{
|
2012-05-14 21:51:52 +08:00
|
|
|
struct gfs_ffs_obj *ffs_dev;
|
|
|
|
|
|
|
|
ENTER();
|
|
|
|
mutex_lock(&gfs_lock);
|
|
|
|
|
|
|
|
ffs_dev = gfs_find_dev(dev_name);
|
|
|
|
if (!ffs_dev) {
|
|
|
|
ffs_dev = ERR_PTR(-ENODEV);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ffs_dev->mounted) {
|
|
|
|
ffs_dev = ERR_PTR(-EBUSY);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
ffs_dev->mounted = true;
|
|
|
|
|
|
|
|
done:
|
|
|
|
mutex_unlock(&gfs_lock);
|
|
|
|
return ffs_dev;
|
2010-05-05 18:53:15 +08:00
|
|
|
}
|
|
|
|
|
2012-05-14 21:51:52 +08:00
|
|
|
static void functionfs_release_dev_callback(struct ffs_data *ffs_data)
|
|
|
|
{
|
|
|
|
struct gfs_ffs_obj *ffs_dev;
|
|
|
|
|
|
|
|
ENTER();
|
|
|
|
mutex_lock(&gfs_lock);
|
|
|
|
|
|
|
|
ffs_dev = ffs_data->private_data;
|
|
|
|
if (ffs_dev)
|
|
|
|
ffs_dev->mounted = false;
|
|
|
|
|
|
|
|
mutex_unlock(&gfs_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It is assumed that gfs_bind is called from a context where gfs_lock is held
|
|
|
|
*/
|
2010-05-05 18:53:15 +08:00
|
|
|
static int gfs_bind(struct usb_composite_dev *cdev)
|
|
|
|
{
|
2010-06-25 22:29:27 +08:00
|
|
|
int ret, i;
|
2010-05-05 18:53:15 +08:00
|
|
|
|
|
|
|
ENTER();
|
|
|
|
|
2012-05-14 21:51:52 +08:00
|
|
|
if (missing_funcs)
|
2010-05-05 18:53:15 +08:00
|
|
|
return -ENODEV;
|
2013-12-03 22:15:23 +08:00
|
|
|
#if defined CONFIG_USB_FUNCTIONFS_ETH
|
|
|
|
if (can_support_ecm(cdev->gadget)) {
|
|
|
|
struct f_ecm_opts *ecm_opts;
|
|
|
|
|
|
|
|
fi_ecm = usb_get_function_instance("ecm");
|
|
|
|
if (IS_ERR(fi_ecm))
|
|
|
|
return PTR_ERR(fi_ecm);
|
|
|
|
ecm_opts = container_of(fi_ecm, struct f_ecm_opts, func_inst);
|
|
|
|
|
|
|
|
gether_set_qmult(ecm_opts->net, qmult);
|
|
|
|
|
|
|
|
if (!gether_set_host_addr(ecm_opts->net, host_addr))
|
|
|
|
pr_info("using host ethernet address: %s", host_addr);
|
|
|
|
if (!gether_set_dev_addr(ecm_opts->net, dev_addr))
|
|
|
|
pr_info("using self ethernet address: %s", dev_addr);
|
|
|
|
|
|
|
|
the_dev = netdev_priv(ecm_opts->net);
|
|
|
|
} else {
|
|
|
|
the_dev = gether_setup(cdev->gadget, dev_addr, host_addr,
|
|
|
|
gfs_host_mac, qmult);
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined CONFIG_USB_FUNCTIONFS_RNDIS
|
|
|
|
|
usb: gadget: u_ether: convert into module
u_ether.c has been #include'd by all gadgets which implement
USB Ethernet functions. In order to add configfs support,
the f_ecm.c, f_eem.c, f_ncm.c, f_subset.c, f_rndis.c need to be
converted into modules and must not be #include'd. Consequently,
the u_ether.c needs to be a module too, in a manner similar
to u_serial.c. The resulting module should not take any parameters,
so they are pushed to the current users of it, that is ether.c,
g_ffs.c, multi.c, ncm.c, nokia.c.
Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
2013-05-23 15:22:03 +08:00
|
|
|
the_dev = gether_setup(cdev->gadget, dev_addr, host_addr, gfs_host_mac,
|
|
|
|
qmult);
|
2012-12-24 04:10:12 +08:00
|
|
|
#endif
|
2013-12-03 22:15:23 +08:00
|
|
|
if (IS_ERR(the_dev))
|
|
|
|
return PTR_ERR(the_dev);
|
|
|
|
|
|
|
|
#if defined CONFIG_USB_FUNCTIONFS_RNDIS && defined CONFIG_USB_FUNCTIONFS_ETH
|
|
|
|
if (can_support_ecm(cdev->gadget)) {
|
|
|
|
struct f_ecm_opts *ecm_opts;
|
|
|
|
|
|
|
|
ecm_opts = container_of(fi_ecm, struct f_ecm_opts, func_inst);
|
|
|
|
|
|
|
|
gether_set_gadget(ecm_opts->net, cdev->gadget);
|
|
|
|
ret = gether_register_netdev(ecm_opts->net);
|
|
|
|
if (ret)
|
|
|
|
goto error;
|
|
|
|
ecm_opts->bound = true;
|
|
|
|
gether_get_host_addr_u8(ecm_opts->net, gfs_host_mac);
|
2012-12-24 04:10:12 +08:00
|
|
|
}
|
2013-12-03 22:15:23 +08:00
|
|
|
#endif
|
2010-05-05 18:53:15 +08:00
|
|
|
|
2010-06-25 22:29:27 +08:00
|
|
|
ret = usb_string_ids_tab(cdev, gfs_strings);
|
2010-05-05 18:53:15 +08:00
|
|
|
if (unlikely(ret < 0))
|
|
|
|
goto error;
|
2012-09-10 21:01:57 +08:00
|
|
|
gfs_dev_desc.iProduct = gfs_strings[USB_GADGET_PRODUCT_IDX].id;
|
2010-05-05 18:53:15 +08:00
|
|
|
|
2013-03-11 23:32:14 +08:00
|
|
|
for (i = func_num; i--; ) {
|
2012-05-14 21:51:52 +08:00
|
|
|
ret = functionfs_bind(ffs_tab[i].ffs_data, cdev);
|
|
|
|
if (unlikely(ret < 0)) {
|
|
|
|
while (++i < func_num)
|
|
|
|
functionfs_unbind(ffs_tab[i].ffs_data);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
}
|
2010-05-05 18:53:15 +08:00
|
|
|
|
2010-06-25 22:29:27 +08:00
|
|
|
for (i = 0; i < ARRAY_SIZE(gfs_configurations); ++i) {
|
|
|
|
struct gfs_configuration *c = gfs_configurations + i;
|
2012-09-07 02:11:21 +08:00
|
|
|
int sid = USB_GADGET_FIRST_AVAIL_IDX + i;
|
2010-05-05 18:53:15 +08:00
|
|
|
|
2012-09-07 02:11:21 +08:00
|
|
|
c->c.label = gfs_strings[sid].s;
|
|
|
|
c->c.iConfiguration = gfs_strings[sid].id;
|
2010-06-25 22:29:27 +08:00
|
|
|
c->c.bConfigurationValue = 1 + i;
|
|
|
|
c->c.bmAttributes = USB_CONFIG_ATT_SELFPOWER;
|
2010-05-05 18:53:15 +08:00
|
|
|
|
2010-08-12 23:43:55 +08:00
|
|
|
ret = usb_add_config(cdev, &c->c, gfs_do_config);
|
2010-06-25 22:29:27 +08:00
|
|
|
if (unlikely(ret < 0))
|
|
|
|
goto error_unbind;
|
|
|
|
}
|
2012-09-10 21:01:53 +08:00
|
|
|
usb_composite_overwrite_options(cdev, &coverwrite);
|
2010-05-05 18:53:15 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
error_unbind:
|
2012-05-14 21:51:52 +08:00
|
|
|
for (i = 0; i < func_num; i++)
|
|
|
|
functionfs_unbind(ffs_tab[i].ffs_data);
|
2010-05-05 18:53:15 +08:00
|
|
|
error:
|
2013-12-03 22:15:23 +08:00
|
|
|
#if defined CONFIG_USB_FUNCTIONFS_ETH
|
|
|
|
if (can_support_ecm(cdev->gadget))
|
|
|
|
usb_put_function_instance(fi_ecm);
|
|
|
|
else
|
|
|
|
gether_cleanup(the_dev);
|
|
|
|
the_dev = NULL;
|
|
|
|
#elif defined CONFIG_USB_FUNCTIONFS_RNDIS
|
2012-12-24 04:10:12 +08:00
|
|
|
gether_cleanup(the_dev);
|
2013-12-03 22:15:22 +08:00
|
|
|
the_dev = NULL;
|
2013-12-03 22:15:23 +08:00
|
|
|
#endif
|
2010-05-05 18:53:15 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-05-14 21:51:52 +08:00
|
|
|
/*
|
|
|
|
* It is assumed that gfs_unbind is called from a context where gfs_lock is held
|
|
|
|
*/
|
2010-05-05 18:53:15 +08:00
|
|
|
static int gfs_unbind(struct usb_composite_dev *cdev)
|
|
|
|
{
|
2012-05-14 21:51:52 +08:00
|
|
|
int i;
|
|
|
|
|
2010-05-05 18:53:15 +08:00
|
|
|
ENTER();
|
|
|
|
|
2013-12-03 22:15:23 +08:00
|
|
|
|
|
|
|
#if defined CONFIG_USB_FUNCTIONFS_ETH
|
|
|
|
if (can_support_ecm(cdev->gadget)) {
|
|
|
|
usb_put_function(f_ecm);
|
|
|
|
usb_put_function_instance(fi_ecm);
|
|
|
|
} else {
|
|
|
|
gether_cleanup(the_dev);
|
|
|
|
}
|
|
|
|
the_dev = NULL;
|
|
|
|
#elif defined CONFIG_USB_FUNCTIONFS_RNDIS
|
2013-12-03 22:15:22 +08:00
|
|
|
gether_cleanup(the_dev);
|
|
|
|
the_dev = NULL;
|
2013-12-03 22:15:23 +08:00
|
|
|
#endif
|
2013-12-03 22:15:22 +08:00
|
|
|
|
2010-08-12 23:43:48 +08:00
|
|
|
/*
|
|
|
|
* We may have been called in an error recovery from
|
2010-05-05 18:53:15 +08:00
|
|
|
* composite_bind() after gfs_unbind() failure so we need to
|
2013-12-03 22:15:22 +08:00
|
|
|
* check if instance's ffs_data is not NULL since gfs_bind() handles
|
2010-05-05 18:53:15 +08:00
|
|
|
* all error recovery itself. I'd rather we werent called
|
|
|
|
* from composite on orror recovery, but what you're gonna
|
2010-08-12 23:43:48 +08:00
|
|
|
* do...?
|
|
|
|
*/
|
2013-03-11 23:32:14 +08:00
|
|
|
for (i = func_num; i--; )
|
2012-05-14 21:51:52 +08:00
|
|
|
if (ffs_tab[i].ffs_data)
|
|
|
|
functionfs_unbind(ffs_tab[i].ffs_data);
|
2010-05-05 18:53:15 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-14 21:51:52 +08:00
|
|
|
/*
|
|
|
|
* It is assumed that gfs_do_config is called from a context where
|
|
|
|
* gfs_lock is held
|
|
|
|
*/
|
2010-06-25 22:29:27 +08:00
|
|
|
static int gfs_do_config(struct usb_configuration *c)
|
2010-05-05 18:53:15 +08:00
|
|
|
{
|
2010-06-25 22:29:27 +08:00
|
|
|
struct gfs_configuration *gc =
|
|
|
|
container_of(c, struct gfs_configuration, c);
|
2012-05-14 21:51:52 +08:00
|
|
|
int i;
|
2010-05-05 18:53:15 +08:00
|
|
|
int ret;
|
|
|
|
|
2012-05-14 21:51:52 +08:00
|
|
|
if (missing_funcs)
|
2010-05-05 18:53:15 +08:00
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
if (gadget_is_otg(c->cdev->gadget)) {
|
|
|
|
c->descriptors = gfs_otg_desc;
|
|
|
|
c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
|
|
|
|
}
|
|
|
|
|
2010-06-25 22:29:27 +08:00
|
|
|
if (gc->eth) {
|
usb: gadget: u_ether: convert into module
u_ether.c has been #include'd by all gadgets which implement
USB Ethernet functions. In order to add configfs support,
the f_ecm.c, f_eem.c, f_ncm.c, f_subset.c, f_rndis.c need to be
converted into modules and must not be #include'd. Consequently,
the u_ether.c needs to be a module too, in a manner similar
to u_serial.c. The resulting module should not take any parameters,
so they are pushed to the current users of it, that is ether.c,
g_ffs.c, multi.c, ncm.c, nokia.c.
Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
2013-05-23 15:22:03 +08:00
|
|
|
ret = gc->eth(c, gfs_host_mac, the_dev);
|
2010-05-05 18:53:15 +08:00
|
|
|
if (unlikely(ret < 0))
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-05-14 21:51:52 +08:00
|
|
|
for (i = 0; i < func_num; i++) {
|
|
|
|
ret = functionfs_bind_config(c->cdev, c, ffs_tab[i].ffs_data);
|
|
|
|
if (unlikely(ret < 0))
|
|
|
|
return ret;
|
|
|
|
}
|
2010-05-05 18:53:15 +08:00
|
|
|
|
2010-08-12 23:43:48 +08:00
|
|
|
/*
|
|
|
|
* After previous do_configs there may be some invalid
|
2010-06-14 16:43:34 +08:00
|
|
|
* pointers in c->interface array. This happens every time
|
|
|
|
* a user space function with fewer interfaces than a user
|
|
|
|
* space function that was run before the new one is run. The
|
|
|
|
* compasit's set_config() assumes that if there is no more
|
|
|
|
* then MAX_CONFIG_INTERFACES interfaces in a configuration
|
|
|
|
* then there is a NULL pointer after the last interface in
|
2010-08-12 23:43:48 +08:00
|
|
|
* c->interface array. We need to make sure this is true.
|
|
|
|
*/
|
2010-06-14 16:43:34 +08:00
|
|
|
if (c->next_interface_id < ARRAY_SIZE(c->interface))
|
|
|
|
c->interface[c->next_interface_id] = NULL;
|
|
|
|
|
2010-05-05 18:53:15 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_USB_FUNCTIONFS_ETH
|
2010-08-12 23:43:48 +08:00
|
|
|
|
2012-12-24 04:10:12 +08:00
|
|
|
static int eth_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN],
|
|
|
|
struct eth_dev *dev)
|
2010-05-05 18:53:15 +08:00
|
|
|
{
|
2013-12-03 22:15:23 +08:00
|
|
|
int status = 0;
|
|
|
|
|
|
|
|
if (can_support_ecm(c->cdev->gadget)) {
|
|
|
|
f_ecm = usb_get_function(fi_ecm);
|
|
|
|
if (IS_ERR(f_ecm))
|
|
|
|
return PTR_ERR(f_ecm);
|
|
|
|
|
|
|
|
status = usb_add_function(c, f_ecm);
|
|
|
|
if (status < 0)
|
|
|
|
usb_put_function(f_ecm);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
status = geth_bind_config(c, ethaddr, dev);
|
|
|
|
}
|
|
|
|
return status;
|
2010-05-05 18:53:15 +08:00
|
|
|
}
|
2010-08-12 23:43:48 +08:00
|
|
|
|
2010-05-05 18:53:15 +08:00
|
|
|
#endif
|