123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- /*
- * g_ffs.c -- user mode file system API for USB composite function controllers
- *
- * Copyright (C) 2010 Samsung Electronics
- * Author: Michal Nazarewicz <m.nazarewicz@samsung.com>
- *
- * 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.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
- #define pr_fmt(fmt) "g_ffs: " fmt
- #include <linux/module.h>
- #include <linux/utsname.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.
- */
- #include "composite.c"
- #include "usbstring.c"
- #include "config.c"
- #include "epautoconf.c"
- #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
- # include "f_ecm.c"
- # include "f_subset.c"
- # ifdef USB_ETH_RNDIS
- # include "f_rndis.c"
- # include "rndis.c"
- # endif
- # include "u_ether.c"
- static u8 gfs_hostaddr[ETH_ALEN];
- # ifdef CONFIG_USB_FUNCTIONFS_ETH
- static int eth_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN]);
- # endif
- #else
- # define gether_cleanup() do { } while (0)
- # define gether_setup(gadget, hostaddr) ((int)0)
- # define gfs_hostaddr NULL
- #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");
- #define GFS_VENDOR_ID 0x1d6b /* Linux Foundation */
- #define GFS_PRODUCT_ID 0x0105 /* FunctionFS Gadget */
- 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,
- .idVendor = cpu_to_le16(GFS_VENDOR_ID),
- .idProduct = cpu_to_le16(GFS_PRODUCT_ID),
- };
- 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");
- 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,
- /*
- * REVISIT SRP-only hardware is possible, although
- * it would not be called "OTG" ...
- */
- .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
- },
- NULL
- };
- /* String IDs are assigned dynamically */
- static struct usb_string gfs_strings[] = {
- #ifdef CONFIG_USB_FUNCTIONFS_RNDIS
- { .s = "FunctionFS + RNDIS" },
- #endif
- #ifdef CONFIG_USB_FUNCTIONFS_ETH
- { .s = "FunctionFS + ECM" },
- #endif
- #ifdef CONFIG_USB_FUNCTIONFS_GENERIC
- { .s = "FunctionFS" },
- #endif
- { } /* end of list */
- };
- static struct usb_gadget_strings *gfs_dev_strings[] = {
- &(struct usb_gadget_strings) {
- .language = 0x0409, /* en-us */
- .strings = gfs_strings,
- },
- NULL,
- };
- struct gfs_configuration {
- struct usb_configuration c;
- int (*eth)(struct usb_configuration *c, u8 *ethaddr);
- } gfs_configurations[] = {
- #ifdef CONFIG_USB_FUNCTIONFS_RNDIS
- {
- .eth = rndis_bind_config,
- },
- #endif
- #ifdef CONFIG_USB_FUNCTIONFS_ETH
- {
- .eth = eth_bind_config,
- },
- #endif
- #ifdef CONFIG_USB_FUNCTIONFS_GENERIC
- {
- },
- #endif
- };
- 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 struct usb_composite_driver gfs_driver = {
- .name = DRIVER_NAME,
- .dev = &gfs_dev_desc,
- .strings = gfs_dev_strings,
- .unbind = gfs_unbind,
- .iProduct = DRIVER_DESC,
- };
- static struct ffs_data *gfs_ffs_data;
- static unsigned long gfs_registered;
- static int gfs_init(void)
- {
- ENTER();
- return functionfs_init();
- }
- module_init(gfs_init);
- static void gfs_exit(void)
- {
- ENTER();
- if (test_and_clear_bit(0, &gfs_registered))
- usb_composite_unregister(&gfs_driver);
- functionfs_cleanup();
- }
- module_exit(gfs_exit);
- static int functionfs_ready_callback(struct ffs_data *ffs)
- {
- int ret;
- ENTER();
- if (WARN_ON(test_and_set_bit(0, &gfs_registered)))
- return -EBUSY;
- gfs_ffs_data = ffs;
- ret = usb_composite_probe(&gfs_driver, gfs_bind);
- if (unlikely(ret < 0))
- clear_bit(0, &gfs_registered);
- return ret;
- }
- static void functionfs_closed_callback(struct ffs_data *ffs)
- {
- ENTER();
- if (test_and_clear_bit(0, &gfs_registered))
- usb_composite_unregister(&gfs_driver);
- }
- static int functionfs_check_dev_callback(const char *dev_name)
- {
- return 0;
- }
- static int gfs_bind(struct usb_composite_dev *cdev)
- {
- int ret, i;
- ENTER();
- if (WARN_ON(!gfs_ffs_data))
- return -ENODEV;
- ret = gether_setup(cdev->gadget, gfs_hostaddr);
- if (unlikely(ret < 0))
- goto error_quick;
- ret = usb_string_ids_tab(cdev, gfs_strings);
- if (unlikely(ret < 0))
- goto error;
- ret = functionfs_bind(gfs_ffs_data, cdev);
- if (unlikely(ret < 0))
- goto error;
- for (i = 0; i < ARRAY_SIZE(gfs_configurations); ++i) {
- struct gfs_configuration *c = gfs_configurations + i;
- c->c.label = gfs_strings[i].s;
- c->c.iConfiguration = gfs_strings[i].id;
- c->c.bConfigurationValue = 1 + i;
- c->c.bmAttributes = USB_CONFIG_ATT_SELFPOWER;
- ret = usb_add_config(cdev, &c->c, gfs_do_config);
- if (unlikely(ret < 0))
- goto error_unbind;
- }
- return 0;
- error_unbind:
- functionfs_unbind(gfs_ffs_data);
- error:
- gether_cleanup();
- error_quick:
- gfs_ffs_data = NULL;
- return ret;
- }
- static int gfs_unbind(struct usb_composite_dev *cdev)
- {
- ENTER();
- /*
- * We may have been called in an error recovery from
- * composite_bind() after gfs_unbind() failure so we need to
- * check if gfs_ffs_data is not NULL since gfs_bind() handles
- * all error recovery itself. I'd rather we werent called
- * from composite on orror recovery, but what you're gonna
- * do...?
- */
- if (gfs_ffs_data) {
- gether_cleanup();
- functionfs_unbind(gfs_ffs_data);
- gfs_ffs_data = NULL;
- }
- return 0;
- }
- static int gfs_do_config(struct usb_configuration *c)
- {
- struct gfs_configuration *gc =
- container_of(c, struct gfs_configuration, c);
- int ret;
- if (WARN_ON(!gfs_ffs_data))
- return -ENODEV;
- if (gadget_is_otg(c->cdev->gadget)) {
- c->descriptors = gfs_otg_desc;
- c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
- }
- if (gc->eth) {
- ret = gc->eth(c, gfs_hostaddr);
- if (unlikely(ret < 0))
- return ret;
- }
- ret = functionfs_bind_config(c->cdev, c, gfs_ffs_data);
- if (unlikely(ret < 0))
- return ret;
- /*
- * After previous do_configs there may be some invalid
- * 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
- * c->interface array. We need to make sure this is true.
- */
- if (c->next_interface_id < ARRAY_SIZE(c->interface))
- c->interface[c->next_interface_id] = NULL;
- return 0;
- }
- #ifdef CONFIG_USB_FUNCTIONFS_ETH
- static int eth_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN])
- {
- return can_support_ecm(c->cdev->gadget)
- ? ecm_bind_config(c, ethaddr)
- : geth_bind_config(c, ethaddr);
- }
- #endif
|