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> |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 42 | #include <linux/netdevice.h> |
| 43 | #include <linux/ctype.h> |
| 44 | #include <linux/ethtool.h> |
| 45 | #include <linux/workqueue.h> |
| 46 | #include <linux/mii.h> |
| 47 | #include <linux/crc32.h> |
| 48 | #include <linux/usb.h> |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 49 | #include <linux/hrtimer.h> |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 50 | #include <linux/atomic.h> |
| 51 | #include <linux/usb/usbnet.h> |
| 52 | #include <linux/usb/cdc.h> |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 53 | #include <linux/usb/cdc_ncm.h> |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 54 | |
Bjørn Mork | 1e8bbe6 | 2013-03-14 01:05:13 +0000 | [diff] [blame] | 55 | #if IS_ENABLED(CONFIG_USB_NET_CDC_MBIM) |
| 56 | static bool prefer_mbim = true; |
| 57 | #else |
| 58 | static bool prefer_mbim; |
| 59 | #endif |
| 60 | module_param(prefer_mbim, bool, S_IRUGO | S_IWUSR); |
| 61 | MODULE_PARM_DESC(prefer_mbim, "Prefer MBIM setting on dual NCM/MBIM functions"); |
| 62 | |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 63 | static void cdc_ncm_txpath_bh(unsigned long param); |
| 64 | static void cdc_ncm_tx_timeout_start(struct cdc_ncm_ctx *ctx); |
| 65 | 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] | 66 | static struct usb_driver cdc_ncm_driver; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 67 | |
Bjørn Mork | beeecd4 | 2014-05-16 21:48:25 +0200 | [diff] [blame] | 68 | struct cdc_ncm_stats { |
| 69 | char stat_string[ETH_GSTRING_LEN]; |
| 70 | int sizeof_stat; |
| 71 | int stat_offset; |
| 72 | }; |
| 73 | |
| 74 | #define CDC_NCM_STAT(str, m) { \ |
| 75 | .stat_string = str, \ |
| 76 | .sizeof_stat = sizeof(((struct cdc_ncm_ctx *)0)->m), \ |
| 77 | .stat_offset = offsetof(struct cdc_ncm_ctx, m) } |
| 78 | #define CDC_NCM_SIMPLE_STAT(m) CDC_NCM_STAT(__stringify(m), m) |
| 79 | |
| 80 | static const struct cdc_ncm_stats cdc_ncm_gstrings_stats[] = { |
| 81 | CDC_NCM_SIMPLE_STAT(tx_reason_ntb_full), |
| 82 | CDC_NCM_SIMPLE_STAT(tx_reason_ndp_full), |
| 83 | CDC_NCM_SIMPLE_STAT(tx_reason_timeout), |
| 84 | CDC_NCM_SIMPLE_STAT(tx_reason_max_datagram), |
| 85 | CDC_NCM_SIMPLE_STAT(tx_overhead), |
| 86 | CDC_NCM_SIMPLE_STAT(tx_ntbs), |
| 87 | CDC_NCM_SIMPLE_STAT(rx_overhead), |
| 88 | CDC_NCM_SIMPLE_STAT(rx_ntbs), |
| 89 | }; |
| 90 | |
| 91 | static int cdc_ncm_get_sset_count(struct net_device __always_unused *netdev, int sset) |
| 92 | { |
| 93 | switch (sset) { |
| 94 | case ETH_SS_STATS: |
| 95 | return ARRAY_SIZE(cdc_ncm_gstrings_stats); |
| 96 | default: |
| 97 | return -EOPNOTSUPP; |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | static void cdc_ncm_get_ethtool_stats(struct net_device *netdev, |
| 102 | struct ethtool_stats __always_unused *stats, |
| 103 | u64 *data) |
| 104 | { |
| 105 | struct usbnet *dev = netdev_priv(netdev); |
| 106 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
| 107 | int i; |
| 108 | char *p = NULL; |
| 109 | |
| 110 | for (i = 0; i < ARRAY_SIZE(cdc_ncm_gstrings_stats); i++) { |
| 111 | p = (char *)ctx + cdc_ncm_gstrings_stats[i].stat_offset; |
| 112 | data[i] = (cdc_ncm_gstrings_stats[i].sizeof_stat == sizeof(u64)) ? *(u64 *)p : *(u32 *)p; |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | static void cdc_ncm_get_strings(struct net_device __always_unused *netdev, u32 stringset, u8 *data) |
| 117 | { |
| 118 | u8 *p = data; |
| 119 | int i; |
| 120 | |
| 121 | switch (stringset) { |
| 122 | case ETH_SS_STATS: |
| 123 | for (i = 0; i < ARRAY_SIZE(cdc_ncm_gstrings_stats); i++) { |
| 124 | memcpy(p, cdc_ncm_gstrings_stats[i].stat_string, ETH_GSTRING_LEN); |
| 125 | p += ETH_GSTRING_LEN; |
| 126 | } |
| 127 | } |
| 128 | } |
| 129 | |
Bjørn Mork | 6c4e548 | 2014-05-16 21:48:22 +0200 | [diff] [blame] | 130 | static int cdc_ncm_get_coalesce(struct net_device *netdev, |
| 131 | struct ethtool_coalesce *ec) |
| 132 | { |
| 133 | struct usbnet *dev = netdev_priv(netdev); |
| 134 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
| 135 | |
| 136 | /* assuming maximum sized dgrams and ignoring NDPs */ |
| 137 | ec->rx_max_coalesced_frames = ctx->rx_max / ctx->max_datagram_size; |
| 138 | ec->tx_max_coalesced_frames = ctx->tx_max / ctx->max_datagram_size; |
| 139 | |
| 140 | /* the timer will fire CDC_NCM_TIMER_PENDING_CNT times in a row */ |
| 141 | ec->tx_coalesce_usecs = (ctx->timer_interval * CDC_NCM_TIMER_PENDING_CNT) / NSEC_PER_USEC; |
| 142 | return 0; |
| 143 | } |
| 144 | |
| 145 | static void cdc_ncm_update_rxtx_max(struct usbnet *dev, u32 new_rx, u32 new_tx); |
| 146 | |
| 147 | static int cdc_ncm_set_coalesce(struct net_device *netdev, |
| 148 | struct ethtool_coalesce *ec) |
| 149 | { |
| 150 | struct usbnet *dev = netdev_priv(netdev); |
| 151 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
| 152 | u32 new_rx_max = ctx->rx_max; |
| 153 | u32 new_tx_max = ctx->tx_max; |
| 154 | |
| 155 | /* assuming maximum sized dgrams and a single NDP */ |
| 156 | if (ec->rx_max_coalesced_frames) |
| 157 | new_rx_max = ec->rx_max_coalesced_frames * ctx->max_datagram_size; |
| 158 | if (ec->tx_max_coalesced_frames) |
| 159 | new_tx_max = ec->tx_max_coalesced_frames * ctx->max_datagram_size; |
| 160 | |
| 161 | if (ec->tx_coalesce_usecs && |
| 162 | (ec->tx_coalesce_usecs < CDC_NCM_TIMER_INTERVAL_MIN * CDC_NCM_TIMER_PENDING_CNT || |
| 163 | ec->tx_coalesce_usecs > CDC_NCM_TIMER_INTERVAL_MAX * CDC_NCM_TIMER_PENDING_CNT)) |
| 164 | return -EINVAL; |
| 165 | |
| 166 | spin_lock_bh(&ctx->mtx); |
| 167 | ctx->timer_interval = ec->tx_coalesce_usecs * NSEC_PER_USEC / CDC_NCM_TIMER_PENDING_CNT; |
| 168 | if (!ctx->timer_interval) |
| 169 | ctx->tx_timer_pending = 0; |
| 170 | spin_unlock_bh(&ctx->mtx); |
| 171 | |
| 172 | /* inform device of new values */ |
| 173 | if (new_rx_max != ctx->rx_max || new_tx_max != ctx->tx_max) |
| 174 | cdc_ncm_update_rxtx_max(dev, new_rx_max, new_tx_max); |
| 175 | return 0; |
| 176 | } |
| 177 | |
| 178 | static const struct ethtool_ops cdc_ncm_ethtool_ops = { |
| 179 | .get_settings = usbnet_get_settings, |
| 180 | .set_settings = usbnet_set_settings, |
| 181 | .get_link = usbnet_get_link, |
| 182 | .nway_reset = usbnet_nway_reset, |
| 183 | .get_drvinfo = usbnet_get_drvinfo, |
| 184 | .get_msglevel = usbnet_get_msglevel, |
| 185 | .set_msglevel = usbnet_set_msglevel, |
| 186 | .get_ts_info = ethtool_op_get_ts_info, |
Bjørn Mork | beeecd4 | 2014-05-16 21:48:25 +0200 | [diff] [blame] | 187 | .get_sset_count = cdc_ncm_get_sset_count, |
| 188 | .get_strings = cdc_ncm_get_strings, |
| 189 | .get_ethtool_stats = cdc_ncm_get_ethtool_stats, |
Bjørn Mork | 6c4e548 | 2014-05-16 21:48:22 +0200 | [diff] [blame] | 190 | .get_coalesce = cdc_ncm_get_coalesce, |
| 191 | .set_coalesce = cdc_ncm_set_coalesce, |
| 192 | }; |
| 193 | |
Bjørn Mork | 5aa73d5 | 2014-05-16 21:48:18 +0200 | [diff] [blame] | 194 | /* handle rx_max and tx_max changes */ |
| 195 | static void cdc_ncm_update_rxtx_max(struct usbnet *dev, u32 new_rx, u32 new_tx) |
| 196 | { |
| 197 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
| 198 | u8 iface_no = ctx->control->cur_altsetting->desc.bInterfaceNumber; |
| 199 | u32 val, max, min; |
| 200 | |
| 201 | /* clamp new_rx to sane values */ |
| 202 | min = USB_CDC_NCM_NTB_MIN_IN_SIZE; |
| 203 | max = min_t(u32, CDC_NCM_NTB_MAX_SIZE_RX, le32_to_cpu(ctx->ncm_parm.dwNtbInMaxSize)); |
| 204 | |
| 205 | /* dwNtbInMaxSize spec violation? Use MIN size for both limits */ |
| 206 | if (max < min) { |
| 207 | dev_warn(&dev->intf->dev, "dwNtbInMaxSize=%u is too small. Using %u\n", |
| 208 | le32_to_cpu(ctx->ncm_parm.dwNtbInMaxSize), min); |
| 209 | max = min; |
| 210 | } |
| 211 | |
| 212 | val = clamp_t(u32, new_rx, min, max); |
| 213 | if (val != new_rx) { |
| 214 | dev_dbg(&dev->intf->dev, "rx_max must be in the [%u, %u] range. Using %u\n", |
| 215 | min, max, val); |
| 216 | } |
| 217 | |
Bjørn Mork | 68864ab | 2014-05-16 21:48:21 +0200 | [diff] [blame] | 218 | /* usbnet use these values for sizing rx queues */ |
| 219 | dev->rx_urb_size = val; |
| 220 | |
Bjørn Mork | 5aa73d5 | 2014-05-16 21:48:18 +0200 | [diff] [blame] | 221 | /* inform device about NTB input size changes */ |
| 222 | if (val != ctx->rx_max) { |
| 223 | __le32 dwNtbInMaxSize = cpu_to_le32(val); |
| 224 | |
| 225 | dev_info(&dev->intf->dev, "setting rx_max = %u\n", val); |
Bjørn Mork | 68864ab | 2014-05-16 21:48:21 +0200 | [diff] [blame] | 226 | |
| 227 | /* need to unlink rx urbs before increasing buffer size */ |
| 228 | if (netif_running(dev->net) && dev->rx_urb_size > ctx->rx_max) |
| 229 | usbnet_unlink_rx_urbs(dev); |
| 230 | |
| 231 | /* tell device to use new size */ |
Bjørn Mork | 5aa73d5 | 2014-05-16 21:48:18 +0200 | [diff] [blame] | 232 | if (usbnet_write_cmd(dev, USB_CDC_SET_NTB_INPUT_SIZE, |
| 233 | USB_TYPE_CLASS | USB_DIR_OUT |
| 234 | | USB_RECIP_INTERFACE, |
| 235 | 0, iface_no, &dwNtbInMaxSize, 4) < 0) |
| 236 | dev_dbg(&dev->intf->dev, "Setting NTB Input Size failed\n"); |
| 237 | else |
| 238 | ctx->rx_max = val; |
| 239 | } |
| 240 | |
| 241 | /* clamp new_tx to sane values */ |
Bjørn Mork | 70559b8 | 2014-05-16 21:48:23 +0200 | [diff] [blame] | 242 | min = ctx->max_datagram_size + ctx->max_ndp_size + sizeof(struct usb_cdc_ncm_nth16); |
Bjørn Mork | 5aa73d5 | 2014-05-16 21:48:18 +0200 | [diff] [blame] | 243 | max = min_t(u32, CDC_NCM_NTB_MAX_SIZE_TX, le32_to_cpu(ctx->ncm_parm.dwNtbOutMaxSize)); |
| 244 | |
| 245 | /* some devices set dwNtbOutMaxSize too low for the above default */ |
| 246 | min = min(min, max); |
| 247 | |
| 248 | val = clamp_t(u32, new_tx, min, max); |
| 249 | if (val != new_tx) { |
| 250 | dev_dbg(&dev->intf->dev, "tx_max must be in the [%u, %u] range. Using %u\n", |
| 251 | min, max, val); |
| 252 | } |
| 253 | if (val != ctx->tx_max) |
| 254 | dev_info(&dev->intf->dev, "setting tx_max = %u\n", val); |
Bjørn Mork | 08c74fc | 2014-05-16 21:48:20 +0200 | [diff] [blame] | 255 | |
| 256 | /* Adding a pad byte here if necessary simplifies the handling |
| 257 | * in cdc_ncm_fill_tx_frame, making tx_max always represent |
| 258 | * the real skb max size. |
| 259 | * |
| 260 | * We cannot use dev->maxpacket here because this is called from |
| 261 | * .bind which is called before usbnet sets up dev->maxpacket |
| 262 | */ |
Bjørn Mork | 68864ab | 2014-05-16 21:48:21 +0200 | [diff] [blame] | 263 | if (val != le32_to_cpu(ctx->ncm_parm.dwNtbOutMaxSize) && |
| 264 | val % usb_maxpacket(dev->udev, dev->out, 1) == 0) |
| 265 | val++; |
Bjørn Mork | 08c74fc | 2014-05-16 21:48:20 +0200 | [diff] [blame] | 266 | |
Bjørn Mork | 68864ab | 2014-05-16 21:48:21 +0200 | [diff] [blame] | 267 | /* we might need to flush any pending tx buffers if running */ |
| 268 | if (netif_running(dev->net) && val > ctx->tx_max) { |
| 269 | netif_tx_lock_bh(dev->net); |
| 270 | usbnet_start_xmit(NULL, dev->net); |
| 271 | ctx->tx_max = val; |
| 272 | netif_tx_unlock_bh(dev->net); |
| 273 | } else { |
| 274 | ctx->tx_max = val; |
| 275 | } |
| 276 | |
Bjørn Mork | 08c74fc | 2014-05-16 21:48:20 +0200 | [diff] [blame] | 277 | dev->hard_mtu = ctx->tx_max; |
Bjørn Mork | 68864ab | 2014-05-16 21:48:21 +0200 | [diff] [blame] | 278 | |
| 279 | /* max qlen depend on hard_mtu and rx_urb_size */ |
| 280 | usbnet_update_max_qlen(dev); |
Bjørn Mork | 43e4c6d | 2014-05-16 21:48:24 +0200 | [diff] [blame] | 281 | |
| 282 | /* never pad more than 3 full USB packets per transfer */ |
| 283 | ctx->min_tx_pkt = clamp_t(u16, ctx->tx_max - 3 * usb_maxpacket(dev->udev, dev->out, 1), |
| 284 | CDC_NCM_MIN_TX_PKT, ctx->tx_max); |
Bjørn Mork | 5aa73d5 | 2014-05-16 21:48:18 +0200 | [diff] [blame] | 285 | } |
| 286 | |
Bjørn Mork | f8afb73 | 2014-05-16 21:48:19 +0200 | [diff] [blame] | 287 | /* helpers for NCM and MBIM differences */ |
| 288 | static u8 cdc_ncm_flags(struct usbnet *dev) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 289 | { |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 290 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 291 | |
Bjørn Mork | f8afb73 | 2014-05-16 21:48:19 +0200 | [diff] [blame] | 292 | if (cdc_ncm_comm_intf_is_mbim(dev->intf->cur_altsetting) && ctx->mbim_desc) |
| 293 | return ctx->mbim_desc->bmNetworkCapabilities; |
| 294 | if (ctx->func_desc) |
| 295 | return ctx->func_desc->bmNetworkCapabilities; |
| 296 | return 0; |
| 297 | } |
| 298 | |
| 299 | static int cdc_ncm_eth_hlen(struct usbnet *dev) |
| 300 | { |
| 301 | if (cdc_ncm_comm_intf_is_mbim(dev->intf->cur_altsetting)) |
| 302 | return 0; |
| 303 | return ETH_HLEN; |
| 304 | } |
| 305 | |
| 306 | static u32 cdc_ncm_min_dgram_size(struct usbnet *dev) |
| 307 | { |
| 308 | if (cdc_ncm_comm_intf_is_mbim(dev->intf->cur_altsetting)) |
| 309 | return CDC_MBIM_MIN_DATAGRAM_SIZE; |
| 310 | return CDC_NCM_MIN_DATAGRAM_SIZE; |
| 311 | } |
| 312 | |
| 313 | static u32 cdc_ncm_max_dgram_size(struct usbnet *dev) |
| 314 | { |
| 315 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
| 316 | |
| 317 | if (cdc_ncm_comm_intf_is_mbim(dev->intf->cur_altsetting) && ctx->mbim_desc) |
| 318 | return le16_to_cpu(ctx->mbim_desc->wMaxSegmentSize); |
| 319 | if (ctx->ether_desc) |
| 320 | return le16_to_cpu(ctx->ether_desc->wMaxSegmentSize); |
| 321 | return CDC_NCM_MAX_DATAGRAM_SIZE; |
| 322 | } |
| 323 | |
| 324 | /* initial one-time device setup. MUST be called with the data interface |
| 325 | * in altsetting 0 |
| 326 | */ |
| 327 | static int cdc_ncm_init(struct usbnet *dev) |
| 328 | { |
| 329 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
| 330 | u8 iface_no = ctx->control->cur_altsetting->desc.bInterfaceNumber; |
| 331 | int err; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 332 | |
Ming Lei | 90b8b03 | 2012-10-24 19:46:56 +0000 | [diff] [blame] | 333 | err = usbnet_read_cmd(dev, USB_CDC_GET_NTB_PARAMETERS, |
| 334 | USB_TYPE_CLASS | USB_DIR_IN |
| 335 | |USB_RECIP_INTERFACE, |
Bjørn Mork | ff0992e9 | 2014-03-17 16:25:18 +0100 | [diff] [blame] | 336 | 0, iface_no, &ctx->ncm_parm, |
| 337 | sizeof(ctx->ncm_parm)); |
Giuseppe Scrivano | 36c3541 | 2011-08-03 22:10:29 +0000 | [diff] [blame] | 338 | if (err < 0) { |
Bjørn Mork | 59ede31 | 2013-11-01 11:16:59 +0100 | [diff] [blame] | 339 | dev_err(&dev->intf->dev, "failed GET_NTB_PARAMETERS\n"); |
| 340 | return err; /* GET_NTB_PARAMETERS is required */ |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 341 | } |
| 342 | |
Bjørn Mork | f8afb73 | 2014-05-16 21:48:19 +0200 | [diff] [blame] | 343 | /* set CRC Mode */ |
| 344 | if (cdc_ncm_flags(dev) & USB_CDC_NCM_NCAP_CRC_MODE) { |
| 345 | dev_dbg(&dev->intf->dev, "Setting CRC mode off\n"); |
| 346 | err = usbnet_write_cmd(dev, USB_CDC_SET_CRC_MODE, |
| 347 | USB_TYPE_CLASS | USB_DIR_OUT |
| 348 | | USB_RECIP_INTERFACE, |
| 349 | USB_CDC_NCM_CRC_NOT_APPENDED, |
| 350 | iface_no, NULL, 0); |
| 351 | if (err < 0) |
| 352 | dev_err(&dev->intf->dev, "SET_CRC_MODE failed\n"); |
| 353 | } |
| 354 | |
| 355 | /* set NTB format, if both formats are supported. |
| 356 | * |
| 357 | * "The host shall only send this command while the NCM Data |
| 358 | * Interface is in alternate setting 0." |
| 359 | */ |
| 360 | if (le16_to_cpu(ctx->ncm_parm.bmNtbFormatsSupported) & USB_CDC_NCM_NTH32_SIGN) { |
| 361 | dev_dbg(&dev->intf->dev, "Setting NTB format to 16-bit\n"); |
| 362 | err = usbnet_write_cmd(dev, USB_CDC_SET_NTB_FORMAT, |
| 363 | USB_TYPE_CLASS | USB_DIR_OUT |
| 364 | | USB_RECIP_INTERFACE, |
| 365 | USB_CDC_NCM_NTB16_FORMAT, |
| 366 | iface_no, NULL, 0); |
| 367 | if (err < 0) |
| 368 | dev_err(&dev->intf->dev, "SET_NTB_FORMAT failed\n"); |
| 369 | } |
| 370 | |
| 371 | /* set initial device values */ |
Bjørn Mork | ff0992e9 | 2014-03-17 16:25:18 +0100 | [diff] [blame] | 372 | ctx->rx_max = le32_to_cpu(ctx->ncm_parm.dwNtbInMaxSize); |
| 373 | ctx->tx_max = le32_to_cpu(ctx->ncm_parm.dwNtbOutMaxSize); |
| 374 | ctx->tx_remainder = le16_to_cpu(ctx->ncm_parm.wNdpOutPayloadRemainder); |
| 375 | ctx->tx_modulus = le16_to_cpu(ctx->ncm_parm.wNdpOutDivisor); |
| 376 | ctx->tx_ndp_modulus = le16_to_cpu(ctx->ncm_parm.wNdpOutAlignment); |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 377 | /* devices prior to NCM Errata shall set this field to zero */ |
Bjørn Mork | ff0992e9 | 2014-03-17 16:25:18 +0100 | [diff] [blame] | 378 | ctx->tx_max_datagrams = le16_to_cpu(ctx->ncm_parm.wNtbOutMaxDatagrams); |
Bjørn Mork | 47175e5 | 2013-11-01 11:16:58 +0100 | [diff] [blame] | 379 | |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 380 | dev_dbg(&dev->intf->dev, |
| 381 | "dwNtbInMaxSize=%u dwNtbOutMaxSize=%u wNdpOutPayloadRemainder=%u wNdpOutDivisor=%u wNdpOutAlignment=%u wNtbOutMaxDatagrams=%u flags=0x%x\n", |
| 382 | ctx->rx_max, ctx->tx_max, ctx->tx_remainder, ctx->tx_modulus, |
Bjørn Mork | f8afb73 | 2014-05-16 21:48:19 +0200 | [diff] [blame] | 383 | ctx->tx_ndp_modulus, ctx->tx_max_datagrams, cdc_ncm_flags(dev)); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 384 | |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 385 | /* max count of tx datagrams */ |
| 386 | if ((ctx->tx_max_datagrams == 0) || |
| 387 | (ctx->tx_max_datagrams > CDC_NCM_DPT_DATAGRAMS_MAX)) |
| 388 | ctx->tx_max_datagrams = CDC_NCM_DPT_DATAGRAMS_MAX; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 389 | |
Bjørn Mork | 70559b8 | 2014-05-16 21:48:23 +0200 | [diff] [blame] | 390 | /* set up maximum NDP size */ |
| 391 | ctx->max_ndp_size = sizeof(struct usb_cdc_ncm_ndp16) + (ctx->tx_max_datagrams + 1) * sizeof(struct usb_cdc_ncm_dpe16); |
| 392 | |
Bjørn Mork | 6c4e548 | 2014-05-16 21:48:22 +0200 | [diff] [blame] | 393 | /* initial coalescing timer interval */ |
| 394 | ctx->timer_interval = CDC_NCM_TIMER_INTERVAL_USEC * NSEC_PER_USEC; |
| 395 | |
Bjørn Mork | f8afb73 | 2014-05-16 21:48:19 +0200 | [diff] [blame] | 396 | return 0; |
| 397 | } |
| 398 | |
| 399 | /* set a new max datagram size */ |
| 400 | static void cdc_ncm_set_dgram_size(struct usbnet *dev, int new_size) |
| 401 | { |
| 402 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
| 403 | u8 iface_no = ctx->control->cur_altsetting->desc.bInterfaceNumber; |
| 404 | __le16 max_datagram_size; |
| 405 | u16 mbim_mtu; |
| 406 | int err; |
| 407 | |
| 408 | /* set default based on descriptors */ |
| 409 | ctx->max_datagram_size = clamp_t(u32, new_size, |
| 410 | cdc_ncm_min_dgram_size(dev), |
| 411 | CDC_NCM_MAX_DATAGRAM_SIZE); |
| 412 | |
| 413 | /* inform the device about the selected Max Datagram Size? */ |
| 414 | if (!(cdc_ncm_flags(dev) & USB_CDC_NCM_NCAP_MAX_DATAGRAM_SIZE)) |
| 415 | goto out; |
| 416 | |
| 417 | /* read current mtu value from device */ |
| 418 | err = usbnet_read_cmd(dev, USB_CDC_GET_MAX_DATAGRAM_SIZE, |
| 419 | USB_TYPE_CLASS | USB_DIR_IN | USB_RECIP_INTERFACE, |
| 420 | 0, iface_no, &max_datagram_size, 2); |
| 421 | if (err < 0) { |
| 422 | dev_dbg(&dev->intf->dev, "GET_MAX_DATAGRAM_SIZE failed\n"); |
| 423 | goto out; |
| 424 | } |
| 425 | |
| 426 | if (le16_to_cpu(max_datagram_size) == ctx->max_datagram_size) |
| 427 | goto out; |
| 428 | |
| 429 | max_datagram_size = cpu_to_le16(ctx->max_datagram_size); |
| 430 | err = usbnet_write_cmd(dev, USB_CDC_SET_MAX_DATAGRAM_SIZE, |
| 431 | USB_TYPE_CLASS | USB_DIR_OUT | USB_RECIP_INTERFACE, |
| 432 | 0, iface_no, &max_datagram_size, 2); |
| 433 | if (err < 0) |
| 434 | dev_dbg(&dev->intf->dev, "SET_MAX_DATAGRAM_SIZE failed\n"); |
| 435 | |
| 436 | out: |
| 437 | /* set MTU to max supported by the device if necessary */ |
| 438 | dev->net->mtu = min_t(int, dev->net->mtu, ctx->max_datagram_size - cdc_ncm_eth_hlen(dev)); |
| 439 | |
| 440 | /* do not exceed operater preferred MTU */ |
| 441 | if (ctx->mbim_extended_desc) { |
| 442 | mbim_mtu = le16_to_cpu(ctx->mbim_extended_desc->wMTU); |
| 443 | if (mbim_mtu != 0 && mbim_mtu < dev->net->mtu) |
| 444 | dev->net->mtu = mbim_mtu; |
| 445 | } |
| 446 | } |
| 447 | |
| 448 | static void cdc_ncm_fix_modulus(struct usbnet *dev) |
| 449 | { |
| 450 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
| 451 | u32 val; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 452 | |
| 453 | /* |
| 454 | * verify that the structure alignment is: |
| 455 | * - power of two |
| 456 | * - not greater than the maximum transmit length |
| 457 | * - not less than four bytes |
| 458 | */ |
| 459 | val = ctx->tx_ndp_modulus; |
| 460 | |
| 461 | if ((val < USB_CDC_NCM_NDP_ALIGN_MIN_SIZE) || |
| 462 | (val != ((-val) & val)) || (val >= ctx->tx_max)) { |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 463 | dev_dbg(&dev->intf->dev, "Using default alignment: 4 bytes\n"); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 464 | ctx->tx_ndp_modulus = USB_CDC_NCM_NDP_ALIGN_MIN_SIZE; |
| 465 | } |
| 466 | |
| 467 | /* |
| 468 | * verify that the payload alignment is: |
| 469 | * - power of two |
| 470 | * - not greater than the maximum transmit length |
| 471 | * - not less than four bytes |
| 472 | */ |
| 473 | val = ctx->tx_modulus; |
| 474 | |
| 475 | if ((val < USB_CDC_NCM_NDP_ALIGN_MIN_SIZE) || |
| 476 | (val != ((-val) & val)) || (val >= ctx->tx_max)) { |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 477 | dev_dbg(&dev->intf->dev, "Using default transmit modulus: 4 bytes\n"); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 478 | ctx->tx_modulus = USB_CDC_NCM_NDP_ALIGN_MIN_SIZE; |
| 479 | } |
| 480 | |
| 481 | /* verify the payload remainder */ |
| 482 | if (ctx->tx_remainder >= ctx->tx_modulus) { |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 483 | dev_dbg(&dev->intf->dev, "Using default transmit remainder: 0 bytes\n"); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 484 | ctx->tx_remainder = 0; |
| 485 | } |
| 486 | |
| 487 | /* adjust TX-remainder according to NCM specification. */ |
Bjørn Mork | f8afb73 | 2014-05-16 21:48:19 +0200 | [diff] [blame] | 488 | ctx->tx_remainder = ((ctx->tx_remainder - cdc_ncm_eth_hlen(dev)) & |
Greg Suarez | 2d1c431 | 2012-10-22 10:56:30 +0000 | [diff] [blame] | 489 | (ctx->tx_modulus - 1)); |
Bjørn Mork | f8afb73 | 2014-05-16 21:48:19 +0200 | [diff] [blame] | 490 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 491 | |
Bjørn Mork | f8afb73 | 2014-05-16 21:48:19 +0200 | [diff] [blame] | 492 | static int cdc_ncm_setup(struct usbnet *dev) |
| 493 | { |
| 494 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
Bjørn Mork | 50f1cb1 | 2014-05-16 21:48:26 +0200 | [diff] [blame] | 495 | u32 def_rx, def_tx; |
| 496 | |
| 497 | /* be conservative when selecting intial buffer size to |
| 498 | * increase the number of hosts this will work for |
| 499 | */ |
| 500 | def_rx = min_t(u32, CDC_NCM_NTB_DEF_SIZE_RX, |
| 501 | le32_to_cpu(ctx->ncm_parm.dwNtbInMaxSize)); |
| 502 | def_tx = min_t(u32, CDC_NCM_NTB_DEF_SIZE_TX, |
| 503 | le32_to_cpu(ctx->ncm_parm.dwNtbOutMaxSize)); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 504 | |
Bjørn Mork | f8afb73 | 2014-05-16 21:48:19 +0200 | [diff] [blame] | 505 | /* clamp rx_max and tx_max and inform device */ |
Bjørn Mork | 50f1cb1 | 2014-05-16 21:48:26 +0200 | [diff] [blame] | 506 | cdc_ncm_update_rxtx_max(dev, def_rx, def_tx); |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 507 | |
Bjørn Mork | f8afb73 | 2014-05-16 21:48:19 +0200 | [diff] [blame] | 508 | /* sanitize the modulus and remainder values */ |
| 509 | cdc_ncm_fix_modulus(dev); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 510 | |
Bjørn Mork | f8afb73 | 2014-05-16 21:48:19 +0200 | [diff] [blame] | 511 | /* set max datagram size */ |
| 512 | cdc_ncm_set_dgram_size(dev, cdc_ncm_max_dgram_size(dev)); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 513 | return 0; |
| 514 | } |
| 515 | |
| 516 | static void |
Bjørn Mork | ff1632a | 2013-11-01 11:16:41 +0100 | [diff] [blame] | 517 | cdc_ncm_find_endpoints(struct usbnet *dev, struct usb_interface *intf) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 518 | { |
Bjørn Mork | ff1632a | 2013-11-01 11:16:41 +0100 | [diff] [blame] | 519 | struct usb_host_endpoint *e, *in = NULL, *out = NULL; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 520 | u8 ep; |
| 521 | |
| 522 | for (ep = 0; ep < intf->cur_altsetting->desc.bNumEndpoints; ep++) { |
| 523 | |
| 524 | e = intf->cur_altsetting->endpoint + ep; |
| 525 | switch (e->desc.bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) { |
| 526 | case USB_ENDPOINT_XFER_INT: |
| 527 | if (usb_endpoint_dir_in(&e->desc)) { |
Bjørn Mork | ff1632a | 2013-11-01 11:16:41 +0100 | [diff] [blame] | 528 | if (!dev->status) |
| 529 | dev->status = e; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 530 | } |
| 531 | break; |
| 532 | |
| 533 | case USB_ENDPOINT_XFER_BULK: |
| 534 | if (usb_endpoint_dir_in(&e->desc)) { |
Bjørn Mork | ff1632a | 2013-11-01 11:16:41 +0100 | [diff] [blame] | 535 | if (!in) |
| 536 | in = e; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 537 | } else { |
Bjørn Mork | ff1632a | 2013-11-01 11:16:41 +0100 | [diff] [blame] | 538 | if (!out) |
| 539 | out = e; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 540 | } |
| 541 | break; |
| 542 | |
| 543 | default: |
| 544 | break; |
| 545 | } |
| 546 | } |
Bjørn Mork | ff1632a | 2013-11-01 11:16:41 +0100 | [diff] [blame] | 547 | if (in && !dev->in) |
| 548 | dev->in = usb_rcvbulkpipe(dev->udev, |
| 549 | in->desc.bEndpointAddress & |
| 550 | USB_ENDPOINT_NUMBER_MASK); |
| 551 | if (out && !dev->out) |
| 552 | dev->out = usb_sndbulkpipe(dev->udev, |
| 553 | out->desc.bEndpointAddress & |
| 554 | USB_ENDPOINT_NUMBER_MASK); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | static void cdc_ncm_free(struct cdc_ncm_ctx *ctx) |
| 558 | { |
| 559 | if (ctx == NULL) |
| 560 | return; |
| 561 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 562 | if (ctx->tx_rem_skb != NULL) { |
| 563 | dev_kfree_skb_any(ctx->tx_rem_skb); |
| 564 | ctx->tx_rem_skb = NULL; |
| 565 | } |
| 566 | |
| 567 | if (ctx->tx_curr_skb != NULL) { |
| 568 | dev_kfree_skb_any(ctx->tx_curr_skb); |
| 569 | ctx->tx_curr_skb = NULL; |
| 570 | } |
| 571 | |
| 572 | kfree(ctx); |
| 573 | } |
| 574 | |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 575 | 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] | 576 | { |
Bjørn Mork | 8329223 | 2013-11-01 11:16:47 +0100 | [diff] [blame] | 577 | const struct usb_cdc_union_desc *union_desc = NULL; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 578 | struct cdc_ncm_ctx *ctx; |
| 579 | struct usb_driver *driver; |
| 580 | u8 *buf; |
| 581 | int len; |
| 582 | int temp; |
| 583 | u8 iface_no; |
| 584 | |
Thomas Meyer | c796984 | 2011-11-17 12:43:40 +0000 | [diff] [blame] | 585 | ctx = kzalloc(sizeof(*ctx), GFP_KERNEL); |
Devendra Naga | 8f0923c | 2013-03-29 23:03:22 +0000 | [diff] [blame] | 586 | if (!ctx) |
| 587 | return -ENOMEM; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 588 | |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 589 | hrtimer_init(&ctx->tx_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 590 | ctx->tx_timer.function = &cdc_ncm_tx_timer_cb; |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 591 | ctx->bh.data = (unsigned long)dev; |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 592 | ctx->bh.func = cdc_ncm_txpath_bh; |
| 593 | atomic_set(&ctx->stop, 0); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 594 | spin_lock_init(&ctx->mtx); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 595 | |
| 596 | /* store ctx pointer in device data field */ |
| 597 | dev->data[0] = (unsigned long)ctx; |
| 598 | |
Bjørn Mork | 9fe0234 | 2013-11-01 11:16:48 +0100 | [diff] [blame] | 599 | /* only the control interface can be successfully probed */ |
| 600 | ctx->control = intf; |
| 601 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 602 | /* get some pointers */ |
| 603 | driver = driver_of(intf); |
| 604 | buf = intf->cur_altsetting->extra; |
| 605 | len = intf->cur_altsetting->extralen; |
| 606 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 607 | /* parse through descriptors associated with control interface */ |
| 608 | while ((len > 0) && (buf[0] > 2) && (buf[0] <= len)) { |
| 609 | |
| 610 | if (buf[1] != USB_DT_CS_INTERFACE) |
| 611 | goto advance; |
| 612 | |
| 613 | switch (buf[2]) { |
| 614 | case USB_CDC_UNION_TYPE: |
Bjørn Mork | 8329223 | 2013-11-01 11:16:47 +0100 | [diff] [blame] | 615 | if (buf[0] < sizeof(*union_desc)) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 616 | break; |
| 617 | |
Bjørn Mork | 8329223 | 2013-11-01 11:16:47 +0100 | [diff] [blame] | 618 | union_desc = (const struct usb_cdc_union_desc *)buf; |
Bjørn Mork | 9fe0234 | 2013-11-01 11:16:48 +0100 | [diff] [blame] | 619 | /* the master must be the interface we are probing */ |
| 620 | if (intf->cur_altsetting->desc.bInterfaceNumber != |
Bjørn Mork | 296e81f | 2013-11-01 11:17:00 +0100 | [diff] [blame] | 621 | union_desc->bMasterInterface0) { |
| 622 | dev_dbg(&intf->dev, "bogus CDC Union\n"); |
Bjørn Mork | 9fe0234 | 2013-11-01 11:16:48 +0100 | [diff] [blame] | 623 | goto error; |
Bjørn Mork | 296e81f | 2013-11-01 11:17:00 +0100 | [diff] [blame] | 624 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 625 | ctx->data = usb_ifnum_to_if(dev->udev, |
Bjørn Mork | 8329223 | 2013-11-01 11:16:47 +0100 | [diff] [blame] | 626 | union_desc->bSlaveInterface0); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 627 | break; |
| 628 | |
| 629 | case USB_CDC_ETHERNET_TYPE: |
| 630 | if (buf[0] < sizeof(*(ctx->ether_desc))) |
| 631 | break; |
| 632 | |
| 633 | ctx->ether_desc = |
| 634 | (const struct usb_cdc_ether_desc *)buf; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 635 | break; |
| 636 | |
| 637 | case USB_CDC_NCM_TYPE: |
| 638 | if (buf[0] < sizeof(*(ctx->func_desc))) |
| 639 | break; |
| 640 | |
| 641 | ctx->func_desc = (const struct usb_cdc_ncm_desc *)buf; |
| 642 | break; |
| 643 | |
Greg Suarez | 38396e4 | 2012-10-22 10:56:31 +0000 | [diff] [blame] | 644 | case USB_CDC_MBIM_TYPE: |
| 645 | if (buf[0] < sizeof(*(ctx->mbim_desc))) |
| 646 | break; |
| 647 | |
| 648 | ctx->mbim_desc = (const struct usb_cdc_mbim_desc *)buf; |
| 649 | break; |
| 650 | |
Ben Chan | 259fef0 | 2014-03-19 14:00:06 -0700 | [diff] [blame] | 651 | case USB_CDC_MBIM_EXTENDED_TYPE: |
| 652 | if (buf[0] < sizeof(*(ctx->mbim_extended_desc))) |
| 653 | break; |
| 654 | |
| 655 | ctx->mbim_extended_desc = |
| 656 | (const struct usb_cdc_mbim_extended_desc *)buf; |
| 657 | break; |
| 658 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 659 | default: |
| 660 | break; |
| 661 | } |
| 662 | advance: |
| 663 | /* advance to next descriptor */ |
| 664 | temp = buf[0]; |
| 665 | buf += temp; |
| 666 | len -= temp; |
| 667 | } |
| 668 | |
Bjørn Mork | 9992c2e | 2013-01-21 05:50:38 +0000 | [diff] [blame] | 669 | /* some buggy devices have an IAD but no CDC Union */ |
Bjørn Mork | 8329223 | 2013-11-01 11:16:47 +0100 | [diff] [blame] | 670 | if (!union_desc && intf->intf_assoc && intf->intf_assoc->bInterfaceCount == 2) { |
Bjørn Mork | 56a666d | 2013-01-25 23:36:59 +0000 | [diff] [blame] | 671 | ctx->data = usb_ifnum_to_if(dev->udev, intf->cur_altsetting->desc.bInterfaceNumber + 1); |
| 672 | dev_dbg(&intf->dev, "CDC Union missing - got slave from IAD\n"); |
Bjørn Mork | 9992c2e | 2013-01-21 05:50:38 +0000 | [diff] [blame] | 673 | } |
| 674 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 675 | /* check if we got everything */ |
Bjørn Mork | f8afb73 | 2014-05-16 21:48:19 +0200 | [diff] [blame] | 676 | if (!ctx->data) { |
| 677 | dev_dbg(&intf->dev, "CDC Union missing and no IAD found\n"); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 678 | goto error; |
Bjørn Mork | 296e81f | 2013-11-01 11:17:00 +0100 | [diff] [blame] | 679 | } |
Bjørn Mork | f8afb73 | 2014-05-16 21:48:19 +0200 | [diff] [blame] | 680 | if (cdc_ncm_comm_intf_is_mbim(intf->cur_altsetting)) { |
| 681 | if (!ctx->mbim_desc) { |
| 682 | dev_dbg(&intf->dev, "MBIM functional descriptor missing\n"); |
| 683 | goto error; |
| 684 | } |
| 685 | } else { |
| 686 | if (!ctx->ether_desc || !ctx->func_desc) { |
| 687 | dev_dbg(&intf->dev, "NCM or ECM functional descriptors missing\n"); |
| 688 | goto error; |
| 689 | } |
| 690 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 691 | |
Bjørn Mork | bbc8d92 | 2012-11-13 03:19:43 +0000 | [diff] [blame] | 692 | /* claim data interface, if different from control */ |
| 693 | if (ctx->data != ctx->control) { |
| 694 | temp = usb_driver_claim_interface(driver, ctx->data, dev); |
Bjørn Mork | 296e81f | 2013-11-01 11:17:00 +0100 | [diff] [blame] | 695 | if (temp) { |
| 696 | dev_dbg(&intf->dev, "failed to claim data intf\n"); |
Bjørn Mork | bbc8d92 | 2012-11-13 03:19:43 +0000 | [diff] [blame] | 697 | goto error; |
Bjørn Mork | 296e81f | 2013-11-01 11:17:00 +0100 | [diff] [blame] | 698 | } |
Bjørn Mork | bbc8d92 | 2012-11-13 03:19:43 +0000 | [diff] [blame] | 699 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 700 | |
| 701 | iface_no = ctx->data->cur_altsetting->desc.bInterfaceNumber; |
| 702 | |
| 703 | /* reset data interface */ |
| 704 | temp = usb_set_interface(dev->udev, iface_no, 0); |
Bjørn Mork | 296e81f | 2013-11-01 11:17:00 +0100 | [diff] [blame] | 705 | if (temp) { |
| 706 | dev_dbg(&intf->dev, "set interface failed\n"); |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 707 | goto error2; |
Bjørn Mork | 296e81f | 2013-11-01 11:17:00 +0100 | [diff] [blame] | 708 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 709 | |
Bjørn Mork | 08c74fc | 2014-05-16 21:48:20 +0200 | [diff] [blame] | 710 | /* initialize basic device settings */ |
| 711 | if (cdc_ncm_init(dev)) |
Bjørn Mork | ff0992e9 | 2014-03-17 16:25:18 +0100 | [diff] [blame] | 712 | goto error2; |
| 713 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 714 | /* configure data interface */ |
Greg Suarez | 38396e4 | 2012-10-22 10:56:31 +0000 | [diff] [blame] | 715 | temp = usb_set_interface(dev->udev, iface_no, data_altsetting); |
Bjørn Mork | 296e81f | 2013-11-01 11:17:00 +0100 | [diff] [blame] | 716 | if (temp) { |
| 717 | dev_dbg(&intf->dev, "set interface failed\n"); |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 718 | goto error2; |
Bjørn Mork | 296e81f | 2013-11-01 11:17:00 +0100 | [diff] [blame] | 719 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 720 | |
Bjørn Mork | ff1632a | 2013-11-01 11:16:41 +0100 | [diff] [blame] | 721 | cdc_ncm_find_endpoints(dev, ctx->data); |
| 722 | cdc_ncm_find_endpoints(dev, ctx->control); |
Bjørn Mork | 296e81f | 2013-11-01 11:17:00 +0100 | [diff] [blame] | 723 | if (!dev->in || !dev->out || !dev->status) { |
| 724 | dev_dbg(&intf->dev, "failed to collect endpoints\n"); |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 725 | goto error2; |
Bjørn Mork | 296e81f | 2013-11-01 11:17:00 +0100 | [diff] [blame] | 726 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 727 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 728 | usb_set_intfdata(ctx->data, dev); |
| 729 | usb_set_intfdata(ctx->control, dev); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 730 | |
Greg Suarez | 38396e4 | 2012-10-22 10:56:31 +0000 | [diff] [blame] | 731 | if (ctx->ether_desc) { |
| 732 | temp = usbnet_get_ethernet_addr(dev, ctx->ether_desc->iMACAddress); |
Bjørn Mork | 296e81f | 2013-11-01 11:17:00 +0100 | [diff] [blame] | 733 | if (temp) { |
| 734 | dev_dbg(&intf->dev, "failed to get mac address\n"); |
Greg Suarez | 38396e4 | 2012-10-22 10:56:31 +0000 | [diff] [blame] | 735 | goto error2; |
Bjørn Mork | 296e81f | 2013-11-01 11:17:00 +0100 | [diff] [blame] | 736 | } |
| 737 | dev_info(&intf->dev, "MAC-Address: %pM\n", dev->net->dev_addr); |
Greg Suarez | 38396e4 | 2012-10-22 10:56:31 +0000 | [diff] [blame] | 738 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 739 | |
Bjørn Mork | 08c74fc | 2014-05-16 21:48:20 +0200 | [diff] [blame] | 740 | /* finish setting up the device specific data */ |
| 741 | cdc_ncm_setup(dev); |
Bjørn Mork | ff0992e9 | 2014-03-17 16:25:18 +0100 | [diff] [blame] | 742 | |
Bjørn Mork | 6c4e548 | 2014-05-16 21:48:22 +0200 | [diff] [blame] | 743 | /* override ethtool_ops */ |
| 744 | dev->net->ethtool_ops = &cdc_ncm_ethtool_ops; |
| 745 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 746 | return 0; |
| 747 | |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 748 | error2: |
| 749 | usb_set_intfdata(ctx->control, NULL); |
| 750 | usb_set_intfdata(ctx->data, NULL); |
Bjørn Mork | 6b4ef60 | 2013-01-21 05:50:40 +0000 | [diff] [blame] | 751 | if (ctx->data != ctx->control) |
| 752 | usb_driver_release_interface(driver, ctx->data); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 753 | error: |
| 754 | cdc_ncm_free((struct cdc_ncm_ctx *)dev->data[0]); |
| 755 | dev->data[0] = 0; |
Bjørn Mork | 296e81f | 2013-11-01 11:17:00 +0100 | [diff] [blame] | 756 | dev_info(&intf->dev, "bind() failure\n"); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 757 | return -ENODEV; |
| 758 | } |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 759 | EXPORT_SYMBOL_GPL(cdc_ncm_bind_common); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 760 | |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 761 | void cdc_ncm_unbind(struct usbnet *dev, struct usb_interface *intf) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 762 | { |
| 763 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 764 | struct usb_driver *driver = driver_of(intf); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 765 | |
| 766 | if (ctx == NULL) |
| 767 | return; /* no setup */ |
| 768 | |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 769 | atomic_set(&ctx->stop, 1); |
| 770 | |
| 771 | if (hrtimer_active(&ctx->tx_timer)) |
| 772 | hrtimer_cancel(&ctx->tx_timer); |
| 773 | |
| 774 | tasklet_kill(&ctx->bh); |
| 775 | |
Bjørn Mork | bbc8d92 | 2012-11-13 03:19:43 +0000 | [diff] [blame] | 776 | /* handle devices with combined control and data interface */ |
| 777 | if (ctx->control == ctx->data) |
| 778 | ctx->data = NULL; |
| 779 | |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 780 | /* disconnect master --> disconnect slave */ |
| 781 | if (intf == ctx->control && ctx->data) { |
| 782 | usb_set_intfdata(ctx->data, NULL); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 783 | usb_driver_release_interface(driver, ctx->data); |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 784 | ctx->data = NULL; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 785 | |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 786 | } else if (intf == ctx->data && ctx->control) { |
| 787 | usb_set_intfdata(ctx->control, NULL); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 788 | usb_driver_release_interface(driver, ctx->control); |
Alexey Orishko | 19694ac | 2011-05-24 05:26:13 +0000 | [diff] [blame] | 789 | ctx->control = NULL; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 790 | } |
| 791 | |
Bjørn Mork | 3e51566 | 2013-11-01 11:16:40 +0100 | [diff] [blame] | 792 | usb_set_intfdata(intf, NULL); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 793 | cdc_ncm_free(ctx); |
| 794 | } |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 795 | EXPORT_SYMBOL_GPL(cdc_ncm_unbind); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 796 | |
Bjørn Mork | 50a0ffa | 2014-05-11 10:47:15 +0200 | [diff] [blame] | 797 | /* Return the number of the MBIM control interface altsetting iff it |
| 798 | * is preferred and available, |
Bjørn Mork | 1e8bbe6 | 2013-03-14 01:05:13 +0000 | [diff] [blame] | 799 | */ |
Bjørn Mork | 50a0ffa | 2014-05-11 10:47:15 +0200 | [diff] [blame] | 800 | u8 cdc_ncm_select_altsetting(struct usb_interface *intf) |
Greg Suarez | 38396e4 | 2012-10-22 10:56:31 +0000 | [diff] [blame] | 801 | { |
Bjørn Mork | 1e8bbe6 | 2013-03-14 01:05:13 +0000 | [diff] [blame] | 802 | struct usb_host_interface *alt; |
Greg Suarez | 38396e4 | 2012-10-22 10:56:31 +0000 | [diff] [blame] | 803 | |
Bjørn Mork | bd329e1 | 2012-10-22 10:56:38 +0000 | [diff] [blame] | 804 | /* The MBIM spec defines a NCM compatible default altsetting, |
| 805 | * which we may have matched: |
| 806 | * |
| 807 | * "Functions that implement both NCM 1.0 and MBIM (an |
| 808 | * “NCM/MBIM function”) according to this recommendation |
| 809 | * shall provide two alternate settings for the |
| 810 | * Communication Interface. Alternate setting 0, and the |
| 811 | * associated class and endpoint descriptors, shall be |
| 812 | * constructed according to the rules given for the |
| 813 | * Communication Interface in section 5 of [USBNCM10]. |
| 814 | * Alternate setting 1, and the associated class and |
| 815 | * endpoint descriptors, shall be constructed according to |
| 816 | * the rules given in section 6 (USB Device Model) of this |
| 817 | * specification." |
Bjørn Mork | bd329e1 | 2012-10-22 10:56:38 +0000 | [diff] [blame] | 818 | */ |
Bjørn Mork | 50a0ffa | 2014-05-11 10:47:15 +0200 | [diff] [blame] | 819 | if (intf->num_altsetting < 2) |
| 820 | return intf->cur_altsetting->desc.bAlternateSetting; |
| 821 | |
| 822 | if (prefer_mbim) { |
Bjørn Mork | 1e8bbe6 | 2013-03-14 01:05:13 +0000 | [diff] [blame] | 823 | alt = usb_altnum_to_altsetting(intf, CDC_NCM_COMM_ALTSETTING_MBIM); |
Bjørn Mork | 50a0ffa | 2014-05-11 10:47:15 +0200 | [diff] [blame] | 824 | if (alt && cdc_ncm_comm_intf_is_mbim(alt)) |
| 825 | return CDC_NCM_COMM_ALTSETTING_MBIM; |
Bjørn Mork | f350ca0 | 2013-02-13 12:09:52 +0000 | [diff] [blame] | 826 | } |
Bjørn Mork | 50a0ffa | 2014-05-11 10:47:15 +0200 | [diff] [blame] | 827 | return CDC_NCM_COMM_ALTSETTING_NCM; |
Bjørn Mork | 1e8bbe6 | 2013-03-14 01:05:13 +0000 | [diff] [blame] | 828 | } |
| 829 | EXPORT_SYMBOL_GPL(cdc_ncm_select_altsetting); |
| 830 | |
| 831 | static int cdc_ncm_bind(struct usbnet *dev, struct usb_interface *intf) |
| 832 | { |
| 833 | int ret; |
| 834 | |
| 835 | /* MBIM backwards compatible function? */ |
Bjørn Mork | 50a0ffa | 2014-05-11 10:47:15 +0200 | [diff] [blame] | 836 | if (cdc_ncm_select_altsetting(intf) != CDC_NCM_COMM_ALTSETTING_NCM) |
Bjørn Mork | 1e8bbe6 | 2013-03-14 01:05:13 +0000 | [diff] [blame] | 837 | return -ENODEV; |
Bjørn Mork | bd329e1 | 2012-10-22 10:56:38 +0000 | [diff] [blame] | 838 | |
Bjørn Mork | 50a0ffa | 2014-05-11 10:47:15 +0200 | [diff] [blame] | 839 | /* The NCM data altsetting is fixed */ |
| 840 | ret = cdc_ncm_bind_common(dev, intf, CDC_NCM_DATA_ALTSETTING_NCM); |
Greg Suarez | 38396e4 | 2012-10-22 10:56:31 +0000 | [diff] [blame] | 841 | |
| 842 | /* |
| 843 | * We should get an event when network connection is "connected" or |
| 844 | * "disconnected". Set network connection in "disconnected" state |
| 845 | * (carrier is OFF) during attach, so the IP network stack does not |
| 846 | * start IPv6 negotiation and more. |
| 847 | */ |
Ming Lei | 8a34b0a | 2013-04-11 04:40:33 +0000 | [diff] [blame] | 848 | usbnet_link_change(dev, 0, 0); |
Greg Suarez | 38396e4 | 2012-10-22 10:56:31 +0000 | [diff] [blame] | 849 | return ret; |
| 850 | } |
| 851 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 852 | 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] | 853 | { |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 854 | size_t align = ALIGN(skb->len, modulus) - skb->len + remainder; |
| 855 | |
| 856 | if (skb->len + align > max) |
| 857 | align = max - skb->len; |
| 858 | if (align && skb_tailroom(skb) >= align) |
| 859 | memset(skb_put(skb, align), 0, align); |
| 860 | } |
| 861 | |
| 862 | /* return a pointer to a valid struct usb_cdc_ncm_ndp16 of type sign, possibly |
| 863 | * allocating a new one within skb |
| 864 | */ |
| 865 | static struct usb_cdc_ncm_ndp16 *cdc_ncm_ndp(struct cdc_ncm_ctx *ctx, struct sk_buff *skb, __le32 sign, size_t reserve) |
| 866 | { |
| 867 | struct usb_cdc_ncm_ndp16 *ndp16 = NULL; |
| 868 | struct usb_cdc_ncm_nth16 *nth16 = (void *)skb->data; |
| 869 | size_t ndpoffset = le16_to_cpu(nth16->wNdpIndex); |
| 870 | |
| 871 | /* follow the chain of NDPs, looking for a match */ |
| 872 | while (ndpoffset) { |
| 873 | ndp16 = (struct usb_cdc_ncm_ndp16 *)(skb->data + ndpoffset); |
| 874 | if (ndp16->dwSignature == sign) |
| 875 | return ndp16; |
| 876 | ndpoffset = le16_to_cpu(ndp16->wNextNdpIndex); |
| 877 | } |
| 878 | |
| 879 | /* align new NDP */ |
| 880 | cdc_ncm_align_tail(skb, ctx->tx_ndp_modulus, 0, ctx->tx_max); |
| 881 | |
| 882 | /* verify that there is room for the NDP and the datagram (reserve) */ |
Bjørn Mork | 70559b8 | 2014-05-16 21:48:23 +0200 | [diff] [blame] | 883 | if ((ctx->tx_max - skb->len - reserve) < ctx->max_ndp_size) |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 884 | return NULL; |
| 885 | |
| 886 | /* link to it */ |
| 887 | if (ndp16) |
| 888 | ndp16->wNextNdpIndex = cpu_to_le16(skb->len); |
| 889 | else |
| 890 | nth16->wNdpIndex = cpu_to_le16(skb->len); |
| 891 | |
| 892 | /* push a new empty NDP */ |
Bjørn Mork | 70559b8 | 2014-05-16 21:48:23 +0200 | [diff] [blame] | 893 | ndp16 = (struct usb_cdc_ncm_ndp16 *)memset(skb_put(skb, ctx->max_ndp_size), 0, ctx->max_ndp_size); |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 894 | ndp16->dwSignature = sign; |
| 895 | ndp16->wLength = cpu_to_le16(sizeof(struct usb_cdc_ncm_ndp16) + sizeof(struct usb_cdc_ncm_dpe16)); |
| 896 | return ndp16; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 897 | } |
| 898 | |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 899 | struct sk_buff * |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 900 | cdc_ncm_fill_tx_frame(struct usbnet *dev, struct sk_buff *skb, __le32 sign) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 901 | { |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 902 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 903 | struct usb_cdc_ncm_nth16 *nth16; |
| 904 | struct usb_cdc_ncm_ndp16 *ndp16; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 905 | struct sk_buff *skb_out; |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 906 | u16 n = 0, index, ndplen; |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 907 | u8 ready2send = 0; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 908 | |
| 909 | /* if there is a remaining skb, it gets priority */ |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 910 | if (skb != NULL) { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 911 | swap(skb, ctx->tx_rem_skb); |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 912 | swap(sign, ctx->tx_rem_sign); |
| 913 | } else { |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 914 | ready2send = 1; |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 915 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 916 | |
| 917 | /* check if we are resuming an OUT skb */ |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 918 | skb_out = ctx->tx_curr_skb; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 919 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 920 | /* allocate a new OUT skb */ |
| 921 | if (!skb_out) { |
Bjørn Mork | 2057222 | 2013-11-01 11:16:38 +0100 | [diff] [blame] | 922 | skb_out = alloc_skb(ctx->tx_max, GFP_ATOMIC); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 923 | if (skb_out == NULL) { |
| 924 | if (skb != NULL) { |
| 925 | dev_kfree_skb_any(skb); |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 926 | dev->net->stats.tx_dropped++; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 927 | } |
| 928 | goto exit_no_skb; |
| 929 | } |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 930 | /* fill out the initial 16-bit NTB header */ |
| 931 | nth16 = (struct usb_cdc_ncm_nth16 *)memset(skb_put(skb_out, sizeof(struct usb_cdc_ncm_nth16)), 0, sizeof(struct usb_cdc_ncm_nth16)); |
| 932 | nth16->dwSignature = cpu_to_le32(USB_CDC_NCM_NTH16_SIGN); |
| 933 | nth16->wHeaderLength = cpu_to_le16(sizeof(struct usb_cdc_ncm_nth16)); |
| 934 | nth16->wSequence = cpu_to_le16(ctx->tx_seq++); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 935 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 936 | /* count total number of frames in this NTB */ |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 937 | ctx->tx_curr_frame_num = 0; |
Bjørn Mork | beeecd4 | 2014-05-16 21:48:25 +0200 | [diff] [blame] | 938 | |
| 939 | /* recent payload counter for this skb_out */ |
| 940 | ctx->tx_curr_frame_payload = 0; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 941 | } |
| 942 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 943 | for (n = ctx->tx_curr_frame_num; n < ctx->tx_max_datagrams; n++) { |
| 944 | /* send any remaining skb first */ |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 945 | if (skb == NULL) { |
| 946 | skb = ctx->tx_rem_skb; |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 947 | sign = ctx->tx_rem_sign; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 948 | ctx->tx_rem_skb = NULL; |
| 949 | |
| 950 | /* check for end of skb */ |
| 951 | if (skb == NULL) |
| 952 | break; |
| 953 | } |
| 954 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 955 | /* get the appropriate NDP for this skb */ |
| 956 | ndp16 = cdc_ncm_ndp(ctx, skb_out, sign, skb->len + ctx->tx_modulus + ctx->tx_remainder); |
| 957 | |
| 958 | /* align beginning of next frame */ |
| 959 | cdc_ncm_align_tail(skb_out, ctx->tx_modulus, ctx->tx_remainder, ctx->tx_max); |
| 960 | |
| 961 | /* check if we had enough room left for both NDP and frame */ |
| 962 | if (!ndp16 || skb_out->len + skb->len > ctx->tx_max) { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 963 | if (n == 0) { |
| 964 | /* won't fit, MTU problem? */ |
| 965 | dev_kfree_skb_any(skb); |
| 966 | skb = NULL; |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 967 | dev->net->stats.tx_dropped++; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 968 | } else { |
| 969 | /* no room for skb - store for later */ |
| 970 | if (ctx->tx_rem_skb != NULL) { |
| 971 | dev_kfree_skb_any(ctx->tx_rem_skb); |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 972 | dev->net->stats.tx_dropped++; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 973 | } |
| 974 | ctx->tx_rem_skb = skb; |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 975 | ctx->tx_rem_sign = sign; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 976 | skb = NULL; |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 977 | ready2send = 1; |
Bjørn Mork | beeecd4 | 2014-05-16 21:48:25 +0200 | [diff] [blame] | 978 | ctx->tx_reason_ntb_full++; /* count reason for transmitting */ |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 979 | } |
| 980 | break; |
| 981 | } |
| 982 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 983 | /* calculate frame number withing this NDP */ |
| 984 | ndplen = le16_to_cpu(ndp16->wLength); |
| 985 | 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] | 986 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 987 | /* OK, add this skb */ |
| 988 | ndp16->dpe16[index].wDatagramLength = cpu_to_le16(skb->len); |
| 989 | ndp16->dpe16[index].wDatagramIndex = cpu_to_le16(skb_out->len); |
| 990 | ndp16->wLength = cpu_to_le16(ndplen + sizeof(struct usb_cdc_ncm_dpe16)); |
| 991 | memcpy(skb_put(skb_out, skb->len), skb->data, skb->len); |
Bjørn Mork | beeecd4 | 2014-05-16 21:48:25 +0200 | [diff] [blame] | 992 | ctx->tx_curr_frame_payload += skb->len; /* count real tx payload data */ |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 993 | dev_kfree_skb_any(skb); |
| 994 | skb = NULL; |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 995 | |
| 996 | /* send now if this NDP is full */ |
| 997 | if (index >= CDC_NCM_DPT_DATAGRAMS_MAX) { |
| 998 | ready2send = 1; |
Bjørn Mork | beeecd4 | 2014-05-16 21:48:25 +0200 | [diff] [blame] | 999 | ctx->tx_reason_ndp_full++; /* count reason for transmitting */ |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 1000 | break; |
| 1001 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1002 | } |
| 1003 | |
| 1004 | /* free up any dangling skb */ |
| 1005 | if (skb != NULL) { |
| 1006 | dev_kfree_skb_any(skb); |
| 1007 | skb = NULL; |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 1008 | dev->net->stats.tx_dropped++; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1009 | } |
| 1010 | |
| 1011 | ctx->tx_curr_frame_num = n; |
| 1012 | |
| 1013 | if (n == 0) { |
| 1014 | /* wait for more frames */ |
| 1015 | /* push variables */ |
| 1016 | ctx->tx_curr_skb = skb_out; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1017 | goto exit_no_skb; |
| 1018 | |
Bjørn Mork | 6c4e548 | 2014-05-16 21:48:22 +0200 | [diff] [blame] | 1019 | } else if ((n < ctx->tx_max_datagrams) && (ready2send == 0) && (ctx->timer_interval > 0)) { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1020 | /* wait for more frames */ |
| 1021 | /* push variables */ |
| 1022 | ctx->tx_curr_skb = skb_out; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1023 | /* set the pending count */ |
| 1024 | if (n < CDC_NCM_RESTART_TIMER_DATAGRAM_CNT) |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 1025 | ctx->tx_timer_pending = CDC_NCM_TIMER_PENDING_CNT; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1026 | goto exit_no_skb; |
| 1027 | |
| 1028 | } else { |
Bjørn Mork | beeecd4 | 2014-05-16 21:48:25 +0200 | [diff] [blame] | 1029 | if (n == ctx->tx_max_datagrams) |
| 1030 | ctx->tx_reason_max_datagram++; /* count reason for transmitting */ |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1031 | /* frame goes out */ |
| 1032 | /* variables will be reset at next call */ |
| 1033 | } |
| 1034 | |
Bjørn Mork | 43e4c6d | 2014-05-16 21:48:24 +0200 | [diff] [blame] | 1035 | /* If collected data size is less or equal ctx->min_tx_pkt |
Bjørn Mork | 2057222 | 2013-11-01 11:16:38 +0100 | [diff] [blame] | 1036 | * bytes, we send buffers as it is. If we get more data, it |
| 1037 | * would be more efficient for USB HS mobile device with DMA |
| 1038 | * engine to receive a full size NTB, than canceling DMA |
| 1039 | * transfer and receiving a short packet. |
Bjørn Mork | 4d619f6 | 2013-11-01 11:16:49 +0100 | [diff] [blame] | 1040 | * |
| 1041 | * This optimization support is pointless if we end up sending |
| 1042 | * a ZLP after full sized NTBs. |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1043 | */ |
Bjørn Mork | 4d619f6 | 2013-11-01 11:16:49 +0100 | [diff] [blame] | 1044 | if (!(dev->driver_info->flags & FLAG_SEND_ZLP) && |
Bjørn Mork | 43e4c6d | 2014-05-16 21:48:24 +0200 | [diff] [blame] | 1045 | skb_out->len > ctx->min_tx_pkt) |
Bjørn Mork | 2057222 | 2013-11-01 11:16:38 +0100 | [diff] [blame] | 1046 | memset(skb_put(skb_out, ctx->tx_max - skb_out->len), 0, |
| 1047 | ctx->tx_max - skb_out->len); |
Bjørn Mork | 9becd70 | 2014-05-02 23:27:00 +0200 | [diff] [blame] | 1048 | else if (skb_out->len < ctx->tx_max && (skb_out->len % dev->maxpacket) == 0) |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 1049 | *skb_put(skb_out, 1) = 0; /* force short packet */ |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1050 | |
Bjørn Mork | c78b7c5 | 2012-10-22 10:56:34 +0000 | [diff] [blame] | 1051 | /* set final frame length */ |
| 1052 | nth16 = (struct usb_cdc_ncm_nth16 *)skb_out->data; |
| 1053 | nth16->wBlockLength = cpu_to_le16(skb_out->len); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1054 | |
| 1055 | /* return skb */ |
| 1056 | ctx->tx_curr_skb = NULL; |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 1057 | dev->net->stats.tx_packets += ctx->tx_curr_frame_num; |
Bjørn Mork | beeecd4 | 2014-05-16 21:48:25 +0200 | [diff] [blame] | 1058 | |
| 1059 | /* keep private stats: framing overhead and number of NTBs */ |
| 1060 | ctx->tx_overhead += skb_out->len - ctx->tx_curr_frame_payload; |
| 1061 | ctx->tx_ntbs++; |
| 1062 | |
| 1063 | /* usbnet has already counted all the framing overhead. |
| 1064 | * Adjust the stats so that the tx_bytes counter show real |
| 1065 | * payload data instead. |
| 1066 | */ |
| 1067 | dev->net->stats.tx_bytes -= skb_out->len - ctx->tx_curr_frame_payload; |
| 1068 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1069 | return skb_out; |
| 1070 | |
| 1071 | exit_no_skb: |
Bjørn Mork | 046c659 | 2014-05-16 21:48:29 +0200 | [diff] [blame^] | 1072 | /* Start timer, if there is a remaining non-empty skb */ |
| 1073 | if (ctx->tx_curr_skb != NULL && n > 0) |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 1074 | cdc_ncm_tx_timeout_start(ctx); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1075 | return NULL; |
| 1076 | } |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 1077 | EXPORT_SYMBOL_GPL(cdc_ncm_fill_tx_frame); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1078 | |
| 1079 | static void cdc_ncm_tx_timeout_start(struct cdc_ncm_ctx *ctx) |
| 1080 | { |
| 1081 | /* start timer, if not already started */ |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 1082 | if (!(hrtimer_active(&ctx->tx_timer) || atomic_read(&ctx->stop))) |
| 1083 | hrtimer_start(&ctx->tx_timer, |
Bjørn Mork | 6c4e548 | 2014-05-16 21:48:22 +0200 | [diff] [blame] | 1084 | ktime_set(0, ctx->timer_interval), |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 1085 | HRTIMER_MODE_REL); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1086 | } |
| 1087 | |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 1088 | static enum hrtimer_restart cdc_ncm_tx_timer_cb(struct hrtimer *timer) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1089 | { |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 1090 | struct cdc_ncm_ctx *ctx = |
| 1091 | container_of(timer, struct cdc_ncm_ctx, tx_timer); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1092 | |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 1093 | if (!atomic_read(&ctx->stop)) |
| 1094 | tasklet_schedule(&ctx->bh); |
| 1095 | return HRTIMER_NORESTART; |
| 1096 | } |
| 1097 | |
| 1098 | static void cdc_ncm_txpath_bh(unsigned long param) |
| 1099 | { |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 1100 | struct usbnet *dev = (struct usbnet *)param; |
| 1101 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 1102 | |
| 1103 | spin_lock_bh(&ctx->mtx); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1104 | if (ctx->tx_timer_pending != 0) { |
| 1105 | ctx->tx_timer_pending--; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1106 | cdc_ncm_tx_timeout_start(ctx); |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 1107 | spin_unlock_bh(&ctx->mtx); |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 1108 | } else if (dev->net != NULL) { |
Bjørn Mork | beeecd4 | 2014-05-16 21:48:25 +0200 | [diff] [blame] | 1109 | ctx->tx_reason_timeout++; /* count reason for transmitting */ |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 1110 | spin_unlock_bh(&ctx->mtx); |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 1111 | netif_tx_lock_bh(dev->net); |
| 1112 | usbnet_start_xmit(NULL, dev->net); |
| 1113 | netif_tx_unlock_bh(dev->net); |
Bjørn Mork | 7b1e0cb | 2012-10-25 21:44:09 +0000 | [diff] [blame] | 1114 | } else { |
| 1115 | spin_unlock_bh(&ctx->mtx); |
Alexey Orishko | f742aa8 | 2011-01-17 07:07:25 +0000 | [diff] [blame] | 1116 | } |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1117 | } |
| 1118 | |
Enrico Mioso | 2f69702c | 2013-11-04 09:50:47 +0100 | [diff] [blame] | 1119 | struct sk_buff * |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1120 | cdc_ncm_tx_fixup(struct usbnet *dev, struct sk_buff *skb, gfp_t flags) |
| 1121 | { |
| 1122 | struct sk_buff *skb_out; |
| 1123 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1124 | |
| 1125 | /* |
| 1126 | * The Ethernet API we are using does not support transmitting |
| 1127 | * multiple Ethernet frames in a single call. This driver will |
| 1128 | * accumulate multiple Ethernet frames and send out a larger |
| 1129 | * USB frame when the USB buffer is full or when a single jiffies |
| 1130 | * timeout happens. |
| 1131 | */ |
| 1132 | if (ctx == NULL) |
| 1133 | goto error; |
| 1134 | |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 1135 | spin_lock_bh(&ctx->mtx); |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 1136 | skb_out = cdc_ncm_fill_tx_frame(dev, skb, cpu_to_le32(USB_CDC_NCM_NDP16_NOCRC_SIGN)); |
Alexey Orishko | c84ff1d | 2012-03-14 11:26:10 +0000 | [diff] [blame] | 1137 | spin_unlock_bh(&ctx->mtx); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1138 | return skb_out; |
| 1139 | |
| 1140 | error: |
| 1141 | if (skb != NULL) |
| 1142 | dev_kfree_skb_any(skb); |
| 1143 | |
| 1144 | return NULL; |
| 1145 | } |
Enrico Mioso | 2f69702c | 2013-11-04 09:50:47 +0100 | [diff] [blame] | 1146 | EXPORT_SYMBOL_GPL(cdc_ncm_tx_fixup); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1147 | |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 1148 | /* 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] | 1149 | 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] | 1150 | { |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 1151 | struct usbnet *dev = netdev_priv(skb_in->dev); |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 1152 | struct usb_cdc_ncm_nth16 *nth16; |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 1153 | int len; |
| 1154 | int ret = -EINVAL; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1155 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1156 | if (ctx == NULL) |
| 1157 | goto error; |
| 1158 | |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 1159 | if (skb_in->len < (sizeof(struct usb_cdc_ncm_nth16) + |
| 1160 | sizeof(struct usb_cdc_ncm_ndp16))) { |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 1161 | netif_dbg(dev, rx_err, dev->net, "frame too short\n"); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1162 | goto error; |
| 1163 | } |
| 1164 | |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 1165 | nth16 = (struct usb_cdc_ncm_nth16 *)skb_in->data; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1166 | |
Bjørn Mork | 986e10d | 2013-11-01 11:16:56 +0100 | [diff] [blame] | 1167 | if (nth16->dwSignature != cpu_to_le32(USB_CDC_NCM_NTH16_SIGN)) { |
Bjørn Mork | 5448d75 | 2013-11-01 11:16:55 +0100 | [diff] [blame] | 1168 | netif_dbg(dev, rx_err, dev->net, |
| 1169 | "invalid NTH16 signature <%#010x>\n", |
| 1170 | le32_to_cpu(nth16->dwSignature)); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1171 | goto error; |
| 1172 | } |
| 1173 | |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 1174 | len = le16_to_cpu(nth16->wBlockLength); |
| 1175 | if (len > ctx->rx_max) { |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 1176 | netif_dbg(dev, rx_err, dev->net, |
| 1177 | "unsupported NTB block length %u/%u\n", len, |
| 1178 | ctx->rx_max); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1179 | goto error; |
| 1180 | } |
| 1181 | |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 1182 | if ((ctx->rx_seq + 1) != le16_to_cpu(nth16->wSequence) && |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 1183 | (ctx->rx_seq || le16_to_cpu(nth16->wSequence)) && |
| 1184 | !((ctx->rx_seq == 0xffff) && !le16_to_cpu(nth16->wSequence))) { |
| 1185 | netif_dbg(dev, rx_err, dev->net, |
| 1186 | "sequence number glitch prev=%d curr=%d\n", |
| 1187 | ctx->rx_seq, le16_to_cpu(nth16->wSequence)); |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 1188 | } |
| 1189 | ctx->rx_seq = le16_to_cpu(nth16->wSequence); |
| 1190 | |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 1191 | ret = le16_to_cpu(nth16->wNdpIndex); |
| 1192 | error: |
| 1193 | return ret; |
| 1194 | } |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 1195 | EXPORT_SYMBOL_GPL(cdc_ncm_rx_verify_nth16); |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 1196 | |
| 1197 | /* verify NDP header and return number of datagrams, or negative error */ |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 1198 | 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] | 1199 | { |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 1200 | struct usbnet *dev = netdev_priv(skb_in->dev); |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 1201 | struct usb_cdc_ncm_ndp16 *ndp16; |
| 1202 | int ret = -EINVAL; |
| 1203 | |
Bjørn Mork | 75d67d3 | 2012-10-22 10:56:32 +0000 | [diff] [blame] | 1204 | if ((ndpoffset + sizeof(struct usb_cdc_ncm_ndp16)) > skb_in->len) { |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 1205 | netif_dbg(dev, rx_err, dev->net, "invalid NDP offset <%u>\n", |
| 1206 | ndpoffset); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1207 | goto error; |
| 1208 | } |
Bjørn Mork | 75d67d3 | 2012-10-22 10:56:32 +0000 | [diff] [blame] | 1209 | ndp16 = (struct usb_cdc_ncm_ndp16 *)(skb_in->data + ndpoffset); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1210 | |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 1211 | if (le16_to_cpu(ndp16->wLength) < USB_CDC_NCM_NDP16_LENGTH_MIN) { |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 1212 | netif_dbg(dev, rx_err, dev->net, "invalid DPT16 length <%u>\n", |
| 1213 | le16_to_cpu(ndp16->wLength)); |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 1214 | goto error; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1215 | } |
| 1216 | |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 1217 | ret = ((le16_to_cpu(ndp16->wLength) - |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1218 | sizeof(struct usb_cdc_ncm_ndp16)) / |
| 1219 | sizeof(struct usb_cdc_ncm_dpe16)); |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 1220 | ret--; /* we process NDP entries except for the last one */ |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1221 | |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 1222 | if ((sizeof(struct usb_cdc_ncm_ndp16) + |
| 1223 | ret * (sizeof(struct usb_cdc_ncm_dpe16))) > skb_in->len) { |
| 1224 | netif_dbg(dev, rx_err, dev->net, "Invalid nframes = %d\n", ret); |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 1225 | ret = -EINVAL; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1226 | } |
| 1227 | |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 1228 | error: |
| 1229 | return ret; |
| 1230 | } |
Bjørn Mork | c91ce3b | 2012-10-22 10:56:35 +0000 | [diff] [blame] | 1231 | EXPORT_SYMBOL_GPL(cdc_ncm_rx_verify_ndp16); |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 1232 | |
Enrico Mioso | 2f69702c | 2013-11-04 09:50:47 +0100 | [diff] [blame] | 1233 | int cdc_ncm_rx_fixup(struct usbnet *dev, struct sk_buff *skb_in) |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 1234 | { |
| 1235 | struct sk_buff *skb; |
| 1236 | struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
| 1237 | int len; |
| 1238 | int nframes; |
| 1239 | int x; |
| 1240 | int offset; |
| 1241 | struct usb_cdc_ncm_ndp16 *ndp16; |
| 1242 | struct usb_cdc_ncm_dpe16 *dpe16; |
| 1243 | int ndpoffset; |
| 1244 | int loopcount = 50; /* arbitrary max preventing infinite loop */ |
Bjørn Mork | beeecd4 | 2014-05-16 21:48:25 +0200 | [diff] [blame] | 1245 | u32 payload = 0; |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 1246 | |
| 1247 | ndpoffset = cdc_ncm_rx_verify_nth16(ctx, skb_in); |
| 1248 | if (ndpoffset < 0) |
| 1249 | goto error; |
| 1250 | |
| 1251 | next_ndp: |
| 1252 | nframes = cdc_ncm_rx_verify_ndp16(skb_in, ndpoffset); |
| 1253 | if (nframes < 0) |
| 1254 | goto error; |
| 1255 | |
| 1256 | ndp16 = (struct usb_cdc_ncm_ndp16 *)(skb_in->data + ndpoffset); |
| 1257 | |
Bjørn Mork | 986e10d | 2013-11-01 11:16:56 +0100 | [diff] [blame] | 1258 | if (ndp16->dwSignature != cpu_to_le32(USB_CDC_NCM_NDP16_NOCRC_SIGN)) { |
Bjørn Mork | 5448d75 | 2013-11-01 11:16:55 +0100 | [diff] [blame] | 1259 | netif_dbg(dev, rx_err, dev->net, |
| 1260 | "invalid DPT16 signature <%#010x>\n", |
| 1261 | le32_to_cpu(ndp16->dwSignature)); |
Bjørn Mork | ff06ab1 | 2012-10-22 10:56:33 +0000 | [diff] [blame] | 1262 | goto err_ndp; |
| 1263 | } |
| 1264 | dpe16 = ndp16->dpe16; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1265 | |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 1266 | for (x = 0; x < nframes; x++, dpe16++) { |
| 1267 | offset = le16_to_cpu(dpe16->wDatagramIndex); |
| 1268 | len = le16_to_cpu(dpe16->wDatagramLength); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1269 | |
| 1270 | /* |
| 1271 | * CDC NCM ch. 3.7 |
| 1272 | * All entries after first NULL entry are to be ignored |
| 1273 | */ |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 1274 | if ((offset == 0) || (len == 0)) { |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1275 | if (!x) |
Bjørn Mork | 75d67d3 | 2012-10-22 10:56:32 +0000 | [diff] [blame] | 1276 | goto err_ndp; /* empty NTB */ |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1277 | break; |
| 1278 | } |
| 1279 | |
| 1280 | /* sanity checking */ |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 1281 | if (((offset + len) > skb_in->len) || |
| 1282 | (len > ctx->rx_max) || (len < ETH_HLEN)) { |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 1283 | netif_dbg(dev, rx_err, dev->net, |
| 1284 | "invalid frame detected (ignored) offset[%u]=%u, length=%u, skb=%p\n", |
| 1285 | x, offset, len, skb_in); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1286 | if (!x) |
Bjørn Mork | 75d67d3 | 2012-10-22 10:56:32 +0000 | [diff] [blame] | 1287 | goto err_ndp; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1288 | break; |
| 1289 | |
| 1290 | } else { |
| 1291 | skb = skb_clone(skb_in, GFP_ATOMIC); |
Jesper Juhl | 9e56790 | 2011-01-13 11:40:11 +0000 | [diff] [blame] | 1292 | if (!skb) |
| 1293 | goto error; |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 1294 | skb->len = len; |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1295 | skb->data = ((u8 *)skb_in->data) + offset; |
Alexey Orishko | d5ddb4a | 2012-03-14 11:26:12 +0000 | [diff] [blame] | 1296 | skb_set_tail_pointer(skb, len); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1297 | usbnet_skb_return(dev, skb); |
Bjørn Mork | beeecd4 | 2014-05-16 21:48:25 +0200 | [diff] [blame] | 1298 | payload += len; /* count payload bytes in this NTB */ |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1299 | } |
| 1300 | } |
Bjørn Mork | 75d67d3 | 2012-10-22 10:56:32 +0000 | [diff] [blame] | 1301 | err_ndp: |
| 1302 | /* are there more NDPs to process? */ |
| 1303 | ndpoffset = le16_to_cpu(ndp16->wNextNdpIndex); |
| 1304 | if (ndpoffset && loopcount--) |
| 1305 | goto next_ndp; |
| 1306 | |
Bjørn Mork | beeecd4 | 2014-05-16 21:48:25 +0200 | [diff] [blame] | 1307 | /* update stats */ |
| 1308 | ctx->rx_overhead += skb_in->len - payload; |
| 1309 | ctx->rx_ntbs++; |
| 1310 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1311 | return 1; |
| 1312 | error: |
| 1313 | return 0; |
| 1314 | } |
Enrico Mioso | 2f69702c | 2013-11-04 09:50:47 +0100 | [diff] [blame] | 1315 | EXPORT_SYMBOL_GPL(cdc_ncm_rx_fixup); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1316 | |
| 1317 | static void |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 1318 | cdc_ncm_speed_change(struct usbnet *dev, |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 1319 | struct usb_cdc_speed_change *data) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1320 | { |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 1321 | uint32_t rx_speed = le32_to_cpu(data->DLBitRRate); |
| 1322 | uint32_t tx_speed = le32_to_cpu(data->ULBitRate); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1323 | |
| 1324 | /* |
| 1325 | * Currently the USB-NET API does not support reporting the actual |
| 1326 | * device speed. Do print it instead. |
| 1327 | */ |
Bjørn Mork | f3028c5 | 2013-11-01 11:16:44 +0100 | [diff] [blame] | 1328 | if ((tx_speed > 1000000) && (rx_speed > 1000000)) { |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 1329 | netif_info(dev, link, dev->net, |
Bjørn Mork | 916f764 | 2014-05-16 21:48:27 +0200 | [diff] [blame] | 1330 | "%u mbit/s downlink %u mbit/s uplink\n", |
| 1331 | (unsigned int)(rx_speed / 1000000U), |
| 1332 | (unsigned int)(tx_speed / 1000000U)); |
Bjørn Mork | f3028c5 | 2013-11-01 11:16:44 +0100 | [diff] [blame] | 1333 | } else { |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 1334 | netif_info(dev, link, dev->net, |
Bjørn Mork | 916f764 | 2014-05-16 21:48:27 +0200 | [diff] [blame] | 1335 | "%u kbit/s downlink %u kbit/s uplink\n", |
| 1336 | (unsigned int)(rx_speed / 1000U), |
| 1337 | (unsigned int)(tx_speed / 1000U)); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1338 | } |
| 1339 | } |
| 1340 | |
| 1341 | static void cdc_ncm_status(struct usbnet *dev, struct urb *urb) |
| 1342 | { |
| 1343 | struct cdc_ncm_ctx *ctx; |
| 1344 | struct usb_cdc_notification *event; |
| 1345 | |
| 1346 | ctx = (struct cdc_ncm_ctx *)dev->data[0]; |
| 1347 | |
| 1348 | if (urb->actual_length < sizeof(*event)) |
| 1349 | return; |
| 1350 | |
| 1351 | /* test for split data in 8-byte chunks */ |
| 1352 | if (test_and_clear_bit(EVENT_STS_SPLIT, &dev->flags)) { |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 1353 | cdc_ncm_speed_change(dev, |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 1354 | (struct usb_cdc_speed_change *)urb->transfer_buffer); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1355 | return; |
| 1356 | } |
| 1357 | |
| 1358 | event = urb->transfer_buffer; |
| 1359 | |
| 1360 | switch (event->bNotificationType) { |
| 1361 | case USB_CDC_NOTIFY_NETWORK_CONNECTION: |
| 1362 | /* |
| 1363 | * According to the CDC NCM specification ch.7.1 |
| 1364 | * USB_CDC_NOTIFY_NETWORK_CONNECTION notification shall be |
| 1365 | * sent by device after USB_CDC_NOTIFY_SPEED_CHANGE. |
| 1366 | */ |
Bjørn Mork | ae223cd | 2013-11-01 11:16:54 +0100 | [diff] [blame] | 1367 | netif_info(dev, link, dev->net, |
| 1368 | "network connection: %sconnected\n", |
Bjørn Mork | fa83dbe | 2014-05-16 21:48:28 +0200 | [diff] [blame] | 1369 | !!event->wValue ? "" : "dis"); |
| 1370 | usbnet_link_change(dev, !!event->wValue, 0); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1371 | break; |
| 1372 | |
| 1373 | case USB_CDC_NOTIFY_SPEED_CHANGE: |
Alexey Orishko | 84e77a8 | 2011-02-07 09:45:10 +0000 | [diff] [blame] | 1374 | if (urb->actual_length < (sizeof(*event) + |
| 1375 | sizeof(struct usb_cdc_speed_change))) |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1376 | set_bit(EVENT_STS_SPLIT, &dev->flags); |
| 1377 | else |
Bjørn Mork | bed6f76 | 2013-11-01 11:16:42 +0100 | [diff] [blame] | 1378 | cdc_ncm_speed_change(dev, |
| 1379 | (struct usb_cdc_speed_change *)&event[1]); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1380 | break; |
| 1381 | |
| 1382 | default: |
Bjørn Mork | 67a3660 | 2013-04-08 08:26:23 +0000 | [diff] [blame] | 1383 | dev_dbg(&dev->udev->dev, |
| 1384 | "NCM: unexpected notification 0x%02x!\n", |
| 1385 | event->bNotificationType); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1386 | break; |
| 1387 | } |
| 1388 | } |
| 1389 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1390 | static const struct driver_info cdc_ncm_info = { |
| 1391 | .description = "CDC NCM", |
Arnd Bergmann | c261344 | 2011-04-01 20:12:02 -0700 | [diff] [blame] | 1392 | .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET, |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1393 | .bind = cdc_ncm_bind, |
| 1394 | .unbind = cdc_ncm_unbind, |
Oliver Neukum | a5e4070 | 2012-12-18 04:46:12 +0000 | [diff] [blame] | 1395 | .manage_power = usbnet_manage_power, |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1396 | .status = cdc_ncm_status, |
| 1397 | .rx_fixup = cdc_ncm_rx_fixup, |
| 1398 | .tx_fixup = cdc_ncm_tx_fixup, |
| 1399 | }; |
| 1400 | |
Dan Williams | f94898e | 2012-07-24 08:43:22 +0000 | [diff] [blame] | 1401 | /* Same as cdc_ncm_info, but with FLAG_WWAN */ |
| 1402 | static const struct driver_info wwan_info = { |
| 1403 | .description = "Mobile Broadband Network Device", |
| 1404 | .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET |
| 1405 | | FLAG_WWAN, |
| 1406 | .bind = cdc_ncm_bind, |
| 1407 | .unbind = cdc_ncm_unbind, |
Oliver Neukum | a5e4070 | 2012-12-18 04:46:12 +0000 | [diff] [blame] | 1408 | .manage_power = usbnet_manage_power, |
Dan Williams | f94898e | 2012-07-24 08:43:22 +0000 | [diff] [blame] | 1409 | .status = cdc_ncm_status, |
| 1410 | .rx_fixup = cdc_ncm_rx_fixup, |
| 1411 | .tx_fixup = cdc_ncm_tx_fixup, |
| 1412 | }; |
| 1413 | |
Wei Shuai | 2f62d5a | 2013-01-21 06:00:32 +0000 | [diff] [blame] | 1414 | /* Same as wwan_info, but with FLAG_NOARP */ |
| 1415 | static const struct driver_info wwan_noarp_info = { |
| 1416 | .description = "Mobile Broadband Network Device (NO ARP)", |
| 1417 | .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET |
| 1418 | | FLAG_WWAN | FLAG_NOARP, |
| 1419 | .bind = cdc_ncm_bind, |
| 1420 | .unbind = cdc_ncm_unbind, |
Wei Shuai | 2f62d5a | 2013-01-21 06:00:32 +0000 | [diff] [blame] | 1421 | .manage_power = usbnet_manage_power, |
| 1422 | .status = cdc_ncm_status, |
| 1423 | .rx_fixup = cdc_ncm_rx_fixup, |
| 1424 | .tx_fixup = cdc_ncm_tx_fixup, |
| 1425 | }; |
| 1426 | |
Dan Williams | f94898e | 2012-07-24 08:43:22 +0000 | [diff] [blame] | 1427 | static const struct usb_device_id cdc_devs[] = { |
| 1428 | /* Ericsson MBM devices like F5521gw */ |
| 1429 | { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO |
| 1430 | | USB_DEVICE_ID_MATCH_VENDOR, |
| 1431 | .idVendor = 0x0bdb, |
| 1432 | .bInterfaceClass = USB_CLASS_COMM, |
| 1433 | .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM, |
| 1434 | .bInterfaceProtocol = USB_CDC_PROTO_NONE, |
| 1435 | .driver_info = (unsigned long) &wwan_info, |
| 1436 | }, |
| 1437 | |
Peter Meiser | f3a1ef9 | 2012-08-02 02:30:20 +0000 | [diff] [blame] | 1438 | /* Dell branded MBM devices like DW5550 */ |
| 1439 | { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO |
| 1440 | | USB_DEVICE_ID_MATCH_VENDOR, |
| 1441 | .idVendor = 0x413c, |
| 1442 | .bInterfaceClass = USB_CLASS_COMM, |
| 1443 | .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM, |
| 1444 | .bInterfaceProtocol = USB_CDC_PROTO_NONE, |
| 1445 | .driver_info = (unsigned long) &wwan_info, |
| 1446 | }, |
| 1447 | |
| 1448 | /* Toshiba branded MBM devices */ |
| 1449 | { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO |
| 1450 | | USB_DEVICE_ID_MATCH_VENDOR, |
| 1451 | .idVendor = 0x0930, |
| 1452 | .bInterfaceClass = USB_CLASS_COMM, |
| 1453 | .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM, |
| 1454 | .bInterfaceProtocol = USB_CDC_PROTO_NONE, |
| 1455 | .driver_info = (unsigned long) &wwan_info, |
| 1456 | }, |
| 1457 | |
Bjørn Mork | 1f84eab | 2013-02-27 03:08:58 +0000 | [diff] [blame] | 1458 | /* tag Huawei devices as wwan */ |
| 1459 | { USB_VENDOR_AND_INTERFACE_INFO(0x12d1, |
| 1460 | USB_CLASS_COMM, |
| 1461 | USB_CDC_SUBCLASS_NCM, |
| 1462 | USB_CDC_PROTO_NONE), |
| 1463 | .driver_info = (unsigned long)&wwan_info, |
| 1464 | }, |
| 1465 | |
Wei Shuai | 2f62d5a | 2013-01-21 06:00:32 +0000 | [diff] [blame] | 1466 | /* Infineon(now Intel) HSPA Modem platform */ |
| 1467 | { USB_DEVICE_AND_INTERFACE_INFO(0x1519, 0x0443, |
| 1468 | USB_CLASS_COMM, |
| 1469 | USB_CDC_SUBCLASS_NCM, USB_CDC_PROTO_NONE), |
| 1470 | .driver_info = (unsigned long)&wwan_noarp_info, |
| 1471 | }, |
| 1472 | |
Dan Williams | f94898e | 2012-07-24 08:43:22 +0000 | [diff] [blame] | 1473 | /* Generic CDC-NCM devices */ |
| 1474 | { USB_INTERFACE_INFO(USB_CLASS_COMM, |
| 1475 | USB_CDC_SUBCLASS_NCM, USB_CDC_PROTO_NONE), |
| 1476 | .driver_info = (unsigned long)&cdc_ncm_info, |
| 1477 | }, |
| 1478 | { |
| 1479 | }, |
| 1480 | }; |
| 1481 | MODULE_DEVICE_TABLE(usb, cdc_devs); |
| 1482 | |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1483 | static struct usb_driver cdc_ncm_driver = { |
| 1484 | .name = "cdc_ncm", |
| 1485 | .id_table = cdc_devs, |
Bjørn Mork | 085e50e | 2013-11-01 11:16:50 +0100 | [diff] [blame] | 1486 | .probe = usbnet_probe, |
| 1487 | .disconnect = usbnet_disconnect, |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1488 | .suspend = usbnet_suspend, |
| 1489 | .resume = usbnet_resume, |
Stefan Metzmacher | 85e3c65 | 2011-06-01 02:01:41 +0000 | [diff] [blame] | 1490 | .reset_resume = usbnet_resume, |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1491 | .supports_autosuspend = 1, |
Sarah Sharp | e1f12eb | 2012-04-23 10:08:51 -0700 | [diff] [blame] | 1492 | .disable_hub_initiated_lpm = 1, |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1493 | }; |
| 1494 | |
Greg Kroah-Hartman | d632eb1 | 2011-11-18 09:44:20 -0800 | [diff] [blame] | 1495 | module_usb_driver(cdc_ncm_driver); |
Alexey Orishko | 900d495 | 2010-11-29 23:23:28 +0000 | [diff] [blame] | 1496 | |
| 1497 | MODULE_AUTHOR("Hans Petter Selasky"); |
| 1498 | MODULE_DESCRIPTION("USB CDC NCM host driver"); |
| 1499 | MODULE_LICENSE("Dual BSD/GPL"); |