Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 1 | /* |
| 2 | * ncm.c -- NCM gadget driver |
| 3 | * |
| 4 | * Copyright (C) 2010 Nokia Corporation |
| 5 | * Contact: Yauheni Kaliuta <yauheni.kaliuta@nokia.com> |
| 6 | * |
| 7 | * The driver borrows from ether.c which is: |
| 8 | * |
| 9 | * Copyright (C) 2003-2005,2008 David Brownell |
| 10 | * Copyright (C) 2003-2004 Robert Schwebel, Benedikt Spranger |
| 11 | * Copyright (C) 2008 Nokia Corporation |
| 12 | * |
| 13 | * This program is free software; you can redistribute it and/or modify |
| 14 | * it under the terms of the GNU General Public License as published by |
| 15 | * the Free Software Foundation; either version 2 of the License, or |
| 16 | * (at your option) any later version. |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 17 | */ |
| 18 | |
| 19 | /* #define DEBUG */ |
| 20 | /* #define VERBOSE_DEBUG */ |
| 21 | |
| 22 | #include <linux/kernel.h> |
Sebastian Andrzej Siewior | 721e2e9 | 2012-09-06 20:11:27 +0200 | [diff] [blame] | 23 | #include <linux/module.h> |
| 24 | #include <linux/usb/composite.h> |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 25 | |
| 26 | #include "u_ether.h" |
| 27 | |
| 28 | #define DRIVER_DESC "NCM Gadget" |
| 29 | |
| 30 | /*-------------------------------------------------------------------------*/ |
| 31 | |
| 32 | /* |
| 33 | * Kbuild is not very cooperative with respect to linking separately |
| 34 | * compiled library objects into one module. So for now we won't use |
| 35 | * separate compilation ... ensuring init/exit sections work to shrink |
| 36 | * the runtime footprint, and giving us at least some parts of what |
| 37 | * a "gcc --combine ... part1.c part2.c part3.c ... " build would. |
| 38 | */ |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 39 | #include "f_ncm.c" |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 40 | |
| 41 | /*-------------------------------------------------------------------------*/ |
| 42 | |
| 43 | /* DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!! |
| 44 | * Instead: allocate your own, using normal USB-IF procedures. |
| 45 | */ |
| 46 | |
| 47 | /* Thanks to NetChip Technologies for donating this product ID. |
| 48 | * It's for devices with only CDC Ethernet configurations. |
| 49 | */ |
| 50 | #define CDC_VENDOR_NUM 0x0525 /* NetChip */ |
| 51 | #define CDC_PRODUCT_NUM 0xa4a1 /* Linux-USB Ethernet Gadget */ |
| 52 | |
| 53 | /*-------------------------------------------------------------------------*/ |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 54 | USB_GADGET_COMPOSITE_OPTIONS(); |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 55 | |
Andrzej Pietrasiewicz | f1a1823 | 2013-05-23 09:22:03 +0200 | [diff] [blame^] | 56 | USB_ETHERNET_MODULE_PARAMETERS(); |
| 57 | |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 58 | static struct usb_device_descriptor device_desc = { |
| 59 | .bLength = sizeof device_desc, |
| 60 | .bDescriptorType = USB_DT_DEVICE, |
| 61 | |
| 62 | .bcdUSB = cpu_to_le16 (0x0200), |
| 63 | |
| 64 | .bDeviceClass = USB_CLASS_COMM, |
| 65 | .bDeviceSubClass = 0, |
| 66 | .bDeviceProtocol = 0, |
| 67 | /* .bMaxPacketSize0 = f(hardware) */ |
| 68 | |
| 69 | /* Vendor and product id defaults change according to what configs |
| 70 | * we support. (As does bNumConfigurations.) These values can |
| 71 | * also be overridden by module parameters. |
| 72 | */ |
| 73 | .idVendor = cpu_to_le16 (CDC_VENDOR_NUM), |
| 74 | .idProduct = cpu_to_le16 (CDC_PRODUCT_NUM), |
| 75 | /* .bcdDevice = f(hardware) */ |
| 76 | /* .iManufacturer = DYNAMIC */ |
| 77 | /* .iProduct = DYNAMIC */ |
| 78 | /* NO SERIAL NUMBER */ |
| 79 | .bNumConfigurations = 1, |
| 80 | }; |
| 81 | |
| 82 | static struct usb_otg_descriptor otg_descriptor = { |
| 83 | .bLength = sizeof otg_descriptor, |
| 84 | .bDescriptorType = USB_DT_OTG, |
| 85 | |
| 86 | /* REVISIT SRP-only hardware is possible, although |
| 87 | * it would not be called "OTG" ... |
| 88 | */ |
| 89 | .bmAttributes = USB_OTG_SRP | USB_OTG_HNP, |
| 90 | }; |
| 91 | |
| 92 | static const struct usb_descriptor_header *otg_desc[] = { |
| 93 | (struct usb_descriptor_header *) &otg_descriptor, |
| 94 | NULL, |
| 95 | }; |
| 96 | |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 97 | /* string IDs are assigned dynamically */ |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 98 | static struct usb_string strings_dev[] = { |
Sebastian Andrzej Siewior | cc2683c | 2012-09-10 15:01:58 +0200 | [diff] [blame] | 99 | [USB_GADGET_MANUFACTURER_IDX].s = "", |
Sebastian Andrzej Siewior | 276e2e4 | 2012-09-06 20:11:21 +0200 | [diff] [blame] | 100 | [USB_GADGET_PRODUCT_IDX].s = DRIVER_DESC, |
| 101 | [USB_GADGET_SERIAL_IDX].s = "", |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 102 | { } /* end of list */ |
| 103 | }; |
| 104 | |
| 105 | static struct usb_gadget_strings stringtab_dev = { |
| 106 | .language = 0x0409, /* en-us */ |
| 107 | .strings = strings_dev, |
| 108 | }; |
| 109 | |
| 110 | static struct usb_gadget_strings *dev_strings[] = { |
| 111 | &stringtab_dev, |
| 112 | NULL, |
| 113 | }; |
| 114 | |
Sebastian Andrzej Siewior | d6a0143 | 2012-12-23 21:10:12 +0100 | [diff] [blame] | 115 | struct eth_dev *the_dev; |
Andrzej Pietrasiewicz | f1a1823 | 2013-05-23 09:22:03 +0200 | [diff] [blame^] | 116 | static u8 host_mac[ETH_ALEN]; |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 117 | |
| 118 | /*-------------------------------------------------------------------------*/ |
| 119 | |
| 120 | static int __init ncm_do_config(struct usb_configuration *c) |
| 121 | { |
| 122 | /* FIXME alloc iConfiguration string, set it in c->strings */ |
| 123 | |
| 124 | if (gadget_is_otg(c->cdev->gadget)) { |
| 125 | c->descriptors = otg_desc; |
| 126 | c->bmAttributes |= USB_CONFIG_ATT_WAKEUP; |
| 127 | } |
| 128 | |
Andrzej Pietrasiewicz | f1a1823 | 2013-05-23 09:22:03 +0200 | [diff] [blame^] | 129 | return ncm_bind_config(c, host_mac, the_dev); |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | static struct usb_configuration ncm_config_driver = { |
| 133 | /* .label = f(hardware) */ |
| 134 | .label = "CDC Ethernet (NCM)", |
| 135 | .bConfigurationValue = 1, |
| 136 | /* .iConfiguration = DYNAMIC */ |
| 137 | .bmAttributes = USB_CONFIG_ATT_SELFPOWER, |
| 138 | }; |
| 139 | |
| 140 | /*-------------------------------------------------------------------------*/ |
| 141 | |
| 142 | static int __init gncm_bind(struct usb_composite_dev *cdev) |
| 143 | { |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 144 | struct usb_gadget *gadget = cdev->gadget; |
| 145 | int status; |
| 146 | |
| 147 | /* set up network link layer */ |
Andrzej Pietrasiewicz | f1a1823 | 2013-05-23 09:22:03 +0200 | [diff] [blame^] | 148 | the_dev = gether_setup(cdev->gadget, dev_addr, host_addr, host_mac, |
| 149 | qmult); |
Sebastian Andrzej Siewior | d6a0143 | 2012-12-23 21:10:12 +0100 | [diff] [blame] | 150 | if (IS_ERR(the_dev)) |
| 151 | return PTR_ERR(the_dev); |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 152 | |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 153 | /* Allocate string descriptor numbers ... note that string |
| 154 | * contents can be overridden by the composite_dev glue. |
| 155 | */ |
| 156 | |
Sebastian Andrzej Siewior | e1f15cc | 2012-09-06 20:11:16 +0200 | [diff] [blame] | 157 | status = usb_string_ids_tab(cdev, strings_dev); |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 158 | if (status < 0) |
| 159 | goto fail; |
Sebastian Andrzej Siewior | 276e2e4 | 2012-09-06 20:11:21 +0200 | [diff] [blame] | 160 | device_desc.iManufacturer = strings_dev[USB_GADGET_MANUFACTURER_IDX].id; |
| 161 | device_desc.iProduct = strings_dev[USB_GADGET_PRODUCT_IDX].id; |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 162 | |
| 163 | status = usb_add_config(cdev, &ncm_config_driver, |
| 164 | ncm_do_config); |
| 165 | if (status < 0) |
| 166 | goto fail; |
| 167 | |
Sebastian Andrzej Siewior | 7d16e8d | 2012-09-10 15:01:53 +0200 | [diff] [blame] | 168 | usb_composite_overwrite_options(cdev, &coverwrite); |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 169 | dev_info(&gadget->dev, "%s\n", DRIVER_DESC); |
| 170 | |
| 171 | return 0; |
| 172 | |
| 173 | fail: |
Sebastian Andrzej Siewior | d6a0143 | 2012-12-23 21:10:12 +0100 | [diff] [blame] | 174 | gether_cleanup(the_dev); |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 175 | return status; |
| 176 | } |
| 177 | |
| 178 | static int __exit gncm_unbind(struct usb_composite_dev *cdev) |
| 179 | { |
Sebastian Andrzej Siewior | d6a0143 | 2012-12-23 21:10:12 +0100 | [diff] [blame] | 180 | gether_cleanup(the_dev); |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 181 | return 0; |
| 182 | } |
| 183 | |
Sebastian Andrzej Siewior | c2ec75c | 2012-09-06 20:11:03 +0200 | [diff] [blame] | 184 | static __refdata struct usb_composite_driver ncm_driver = { |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 185 | .name = "g_ncm", |
| 186 | .dev = &device_desc, |
| 187 | .strings = dev_strings, |
Tatyana Brokhman | 35a0e0b | 2011-06-29 16:41:49 +0300 | [diff] [blame] | 188 | .max_speed = USB_SPEED_HIGH, |
Sebastian Andrzej Siewior | 03e42bd | 2012-09-06 20:11:04 +0200 | [diff] [blame] | 189 | .bind = gncm_bind, |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 190 | .unbind = __exit_p(gncm_unbind), |
| 191 | }; |
| 192 | |
| 193 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 194 | MODULE_AUTHOR("Yauheni Kaliuta"); |
| 195 | MODULE_LICENSE("GPL"); |
| 196 | |
| 197 | static int __init init(void) |
| 198 | { |
Sebastian Andrzej Siewior | 03e42bd | 2012-09-06 20:11:04 +0200 | [diff] [blame] | 199 | return usb_composite_probe(&ncm_driver); |
Yauheni Kaliuta | 6c34d28 | 2010-12-08 13:12:06 +0200 | [diff] [blame] | 200 | } |
| 201 | module_init(init); |
| 202 | |
| 203 | static void __exit cleanup(void) |
| 204 | { |
| 205 | usb_composite_unregister(&ncm_driver); |
| 206 | } |
| 207 | module_exit(cleanup); |