Converting rndis to the new function interface requires converting
the USB rndis' function code and its users.
This patch converts the f_rndis.c to the new function interface.
The file is now compiled into a separate f_rndis_usb.ko module.
The old function interface is provided by means of a preprocessor
conditional directives. After all users are converted, the old interface
can be removed.

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

---
 drivers/usb/gadget/Kconfig   |    3 +
 drivers/usb/gadget/Makefile  |    2 +
 drivers/usb/gadget/ether.c   |    1 +
 drivers/usb/gadget/f_rndis.c |  158 ++++++++++++++++++++++++++++++++++--------
 drivers/usb/gadget/g_ffs.c   |    1 +
 drivers/usb/gadget/multi.c   |    1 +
 drivers/usb/gadget/u_rndis.h |   29 ++++++++
 7 files changed, 167 insertions(+), 28 deletions(-)
 create mode 100644 drivers/usb/gadget/u_rndis.h

diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig
index d02547e..4dc6d66 100644
--- a/drivers/usb/gadget/Kconfig
+++ b/drivers/usb/gadget/Kconfig
@@ -531,6 +531,9 @@ config USB_F_ECM
 config USB_F_SUBSET
        tristate
 
+config USB_F_RNDIS
+       tristate
+
 choice
        tristate "USB Gadget Drivers"
        default USB_ETH
diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile
index ddd1706..6f433fa 100644
--- a/drivers/usb/gadget/Makefile
+++ b/drivers/usb/gadget/Makefile
@@ -94,3 +94,5 @@ usb_f_ecm-y                   := f_ecm.o
 obj-$(CONFIG_USB_F_ECM)                += usb_f_ecm.o
 usb_f_ecm_subset-y             := f_subset.o
 obj-$(CONFIG_USB_F_ECM)                += usb_f_ecm_subset.o
+usb_f_rndis-y                  := f_rndis.o
+obj-$(CONFIG_USB_F_RNDIS)      += usb_f_rndis.o
diff --git a/drivers/usb/gadget/ether.c b/drivers/usb/gadget/ether.c
index 754b300..ebe8323 100644
--- a/drivers/usb/gadget/ether.c
+++ b/drivers/usb/gadget/ether.c
@@ -105,6 +105,7 @@ static inline bool has_rndis(void)
  * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
  */
 #ifdef USB_ETH_RNDIS
+#define USB_FRNDIS_INCLUDED
 #include "f_rndis.c"
 #include "rndis.h"
 #endif
diff --git a/drivers/usb/gadget/f_rndis.c b/drivers/usb/gadget/f_rndis.c
index 970c905..08bcbf4 100644
--- a/drivers/usb/gadget/f_rndis.c
+++ b/drivers/usb/gadget/f_rndis.c
@@ -17,15 +17,16 @@
 
 #include <linux/slab.h>
 #include <linux/kernel.h>
+#include <linux/module.h>
 #include <linux/device.h>
 #include <linux/etherdevice.h>
 
 #include <linux/atomic.h>
 
 #include "u_ether.h"
+#include "u_rndis.h"
 #include "rndis.h"
 
-
 /*
  * This function is an RNDIS Ethernet port -- a Microsoft protocol that's
  * been promoted instead of the standard CDC Ethernet.  The published RNDIS
@@ -656,6 +657,13 @@ static void rndis_close(struct gether *geth)
 
 /*-------------------------------------------------------------------------*/
 
+/* Some controllers can't support RNDIS ... */
+static inline bool can_support_rndis(struct usb_configuration *c)
+{
+       /* everything else is *presumably* fine */
+       return true;
+}
+
 /* ethernet function driver setup/binding */
 
 static int
@@ -666,6 +674,32 @@ rndis_bind(struct usb_configuration *c, struct 
usb_function *f)
        int                     status;
        struct usb_ep           *ep;
 
