Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1 | /* |
| 2 | * cdc_ncm.c |
| 3 | * |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 4 | * Copyright (C) ST-Ericsson 2010-2012 |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 5 | * Contact: Alexey Orishko <alexey.orishko@stericsson.com> |
| 6 | * Original author: Hans Petter Selasky <hans.petter.selasky@stericsson.com> |
| 7 | * |
| 8 | * USB Host Driver for Network Control Model (NCM) |
| 9 | * http://www.usb.org/developers/devclass_docs/NCM10.zip |
| 10 | * |
| 11 | * The NCM encoding, decoding and initialization logic |
| 12 | * derives from FreeBSD 8.x. if_cdce.c and if_cdcereg.h |
| 13 | * |
| 14 | * This software is available to you under a choice of one of two |
| 15 | * licenses. You may choose this file to be licensed under the terms |
| 16 | * of the GNU General Public License (GPL) Version 2 or the 2-clause |
| 17 | * BSD license listed below: |
| 18 | * |
| 19 | * Redistribution and use in source and binary forms, with or without |
| 20 | * modification, are permitted provided that the following conditions |
| 21 | * are met: |
| 22 | * 1. Redistributions of source code must retain the above copyright |
| 23 | * notice, this list of conditions and the following disclaimer. |
| 24 | * 2. Redistributions in binary form must reproduce the above copyright |
| 25 | * notice, this list of conditions and the following disclaimer in the |
| 26 | * documentation and/or other materials provided with the distribution. |
| 27 | * |
| 28 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 29 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 30 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 31 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 32 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 33 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 34 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 35 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 36 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 37 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 38 | * SUCH DAMAGE. |
| 39 | */ |
| 40 | |
| 41 | #include <linux/module.h> |
| 42 | #include <linux/init.h> |
| 43 | #include <linux/netdevice.h> |
| 44 | #include <linux/ctype.h> |
| 45 | #include <linux/ethtool.h> |
| 46 | #include <linux/workqueue.h> |
| 47 | #include <linux/mii.h> |
| 48 | #include <linux/crc32.h> |
| 49 | #include <linux/usb.h> |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 50 | #include <linux/hrtimer.h> |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 51 | #include <linux/atomic.h> |
| 52 | #include <linux/usb/usbnet.h> |
| 53 | #include <linux/usb/cdc.h> |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 54 | #include <linux/usb/cdc_ncm.h> |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 55 | |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 56 | #define DRIVER_VERSION "14-Mar-2012" |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 57 | |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 58 | static void cdc_ncm_txpath_bh(unsigned long param); |
| 59 | static void cdc_ncm_tx_timeout_start(struct cdc_ncm_ctx *ctx); |
| 60 | static enum hrtimer_restart cdc_ncm_tx_timer_cb(struct hrtimer *hr_timer); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 61 | static struct usb_driver cdc_ncm_driver; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 62 | |
| 63 | static void |
| 64 | cdc_ncm_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info) |
| 65 | { |
| 66 | struct usbnet *dev = netdev_priv(net); |
| 67 | |
| 68 | strncpy(info->driver, dev->driver_name, sizeof(info->driver)); |
| 69 | strncpy(info->version, DRIVER_VERSION, sizeof(info->version)); |
| 70 | strncpy(info->fw_version, dev->driver_info->description, |
| 71 | sizeof(info->fw_version)); |
| 72 | usb_make_path(dev->udev, info->bus_info, sizeof(info->bus_info)); |
| 73 | } |
| 74 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 75 | static u8 cdc_ncm_setup(struct cdc_ncm_ctx *ctx) |
| 76 | { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 77 | u32 val; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 78 | u8 flags; |
| 79 | u8 iface_no; |
| 80 | int err; |
Greg Suarez | 2d1c431 | 2012-10-22 10:56:30 +0000 | [diff] [blame] | 81 | int eth_hlen; |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 82 | u16 ntb_fmt_supported; |
Greg Suarez | 2d1c431 | 2012-10-22 10:56:30 +0000 | [diff] [blame] | 83 | u32 min_dgram_size; |
| 84 | u32 min_hdr_size; |
Ming Lei | 90b8b03 | 2012-10-24 19:46:56 +0000 | [diff] [blame] | 85 | struct usbnet *dev = netdev_priv(ctx->netdev); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 86 | |
| 87 | iface_no = ctx->control->cur_altsetting->desc.bInterfaceNumber; |
| 88 | |
Ming Lei | 90b8b03 | 2012-10-24 19:46:56 +0000 | [diff] [blame] | 89 | err = usbnet_read_cmd(dev, USB_CDC_GET_NTB_PARAMETERS, |
| 90 | USB_TYPE_CLASS | USB_DIR_IN |
| 91 | |USB_RECIP_INTERFACE, |
| 92 | 0, iface_no, &ctx->ncm_parm, |
| 93 | sizeof(ctx->ncm_parm)); |
Giuseppe Scrivano | 36c3541 | 2011-08-03 22:10:29 +0000 | [diff] [blame] | 94 | if (err < 0) { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 95 | pr_debug("failed GET_NTB_PARAMETERS\n"); |
| 96 | return 1; |
| 97 | } |
| 98 | |
| 99 | /* read correct set of parameters according to device mode */ |
| 100 | ctx->rx_max = le32_to_cpu(ctx->ncm_parm.dwNtbInMaxSize); |
| 101 | ctx->tx_max = le32_to_cpu(ctx->ncm_parm.dwNtbOutMaxSize); |
| 102 | ctx->tx_remainder = le16_to_cpu(ctx->ncm_parm.wNdpOutPayloadRemainder); |
| 103 | ctx->tx_modulus = le16_to_cpu(ctx->ncm_parm.wNdpOutDivisor); |
| 104 | ctx->tx_ndp_modulus = le16_to_cpu(ctx->ncm_parm.wNdpOutAlignment); |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 105 | /* devices prior to NCM Errata shall set this field to zero */ |
| 106 | ctx->tx_max_datagrams = le16_to_cpu(ctx->ncm_parm.wNtbOutMaxDatagrams); |
| 107 | ntb_fmt_supported = le16_to_cpu(ctx->ncm_parm.bmNtbFormatsSupported); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 108 | |
Greg Suarez | 2d1c431 | 2012-10-22 10:56:30 +0000 | [diff] [blame] | 109 | eth_hlen = ETH_HLEN; |
| 110 | min_dgram_size = CDC_NCM_MIN_DATAGRAM_SIZE; |
| 111 | min_hdr_size = CDC_NCM_MIN_HDR_SIZE; |
| 112 | if (ctx->mbim_desc != NULL) { |
| 113 | flags = ctx->mbim_desc->bmNetworkCapabilities; |
| 114 | eth_hlen = 0; |
| 115 | min_dgram_size = CDC_MBIM_MIN_DATAGRAM_SIZE; |
| 116 | min_hdr_size = 0; |
| 117 | } else if (ctx->func_desc != NULL) { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 118 | flags = ctx->func_desc->bmNetworkCapabilities; |
Greg Suarez | 2d1c431 | 2012-10-22 10:56:30 +0000 | [diff] [blame] | 119 | } else { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 120 | flags = 0; |
Greg Suarez | 2d1c431 | 2012-10-22 10:56:30 +0000 | [diff] [blame] | 121 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 122 | |
| 123 | pr_debug("dwNtbInMaxSize=%u dwNtbOutMaxSize=%u " |
| 124 | "wNdpOutPayloadRemainder=%u wNdpOutDivisor=%u " |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 125 | "wNdpOutAlignment=%u wNtbOutMaxDatagrams=%u flags=0x%x\n", |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 126 | ctx->rx_max, ctx->tx_max, ctx->tx_remainder, ctx->tx_modulus, |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 127 | ctx->tx_ndp_modulus, ctx->tx_max_datagrams, flags); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 128 | |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 129 | /* max count of tx datagrams */ |
| 130 | if ((ctx->tx_max_datagrams == 0) || |
| 131 | (ctx->tx_max_datagrams > CDC_NCM_DPT_DATAGRAMS_MAX)) |
| 132 | ctx->tx_max_datagrams = CDC_NCM_DPT_DATAGRAMS_MAX; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 133 | |
| 134 | /* verify maximum size of received NTB in bytes */ |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 135 | if (ctx->rx_max < USB_CDC_NCM_NTB_MIN_IN_SIZE) { |
| 136 | pr_debug("Using min receive length=%d\n", |
| 137 | USB_CDC_NCM_NTB_MIN_IN_SIZE); |
| 138 | ctx->rx_max = USB_CDC_NCM_NTB_MIN_IN_SIZE; |
| 139 | } |
| 140 | |
| 141 | if (ctx->rx_max > CDC_NCM_NTB_MAX_SIZE_RX) { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 142 | pr_debug("Using default maximum receive length=%d\n", |
| 143 | CDC_NCM_NTB_MAX_SIZE_RX); |
| 144 | ctx->rx_max = CDC_NCM_NTB_MAX_SIZE_RX; |
| 145 | } |
| 146 | |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 147 | /* inform device about NTB input size changes */ |
| 148 | if (ctx->rx_max != le32_to_cpu(ctx->ncm_parm.dwNtbInMaxSize)) { |
Ming Lei | 90b8b03 | 2012-10-24 19:46:56 +0000 | [diff] [blame] | 149 | __le32 dwNtbInMaxSize = cpu_to_le32(ctx->rx_max); |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 150 | |
Ming Lei | 90b8b03 | 2012-10-24 19:46:56 +0000 | [diff] [blame] | 151 | err = usbnet_write_cmd(dev, USB_CDC_SET_NTB_INPUT_SIZE, |
| 152 | USB_TYPE_CLASS | USB_DIR_OUT |
| 153 | | USB_RECIP_INTERFACE, |
| 154 | 0, iface_no, &dwNtbInMaxSize, 4); |
Giuseppe Scrivano | 36c3541 | 2011-08-03 22:10:29 +0000 | [diff] [blame] | 155 | if (err < 0) |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 156 | pr_debug("Setting NTB Input Size failed\n"); |
| 157 | } |
| 158 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 159 | /* verify maximum size of transmitted NTB in bytes */ |
| 160 | if ((ctx->tx_max < |
Greg Suarez | 2d1c431 | 2012-10-22 10:56:30 +0000 | [diff] [blame] | 161 | (min_hdr_size + min_dgram_size)) || |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 162 | (ctx->tx_max > CDC_NCM_NTB_MAX_SIZE_TX)) { |
| 163 | pr_debug("Using default maximum transmit length=%d\n", |
| 164 | CDC_NCM_NTB_MAX_SIZE_TX); |
| 165 | ctx->tx_max = CDC_NCM_NTB_MAX_SIZE_TX; |
| 166 | } |
| 167 | |
| 168 | /* |
| 169 | * verify that the structure alignment is: |
| 170 | * - power of two |
| 171 | * - not greater than the maximum transmit length |
| 172 | * - not less than four bytes |
| 173 | */ |
| 174 | val = ctx->tx_ndp_modulus; |
| 175 | |
| 176 | if ((val < USB_CDC_NCM_NDP_ALIGN_MIN_SIZE) || |
| 177 | (val != ((-val) & val)) || (val >= ctx->tx_max)) { |
| 178 | pr_debug("Using default alignment: 4 bytes\n"); |
| 179 | ctx->tx_ndp_modulus = USB_CDC_NCM_NDP_ALIGN_MIN_SIZE; |
| 180 | } |
| 181 | |
| 182 | /* |
| 183 | * verify that the payload alignment is: |
| 184 | * - power of two |
| 185 | * - not greater than the maximum transmit length |
| 186 | * - not less than four bytes |
| 187 | */ |
| 188 | val = ctx->tx_modulus; |
| 189 | |
| 190 | if ((val < USB_CDC_NCM_NDP_ALIGN_MIN_SIZE) || |
| 191 | (val != ((-val) & val)) || (val >= ctx->tx_max)) { |
| 192 | pr_debug("Using default transmit modulus: 4 bytes\n"); |
| 193 | ctx->tx_modulus = USB_CDC_NCM_NDP_ALIGN_MIN_SIZE; |
| 194 | } |
| 195 | |
| 196 | /* verify the payload remainder */ |
| 197 | if (ctx->tx_remainder >= ctx->tx_modulus) { |
| 198 | pr_debug("Using default transmit remainder: 0 bytes\n"); |
| 199 | ctx->tx_remainder = 0; |
| 200 | } |
| 201 | |
| 202 | /* adjust TX-remainder according to NCM specification. */ |
Greg Suarez | 2d1c431 | 2012-10-22 10:56:30 +0000 | [diff] [blame] | 203 | ctx->tx_remainder = ((ctx->tx_remainder - eth_hlen) & |
| 204 | (ctx->tx_modulus - 1)); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 205 | |
| 206 | /* additional configuration */ |
| 207 | |
| 208 | /* set CRC Mode */ |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 209 | if (flags & USB_CDC_NCM_NCAP_CRC_MODE) { |
Ming Lei | 90b8b03 | 2012-10-24 19:46:56 +0000 | [diff] [blame] | 210 | err = usbnet_write_cmd(dev, USB_CDC_SET_CRC_MODE, |
| 211 | USB_TYPE_CLASS | USB_DIR_OUT |
| 212 | | USB_RECIP_INTERFACE, |
| 213 | USB_CDC_NCM_CRC_NOT_APPENDED, |
| 214 | iface_no, NULL, 0); |
Giuseppe Scrivano | 36c3541 | 2011-08-03 22:10:29 +0000 | [diff] [blame] | 215 | if (err < 0) |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 216 | pr_debug("Setting CRC mode off failed\n"); |
| 217 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 218 | |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 219 | /* set NTB format, if both formats are supported */ |
| 220 | if (ntb_fmt_supported & USB_CDC_NCM_NTH32_SIGN) { |
Ming Lei | 90b8b03 | 2012-10-24 19:46:56 +0000 | [diff] [blame] | 221 | err = usbnet_write_cmd(dev, USB_CDC_SET_NTB_FORMAT, |
| 222 | USB_TYPE_CLASS | USB_DIR_OUT |
| 223 | | USB_RECIP_INTERFACE, |
| 224 | USB_CDC_NCM_NTB16_FORMAT, |
| 225 | iface_no, NULL, 0); |
Giuseppe Scrivano | 36c3541 | 2011-08-03 22:10:29 +0000 | [diff] [blame] | 226 | if (err < 0) |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 227 | pr_debug("Setting NTB format to 16-bit failed\n"); |
| 228 | } |
| 229 | |
Greg Suarez | 2d1c431 | 2012-10-22 10:56:30 +0000 | [diff] [blame] | 230 | ctx->max_datagram_size = min_dgram_size; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 231 | |
| 232 | /* set Max Datagram Size (MTU) */ |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 233 | if (flags & USB_CDC_NCM_NCAP_MAX_DATAGRAM_SIZE) { |
Ming Lei | 90b8b03 | 2012-10-24 19:46:56 +0000 | [diff] [blame] | 234 | __le16 max_datagram_size; |
Greg Suarez | 2d1c431 | 2012-10-22 10:56:30 +0000 | [diff] [blame] | 235 | u16 eth_max_sz; |
| 236 | if (ctx->ether_desc != NULL) |
| 237 | eth_max_sz = le16_to_cpu(ctx->ether_desc->wMaxSegmentSize); |
| 238 | else if (ctx->mbim_desc != NULL) |
| 239 | eth_max_sz = le16_to_cpu(ctx->mbim_desc->wMaxSegmentSize); |
| 240 | else |
| 241 | goto max_dgram_err; |
Josh Boyer | 75bc8ef | 2011-08-08 02:34:07 +0000 | [diff] [blame] | 242 | |
Ming Lei | 90b8b03 | 2012-10-24 19:46:56 +0000 | [diff] [blame] | 243 | err = usbnet_read_cmd(dev, USB_CDC_GET_MAX_DATAGRAM_SIZE, |
| 244 | USB_TYPE_CLASS | USB_DIR_IN |
| 245 | | USB_RECIP_INTERFACE, |
| 246 | 0, iface_no, &max_datagram_size, 2); |
Giuseppe Scrivano | 36c3541 | 2011-08-03 22:10:29 +0000 | [diff] [blame] | 247 | if (err < 0) { |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 248 | pr_debug("GET_MAX_DATAGRAM_SIZE failed, use size=%u\n", |
Greg Suarez | 2d1c431 | 2012-10-22 10:56:30 +0000 | [diff] [blame] | 249 | min_dgram_size); |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 250 | } else { |
Josh Boyer | 75bc8ef | 2011-08-08 02:34:07 +0000 | [diff] [blame] | 251 | ctx->max_datagram_size = |
Ming Lei | 90b8b03 | 2012-10-24 19:46:56 +0000 | [diff] [blame] | 252 | le16_to_cpu(max_datagram_size); |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 253 | /* Check Eth descriptor value */ |
Alexey Orishko | 3f658cd | 2012-03-14 11:26:11 +0000 | [diff] [blame] | 254 | if (ctx->max_datagram_size > eth_max_sz) |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 255 | ctx->max_datagram_size = eth_max_sz; |
Alexey Orishko | 3f658cd | 2012-03-14 11:26:11 +0000 | [diff] [blame] | 256 | |
| 257 | if (ctx->max_datagram_size > CDC_NCM_MAX_DATAGRAM_SIZE) |
Greg Suarez | 2d1c431 | 2012-10-22 10:56:30 +0000 | [diff] [blame] | 258 | ctx->max_datagram_size = CDC_NCM_MAX_DATAGRAM_SIZE; |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 259 | |
Greg Suarez | 2d1c431 | 2012-10-22 10:56:30 +0000 | [diff] [blame] | 260 | if (ctx->max_datagram_size < min_dgram_size) |
| 261 | ctx->max_datagram_size = min_dgram_size; |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 262 | |
| 263 | /* if value changed, update device */ |
Alexey Orishko | 3f658cd | 2012-03-14 11:26:11 +0000 | [diff] [blame] | 264 | if (ctx->max_datagram_size != |
Ming Lei | 90b8b03 | 2012-10-24 19:46:56 +0000 | [diff] [blame] | 265 | le16_to_cpu(max_datagram_size)) { |
| 266 | err = usbnet_write_cmd(dev, |
Giuseppe Scrivano | 36c3541 | 2011-08-03 22:10:29 +0000 | [diff] [blame] | 267 | USB_CDC_SET_MAX_DATAGRAM_SIZE, |
| 268 | USB_TYPE_CLASS | USB_DIR_OUT |
| 269 | | USB_RECIP_INTERFACE, |
| 270 | 0, |
Ming Lei | 90b8b03 | 2012-10-24 19:46:56 +0000 | [diff] [blame] | 271 | iface_no, &max_datagram_size, |
| 272 | 2); |
Alexey Orishko | 3f658cd | 2012-03-14 11:26:11 +0000 | [diff] [blame] | 273 | if (err < 0) |
| 274 | pr_debug("SET_MAX_DGRAM_SIZE failed\n"); |
| 275 | } |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 276 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 277 | } |
| 278 | |
Alexey Orishko | 3f658cd | 2012-03-14 11:26:11 +0000 | [diff] [blame] | 279 | max_dgram_err: |
Greg Suarez | 2d1c431 | 2012-10-22 10:56:30 +0000 | [diff] [blame] | 280 | if (ctx->netdev->mtu != (ctx->max_datagram_size - eth_hlen)) |
| 281 | ctx->netdev->mtu = ctx->max_datagram_size - eth_hlen; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 282 | |
| 283 | return 0; |
| 284 | } |
| 285 | |
| 286 | static void |
| 287 | cdc_ncm_find_endpoints(struct cdc_ncm_ctx *ctx, struct usb_interface *intf) |
| 288 | { |
| 289 | struct usb_host_endpoint *e; |
| 290 | u8 ep; |
| 291 | |
| 292 | for (ep = 0; ep < intf->cur_altsetting->desc.bNumEndpoints; ep++) { |
| 293 | |
| 294 | e = intf->cur_altsetting->endpoint + ep; |
| 295 | switch (e->desc.bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) { |
| 296 | case USB_ENDPOINT_XFER_INT: |
| 297 | if (usb_endpoint_dir_in(&e->desc)) { |
| 298 | if (ctx->status_ep == NULL) |
| 299 | ctx->status_ep = e; |
| 300 | } |
| 301 | break; |
| 302 | |
| 303 | case USB_ENDPOINT_XFER_BULK: |
| 304 | if (usb_endpoint_dir_in(&e->desc)) { |
| 305 | if (ctx->in_ep == NULL) |
| 306 | ctx->in_ep = e; |
| 307 | } else { |
| 308 | if (ctx->out_ep == NULL) |
| 309 | ctx->out_ep = e; |
| 310 | } |
| 311 | break; |
| 312 | |
| 313 | default: |
| 314 | break; |
| 315 | } |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | static void cdc_ncm_free(struct cdc_ncm_ctx *ctx) |
| 320 | { |
| 321 | if (ctx == NULL) |
| 322 | return; |
| 323 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 324 | if (ctx->tx_rem_skb != NULL) { |
| 325 | dev_kfree_skb_any(ctx->tx_rem_skb); |
| 326 | ctx->tx_rem_skb = NULL; |
| 327 | } |
| 328 | |
| 329 | if (ctx->tx_curr_skb != NULL) { |
| 330 | dev_kfree_skb_any(ctx->tx_curr_skb); |
| 331 | ctx->tx_curr_skb = NULL; |
| 332 | } |
| 333 | |
| 334 | kfree(ctx); |
| 335 | } |
| 336 | |
Dan Williams | f94898e | 2012-07-24 08:43:22 +0000 | [diff] [blame] | 337 | static const struct ethtool_ops cdc_ncm_ethtool_ops = { |
| 338 | .get_drvinfo = cdc_ncm_get_drvinfo, |
| 339 | .get_link = usbnet_get_link, |
| 340 | .get_msglevel = usbnet_get_msglevel, |
| 341 | .set_msglevel = usbnet_set_msglevel, |
| 342 | .get_settings = usbnet_get_settings, |
| 343 | .set_settings = usbnet_set_settings, |
| 344 | .nway_reset = usbnet_nway_reset, |
| 345 | }; |
| 346 | |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 347 | int cdc_ncm_bind_common(struct usbnet *dev, struct usb_interface *intf, u8 data_altsetting) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 348 | { |
| 349 | struct cdc_ncm_ctx *ctx; |
| 350 | struct usb_driver *driver; |
| 351 | u8 *buf; |
| 352 | int len; |
| 353 | int temp; |
| 354 | u8 iface_no; |
| 355 | |
Thomas Meyer | c796984 | 2011-11-17 12:43:40 +0000 | [diff] [blame] | 356 | ctx = kzalloc(sizeof(*ctx), GFP_KERNEL); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 357 | if (ctx == NULL) |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 358 | return -ENODEV; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 359 | |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 360 | hrtimer_init(&ctx->tx_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 361 | ctx->tx_timer.function = &cdc_ncm_tx_timer_cb; |
| 362 | ctx->bh.data = (unsigned long)ctx; |
| 363 | ctx->bh.func = cdc_ncm_txpath_bh; |
| 364 | atomic_set(&ctx->stop, 0); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 365 | spin_lock_init(&ctx->mtx); |
| 366 | ctx->netdev = dev->net; |
| 367 | |
| 368 | /* store ctx pointer in device data field */ |
| 369 | dev->data[0] = (unsigned long)ctx; |
| 370 | |
| 371 | /* get some pointers */ |
| 372 | driver = driver_of(intf); |
| 373 | buf = intf->cur_altsetting->extra; |
| 374 | len = intf->cur_altsetting->extralen; |
| 375 | |
| 376 | ctx->udev = dev->udev; |
| 377 | ctx->intf = intf; |
| 378 | |
| 379 | /* parse through descriptors associated with control interface */ |
| 380 | while ((len > 0) && (buf[0] > 2) && (buf[0] <= len)) { |
| 381 | |
| 382 | if (buf[1] != USB_DT_CS_INTERFACE) |
| 383 | goto advance; |
| 384 | |
| 385 | switch (buf[2]) { |
| 386 | case USB_CDC_UNION_TYPE: |
| 387 | if (buf[0] < sizeof(*(ctx->union_desc))) |
| 388 | break; |
| 389 | |
| 390 | ctx->union_desc = |
| 391 | (const struct usb_cdc_union_desc *)buf; |
| 392 | |
| 393 | ctx->control = usb_ifnum_to_if(dev->udev, |
| 394 | ctx->union_desc->bMasterInterface0); |
| 395 | ctx->data = usb_ifnum_to_if(dev->udev, |
| 396 | ctx->union_desc->bSlaveInterface0); |
| 397 | break; |
| 398 | |
| 399 | case USB_CDC_ETHERNET_TYPE: |
| 400 | if (buf[0] < sizeof(*(ctx->ether_desc))) |
| 401 | break; |
| 402 | |
| 403 | ctx->ether_desc = |
| 404 | (const struct usb_cdc_ether_desc *)buf; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 405 | dev->hard_mtu = |
| 406 | le16_to_cpu(ctx->ether_desc->wMaxSegmentSize); |
| 407 | |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 408 | if (dev->hard_mtu < CDC_NCM_MIN_DATAGRAM_SIZE) |
| 409 | dev->hard_mtu = CDC_NCM_MIN_DATAGRAM_SIZE; |
| 410 | else if (dev->hard_mtu > CDC_NCM_MAX_DATAGRAM_SIZE) |
| 411 | dev->hard_mtu = CDC_NCM_MAX_DATAGRAM_SIZE; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 412 | break; |
| 413 | |
| 414 | case USB_CDC_NCM_TYPE: |
| 415 | if (buf[0] < sizeof(*(ctx->func_desc))) |
| 416 | break; |
| 417 | |
| 418 | ctx->func_desc = (const struct usb_cdc_ncm_desc *)buf; |
| 419 | break; |
| 420 | |
Greg Suarez | 38396e4 | 2012-10-22 10:56:31 +0000 | [diff] [blame] | 421 | case USB_CDC_MBIM_TYPE: |
| 422 | if (buf[0] < sizeof(*(ctx->mbim_desc))) |
| 423 | break; |
| 424 | |
| 425 | ctx->mbim_desc = (const struct usb_cdc_mbim_desc *)buf; |
| 426 | break; |
| 427 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 428 | default: |
| 429 | break; |
| 430 | } |
| 431 | advance: |
| 432 | /* advance to next descriptor */ |
| 433 | temp = buf[0]; |
| 434 | buf += temp; |
| 435 | len -= temp; |
| 436 | } |
| 437 | |
| 438 | /* check if we got everything */ |
| 439 | if ((ctx->control == NULL) || (ctx->data == NULL) || |
Greg Suarez | 38396e4 | 2012-10-22 10:56:31 +0000 | [diff] [blame] | 440 | ((!ctx->mbim_desc) && ((ctx->ether_desc == NULL) || (ctx->control != intf)))) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 441 | goto error; |
| 442 | |
| 443 | /* claim interfaces, if any */ |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 444 | temp = usb_driver_claim_interface(driver, ctx->data, dev); |
| 445 | if (temp) |
| 446 | goto error; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 447 | |
| 448 | iface_no = ctx->data->cur_altsetting->desc.bInterfaceNumber; |
| 449 | |
| 450 | /* reset data interface */ |
| 451 | temp = usb_set_interface(dev->udev, iface_no, 0); |
| 452 | if (temp) |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 453 | goto error2; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 454 | |
| 455 | /* initialize data interface */ |
| 456 | if (cdc_ncm_setup(ctx)) |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 457 | goto error2; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 458 | |
| 459 | /* configure data interface */ |
Greg Suarez | 38396e4 | 2012-10-22 10:56:31 +0000 | [diff] [blame] | 460 | temp = usb_set_interface(dev->udev, iface_no, data_altsetting); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 461 | if (temp) |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 462 | goto error2; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 463 | |
| 464 | cdc_ncm_find_endpoints(ctx, ctx->data); |
| 465 | cdc_ncm_find_endpoints(ctx, ctx->control); |
| 466 | |
| 467 | if ((ctx->in_ep == NULL) || (ctx->out_ep == NULL) || |
| 468 | (ctx->status_ep == NULL)) |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 469 | goto error2; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 470 | |
| 471 | dev->net->ethtool_ops = &cdc_ncm_ethtool_ops; |
| 472 | |
| 473 | usb_set_intfdata(ctx->data, dev); |
| 474 | usb_set_intfdata(ctx->control, dev); |
| 475 | usb_set_intfdata(ctx->intf, dev); |
| 476 | |
Greg Suarez | 38396e4 | 2012-10-22 10:56:31 +0000 | [diff] [blame] | 477 | if (ctx->ether_desc) { |
| 478 | temp = usbnet_get_ethernet_addr(dev, ctx->ether_desc->iMACAddress); |
| 479 | if (temp) |
| 480 | goto error2; |
| 481 | dev_info(&dev->udev->dev, "MAC-Address: %pM\n", dev->net->dev_addr); |
| 482 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 483 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 484 | |
| 485 | dev->in = usb_rcvbulkpipe(dev->udev, |
| 486 | ctx->in_ep->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK); |
| 487 | dev->out = usb_sndbulkpipe(dev->udev, |
| 488 | ctx->out_ep->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK); |
| 489 | dev->status = ctx->status_ep; |
| 490 | dev->rx_urb_size = ctx->rx_max; |
| 491 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 492 | ctx->tx_speed = ctx->rx_speed = 0; |
| 493 | return 0; |
| 494 | |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 495 | error2: |
| 496 | usb_set_intfdata(ctx->control, NULL); |
| 497 | usb_set_intfdata(ctx->data, NULL); |
| 498 | usb_driver_release_interface(driver, ctx->data); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 499 | error: |
| 500 | cdc_ncm_free((struct cdc_ncm_ctx *)dev->data[0]); |
| 501 | dev->data[0] = 0; |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 502 | dev_info(&dev->udev->dev, "bind() failure\n"); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 503 | return -ENODEV; |
| 504 | } |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 505 | EXPORT_SYMBOL_GPL(cdc_ncm_bind_common); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 506 | |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 507 | void cdc_ncm_unbind(struct usbnet *dev, struct usb_interface *intf) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 508 | { |
| 509 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 510 | struct usb_driver *driver = driver_of(intf); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 511 | |
| 512 | if (ctx == NULL) |
| 513 | return; /* no setup */ |
| 514 | |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 515 | atomic_set(&ctx->stop, 1); |
| 516 | |
| 517 | if (hrtimer_active(&ctx->tx_timer)) |
| 518 | hrtimer_cancel(&ctx->tx_timer); |
| 519 | |
| 520 | tasklet_kill(&ctx->bh); |
| 521 | |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 522 | /* disconnect master --> disconnect slave */ |
| 523 | if (intf == ctx->control && ctx->data) { |
| 524 | usb_set_intfdata(ctx->data, NULL); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 525 | usb_driver_release_interface(driver, ctx->data); |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 526 | ctx->data = NULL; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 527 | |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 528 | } else if (intf == ctx->data && ctx->control) { |
| 529 | usb_set_intfdata(ctx->control, NULL); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 530 | usb_driver_release_interface(driver, ctx->control); |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 531 | ctx->control = NULL; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 532 | } |
| 533 | |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 534 | usb_set_intfdata(ctx->intf, NULL); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 535 | cdc_ncm_free(ctx); |
| 536 | } |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 537 | EXPORT_SYMBOL_GPL(cdc_ncm_unbind); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 538 | |
Greg Suarez | 38396e4 | 2012-10-22 10:56:31 +0000 | [diff] [blame] | 539 | static int cdc_ncm_bind(struct usbnet *dev, struct usb_interface *intf) |
| 540 | { |
| 541 | int ret; |
| 542 | |
Bjørn Mork | bd329e1 | 2012-10-22 10:56:38 +0000 | [diff] [blame] | 543 | /* The MBIM spec defines a NCM compatible default altsetting, |
| 544 | * which we may have matched: |
| 545 | * |
| 546 | * "Functions that implement both NCM 1.0 and MBIM (an |
| 547 | * “NCM/MBIM function”) according to this recommendation |
| 548 | * shall provide two alternate settings for the |
| 549 | * Communication Interface. Alternate setting 0, and the |
| 550 | * associated class and endpoint descriptors, shall be |
| 551 | * constructed according to the rules given for the |
| 552 | * Communication Interface in section 5 of [USBNCM10]. |
| 553 | * Alternate setting 1, and the associated class and |
| 554 | * endpoint descriptors, shall be constructed according to |
| 555 | * the rules given in section 6 (USB Device Model) of this |
| 556 | * specification." |
| 557 | * |
| 558 | * Do not bind to such interfaces, allowing cdc_mbim to handle |
| 559 | * them |
| 560 | */ |
| 561 | #if IS_ENABLED(CONFIG_USB_NET_CDC_MBIM) |
| 562 | if ((intf->num_altsetting == 2) && |
| 563 | !usb_set_interface(dev->udev, |
| 564 | intf->cur_altsetting->desc.bInterfaceNumber, |
| 565 | CDC_NCM_COMM_ALTSETTING_MBIM) && |
| 566 | cdc_ncm_comm_intf_is_mbim(intf->cur_altsetting)) |
| 567 | return -ENODEV; |
| 568 | #endif |
| 569 | |
Greg Suarez | 38396e4 | 2012-10-22 10:56:31 +0000 | [diff] [blame] | 570 | /* NCM data altsetting is always 1 */ |
| 571 | ret = cdc_ncm_bind_common(dev, intf, 1); |
| 572 | |
| 573 | /* |
| 574 | * We should get an event when network connection is "connected" or |
| 575 | * "disconnected". Set network connection in "disconnected" state |
| 576 | * (carrier is OFF) during attach, so the IP network stack does not |
| 577 | * start IPv6 negotiation and more. |
| 578 | */ |
| 579 | netif_carrier_off(dev->net); |
| 580 | return ret; |
| 581 | } |
| 582 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 583 | static void cdc_ncm_align_tail(struct sk_buff *skb, size_t modulus, size_t remainder, size_t max) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 584 | { |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 585 | size_t align = ALIGN(skb->len, modulus) - skb->len + remainder; |
| 586 | |
| 587 | if (skb->len + align > max) |
| 588 | align = max - skb->len; |
| 589 | if (align && skb_tailroom(skb) >= align) |
| 590 | memset(skb_put(skb, align), 0, align); |
| 591 | } |
| 592 | |
| 593 | /* return a pointer to a valid struct usb_cdc_ncm_ndp16 of type sign, possibly |
| 594 | * allocating a new one within skb |
| 595 | */ |
| 596 | static struct usb_cdc_ncm_ndp16 *cdc_ncm_ndp(struct cdc_ncm_ctx *ctx, struct sk_buff *skb, __le32 sign, size_t reserve) |
| 597 | { |
| 598 | struct usb_cdc_ncm_ndp16 *ndp16 = NULL; |
| 599 | struct usb_cdc_ncm_nth16 *nth16 = (void *)skb->data; |
| 600 | size_t ndpoffset = le16_to_cpu(nth16->wNdpIndex); |
| 601 | |
| 602 | /* follow the chain of NDPs, looking for a match */ |
| 603 | while (ndpoffset) { |
| 604 | ndp16 = (struct usb_cdc_ncm_ndp16 *)(skb->data + ndpoffset); |
| 605 | if (ndp16->dwSignature == sign) |
| 606 | return ndp16; |
| 607 | ndpoffset = le16_to_cpu(ndp16->wNextNdpIndex); |
| 608 | } |
| 609 | |
| 610 | /* align new NDP */ |
| 611 | cdc_ncm_align_tail(skb, ctx->tx_ndp_modulus, 0, ctx->tx_max); |
| 612 | |
| 613 | /* verify that there is room for the NDP and the datagram (reserve) */ |
| 614 | if ((ctx->tx_max - skb->len - reserve) < CDC_NCM_NDP_SIZE) |
| 615 | return NULL; |
| 616 | |
| 617 | /* link to it */ |
| 618 | if (ndp16) |
| 619 | ndp16->wNextNdpIndex = cpu_to_le16(skb->len); |
| 620 | else |
| 621 | nth16->wNdpIndex = cpu_to_le16(skb->len); |
| 622 | |
| 623 | /* push a new empty NDP */ |
| 624 | ndp16 = (struct usb_cdc_ncm_ndp16 *)memset(skb_put(skb, CDC_NCM_NDP_SIZE), 0, CDC_NCM_NDP_SIZE); |
| 625 | ndp16->dwSignature = sign; |
| 626 | ndp16->wLength = cpu_to_le16(sizeof(struct usb_cdc_ncm_ndp16) + sizeof(struct usb_cdc_ncm_dpe16)); |
| 627 | return ndp16; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 628 | } |
| 629 | |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 630 | struct sk_buff * |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 631 | cdc_ncm_fill_tx_frame(struct cdc_ncm_ctx *ctx, struct sk_buff *skb, __le32 sign) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 632 | { |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 633 | struct usb_cdc_ncm_nth16 *nth16; |
| 634 | struct usb_cdc_ncm_ndp16 *ndp16; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 635 | struct sk_buff *skb_out; |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 636 | u16 n = 0, index, ndplen; |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 637 | u8 ready2send = 0; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 638 | |
| 639 | /* if there is a remaining skb, it gets priority */ |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 640 | if (skb != NULL) { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 641 | swap(skb, ctx->tx_rem_skb); |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 642 | swap(sign, ctx->tx_rem_sign); |
| 643 | } else { |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 644 | ready2send = 1; |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 645 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 646 | |
| 647 | /* check if we are resuming an OUT skb */ |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 648 | skb_out = ctx->tx_curr_skb; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 649 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 650 | /* allocate a new OUT skb */ |
| 651 | if (!skb_out) { |
Alexey Orishko | 6c60408 | 2011-05-06 03:01:30 +0000 | [diff] [blame] | 652 | skb_out = alloc_skb((ctx->tx_max + 1), GFP_ATOMIC); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 653 | if (skb_out == NULL) { |
| 654 | if (skb != NULL) { |
| 655 | dev_kfree_skb_any(skb); |
| 656 | ctx->netdev->stats.tx_dropped++; |
| 657 | } |
| 658 | goto exit_no_skb; |
| 659 | } |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 660 | /* fill out the initial 16-bit NTB header */ |
| 661 | nth16 = (struct usb_cdc_ncm_nth16 *)memset(skb_put(skb_out, sizeof(struct usb_cdc_ncm_nth16)), 0, sizeof(struct usb_cdc_ncm_nth16)); |
| 662 | nth16->dwSignature = cpu_to_le32(USB_CDC_NCM_NTH16_SIGN); |
| 663 | nth16->wHeaderLength = cpu_to_le16(sizeof(struct usb_cdc_ncm_nth16)); |
| 664 | nth16->wSequence = cpu_to_le16(ctx->tx_seq++); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 665 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 666 | /* count total number of frames in this NTB */ |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 667 | ctx->tx_curr_frame_num = 0; |
| 668 | } |
| 669 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 670 | for (n = ctx->tx_curr_frame_num; n < ctx->tx_max_datagrams; n++) { |
| 671 | /* send any remaining skb first */ |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 672 | if (skb == NULL) { |
| 673 | skb = ctx->tx_rem_skb; |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 674 | sign = ctx->tx_rem_sign; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 675 | ctx->tx_rem_skb = NULL; |
| 676 | |
| 677 | /* check for end of skb */ |
| 678 | if (skb == NULL) |
| 679 | break; |
| 680 | } |
| 681 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 682 | /* get the appropriate NDP for this skb */ |
| 683 | ndp16 = cdc_ncm_ndp(ctx, skb_out, sign, skb->len + ctx->tx_modulus + ctx->tx_remainder); |
| 684 | |
| 685 | /* align beginning of next frame */ |
| 686 | cdc_ncm_align_tail(skb_out, ctx->tx_modulus, ctx->tx_remainder, ctx->tx_max); |
| 687 | |
| 688 | /* check if we had enough room left for both NDP and frame */ |
| 689 | if (!ndp16 || skb_out->len + skb->len > ctx->tx_max) { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 690 | if (n == 0) { |
| 691 | /* won't fit, MTU problem? */ |
| 692 | dev_kfree_skb_any(skb); |
| 693 | skb = NULL; |
| 694 | ctx->netdev->stats.tx_dropped++; |
| 695 | } else { |
| 696 | /* no room for skb - store for later */ |
| 697 | if (ctx->tx_rem_skb != NULL) { |
| 698 | dev_kfree_skb_any(ctx->tx_rem_skb); |
| 699 | ctx->netdev->stats.tx_dropped++; |
| 700 | } |
| 701 | ctx->tx_rem_skb = skb; |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 702 | ctx->tx_rem_sign = sign; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 703 | skb = NULL; |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 704 | ready2send = 1; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 705 | } |
| 706 | break; |
| 707 | } |
| 708 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 709 | /* calculate frame number withing this NDP */ |
| 710 | ndplen = le16_to_cpu(ndp16->wLength); |
| 711 | index = (ndplen - sizeof(struct usb_cdc_ncm_ndp16)) / sizeof(struct usb_cdc_ncm_dpe16) - 1; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 712 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 713 | /* OK, add this skb */ |
| 714 | ndp16->dpe16[index].wDatagramLength = cpu_to_le16(skb->len); |
| 715 | ndp16->dpe16[index].wDatagramIndex = cpu_to_le16(skb_out->len); |
| 716 | ndp16->wLength = cpu_to_le16(ndplen + sizeof(struct usb_cdc_ncm_dpe16)); |
| 717 | memcpy(skb_put(skb_out, skb->len), skb->data, skb->len); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 718 | dev_kfree_skb_any(skb); |
| 719 | skb = NULL; |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 720 | |
| 721 | /* send now if this NDP is full */ |
| 722 | if (index >= CDC_NCM_DPT_DATAGRAMS_MAX) { |
| 723 | ready2send = 1; |
| 724 | break; |
| 725 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 726 | } |
| 727 | |
| 728 | /* free up any dangling skb */ |
| 729 | if (skb != NULL) { |
| 730 | dev_kfree_skb_any(skb); |
| 731 | skb = NULL; |
| 732 | ctx->netdev->stats.tx_dropped++; |
| 733 | } |
| 734 | |
| 735 | ctx->tx_curr_frame_num = n; |
| 736 | |
| 737 | if (n == 0) { |
| 738 | /* wait for more frames */ |
| 739 | /* push variables */ |
| 740 | ctx->tx_curr_skb = skb_out; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 741 | goto exit_no_skb; |
| 742 | |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 743 | } else if ((n < ctx->tx_max_datagrams) && (ready2send == 0)) { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 744 | /* wait for more frames */ |
| 745 | /* push variables */ |
| 746 | ctx->tx_curr_skb = skb_out; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 747 | /* set the pending count */ |
| 748 | if (n < CDC_NCM_RESTART_TIMER_DATAGRAM_CNT) |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 749 | ctx->tx_timer_pending = CDC_NCM_TIMER_PENDING_CNT; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 750 | goto exit_no_skb; |
| 751 | |
| 752 | } else { |
| 753 | /* frame goes out */ |
| 754 | /* variables will be reset at next call */ |
| 755 | } |
| 756 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 757 | /* |
| 758 | * If collected data size is less or equal CDC_NCM_MIN_TX_PKT bytes, |
| 759 | * we send buffers as it is. If we get more data, it would be more |
| 760 | * efficient for USB HS mobile device with DMA engine to receive a full |
| 761 | * size NTB, than canceling DMA transfer and receiving a short packet. |
| 762 | */ |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 763 | if (skb_out->len > CDC_NCM_MIN_TX_PKT) |
| 764 | /* final zero padding */ |
| 765 | memset(skb_put(skb_out, ctx->tx_max - skb_out->len), 0, ctx->tx_max - skb_out->len); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 766 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 767 | /* do we need to prevent a ZLP? */ |
| 768 | if (((skb_out->len % le16_to_cpu(ctx->out_ep->desc.wMaxPacketSize)) == 0) && |
| 769 | (skb_out->len < le32_to_cpu(ctx->ncm_parm.dwNtbOutMaxSize)) && skb_tailroom(skb_out)) |
| 770 | *skb_put(skb_out, 1) = 0; /* force short packet */ |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 771 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 772 | /* set final frame length */ |
| 773 | nth16 = (struct usb_cdc_ncm_nth16 *)skb_out->data; |
| 774 | nth16->wBlockLength = cpu_to_le16(skb_out->len); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 775 | |
| 776 | /* return skb */ |
| 777 | ctx->tx_curr_skb = NULL; |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 778 | ctx->netdev->stats.tx_packets += ctx->tx_curr_frame_num; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 779 | return skb_out; |
| 780 | |
| 781 | exit_no_skb: |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 782 | /* Start timer, if there is a remaining skb */ |
| 783 | if (ctx->tx_curr_skb != NULL) |
| 784 | cdc_ncm_tx_timeout_start(ctx); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 785 | return NULL; |
| 786 | } |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 787 | EXPORT_SYMBOL_GPL(cdc_ncm_fill_tx_frame); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 788 | |
| 789 | static void cdc_ncm_tx_timeout_start(struct cdc_ncm_ctx *ctx) |
| 790 | { |
| 791 | /* start timer, if not already started */ |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 792 | if (!(hrtimer_active(&ctx->tx_timer) || atomic_read(&ctx->stop))) |
| 793 | hrtimer_start(&ctx->tx_timer, |
| 794 | ktime_set(0, CDC_NCM_TIMER_INTERVAL), |
| 795 | HRTIMER_MODE_REL); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 796 | } |
| 797 | |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 798 | static enum hrtimer_restart cdc_ncm_tx_timer_cb(struct hrtimer *timer) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 799 | { |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 800 | struct cdc_ncm_ctx *ctx = |
| 801 | container_of(timer, struct cdc_ncm_ctx, tx_timer); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 802 | |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 803 | if (!atomic_read(&ctx->stop)) |
| 804 | tasklet_schedule(&ctx->bh); |
| 805 | return HRTIMER_NORESTART; |
| 806 | } |
| 807 | |
| 808 | static void cdc_ncm_txpath_bh(unsigned long param) |
| 809 | { |
| 810 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)param; |
| 811 | |
| 812 | spin_lock_bh(&ctx->mtx); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 813 | if (ctx->tx_timer_pending != 0) { |
| 814 | ctx->tx_timer_pending--; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 815 | cdc_ncm_tx_timeout_start(ctx); |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 816 | spin_unlock_bh(&ctx->mtx); |
Alexey Orishko | f742aa8 | 2011-01-17 07:07:25 +0000 | [diff] [blame] | 817 | } else if (ctx->netdev != NULL) { |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 818 | spin_unlock_bh(&ctx->mtx); |
| 819 | netif_tx_lock_bh(ctx->netdev); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 820 | usbnet_start_xmit(NULL, ctx->netdev); |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 821 | netif_tx_unlock_bh(ctx->netdev); |
Alexey Orishko | f742aa8 | 2011-01-17 07:07:25 +0000 | [diff] [blame] | 822 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 823 | } |
| 824 | |
| 825 | static struct sk_buff * |
| 826 | cdc_ncm_tx_fixup(struct usbnet *dev, struct sk_buff *skb, gfp_t flags) |
| 827 | { |
| 828 | struct sk_buff *skb_out; |
| 829 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 830 | |
| 831 | /* |
| 832 | * The Ethernet API we are using does not support transmitting |
| 833 | * multiple Ethernet frames in a single call. This driver will |
| 834 | * accumulate multiple Ethernet frames and send out a larger |
| 835 | * USB frame when the USB buffer is full or when a single jiffies |
| 836 | * timeout happens. |
| 837 | */ |
| 838 | if (ctx == NULL) |
| 839 | goto error; |
| 840 | |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 841 | spin_lock_bh(&ctx->mtx); |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 842 | skb_out = cdc_ncm_fill_tx_frame(ctx, skb, cpu_to_le32(USB_CDC_NCM_NDP16_NOCRC_SIGN)); |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 843 | spin_unlock_bh(&ctx->mtx); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 844 | return skb_out; |
| 845 | |
| 846 | error: |
| 847 | if (skb != NULL) |
| 848 | dev_kfree_skb_any(skb); |
| 849 | |
| 850 | return NULL; |
| 851 | } |
| 852 | |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 853 | /* verify NTB header and return offset of first NDP, or negative error */ |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 854 | int cdc_ncm_rx_verify_nth16(struct cdc_ncm_ctx *ctx, struct sk_buff *skb_in) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 855 | { |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 856 | struct usb_cdc_ncm_nth16 *nth16; |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 857 | int len; |
| 858 | int ret = -EINVAL; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 859 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 860 | if (ctx == NULL) |
| 861 | goto error; |
| 862 | |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 863 | if (skb_in->len < (sizeof(struct usb_cdc_ncm_nth16) + |
| 864 | sizeof(struct usb_cdc_ncm_ndp16))) { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 865 | pr_debug("frame too short\n"); |
| 866 | goto error; |
| 867 | } |
| 868 | |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 869 | nth16 = (struct usb_cdc_ncm_nth16 *)skb_in->data; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 870 | |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 871 | if (le32_to_cpu(nth16->dwSignature) != USB_CDC_NCM_NTH16_SIGN) { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 872 | pr_debug("invalid NTH16 signature <%u>\n", |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 873 | le32_to_cpu(nth16->dwSignature)); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 874 | goto error; |
| 875 | } |
| 876 | |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 877 | len = le16_to_cpu(nth16->wBlockLength); |
| 878 | if (len > ctx->rx_max) { |
| 879 | pr_debug("unsupported NTB block length %u/%u\n", len, |
| 880 | ctx->rx_max); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 881 | goto error; |
| 882 | } |
| 883 | |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 884 | if ((ctx->rx_seq + 1) != le16_to_cpu(nth16->wSequence) && |
| 885 | (ctx->rx_seq || le16_to_cpu(nth16->wSequence)) && |
| 886 | !((ctx->rx_seq == 0xffff) && !le16_to_cpu(nth16->wSequence))) { |
| 887 | pr_debug("sequence number glitch prev=%d curr=%d\n", |
| 888 | ctx->rx_seq, le16_to_cpu(nth16->wSequence)); |
| 889 | } |
| 890 | ctx->rx_seq = le16_to_cpu(nth16->wSequence); |
| 891 | |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 892 | ret = le16_to_cpu(nth16->wNdpIndex); |
| 893 | error: |
| 894 | return ret; |
| 895 | } |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 896 | EXPORT_SYMBOL_GPL(cdc_ncm_rx_verify_nth16); |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 897 | |
| 898 | /* verify NDP header and return number of datagrams, or negative error */ |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 899 | int cdc_ncm_rx_verify_ndp16(struct sk_buff *skb_in, int ndpoffset) |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 900 | { |
| 901 | struct usb_cdc_ncm_ndp16 *ndp16; |
| 902 | int ret = -EINVAL; |
| 903 | |
Bjørn Mork | 75d67d3 | 2012-10-22 10:56:32 +0000 | [diff] [blame] | 904 | if ((ndpoffset + sizeof(struct usb_cdc_ncm_ndp16)) > skb_in->len) { |
| 905 | pr_debug("invalid NDP offset <%u>\n", ndpoffset); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 906 | goto error; |
| 907 | } |
Bjørn Mork | 75d67d3 | 2012-10-22 10:56:32 +0000 | [diff] [blame] | 908 | ndp16 = (struct usb_cdc_ncm_ndp16 *)(skb_in->data + ndpoffset); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 909 | |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 910 | if (le16_to_cpu(ndp16->wLength) < USB_CDC_NCM_NDP16_LENGTH_MIN) { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 911 | pr_debug("invalid DPT16 length <%u>\n", |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 912 | le32_to_cpu(ndp16->dwSignature)); |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 913 | goto error; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 914 | } |
| 915 | |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 916 | ret = ((le16_to_cpu(ndp16->wLength) - |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 917 | sizeof(struct usb_cdc_ncm_ndp16)) / |
| 918 | sizeof(struct usb_cdc_ncm_dpe16)); |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 919 | ret--; /* we process NDP entries except for the last one */ |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 920 | |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 921 | if ((sizeof(struct usb_cdc_ncm_ndp16) + ret * (sizeof(struct usb_cdc_ncm_dpe16))) > |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 922 | skb_in->len) { |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 923 | pr_debug("Invalid nframes = %d\n", ret); |
| 924 | ret = -EINVAL; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 925 | } |
| 926 | |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 927 | error: |
| 928 | return ret; |
| 929 | } |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 930 | EXPORT_SYMBOL_GPL(cdc_ncm_rx_verify_ndp16); |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 931 | |
| 932 | static int cdc_ncm_rx_fixup(struct usbnet *dev, struct sk_buff *skb_in) |
| 933 | { |
| 934 | struct sk_buff *skb; |
| 935 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
| 936 | int len; |
| 937 | int nframes; |
| 938 | int x; |
| 939 | int offset; |
| 940 | struct usb_cdc_ncm_ndp16 *ndp16; |
| 941 | struct usb_cdc_ncm_dpe16 *dpe16; |
| 942 | int ndpoffset; |
| 943 | int loopcount = 50; /* arbitrary max preventing infinite loop */ |
| 944 | |
| 945 | ndpoffset = cdc_ncm_rx_verify_nth16(ctx, skb_in); |
| 946 | if (ndpoffset < 0) |
| 947 | goto error; |
| 948 | |
| 949 | next_ndp: |
| 950 | nframes = cdc_ncm_rx_verify_ndp16(skb_in, ndpoffset); |
| 951 | if (nframes < 0) |
| 952 | goto error; |
| 953 | |
| 954 | ndp16 = (struct usb_cdc_ncm_ndp16 *)(skb_in->data + ndpoffset); |
| 955 | |
| 956 | if (le32_to_cpu(ndp16->dwSignature) != USB_CDC_NCM_NDP16_NOCRC_SIGN) { |
| 957 | pr_debug("invalid DPT16 signature <%u>\n", |
| 958 | le32_to_cpu(ndp16->dwSignature)); |
| 959 | goto err_ndp; |
| 960 | } |
| 961 | dpe16 = ndp16->dpe16; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 962 | |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 963 | for (x = 0; x < nframes; x++, dpe16++) { |
| 964 | offset = le16_to_cpu(dpe16->wDatagramIndex); |
| 965 | len = le16_to_cpu(dpe16->wDatagramLength); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 966 | |
| 967 | /* |
| 968 | * CDC NCM ch. 3.7 |
| 969 | * All entries after first NULL entry are to be ignored |
| 970 | */ |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 971 | if ((offset == 0) || (len == 0)) { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 972 | if (!x) |
Bjørn Mork | 75d67d3 | 2012-10-22 10:56:32 +0000 | [diff] [blame] | 973 | goto err_ndp; /* empty NTB */ |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 974 | break; |
| 975 | } |
| 976 | |
| 977 | /* sanity checking */ |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 978 | if (((offset + len) > skb_in->len) || |
| 979 | (len > ctx->rx_max) || (len < ETH_HLEN)) { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 980 | pr_debug("invalid frame detected (ignored)" |
Alexey Orishko | f742aa8 | 2011-01-17 07:07:25 +0000 | [diff] [blame] | 981 | "offset[%u]=%u, length=%u, skb=%p\n", |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 982 | x, offset, len, skb_in); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 983 | if (!x) |
Bjørn Mork | 75d67d3 | 2012-10-22 10:56:32 +0000 | [diff] [blame] | 984 | goto err_ndp; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 985 | break; |
| 986 | |
| 987 | } else { |
| 988 | skb = skb_clone(skb_in, GFP_ATOMIC); |
Jesper Juhl | 9e56790 | 2011-01-13 11:40:11 +0000 | [diff] [blame] | 989 | if (!skb) |
| 990 | goto error; |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 991 | skb->len = len; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 992 | skb->data = ((u8 *)skb_in->data) + offset; |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 993 | skb_set_tail_pointer(skb, len); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 994 | usbnet_skb_return(dev, skb); |
| 995 | } |
| 996 | } |
Bjørn Mork | 75d67d3 | 2012-10-22 10:56:32 +0000 | [diff] [blame] | 997 | err_ndp: |
| 998 | /* are there more NDPs to process? */ |
| 999 | ndpoffset = le16_to_cpu(ndp16->wNextNdpIndex); |
| 1000 | if (ndpoffset && loopcount--) |
| 1001 | goto next_ndp; |
| 1002 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1003 | return 1; |
| 1004 | error: |
| 1005 | return 0; |
| 1006 | } |
| 1007 | |
| 1008 | static void |
| 1009 | cdc_ncm_speed_change(struct cdc_ncm_ctx *ctx, |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 1010 | struct usb_cdc_speed_change *data) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1011 | { |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 1012 | uint32_t rx_speed = le32_to_cpu(data->DLBitRRate); |
| 1013 | uint32_t tx_speed = le32_to_cpu(data->ULBitRate); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1014 | |
| 1015 | /* |
| 1016 | * Currently the USB-NET API does not support reporting the actual |
| 1017 | * device speed. Do print it instead. |
| 1018 | */ |
| 1019 | if ((tx_speed != ctx->tx_speed) || (rx_speed != ctx->rx_speed)) { |
| 1020 | ctx->tx_speed = tx_speed; |
| 1021 | ctx->rx_speed = rx_speed; |
| 1022 | |
| 1023 | if ((tx_speed > 1000000) && (rx_speed > 1000000)) { |
| 1024 | printk(KERN_INFO KBUILD_MODNAME |
| 1025 | ": %s: %u mbit/s downlink " |
| 1026 | "%u mbit/s uplink\n", |
| 1027 | ctx->netdev->name, |
| 1028 | (unsigned int)(rx_speed / 1000000U), |
| 1029 | (unsigned int)(tx_speed / 1000000U)); |
| 1030 | } else { |
| 1031 | printk(KERN_INFO KBUILD_MODNAME |
| 1032 | ": %s: %u kbit/s downlink " |
| 1033 | "%u kbit/s uplink\n", |
| 1034 | ctx->netdev->name, |
| 1035 | (unsigned int)(rx_speed / 1000U), |
| 1036 | (unsigned int)(tx_speed / 1000U)); |
| 1037 | } |
| 1038 | } |
| 1039 | } |
| 1040 | |
| 1041 | static void cdc_ncm_status(struct usbnet *dev, struct urb *urb) |
| 1042 | { |
| 1043 | struct cdc_ncm_ctx *ctx; |
| 1044 | struct usb_cdc_notification *event; |
| 1045 | |
| 1046 | ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
| 1047 | |
| 1048 | if (urb->actual_length < sizeof(*event)) |
| 1049 | return; |
| 1050 | |
| 1051 | /* test for split data in 8-byte chunks */ |
| 1052 | if (test_and_clear_bit(EVENT_STS_SPLIT, &dev->flags)) { |
| 1053 | cdc_ncm_speed_change(ctx, |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 1054 | (struct usb_cdc_speed_change *)urb->transfer_buffer); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1055 | return; |
| 1056 | } |
| 1057 | |
| 1058 | event = urb->transfer_buffer; |
| 1059 | |
| 1060 | switch (event->bNotificationType) { |
| 1061 | case USB_CDC_NOTIFY_NETWORK_CONNECTION: |
| 1062 | /* |
| 1063 | * According to the CDC NCM specification ch.7.1 |
| 1064 | * USB_CDC_NOTIFY_NETWORK_CONNECTION notification shall be |
| 1065 | * sent by device after USB_CDC_NOTIFY_SPEED_CHANGE. |
| 1066 | */ |
Bjørn Mork | 1a7c6cc | 2012-10-25 21:44:08 +0000 | [diff] [blame^] | 1067 | ctx->connected = le16_to_cpu(event->wValue); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1068 | |
| 1069 | printk(KERN_INFO KBUILD_MODNAME ": %s: network connection:" |
| 1070 | " %sconnected\n", |
| 1071 | ctx->netdev->name, ctx->connected ? "" : "dis"); |
| 1072 | |
| 1073 | if (ctx->connected) |
| 1074 | netif_carrier_on(dev->net); |
| 1075 | else { |
| 1076 | netif_carrier_off(dev->net); |
| 1077 | ctx->tx_speed = ctx->rx_speed = 0; |
| 1078 | } |
| 1079 | break; |
| 1080 | |
| 1081 | case USB_CDC_NOTIFY_SPEED_CHANGE: |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 1082 | if (urb->actual_length < (sizeof(*event) + |
| 1083 | sizeof(struct usb_cdc_speed_change))) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1084 | set_bit(EVENT_STS_SPLIT, &dev->flags); |
| 1085 | else |
| 1086 | cdc_ncm_speed_change(ctx, |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 1087 | (struct usb_cdc_speed_change *) &event[1]); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1088 | break; |
| 1089 | |
| 1090 | default: |
| 1091 | dev_err(&dev->udev->dev, "NCM: unexpected " |
| 1092 | "notification 0x%02x!\n", event->bNotificationType); |
| 1093 | break; |
| 1094 | } |
| 1095 | } |
| 1096 | |
| 1097 | static int cdc_ncm_check_connect(struct usbnet *dev) |
| 1098 | { |
| 1099 | struct cdc_ncm_ctx *ctx; |
| 1100 | |
| 1101 | ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
| 1102 | if (ctx == NULL) |
| 1103 | return 1; /* disconnected */ |
| 1104 | |
| 1105 | return !ctx->connected; |
| 1106 | } |
| 1107 | |
| 1108 | static int |
| 1109 | cdc_ncm_probe(struct usb_interface *udev, const struct usb_device_id *prod) |
| 1110 | { |
| 1111 | return usbnet_probe(udev, prod); |
| 1112 | } |
| 1113 | |
| 1114 | static void cdc_ncm_disconnect(struct usb_interface *intf) |
| 1115 | { |
| 1116 | struct usbnet *dev = usb_get_intfdata(intf); |
| 1117 | |
| 1118 | if (dev == NULL) |
| 1119 | return; /* already disconnected */ |
| 1120 | |
| 1121 | usbnet_disconnect(intf); |
| 1122 | } |
| 1123 | |
| 1124 | static int cdc_ncm_manage_power(struct usbnet *dev, int status) |
| 1125 | { |
| 1126 | dev->intf->needs_remote_wakeup = status; |
| 1127 | return 0; |
| 1128 | } |
| 1129 | |
| 1130 | static const struct driver_info cdc_ncm_info = { |
| 1131 | .description = "CDC NCM", |
Arnd Bergmann | c261344 | 2011-04-01 20:12:02 -0700 | [diff] [blame] | 1132 | .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET, |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1133 | .bind = cdc_ncm_bind, |
| 1134 | .unbind = cdc_ncm_unbind, |
| 1135 | .check_connect = cdc_ncm_check_connect, |
| 1136 | .manage_power = cdc_ncm_manage_power, |
| 1137 | .status = cdc_ncm_status, |
| 1138 | .rx_fixup = cdc_ncm_rx_fixup, |
| 1139 | .tx_fixup = cdc_ncm_tx_fixup, |
| 1140 | }; |
| 1141 | |
Dan Williams | f94898e | 2012-07-24 08:43:22 +0000 | [diff] [blame] | 1142 | /* Same as cdc_ncm_info, but with FLAG_WWAN */ |
| 1143 | static const struct driver_info wwan_info = { |
| 1144 | .description = "Mobile Broadband Network Device", |
| 1145 | .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET |
| 1146 | | FLAG_WWAN, |
| 1147 | .bind = cdc_ncm_bind, |
| 1148 | .unbind = cdc_ncm_unbind, |
| 1149 | .check_connect = cdc_ncm_check_connect, |
| 1150 | .manage_power = cdc_ncm_manage_power, |
| 1151 | .status = cdc_ncm_status, |
| 1152 | .rx_fixup = cdc_ncm_rx_fixup, |
| 1153 | .tx_fixup = cdc_ncm_tx_fixup, |
| 1154 | }; |
| 1155 | |
| 1156 | static const struct usb_device_id cdc_devs[] = { |
| 1157 | /* Ericsson MBM devices like F5521gw */ |
| 1158 | { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO |
| 1159 | | USB_DEVICE_ID_MATCH_VENDOR, |
| 1160 | .idVendor = 0x0bdb, |
| 1161 | .bInterfaceClass = USB_CLASS_COMM, |
| 1162 | .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM, |
| 1163 | .bInterfaceProtocol = USB_CDC_PROTO_NONE, |
| 1164 | .driver_info = (unsigned long) &wwan_info, |
| 1165 | }, |
| 1166 | |
Peter Meiser | f3a1ef9 | 2012-08-02 02:30:20 +0000 | [diff] [blame] | 1167 | /* Dell branded MBM devices like DW5550 */ |
| 1168 | { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO |
| 1169 | | USB_DEVICE_ID_MATCH_VENDOR, |
| 1170 | .idVendor = 0x413c, |
| 1171 | .bInterfaceClass = USB_CLASS_COMM, |
| 1172 | .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM, |
| 1173 | .bInterfaceProtocol = USB_CDC_PROTO_NONE, |
| 1174 | .driver_info = (unsigned long) &wwan_info, |
| 1175 | }, |
| 1176 | |
| 1177 | /* Toshiba branded MBM devices */ |
| 1178 | { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO |
| 1179 | | USB_DEVICE_ID_MATCH_VENDOR, |
| 1180 | .idVendor = 0x0930, |
| 1181 | .bInterfaceClass = USB_CLASS_COMM, |
| 1182 | .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM, |
| 1183 | .bInterfaceProtocol = USB_CDC_PROTO_NONE, |
| 1184 | .driver_info = (unsigned long) &wwan_info, |
| 1185 | }, |
| 1186 | |
Dan Williams | f94898e | 2012-07-24 08:43:22 +0000 | [diff] [blame] | 1187 | /* Generic CDC-NCM devices */ |
| 1188 | { USB_INTERFACE_INFO(USB_CLASS_COMM, |
| 1189 | USB_CDC_SUBCLASS_NCM, USB_CDC_PROTO_NONE), |
| 1190 | .driver_info = (unsigned long)&cdc_ncm_info, |
| 1191 | }, |
| 1192 | { |
| 1193 | }, |
| 1194 | }; |
| 1195 | MODULE_DEVICE_TABLE(usb, cdc_devs); |
| 1196 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1197 | static struct usb_driver cdc_ncm_driver = { |
| 1198 | .name = "cdc_ncm", |
| 1199 | .id_table = cdc_devs, |
| 1200 | .probe = cdc_ncm_probe, |
| 1201 | .disconnect = cdc_ncm_disconnect, |
| 1202 | .suspend = usbnet_suspend, |
| 1203 | .resume = usbnet_resume, |
Stefan Metzmacher | 85e3c65 | 2011-06-01 02:01:41 +0000 | [diff] [blame] | 1204 | .reset_resume = usbnet_resume, |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1205 | .supports_autosuspend = 1, |
Sarah Sharp | e1f12eb | 2012-04-23 10:08:51 -0700 | [diff] [blame] | 1206 | .disable_hub_initiated_lpm = 1, |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1207 | }; |
| 1208 | |
Greg Kroah-Hartman | d632eb1 | 2011-11-18 09:44:20 -0800 | [diff] [blame] | 1209 | module_usb_driver(cdc_ncm_driver); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1210 | |
| 1211 | MODULE_AUTHOR("Hans Petter Selasky"); |
| 1212 | MODULE_DESCRIPTION("USB CDC NCM host driver"); |
| 1213 | MODULE_LICENSE("Dual BSD/GPL"); |