[PATCH v5 14/16] usb/gadget: g_ffs: convert to new interface of f_fs

2013-12-03 Thread Andrzej Pietrasiewicz
Prepare for configfs integration. Use the new interface so that f_fs can be
made a module.

Signed-off-by: Andrzej Pietrasiewicz andrze...@samsung.com
Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com
---
 drivers/usb/gadget/Kconfig |1 +
 drivers/usb/gadget/g_ffs.c |  151 +++
 2 files changed, 96 insertions(+), 56 deletions(-)

diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig
index 66444d0..2479644 100644
--- a/drivers/usb/gadget/Kconfig
+++ b/drivers/usb/gadget/Kconfig
@@ -862,6 +862,7 @@ config USB_GADGETFS
 config USB_FUNCTIONFS
tristate Function Filesystem
select USB_LIBCOMPOSITE
+   select USB_F_FS
select USB_FUNCTIONFS_GENERIC if !(USB_FUNCTIONFS_ETH || 
USB_FUNCTIONFS_RNDIS)
help
  The Function Filesystem (FunctionFS) lets one create USB
diff --git a/drivers/usb/gadget/g_ffs.c b/drivers/usb/gadget/g_ffs.c
index ffde36f..fe12e6a 100644
--- a/drivers/usb/gadget/g_ffs.c
+++ b/drivers/usb/gadget/g_ffs.c
@@ -13,13 +13,7 @@
 #define pr_fmt(fmt) g_ffs:  fmt
 
 #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
 #include linux/netdevice.h
 
@@ -54,8 +48,7 @@ static struct usb_function *f_rndis;
 #  endif
 #endif
 
-#define USB_FFS_INCLUDED
-#include f_fs.c
+#include u_fs.h
 
 #define DRIVER_NAMEg_ffs
 #define DRIVER_DESCUSB Function Filesystem
@@ -139,6 +132,7 @@ static struct usb_gadget_strings *gfs_dev_strings[] = {
 struct gfs_configuration {
struct usb_configuration c;
int (*eth)(struct usb_configuration *c);
+   int num;
 } gfs_configurations[] = {
 #ifdef CONFIG_USB_FUNCTIONFS_RNDIS
{
@@ -158,12 +152,15 @@ struct gfs_configuration {
 #endif
 };
 
+static void *functionfs_acquire_dev(struct ffs_dev *dev);
+static void functionfs_release_dev(struct ffs_dev *dev);
 static int functionfs_ready_callback(struct ffs_data *ffs);
 static void functionfs_closed_callback(struct ffs_data *ffs);
 static int gfs_bind(struct usb_composite_dev *cdev);
 static int gfs_unbind(struct usb_composite_dev *cdev);
 static int gfs_do_config(struct usb_configuration *c);
 
+
 static __refdata struct usb_composite_driver gfs_driver = {
.name   = DRIVER_NAME,
.dev= gfs_dev_desc,
@@ -176,10 +173,26 @@ static __refdata struct usb_composite_driver gfs_driver = 
{
 static unsigned int missing_funcs;
 static bool gfs_registered;
 static bool gfs_single_func;
-static struct ffs_dev **ffs_tab;
+static struct usb_function_instance **fi_ffs;
+static struct usb_function **f_ffs[] = {
+#ifdef CONFIG_USB_FUNCTIONFS_RNDIS
+   NULL,
+#endif
+
+#ifdef CONFIG_USB_FUNCTIONFS_ETH
+   NULL,
+#endif
+
+#ifdef CONFIG_USB_FUNCTIONFS_GENERIC
+   NULL,
+#endif
+};
+
+#define N_CONF ARRAY_SIZE(f_ffs)
 
 static int __init gfs_init(void)
 {
+   struct f_fs_opts *opts;
int i;
int ret = 0;
 
@@ -190,38 +203,53 @@ static int __init gfs_init(void)
func_num = 1;
}
 
-   ffs_tab = kcalloc(func_num, sizeof(*ffs_tab), GFP_KERNEL);
-   if (!ffs_tab)
-   return -ENOMEM;
+   /*
+* Allocate in one chunk for easier maintenance
+*/
+   f_ffs[0] = kcalloc(func_num * N_CONF, sizeof(*f_ffs), GFP_KERNEL);
+   if (!f_ffs[0]) {
+   ret = -ENOMEM;
+   goto no_func;
+   }
+   for (i = 1; i  N_CONF; ++i)
+   f_ffs[i] = f_ffs[0] + i * func_num;
+
+   fi_ffs = kcalloc(func_num, sizeof(*fi_ffs), GFP_KERNEL);
+   if (!fi_ffs) {
+   ret = -ENOMEM;
+   goto no_func;
+   }
 
for (i = 0; i  func_num; i++) {
-   ffs_dev_lock();
-   ffs_tab[i] = ffs_alloc_dev();
-   ffs_dev_unlock();
-   if (IS_ERR(ffs_tab[i])) {
-   ret = PTR_ERR(ffs_tab[i]);
+   fi_ffs[i] = usb_get_function_instance(ffs);
+   if (IS_ERR(fi_ffs[i])) {
+   ret = PTR_ERR(fi_ffs[i]);
--i;
goto no_dev;
}
+   opts = to_f_fs_opts(fi_ffs[i]);
if (gfs_single_func)
-   ret = ffs_single_dev(ffs_tab[i]);
+   ret = ffs_single_dev(opts-dev);
else
-   ret = ffs_name_dev(ffs_tab[i], func_names[i]);
+   ret = ffs_name_dev(opts-dev, func_names[i]);
if (ret)
goto no_dev;
-   ffs_tab[i]-ffs_ready_callback = 

Re: [PATCH v5 14/16] usb/gadget: g_ffs: convert to new interface of f_fs

2013-12-03 Thread Michal Nazarewicz
On Tue, Dec 03 2013, Andrzej Pietrasiewicz wrote:
 Prepare for configfs integration. Use the new interface so that f_fs can be
 made a module.

 Signed-off-by: Andrzej Pietrasiewicz andrze...@samsung.com
 Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com

Acked-by: Michal Nazarewicz min...@mina86.com

OK, now there should by my acked-by for all the patches in this series. ^_^

 ---
  drivers/usb/gadget/Kconfig |1 +
  drivers/usb/gadget/g_ffs.c |  151 +++
  2 files changed, 96 insertions(+), 56 deletions(-)

-- 
Best regards, _ _
.o. | Liege of Serenely Enlightened Majesty of  o' \,=./ `o
..o | Computer Science,  Michał “mina86” Nazarewicz(o o)
ooo +--m...@google.com--xmpp:min...@jabber.org--ooO--(_)--Ooo--


signature.asc
Description: PGP signature