+#ifndef USB_FRNDIS_INCLUDED
+       struct f_rndis_opts *rndis_opts;
+
+       if (!can_support_rndis(c))
+               return -EINVAL;
+
+       rndis_opts = container_of(f->fi, struct f_rndis_opts, func_inst);
+       if (!rndis_opts->ethaddr)
+               return -EINVAL;
+#endif
+
+       if (rndis_string_defs[0].id == 0) {
+               /* ... and setup RNDIS itself */
+               status = rndis_init();
+               if (status < 0)
+                       return status;
+
+               status = usb_string_ids_tab(c->cdev, rndis_string_defs);
+               if (status)
+                       return status;
+
+               rndis_control_intf.iInterface = rndis_string_defs[0].id;
+               rndis_data_intf.iInterface = rndis_string_defs[1].id;
+               rndis_iad_descriptor.iFunction = rndis_string_defs[2].id;
+       }
+
        /* allocate instance-specific interface IDs */
        status = usb_interface_id(c, f);
        if (status < 0)
@@ -788,8 +822,10 @@ fail:
        return status;
 }
 
+#ifdef USB_FRNDIS_INCLUDED
+
 static void
-rndis_unbind(struct usb_configuration *c, struct usb_function *f)
+rndis_old_unbind(struct usb_configuration *c, struct usb_function *f)
 {
        struct f_rndis          *rndis = func_to_rndis(f);
 
@@ -805,13 +841,6 @@ rndis_unbind(struct usb_configuration *c, struct 
usb_function *f)
        kfree(rndis);
 }
 
-/* Some controllers can't support RNDIS ... */
-static inline bool can_support_rndis(struct usb_configuration *c)
-{
-       /* everything else is *presumably* fine */
-       return true;
-}
-
 int
 rndis_bind_config_vendor(struct usb_configuration *c, u8 ethaddr[ETH_ALEN],
                u32 vendorID, const char *manufacturer, struct eth_dev *dev)
@@ -819,24 +848,6 @@ rndis_bind_config_vendor(struct usb_configuration *c, u8 
ethaddr[ETH_ALEN],
        struct f_rndis  *rndis;
        int             status;
 
-       if (!can_support_rndis(c) || !ethaddr)
-               return -EINVAL;
-
-       if (rndis_string_defs[0].id == 0) {
-               /* ... and setup RNDIS itself */
-               status = rndis_init();
-               if (status < 0)
-                       return status;
-
-               status = usb_string_ids_tab(c->cdev, rndis_string_defs);
-               if (status)
-                       return status;
-
-               rndis_control_intf.iInterface = rndis_string_defs[0].id;
-               rndis_data_intf.iInterface = rndis_string_defs[1].id;
-               rndis_iad_descriptor.iFunction = rndis_string_defs[2].id;
-       }
-
        /* allocate and initialize one new instance */
        status = -ENOMEM;
        rndis = kzalloc(sizeof *rndis, GFP_KERNEL);
@@ -860,7 +871,7 @@ rndis_bind_config_vendor(struct usb_configuration *c, u8 
ethaddr[ETH_ALEN],
        rndis->port.func.strings = rndis_strings;
        /* descriptors are per-instance copies */
        rndis->port.func.bind = rndis_bind;
-       rndis->port.func.unbind = rndis_unbind;
+       rndis->port.func.unbind = rndis_old_unbind;
        rndis->port.func.set_alt = rndis_set_alt;
        rndis->port.func.setup = rndis_setup;
        rndis->port.func.disable = rndis_disable;
@@ -873,3 +884,94 @@ fail:
        }
        return status;
 }
