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/ncm.c   |   57 +++++++++++++++++++++++++++-----------------
 2 files changed, 36 insertions(+), 22 deletions(-)

diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig
index 276b1ba..1571f27 100644
--- a/drivers/usb/gadget/Kconfig
+++ b/drivers/usb/gadget/Kconfig
@@ -686,6 +686,7 @@ config USB_G_NCM
        depends on NET
        select USB_LIBCOMPOSITE
        select USB_U_ETHER
+       select USB_F_NCM
        select CRC32
        help
          This driver implements USB CDC NCM subclass standard. NCM is
diff --git a/drivers/usb/gadget/ncm.c b/drivers/usb/gadget/ncm.c
index 539a06e..236bdae 100644
--- a/drivers/usb/gadget/ncm.c
+++ b/drivers/usb/gadget/ncm.c
@@ -24,23 +24,12 @@
 #include <linux/usb/composite.h>
 
 #include "u_ether.h"
+#include "u_ncm.h"
 
 #define DRIVER_DESC            "NCM Gadget"
 
 /*-------------------------------------------------------------------------*/
 
-/*
- * 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.
- */
-#define USB_FNCM_INCLUDED
-#include "f_ncm.c"
-
-/*-------------------------------------------------------------------------*/
-
 /* DO NOT REUSE THESE IDs with a protocol-incompatible driver!!  Ever!!
  * Instead:  allocate your own, using normal USB-IF procedures.
  */
@@ -125,13 +114,15 @@ static struct usb_gadget_strings *dev_strings[] = {
        NULL,
 };
 
-struct eth_dev *the_dev;
-static u8 hostaddr[ETH_ALEN];
+static struct usb_function_instance *f_ncm_inst;
+static struct usb_function *f_ncm;
 
 /*-------------------------------------------------------------------------*/
 
 static int __init ncm_do_config(struct usb_configuration *c)
 {
+       int status;
+
        /* FIXME alloc iConfiguration string, set it in c->strings */
 
        if (gadget_is_otg(c->cdev->gadget)) {
@@ -139,7 +130,19 @@ static int __init ncm_do_config(struct usb_configuration 
*c)
                c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
        }
 
-       return ncm_bind_config(c, hostaddr, the_dev);
+       f_ncm = usb_get_function(f_ncm_inst);
+       if (IS_ERR(f_ncm)) {
+               status = PTR_ERR(f_ncm);
+               return status;
+       }
+
+       status = usb_add_function(c, f_ncm);
+       if (status < 0) {
+               usb_put_function(f_ncm);
+               return status;
+       }
+
+       return 0;
 }
 
 static struct usb_configuration ncm_config_driver = {
@@ -155,13 +158,20 @@ static struct usb_configuration ncm_config_driver = {
 static int __init gncm_bind(struct usb_composite_dev *cdev)
 {
        struct usb_gadget       *gadget = cdev->gadget;
+       struct f_ncm_opts       *ncm_opts;
        int                     status;
 
-       /* set up network link layer */
-       the_dev = gether_setup(cdev->gadget, dev_addr, host_addr, hostaddr,
-                              qmult);
-       if (IS_ERR(the_dev))
-               return PTR_ERR(the_dev);
+       f_ncm_inst = usb_get_function_instance("ncm");
+       if (IS_ERR(f_ncm_inst))
+               return PTR_ERR(f_ncm_inst);
+
+       ncm_opts = container_of(f_ncm_inst, struct f_ncm_opts, func_inst);
+       status = gether_set_dev_addr(ncm_opts->net, dev_addr);
+       if (status < 0)
+               goto fail;
+
+       gether_set_host_addr(ncm_opts->net, host_addr, ncm_opts->ethaddr);
+       gether_set_qmult(ncm_opts->net, qmult);
 
        /* Allocate string descriptor numbers ... note that string
         * contents can be overridden by the composite_dev glue.
@@ -184,13 +194,16 @@ static int __init gncm_bind(struct usb_composite_dev 
*cdev)
        return 0;
 
 fail:
-       gether_cleanup(the_dev);
+       usb_put_function_instance(f_ncm_inst);
        return status;
 }
 
 static int __exit gncm_unbind(struct usb_composite_dev *cdev)
 {
-       gether_cleanup(the_dev);
+       if (!IS_ERR_OR_NULL(f_ncm))
+               usb_put_function(f_ncm);
+       if (!IS_ERR_OR_NULL(f_ncm_inst))
+               usb_put_function_instance(f_ncm_inst);
        return 0;
 }
 
-- 
1.7.0.4

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to