+
+#else
+
+static void rndis_free_inst(struct usb_function_instance *f)
+{
+       struct f_rndis_opts *opts;
+
+       opts = container_of(f, struct f_rndis_opts, func_inst);
+       kfree(opts);
+}
+
+static struct usb_function_instance *rndis_alloc_inst(void)
+{
+       struct f_rndis_opts *opts;
+
+       opts = kzalloc(sizeof(*opts), GFP_KERNEL);
+       if (!opts)
+               return ERR_PTR(-ENOMEM);
+
+       opts->func_inst.free_func_inst = rndis_free_inst;
+
+       return &opts->func_inst;
+}
+
+static void rndis_free(struct usb_function *f)
+{
+       struct f_rndis *rndis;
+
+       rndis = func_to_rndis(f);
+       kfree(rndis);
+}
+
+static void rndis_unbind(struct usb_configuration *c, struct usb_function *f)
+{
+       struct f_rndis          *rndis = func_to_rndis(f);
+
+       rndis_deregister(rndis->config);
+       rndis_exit();
+
+       rndis_string_defs[0].id = 0;
+       usb_free_all_descriptors(f);
+
+       kfree(rndis->notify_req->buf);
+       usb_ep_free_request(rndis->notify, rndis->notify_req);
+}
+
+struct usb_function *rndis_alloc(struct usb_function_instance *fi)
+{
+       struct f_rndis  *rndis;
+       struct f_rndis_opts *opts;
+
+       /* allocate and initialize one new instance */
+       rndis = kzalloc(sizeof(*rndis), GFP_KERNEL);
+       if (!rndis) {
+               rndis_exit();
+               return ERR_PTR(-ENOMEM);
+       }
+
+       opts = container_of(fi, struct f_rndis_opts, func_inst);
+
+       memcpy(rndis->ethaddr, opts->ethaddr, ETH_ALEN);
+       rndis->vendorID = opts->vendor_id;
+       rndis->manufacturer = opts->manufacturer;
+
+       rndis->port.ioport = opts->dev;
+       /* RNDIS activates when the host changes this filter */
+       rndis->port.cdc_filter = 0;
+
+       /* RNDIS has special (and complex) framing */
+       rndis->port.header_len = sizeof(struct rndis_packet_msg_type);
+       rndis->port.wrap = rndis_add_header;
+       rndis->port.unwrap = rndis_rm_hdr;
+
+       rndis->port.func.name = "rndis";
+       rndis->port.func.strings = rndis_strings;
+       /* descriptors are per-instance copies */
+       rndis->port.func.bind = rndis_bind;
+       rndis->port.func.unbind = rndis_unbind;
+       rndis->port.func.set_alt = rndis_set_alt;
+       rndis->port.func.setup = rndis_setup;
+       rndis->port.func.disable = rndis_disable;
+       rndis->port.func.free_func = rndis_free;
+
+       return &rndis->port.func;
+}
+
+DECLARE_USB_FUNCTION_INIT(rndis, rndis_alloc_inst, rndis_alloc);
+MODULE_LICENSE("GPL");
+MODULE_AUTHOR("David Brownell");
+
+#endif
diff --git a/drivers/usb/gadget/g_ffs.c b/drivers/usb/gadget/g_ffs.c
index 8d253ef..50c52c4 100644
--- a/drivers/usb/gadget/g_ffs.c
+++ b/drivers/usb/gadget/g_ffs.c
@@ -31,6 +31,7 @@
 #  include "u_ecm.h"
 #  include "u_gether.h"
 #  ifdef USB_ETH_RNDIS
+#    define USB_FRNDIS_INCLUDED
 #    include "f_rndis.c"
 #    include "rndis.h"
 #  endif
diff --git a/drivers/usb/gadget/multi.c b/drivers/usb/gadget/multi.c
index 9f63fdf..7404d53 100644
--- a/drivers/usb/gadget/multi.c
+++ b/drivers/usb/gadget/multi.c
@@ -45,6 +45,7 @@ MODULE_LICENSE("GPL");
 
 #include "u_ecm.h"
 #ifdef USB_ETH_RNDIS
+#  define USB_FRNDIS_INCLUDED
 #  include "f_rndis.c"
 #  include "rndis.h"
 #endif
diff --git a/drivers/usb/gadget/u_rndis.h b/drivers/usb/gadget/u_rndis.h
new file mode 100644
index 0000000..858cf6c
--- /dev/null
+++ b/drivers/usb/gadget/u_rndis.h
@@ -0,0 +1,29 @@
+/*
+ * u_rndis.h
+ *
+ * Utility definitions for the subset function
+ *
+ * Copyright (c) 2013 Samsung Electronics Co., Ltd.
+ *             http://www.samsung.com
+ *
+ * Author: Andrzej Pietrasiewicz <andrze...@samsung.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#ifndef U_RNDIS_H
+#define U_RNDIS_H
+
+#include <linux/usb/composite.h>
+
+struct f_rndis_opts {
+       struct usb_function_instance    func_inst;
+       u8                              *ethaddr;
+       u32                             vendor_id;
+       const char                      *manufacturer;
+       struct eth_dev                  *dev;
+};
+
+#endif /* U_RNDIS_H */
-- 
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