blob: f4b439847d04044e0462feffef9fb741d0abebed [file] [log] [blame]
Alexey Orishko900d4952010-11-29 23:23:28 +00001/*
2 * cdc_ncm.c
3 *
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +00004 * Copyright (C) ST-Ericsson 2010-2012
Alexey Orishko900d4952010-11-29 23:23:28 +00005 * 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 Orishko900d4952010-11-29 23:23:28 +000042#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 Orishkoc84ff1d2012-03-14 11:26:10 +000049#include <linux/hrtimer.h>
Alexey Orishko900d4952010-11-29 23:23:28 +000050#include <linux/atomic.h>
51#include <linux/usb/usbnet.h>
52#include <linux/usb/cdc.h>
Bjørn Morkc91ce3b2012-10-22 10:56:35 +000053#include <linux/usb/cdc_ncm.h>
Alexey Orishko900d4952010-11-29 23:23:28 +000054
Bjørn Mork1e8bbe62013-03-14 01:05:13 +000055#if IS_ENABLED(CONFIG_USB_NET_CDC_MBIM)
56static bool prefer_mbim = true;
57#else
58static bool prefer_mbim;
59#endif
60module_param(prefer_mbim, bool, S_IRUGO | S_IWUSR);
61MODULE_PARM_DESC(prefer_mbim, "Prefer MBIM setting on dual NCM/MBIM functions");
62
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +000063static void cdc_ncm_txpath_bh(unsigned long param);
64static void cdc_ncm_tx_timeout_start(struct cdc_ncm_ctx *ctx);
65static enum hrtimer_restart cdc_ncm_tx_timer_cb(struct hrtimer *hr_timer);
Alexey Orishko900d4952010-11-29 23:23:28 +000066static struct usb_driver cdc_ncm_driver;
Alexey Orishko900d4952010-11-29 23:23:28 +000067
Bjørn Morkbeeecd42014-05-16 21:48:25 +020068struct 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
80static 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
91static 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
101static 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
116static 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 Mork6c4e5482014-05-16 21:48:22 +0200130static 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
145static void cdc_ncm_update_rxtx_max(struct usbnet *dev, u32 new_rx, u32 new_tx);
146
147static 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
178static 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 Morkbeeecd42014-05-16 21:48:25 +0200187 .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 Mork6c4e5482014-05-16 21:48:22 +0200190 .get_coalesce = cdc_ncm_get_coalesce,
191 .set_coalesce = cdc_ncm_set_coalesce,
192};
193
Bjørn Mork5aa73d52014-05-16 21:48:18 +0200194/* handle rx_max and tx_max changes */
195static 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 Mork68864ab2014-05-16 21:48:21 +0200218 /* usbnet use these values for sizing rx queues */
219 dev->rx_urb_size = val;
220
Bjørn Mork5aa73d52014-05-16 21:48:18 +0200221 /* 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 Mork68864ab2014-05-16 21:48:21 +0200226
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 Mork5aa73d52014-05-16 21:48:18 +0200232 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 Mork70559b82014-05-16 21:48:23 +0200242 min = ctx->max_datagram_size + ctx->max_ndp_size + sizeof(struct usb_cdc_ncm_nth16);
Bjørn Mork5aa73d52014-05-16 21:48:18 +0200243 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 Mork08c74fc2014-05-16 21:48:20 +0200255
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 Mork68864ab2014-05-16 21:48:21 +0200263 if (val != le32_to_cpu(ctx->ncm_parm.dwNtbOutMaxSize) &&
264 val % usb_maxpacket(dev->udev, dev->out, 1) == 0)
265 val++;
Bjørn Mork08c74fc2014-05-16 21:48:20 +0200266
Bjørn Mork68864ab2014-05-16 21:48:21 +0200267 /* 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 Mork08c74fc2014-05-16 21:48:20 +0200277 dev->hard_mtu = ctx->tx_max;
Bjørn Mork68864ab2014-05-16 21:48:21 +0200278
279 /* max qlen depend on hard_mtu and rx_urb_size */
280 usbnet_update_max_qlen(dev);
Bjørn Mork43e4c6d2014-05-16 21:48:24 +0200281
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 Mork5aa73d52014-05-16 21:48:18 +0200285}
286
Bjørn Morkf8afb732014-05-16 21:48:19 +0200287/* helpers for NCM and MBIM differences */
288static u8 cdc_ncm_flags(struct usbnet *dev)
Alexey Orishko900d4952010-11-29 23:23:28 +0000289{
Bjørn Morkbed6f762013-11-01 11:16:42 +0100290 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
Alexey Orishko900d4952010-11-29 23:23:28 +0000291
Bjørn Morkf8afb732014-05-16 21:48:19 +0200292 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
299static 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
306static 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
313static 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 */
327static 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 Orishko900d4952010-11-29 23:23:28 +0000332
Ming Lei90b8b032012-10-24 19:46:56 +0000333 err = usbnet_read_cmd(dev, USB_CDC_GET_NTB_PARAMETERS,
334 USB_TYPE_CLASS | USB_DIR_IN
335 |USB_RECIP_INTERFACE,
Bjørn Morkff0992e92014-03-17 16:25:18 +0100336 0, iface_no, &ctx->ncm_parm,
337 sizeof(ctx->ncm_parm));
Giuseppe Scrivano36c35412011-08-03 22:10:29 +0000338 if (err < 0) {
Bjørn Mork59ede312013-11-01 11:16:59 +0100339 dev_err(&dev->intf->dev, "failed GET_NTB_PARAMETERS\n");
340 return err; /* GET_NTB_PARAMETERS is required */
Alexey Orishko900d4952010-11-29 23:23:28 +0000341 }
342
Bjørn Morkf8afb732014-05-16 21:48:19 +0200343 /* 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 Morkff0992e92014-03-17 16:25:18 +0100372 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 Orishko84e77a82011-02-07 09:45:10 +0000377 /* devices prior to NCM Errata shall set this field to zero */
Bjørn Morkff0992e92014-03-17 16:25:18 +0100378 ctx->tx_max_datagrams = le16_to_cpu(ctx->ncm_parm.wNtbOutMaxDatagrams);
Bjørn Mork47175e52013-11-01 11:16:58 +0100379
Bjørn Morkae223cd2013-11-01 11:16:54 +0100380 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 Morkf8afb732014-05-16 21:48:19 +0200383 ctx->tx_ndp_modulus, ctx->tx_max_datagrams, cdc_ncm_flags(dev));
Alexey Orishko900d4952010-11-29 23:23:28 +0000384
Alexey Orishko84e77a82011-02-07 09:45:10 +0000385 /* 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 Orishko900d4952010-11-29 23:23:28 +0000389
Bjørn Mork70559b82014-05-16 21:48:23 +0200390 /* 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 Mork6c4e5482014-05-16 21:48:22 +0200393 /* initial coalescing timer interval */
394 ctx->timer_interval = CDC_NCM_TIMER_INTERVAL_USEC * NSEC_PER_USEC;
395
Bjørn Morkf8afb732014-05-16 21:48:19 +0200396 return 0;
397}
398
399/* set a new max datagram size */
400static 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
436out:
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
448static 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 Orishko900d4952010-11-29 23:23:28 +0000452
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 Morkae223cd2013-11-01 11:16:54 +0100463 dev_dbg(&dev->intf->dev, "Using default alignment: 4 bytes\n");
Alexey Orishko900d4952010-11-29 23:23:28 +0000464 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 Morkae223cd2013-11-01 11:16:54 +0100477 dev_dbg(&dev->intf->dev, "Using default transmit modulus: 4 bytes\n");
Alexey Orishko900d4952010-11-29 23:23:28 +0000478 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 Morkae223cd2013-11-01 11:16:54 +0100483 dev_dbg(&dev->intf->dev, "Using default transmit remainder: 0 bytes\n");
Alexey Orishko900d4952010-11-29 23:23:28 +0000484 ctx->tx_remainder = 0;
485 }
486
487 /* adjust TX-remainder according to NCM specification. */
Bjørn Morkf8afb732014-05-16 21:48:19 +0200488 ctx->tx_remainder = ((ctx->tx_remainder - cdc_ncm_eth_hlen(dev)) &
Greg Suarez2d1c4312012-10-22 10:56:30 +0000489 (ctx->tx_modulus - 1));
Bjørn Morkf8afb732014-05-16 21:48:19 +0200490}
Alexey Orishko900d4952010-11-29 23:23:28 +0000491
Bjørn Morkf8afb732014-05-16 21:48:19 +0200492static int cdc_ncm_setup(struct usbnet *dev)
493{
494 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
Alexey Orishko900d4952010-11-29 23:23:28 +0000495
Bjørn Morkf8afb732014-05-16 21:48:19 +0200496 /* clamp rx_max and tx_max and inform device */
497 cdc_ncm_update_rxtx_max(dev, le32_to_cpu(ctx->ncm_parm.dwNtbInMaxSize),
498 le32_to_cpu(ctx->ncm_parm.dwNtbOutMaxSize));
Alexey Orishko84e77a82011-02-07 09:45:10 +0000499
Bjørn Morkf8afb732014-05-16 21:48:19 +0200500 /* sanitize the modulus and remainder values */
501 cdc_ncm_fix_modulus(dev);
Alexey Orishko900d4952010-11-29 23:23:28 +0000502
Bjørn Morkf8afb732014-05-16 21:48:19 +0200503 /* set max datagram size */
504 cdc_ncm_set_dgram_size(dev, cdc_ncm_max_dgram_size(dev));
Alexey Orishko900d4952010-11-29 23:23:28 +0000505 return 0;
506}
507
508static void
Bjørn Morkff1632a2013-11-01 11:16:41 +0100509cdc_ncm_find_endpoints(struct usbnet *dev, struct usb_interface *intf)
Alexey Orishko900d4952010-11-29 23:23:28 +0000510{
Bjørn Morkff1632a2013-11-01 11:16:41 +0100511 struct usb_host_endpoint *e, *in = NULL, *out = NULL;
Alexey Orishko900d4952010-11-29 23:23:28 +0000512 u8 ep;
513
514 for (ep = 0; ep < intf->cur_altsetting->desc.bNumEndpoints; ep++) {
515
516 e = intf->cur_altsetting->endpoint + ep;
517 switch (e->desc.bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) {
518 case USB_ENDPOINT_XFER_INT:
519 if (usb_endpoint_dir_in(&e->desc)) {
Bjørn Morkff1632a2013-11-01 11:16:41 +0100520 if (!dev->status)
521 dev->status = e;
Alexey Orishko900d4952010-11-29 23:23:28 +0000522 }
523 break;
524
525 case USB_ENDPOINT_XFER_BULK:
526 if (usb_endpoint_dir_in(&e->desc)) {
Bjørn Morkff1632a2013-11-01 11:16:41 +0100527 if (!in)
528 in = e;
Alexey Orishko900d4952010-11-29 23:23:28 +0000529 } else {
Bjørn Morkff1632a2013-11-01 11:16:41 +0100530 if (!out)
531 out = e;
Alexey Orishko900d4952010-11-29 23:23:28 +0000532 }
533 break;
534
535 default:
536 break;
537 }
538 }
Bjørn Morkff1632a2013-11-01 11:16:41 +0100539 if (in && !dev->in)
540 dev->in = usb_rcvbulkpipe(dev->udev,
541 in->desc.bEndpointAddress &
542 USB_ENDPOINT_NUMBER_MASK);
543 if (out && !dev->out)
544 dev->out = usb_sndbulkpipe(dev->udev,
545 out->desc.bEndpointAddress &
546 USB_ENDPOINT_NUMBER_MASK);
Alexey Orishko900d4952010-11-29 23:23:28 +0000547}
548
549static void cdc_ncm_free(struct cdc_ncm_ctx *ctx)
550{
551 if (ctx == NULL)
552 return;
553
Alexey Orishko900d4952010-11-29 23:23:28 +0000554 if (ctx->tx_rem_skb != NULL) {
555 dev_kfree_skb_any(ctx->tx_rem_skb);
556 ctx->tx_rem_skb = NULL;
557 }
558
559 if (ctx->tx_curr_skb != NULL) {
560 dev_kfree_skb_any(ctx->tx_curr_skb);
561 ctx->tx_curr_skb = NULL;
562 }
563
564 kfree(ctx);
565}
566
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000567int cdc_ncm_bind_common(struct usbnet *dev, struct usb_interface *intf, u8 data_altsetting)
Alexey Orishko900d4952010-11-29 23:23:28 +0000568{
Bjørn Mork83292232013-11-01 11:16:47 +0100569 const struct usb_cdc_union_desc *union_desc = NULL;
Alexey Orishko900d4952010-11-29 23:23:28 +0000570 struct cdc_ncm_ctx *ctx;
571 struct usb_driver *driver;
572 u8 *buf;
573 int len;
574 int temp;
575 u8 iface_no;
576
Thomas Meyerc7969842011-11-17 12:43:40 +0000577 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
Devendra Naga8f0923c2013-03-29 23:03:22 +0000578 if (!ctx)
579 return -ENOMEM;
Alexey Orishko900d4952010-11-29 23:23:28 +0000580
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000581 hrtimer_init(&ctx->tx_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
582 ctx->tx_timer.function = &cdc_ncm_tx_timer_cb;
Bjørn Morkbed6f762013-11-01 11:16:42 +0100583 ctx->bh.data = (unsigned long)dev;
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000584 ctx->bh.func = cdc_ncm_txpath_bh;
585 atomic_set(&ctx->stop, 0);
Alexey Orishko900d4952010-11-29 23:23:28 +0000586 spin_lock_init(&ctx->mtx);
Alexey Orishko900d4952010-11-29 23:23:28 +0000587
588 /* store ctx pointer in device data field */
589 dev->data[0] = (unsigned long)ctx;
590
Bjørn Mork9fe02342013-11-01 11:16:48 +0100591 /* only the control interface can be successfully probed */
592 ctx->control = intf;
593
Alexey Orishko900d4952010-11-29 23:23:28 +0000594 /* get some pointers */
595 driver = driver_of(intf);
596 buf = intf->cur_altsetting->extra;
597 len = intf->cur_altsetting->extralen;
598
Alexey Orishko900d4952010-11-29 23:23:28 +0000599 /* parse through descriptors associated with control interface */
600 while ((len > 0) && (buf[0] > 2) && (buf[0] <= len)) {
601
602 if (buf[1] != USB_DT_CS_INTERFACE)
603 goto advance;
604
605 switch (buf[2]) {
606 case USB_CDC_UNION_TYPE:
Bjørn Mork83292232013-11-01 11:16:47 +0100607 if (buf[0] < sizeof(*union_desc))
Alexey Orishko900d4952010-11-29 23:23:28 +0000608 break;
609
Bjørn Mork83292232013-11-01 11:16:47 +0100610 union_desc = (const struct usb_cdc_union_desc *)buf;
Bjørn Mork9fe02342013-11-01 11:16:48 +0100611 /* the master must be the interface we are probing */
612 if (intf->cur_altsetting->desc.bInterfaceNumber !=
Bjørn Mork296e81f2013-11-01 11:17:00 +0100613 union_desc->bMasterInterface0) {
614 dev_dbg(&intf->dev, "bogus CDC Union\n");
Bjørn Mork9fe02342013-11-01 11:16:48 +0100615 goto error;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100616 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000617 ctx->data = usb_ifnum_to_if(dev->udev,
Bjørn Mork83292232013-11-01 11:16:47 +0100618 union_desc->bSlaveInterface0);
Alexey Orishko900d4952010-11-29 23:23:28 +0000619 break;
620
621 case USB_CDC_ETHERNET_TYPE:
622 if (buf[0] < sizeof(*(ctx->ether_desc)))
623 break;
624
625 ctx->ether_desc =
626 (const struct usb_cdc_ether_desc *)buf;
Alexey Orishko900d4952010-11-29 23:23:28 +0000627 break;
628
629 case USB_CDC_NCM_TYPE:
630 if (buf[0] < sizeof(*(ctx->func_desc)))
631 break;
632
633 ctx->func_desc = (const struct usb_cdc_ncm_desc *)buf;
634 break;
635
Greg Suarez38396e42012-10-22 10:56:31 +0000636 case USB_CDC_MBIM_TYPE:
637 if (buf[0] < sizeof(*(ctx->mbim_desc)))
638 break;
639
640 ctx->mbim_desc = (const struct usb_cdc_mbim_desc *)buf;
641 break;
642
Ben Chan259fef02014-03-19 14:00:06 -0700643 case USB_CDC_MBIM_EXTENDED_TYPE:
644 if (buf[0] < sizeof(*(ctx->mbim_extended_desc)))
645 break;
646
647 ctx->mbim_extended_desc =
648 (const struct usb_cdc_mbim_extended_desc *)buf;
649 break;
650
Alexey Orishko900d4952010-11-29 23:23:28 +0000651 default:
652 break;
653 }
654advance:
655 /* advance to next descriptor */
656 temp = buf[0];
657 buf += temp;
658 len -= temp;
659 }
660
Bjørn Mork9992c2e2013-01-21 05:50:38 +0000661 /* some buggy devices have an IAD but no CDC Union */
Bjørn Mork83292232013-11-01 11:16:47 +0100662 if (!union_desc && intf->intf_assoc && intf->intf_assoc->bInterfaceCount == 2) {
Bjørn Mork56a666d2013-01-25 23:36:59 +0000663 ctx->data = usb_ifnum_to_if(dev->udev, intf->cur_altsetting->desc.bInterfaceNumber + 1);
664 dev_dbg(&intf->dev, "CDC Union missing - got slave from IAD\n");
Bjørn Mork9992c2e2013-01-21 05:50:38 +0000665 }
666
Alexey Orishko900d4952010-11-29 23:23:28 +0000667 /* check if we got everything */
Bjørn Morkf8afb732014-05-16 21:48:19 +0200668 if (!ctx->data) {
669 dev_dbg(&intf->dev, "CDC Union missing and no IAD found\n");
Alexey Orishko900d4952010-11-29 23:23:28 +0000670 goto error;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100671 }
Bjørn Morkf8afb732014-05-16 21:48:19 +0200672 if (cdc_ncm_comm_intf_is_mbim(intf->cur_altsetting)) {
673 if (!ctx->mbim_desc) {
674 dev_dbg(&intf->dev, "MBIM functional descriptor missing\n");
675 goto error;
676 }
677 } else {
678 if (!ctx->ether_desc || !ctx->func_desc) {
679 dev_dbg(&intf->dev, "NCM or ECM functional descriptors missing\n");
680 goto error;
681 }
682 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000683
Bjørn Morkbbc8d922012-11-13 03:19:43 +0000684 /* claim data interface, if different from control */
685 if (ctx->data != ctx->control) {
686 temp = usb_driver_claim_interface(driver, ctx->data, dev);
Bjørn Mork296e81f2013-11-01 11:17:00 +0100687 if (temp) {
688 dev_dbg(&intf->dev, "failed to claim data intf\n");
Bjørn Morkbbc8d922012-11-13 03:19:43 +0000689 goto error;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100690 }
Bjørn Morkbbc8d922012-11-13 03:19:43 +0000691 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000692
693 iface_no = ctx->data->cur_altsetting->desc.bInterfaceNumber;
694
695 /* reset data interface */
696 temp = usb_set_interface(dev->udev, iface_no, 0);
Bjørn Mork296e81f2013-11-01 11:17:00 +0100697 if (temp) {
698 dev_dbg(&intf->dev, "set interface failed\n");
Alexey Orishko19694ac2011-05-24 05:26:13 +0000699 goto error2;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100700 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000701
Bjørn Mork08c74fc2014-05-16 21:48:20 +0200702 /* initialize basic device settings */
703 if (cdc_ncm_init(dev))
Bjørn Morkff0992e92014-03-17 16:25:18 +0100704 goto error2;
705
Alexey Orishko900d4952010-11-29 23:23:28 +0000706 /* configure data interface */
Greg Suarez38396e42012-10-22 10:56:31 +0000707 temp = usb_set_interface(dev->udev, iface_no, data_altsetting);
Bjørn Mork296e81f2013-11-01 11:17:00 +0100708 if (temp) {
709 dev_dbg(&intf->dev, "set interface failed\n");
Alexey Orishko19694ac2011-05-24 05:26:13 +0000710 goto error2;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100711 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000712
Bjørn Morkff1632a2013-11-01 11:16:41 +0100713 cdc_ncm_find_endpoints(dev, ctx->data);
714 cdc_ncm_find_endpoints(dev, ctx->control);
Bjørn Mork296e81f2013-11-01 11:17:00 +0100715 if (!dev->in || !dev->out || !dev->status) {
716 dev_dbg(&intf->dev, "failed to collect endpoints\n");
Alexey Orishko19694ac2011-05-24 05:26:13 +0000717 goto error2;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100718 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000719
Alexey Orishko900d4952010-11-29 23:23:28 +0000720 usb_set_intfdata(ctx->data, dev);
721 usb_set_intfdata(ctx->control, dev);
Alexey Orishko900d4952010-11-29 23:23:28 +0000722
Greg Suarez38396e42012-10-22 10:56:31 +0000723 if (ctx->ether_desc) {
724 temp = usbnet_get_ethernet_addr(dev, ctx->ether_desc->iMACAddress);
Bjørn Mork296e81f2013-11-01 11:17:00 +0100725 if (temp) {
726 dev_dbg(&intf->dev, "failed to get mac address\n");
Greg Suarez38396e42012-10-22 10:56:31 +0000727 goto error2;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100728 }
729 dev_info(&intf->dev, "MAC-Address: %pM\n", dev->net->dev_addr);
Greg Suarez38396e42012-10-22 10:56:31 +0000730 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000731
Bjørn Mork08c74fc2014-05-16 21:48:20 +0200732 /* finish setting up the device specific data */
733 cdc_ncm_setup(dev);
Bjørn Morkff0992e92014-03-17 16:25:18 +0100734
Bjørn Mork6c4e5482014-05-16 21:48:22 +0200735 /* override ethtool_ops */
736 dev->net->ethtool_ops = &cdc_ncm_ethtool_ops;
737
Alexey Orishko900d4952010-11-29 23:23:28 +0000738 return 0;
739
Alexey Orishko19694ac2011-05-24 05:26:13 +0000740error2:
741 usb_set_intfdata(ctx->control, NULL);
742 usb_set_intfdata(ctx->data, NULL);
Bjørn Mork6b4ef602013-01-21 05:50:40 +0000743 if (ctx->data != ctx->control)
744 usb_driver_release_interface(driver, ctx->data);
Alexey Orishko900d4952010-11-29 23:23:28 +0000745error:
746 cdc_ncm_free((struct cdc_ncm_ctx *)dev->data[0]);
747 dev->data[0] = 0;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100748 dev_info(&intf->dev, "bind() failure\n");
Alexey Orishko900d4952010-11-29 23:23:28 +0000749 return -ENODEV;
750}
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000751EXPORT_SYMBOL_GPL(cdc_ncm_bind_common);
Alexey Orishko900d4952010-11-29 23:23:28 +0000752
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000753void cdc_ncm_unbind(struct usbnet *dev, struct usb_interface *intf)
Alexey Orishko900d4952010-11-29 23:23:28 +0000754{
755 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
Alexey Orishko19694ac2011-05-24 05:26:13 +0000756 struct usb_driver *driver = driver_of(intf);
Alexey Orishko900d4952010-11-29 23:23:28 +0000757
758 if (ctx == NULL)
759 return; /* no setup */
760
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000761 atomic_set(&ctx->stop, 1);
762
763 if (hrtimer_active(&ctx->tx_timer))
764 hrtimer_cancel(&ctx->tx_timer);
765
766 tasklet_kill(&ctx->bh);
767
Bjørn Morkbbc8d922012-11-13 03:19:43 +0000768 /* handle devices with combined control and data interface */
769 if (ctx->control == ctx->data)
770 ctx->data = NULL;
771
Alexey Orishko19694ac2011-05-24 05:26:13 +0000772 /* disconnect master --> disconnect slave */
773 if (intf == ctx->control && ctx->data) {
774 usb_set_intfdata(ctx->data, NULL);
Alexey Orishko900d4952010-11-29 23:23:28 +0000775 usb_driver_release_interface(driver, ctx->data);
Alexey Orishko19694ac2011-05-24 05:26:13 +0000776 ctx->data = NULL;
Alexey Orishko900d4952010-11-29 23:23:28 +0000777
Alexey Orishko19694ac2011-05-24 05:26:13 +0000778 } else if (intf == ctx->data && ctx->control) {
779 usb_set_intfdata(ctx->control, NULL);
Alexey Orishko900d4952010-11-29 23:23:28 +0000780 usb_driver_release_interface(driver, ctx->control);
Alexey Orishko19694ac2011-05-24 05:26:13 +0000781 ctx->control = NULL;
Alexey Orishko900d4952010-11-29 23:23:28 +0000782 }
783
Bjørn Mork3e515662013-11-01 11:16:40 +0100784 usb_set_intfdata(intf, NULL);
Alexey Orishko900d4952010-11-29 23:23:28 +0000785 cdc_ncm_free(ctx);
786}
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000787EXPORT_SYMBOL_GPL(cdc_ncm_unbind);
Alexey Orishko900d4952010-11-29 23:23:28 +0000788
Bjørn Mork50a0ffa2014-05-11 10:47:15 +0200789/* Return the number of the MBIM control interface altsetting iff it
790 * is preferred and available,
Bjørn Mork1e8bbe62013-03-14 01:05:13 +0000791 */
Bjørn Mork50a0ffa2014-05-11 10:47:15 +0200792u8 cdc_ncm_select_altsetting(struct usb_interface *intf)
Greg Suarez38396e42012-10-22 10:56:31 +0000793{
Bjørn Mork1e8bbe62013-03-14 01:05:13 +0000794 struct usb_host_interface *alt;
Greg Suarez38396e42012-10-22 10:56:31 +0000795
Bjørn Morkbd329e12012-10-22 10:56:38 +0000796 /* The MBIM spec defines a NCM compatible default altsetting,
797 * which we may have matched:
798 *
799 * "Functions that implement both NCM 1.0 and MBIM (an
800 * “NCM/MBIM function”) according to this recommendation
801 * shall provide two alternate settings for the
802 * Communication Interface. Alternate setting 0, and the
803 * associated class and endpoint descriptors, shall be
804 * constructed according to the rules given for the
805 * Communication Interface in section 5 of [USBNCM10].
806 * Alternate setting 1, and the associated class and
807 * endpoint descriptors, shall be constructed according to
808 * the rules given in section 6 (USB Device Model) of this
809 * specification."
Bjørn Morkbd329e12012-10-22 10:56:38 +0000810 */
Bjørn Mork50a0ffa2014-05-11 10:47:15 +0200811 if (intf->num_altsetting < 2)
812 return intf->cur_altsetting->desc.bAlternateSetting;
813
814 if (prefer_mbim) {
Bjørn Mork1e8bbe62013-03-14 01:05:13 +0000815 alt = usb_altnum_to_altsetting(intf, CDC_NCM_COMM_ALTSETTING_MBIM);
Bjørn Mork50a0ffa2014-05-11 10:47:15 +0200816 if (alt && cdc_ncm_comm_intf_is_mbim(alt))
817 return CDC_NCM_COMM_ALTSETTING_MBIM;
Bjørn Morkf350ca02013-02-13 12:09:52 +0000818 }
Bjørn Mork50a0ffa2014-05-11 10:47:15 +0200819 return CDC_NCM_COMM_ALTSETTING_NCM;
Bjørn Mork1e8bbe62013-03-14 01:05:13 +0000820}
821EXPORT_SYMBOL_GPL(cdc_ncm_select_altsetting);
822
823static int cdc_ncm_bind(struct usbnet *dev, struct usb_interface *intf)
824{
825 int ret;
826
827 /* MBIM backwards compatible function? */
Bjørn Mork50a0ffa2014-05-11 10:47:15 +0200828 if (cdc_ncm_select_altsetting(intf) != CDC_NCM_COMM_ALTSETTING_NCM)
Bjørn Mork1e8bbe62013-03-14 01:05:13 +0000829 return -ENODEV;
Bjørn Morkbd329e12012-10-22 10:56:38 +0000830
Bjørn Mork50a0ffa2014-05-11 10:47:15 +0200831 /* The NCM data altsetting is fixed */
832 ret = cdc_ncm_bind_common(dev, intf, CDC_NCM_DATA_ALTSETTING_NCM);
Greg Suarez38396e42012-10-22 10:56:31 +0000833
834 /*
835 * We should get an event when network connection is "connected" or
836 * "disconnected". Set network connection in "disconnected" state
837 * (carrier is OFF) during attach, so the IP network stack does not
838 * start IPv6 negotiation and more.
839 */
Ming Lei8a34b0a2013-04-11 04:40:33 +0000840 usbnet_link_change(dev, 0, 0);
Greg Suarez38396e42012-10-22 10:56:31 +0000841 return ret;
842}
843
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000844static void cdc_ncm_align_tail(struct sk_buff *skb, size_t modulus, size_t remainder, size_t max)
Alexey Orishko900d4952010-11-29 23:23:28 +0000845{
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000846 size_t align = ALIGN(skb->len, modulus) - skb->len + remainder;
847
848 if (skb->len + align > max)
849 align = max - skb->len;
850 if (align && skb_tailroom(skb) >= align)
851 memset(skb_put(skb, align), 0, align);
852}
853
854/* return a pointer to a valid struct usb_cdc_ncm_ndp16 of type sign, possibly
855 * allocating a new one within skb
856 */
857static struct usb_cdc_ncm_ndp16 *cdc_ncm_ndp(struct cdc_ncm_ctx *ctx, struct sk_buff *skb, __le32 sign, size_t reserve)
858{
859 struct usb_cdc_ncm_ndp16 *ndp16 = NULL;
860 struct usb_cdc_ncm_nth16 *nth16 = (void *)skb->data;
861 size_t ndpoffset = le16_to_cpu(nth16->wNdpIndex);
862
863 /* follow the chain of NDPs, looking for a match */
864 while (ndpoffset) {
865 ndp16 = (struct usb_cdc_ncm_ndp16 *)(skb->data + ndpoffset);
866 if (ndp16->dwSignature == sign)
867 return ndp16;
868 ndpoffset = le16_to_cpu(ndp16->wNextNdpIndex);
869 }
870
871 /* align new NDP */
872 cdc_ncm_align_tail(skb, ctx->tx_ndp_modulus, 0, ctx->tx_max);
873
874 /* verify that there is room for the NDP and the datagram (reserve) */
Bjørn Mork70559b82014-05-16 21:48:23 +0200875 if ((ctx->tx_max - skb->len - reserve) < ctx->max_ndp_size)
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000876 return NULL;
877
878 /* link to it */
879 if (ndp16)
880 ndp16->wNextNdpIndex = cpu_to_le16(skb->len);
881 else
882 nth16->wNdpIndex = cpu_to_le16(skb->len);
883
884 /* push a new empty NDP */
Bjørn Mork70559b82014-05-16 21:48:23 +0200885 ndp16 = (struct usb_cdc_ncm_ndp16 *)memset(skb_put(skb, ctx->max_ndp_size), 0, ctx->max_ndp_size);
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000886 ndp16->dwSignature = sign;
887 ndp16->wLength = cpu_to_le16(sizeof(struct usb_cdc_ncm_ndp16) + sizeof(struct usb_cdc_ncm_dpe16));
888 return ndp16;
Alexey Orishko900d4952010-11-29 23:23:28 +0000889}
890
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000891struct sk_buff *
Bjørn Morkbed6f762013-11-01 11:16:42 +0100892cdc_ncm_fill_tx_frame(struct usbnet *dev, struct sk_buff *skb, __le32 sign)
Alexey Orishko900d4952010-11-29 23:23:28 +0000893{
Bjørn Morkbed6f762013-11-01 11:16:42 +0100894 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000895 struct usb_cdc_ncm_nth16 *nth16;
896 struct usb_cdc_ncm_ndp16 *ndp16;
Alexey Orishko900d4952010-11-29 23:23:28 +0000897 struct sk_buff *skb_out;
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000898 u16 n = 0, index, ndplen;
Alexey Orishko84e77a82011-02-07 09:45:10 +0000899 u8 ready2send = 0;
Alexey Orishko900d4952010-11-29 23:23:28 +0000900
901 /* if there is a remaining skb, it gets priority */
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000902 if (skb != NULL) {
Alexey Orishko900d4952010-11-29 23:23:28 +0000903 swap(skb, ctx->tx_rem_skb);
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000904 swap(sign, ctx->tx_rem_sign);
905 } else {
Alexey Orishko84e77a82011-02-07 09:45:10 +0000906 ready2send = 1;
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000907 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000908
909 /* check if we are resuming an OUT skb */
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000910 skb_out = ctx->tx_curr_skb;
Alexey Orishko900d4952010-11-29 23:23:28 +0000911
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000912 /* allocate a new OUT skb */
913 if (!skb_out) {
Bjørn Mork20572222013-11-01 11:16:38 +0100914 skb_out = alloc_skb(ctx->tx_max, GFP_ATOMIC);
Alexey Orishko900d4952010-11-29 23:23:28 +0000915 if (skb_out == NULL) {
916 if (skb != NULL) {
917 dev_kfree_skb_any(skb);
Bjørn Morkbed6f762013-11-01 11:16:42 +0100918 dev->net->stats.tx_dropped++;
Alexey Orishko900d4952010-11-29 23:23:28 +0000919 }
920 goto exit_no_skb;
921 }
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000922 /* fill out the initial 16-bit NTB header */
923 nth16 = (struct usb_cdc_ncm_nth16 *)memset(skb_put(skb_out, sizeof(struct usb_cdc_ncm_nth16)), 0, sizeof(struct usb_cdc_ncm_nth16));
924 nth16->dwSignature = cpu_to_le32(USB_CDC_NCM_NTH16_SIGN);
925 nth16->wHeaderLength = cpu_to_le16(sizeof(struct usb_cdc_ncm_nth16));
926 nth16->wSequence = cpu_to_le16(ctx->tx_seq++);
Alexey Orishko900d4952010-11-29 23:23:28 +0000927
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000928 /* count total number of frames in this NTB */
Alexey Orishko900d4952010-11-29 23:23:28 +0000929 ctx->tx_curr_frame_num = 0;
Bjørn Morkbeeecd42014-05-16 21:48:25 +0200930
931 /* recent payload counter for this skb_out */
932 ctx->tx_curr_frame_payload = 0;
Alexey Orishko900d4952010-11-29 23:23:28 +0000933 }
934
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000935 for (n = ctx->tx_curr_frame_num; n < ctx->tx_max_datagrams; n++) {
936 /* send any remaining skb first */
Alexey Orishko900d4952010-11-29 23:23:28 +0000937 if (skb == NULL) {
938 skb = ctx->tx_rem_skb;
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000939 sign = ctx->tx_rem_sign;
Alexey Orishko900d4952010-11-29 23:23:28 +0000940 ctx->tx_rem_skb = NULL;
941
942 /* check for end of skb */
943 if (skb == NULL)
944 break;
945 }
946
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000947 /* get the appropriate NDP for this skb */
948 ndp16 = cdc_ncm_ndp(ctx, skb_out, sign, skb->len + ctx->tx_modulus + ctx->tx_remainder);
949
950 /* align beginning of next frame */
951 cdc_ncm_align_tail(skb_out, ctx->tx_modulus, ctx->tx_remainder, ctx->tx_max);
952
953 /* check if we had enough room left for both NDP and frame */
954 if (!ndp16 || skb_out->len + skb->len > ctx->tx_max) {
Alexey Orishko900d4952010-11-29 23:23:28 +0000955 if (n == 0) {
956 /* won't fit, MTU problem? */
957 dev_kfree_skb_any(skb);
958 skb = NULL;
Bjørn Morkbed6f762013-11-01 11:16:42 +0100959 dev->net->stats.tx_dropped++;
Alexey Orishko900d4952010-11-29 23:23:28 +0000960 } else {
961 /* no room for skb - store for later */
962 if (ctx->tx_rem_skb != NULL) {
963 dev_kfree_skb_any(ctx->tx_rem_skb);
Bjørn Morkbed6f762013-11-01 11:16:42 +0100964 dev->net->stats.tx_dropped++;
Alexey Orishko900d4952010-11-29 23:23:28 +0000965 }
966 ctx->tx_rem_skb = skb;
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000967 ctx->tx_rem_sign = sign;
Alexey Orishko900d4952010-11-29 23:23:28 +0000968 skb = NULL;
Alexey Orishko84e77a82011-02-07 09:45:10 +0000969 ready2send = 1;
Bjørn Morkbeeecd42014-05-16 21:48:25 +0200970 ctx->tx_reason_ntb_full++; /* count reason for transmitting */
Alexey Orishko900d4952010-11-29 23:23:28 +0000971 }
972 break;
973 }
974
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000975 /* calculate frame number withing this NDP */
976 ndplen = le16_to_cpu(ndp16->wLength);
977 index = (ndplen - sizeof(struct usb_cdc_ncm_ndp16)) / sizeof(struct usb_cdc_ncm_dpe16) - 1;
Alexey Orishko900d4952010-11-29 23:23:28 +0000978
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000979 /* OK, add this skb */
980 ndp16->dpe16[index].wDatagramLength = cpu_to_le16(skb->len);
981 ndp16->dpe16[index].wDatagramIndex = cpu_to_le16(skb_out->len);
982 ndp16->wLength = cpu_to_le16(ndplen + sizeof(struct usb_cdc_ncm_dpe16));
983 memcpy(skb_put(skb_out, skb->len), skb->data, skb->len);
Bjørn Morkbeeecd42014-05-16 21:48:25 +0200984 ctx->tx_curr_frame_payload += skb->len; /* count real tx payload data */
Alexey Orishko900d4952010-11-29 23:23:28 +0000985 dev_kfree_skb_any(skb);
986 skb = NULL;
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000987
988 /* send now if this NDP is full */
989 if (index >= CDC_NCM_DPT_DATAGRAMS_MAX) {
990 ready2send = 1;
Bjørn Morkbeeecd42014-05-16 21:48:25 +0200991 ctx->tx_reason_ndp_full++; /* count reason for transmitting */
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000992 break;
993 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000994 }
995
996 /* free up any dangling skb */
997 if (skb != NULL) {
998 dev_kfree_skb_any(skb);
999 skb = NULL;
Bjørn Morkbed6f762013-11-01 11:16:42 +01001000 dev->net->stats.tx_dropped++;
Alexey Orishko900d4952010-11-29 23:23:28 +00001001 }
1002
1003 ctx->tx_curr_frame_num = n;
1004
1005 if (n == 0) {
1006 /* wait for more frames */
1007 /* push variables */
1008 ctx->tx_curr_skb = skb_out;
Alexey Orishko900d4952010-11-29 23:23:28 +00001009 goto exit_no_skb;
1010
Bjørn Mork6c4e5482014-05-16 21:48:22 +02001011 } else if ((n < ctx->tx_max_datagrams) && (ready2send == 0) && (ctx->timer_interval > 0)) {
Alexey Orishko900d4952010-11-29 23:23:28 +00001012 /* wait for more frames */
1013 /* push variables */
1014 ctx->tx_curr_skb = skb_out;
Alexey Orishko900d4952010-11-29 23:23:28 +00001015 /* set the pending count */
1016 if (n < CDC_NCM_RESTART_TIMER_DATAGRAM_CNT)
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +00001017 ctx->tx_timer_pending = CDC_NCM_TIMER_PENDING_CNT;
Alexey Orishko900d4952010-11-29 23:23:28 +00001018 goto exit_no_skb;
1019
1020 } else {
Bjørn Morkbeeecd42014-05-16 21:48:25 +02001021 if (n == ctx->tx_max_datagrams)
1022 ctx->tx_reason_max_datagram++; /* count reason for transmitting */
Alexey Orishko900d4952010-11-29 23:23:28 +00001023 /* frame goes out */
1024 /* variables will be reset at next call */
1025 }
1026
Bjørn Mork43e4c6d2014-05-16 21:48:24 +02001027 /* If collected data size is less or equal ctx->min_tx_pkt
Bjørn Mork20572222013-11-01 11:16:38 +01001028 * bytes, we send buffers as it is. If we get more data, it
1029 * would be more efficient for USB HS mobile device with DMA
1030 * engine to receive a full size NTB, than canceling DMA
1031 * transfer and receiving a short packet.
Bjørn Mork4d619f62013-11-01 11:16:49 +01001032 *
1033 * This optimization support is pointless if we end up sending
1034 * a ZLP after full sized NTBs.
Alexey Orishko900d4952010-11-29 23:23:28 +00001035 */
Bjørn Mork4d619f62013-11-01 11:16:49 +01001036 if (!(dev->driver_info->flags & FLAG_SEND_ZLP) &&
Bjørn Mork43e4c6d2014-05-16 21:48:24 +02001037 skb_out->len > ctx->min_tx_pkt)
Bjørn Mork20572222013-11-01 11:16:38 +01001038 memset(skb_put(skb_out, ctx->tx_max - skb_out->len), 0,
1039 ctx->tx_max - skb_out->len);
Bjørn Mork9becd702014-05-02 23:27:00 +02001040 else if (skb_out->len < ctx->tx_max && (skb_out->len % dev->maxpacket) == 0)
Bjørn Morkc78b7c52012-10-22 10:56:34 +00001041 *skb_put(skb_out, 1) = 0; /* force short packet */
Alexey Orishko900d4952010-11-29 23:23:28 +00001042
Bjørn Morkc78b7c52012-10-22 10:56:34 +00001043 /* set final frame length */
1044 nth16 = (struct usb_cdc_ncm_nth16 *)skb_out->data;
1045 nth16->wBlockLength = cpu_to_le16(skb_out->len);
Alexey Orishko900d4952010-11-29 23:23:28 +00001046
1047 /* return skb */
1048 ctx->tx_curr_skb = NULL;
Bjørn Morkbed6f762013-11-01 11:16:42 +01001049 dev->net->stats.tx_packets += ctx->tx_curr_frame_num;
Bjørn Morkbeeecd42014-05-16 21:48:25 +02001050
1051 /* keep private stats: framing overhead and number of NTBs */
1052 ctx->tx_overhead += skb_out->len - ctx->tx_curr_frame_payload;
1053 ctx->tx_ntbs++;
1054
1055 /* usbnet has already counted all the framing overhead.
1056 * Adjust the stats so that the tx_bytes counter show real
1057 * payload data instead.
1058 */
1059 dev->net->stats.tx_bytes -= skb_out->len - ctx->tx_curr_frame_payload;
1060
Alexey Orishko900d4952010-11-29 23:23:28 +00001061 return skb_out;
1062
1063exit_no_skb:
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +00001064 /* Start timer, if there is a remaining skb */
1065 if (ctx->tx_curr_skb != NULL)
1066 cdc_ncm_tx_timeout_start(ctx);
Alexey Orishko900d4952010-11-29 23:23:28 +00001067 return NULL;
1068}
Bjørn Morkc91ce3b2012-10-22 10:56:35 +00001069EXPORT_SYMBOL_GPL(cdc_ncm_fill_tx_frame);
Alexey Orishko900d4952010-11-29 23:23:28 +00001070
1071static void cdc_ncm_tx_timeout_start(struct cdc_ncm_ctx *ctx)
1072{
1073 /* start timer, if not already started */
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +00001074 if (!(hrtimer_active(&ctx->tx_timer) || atomic_read(&ctx->stop)))
1075 hrtimer_start(&ctx->tx_timer,
Bjørn Mork6c4e5482014-05-16 21:48:22 +02001076 ktime_set(0, ctx->timer_interval),
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +00001077 HRTIMER_MODE_REL);
Alexey Orishko900d4952010-11-29 23:23:28 +00001078}
1079
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +00001080static enum hrtimer_restart cdc_ncm_tx_timer_cb(struct hrtimer *timer)
Alexey Orishko900d4952010-11-29 23:23:28 +00001081{
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +00001082 struct cdc_ncm_ctx *ctx =
1083 container_of(timer, struct cdc_ncm_ctx, tx_timer);
Alexey Orishko900d4952010-11-29 23:23:28 +00001084
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +00001085 if (!atomic_read(&ctx->stop))
1086 tasklet_schedule(&ctx->bh);
1087 return HRTIMER_NORESTART;
1088}
1089
1090static void cdc_ncm_txpath_bh(unsigned long param)
1091{
Bjørn Morkbed6f762013-11-01 11:16:42 +01001092 struct usbnet *dev = (struct usbnet *)param;
1093 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +00001094
1095 spin_lock_bh(&ctx->mtx);
Alexey Orishko900d4952010-11-29 23:23:28 +00001096 if (ctx->tx_timer_pending != 0) {
1097 ctx->tx_timer_pending--;
Alexey Orishko900d4952010-11-29 23:23:28 +00001098 cdc_ncm_tx_timeout_start(ctx);
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +00001099 spin_unlock_bh(&ctx->mtx);
Bjørn Morkbed6f762013-11-01 11:16:42 +01001100 } else if (dev->net != NULL) {
Bjørn Morkbeeecd42014-05-16 21:48:25 +02001101 ctx->tx_reason_timeout++; /* count reason for transmitting */
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +00001102 spin_unlock_bh(&ctx->mtx);
Bjørn Morkbed6f762013-11-01 11:16:42 +01001103 netif_tx_lock_bh(dev->net);
1104 usbnet_start_xmit(NULL, dev->net);
1105 netif_tx_unlock_bh(dev->net);
Bjørn Mork7b1e0cb2012-10-25 21:44:09 +00001106 } else {
1107 spin_unlock_bh(&ctx->mtx);
Alexey Orishkof742aa82011-01-17 07:07:25 +00001108 }
Alexey Orishko900d4952010-11-29 23:23:28 +00001109}
1110
Enrico Mioso2f69702c2013-11-04 09:50:47 +01001111struct sk_buff *
Alexey Orishko900d4952010-11-29 23:23:28 +00001112cdc_ncm_tx_fixup(struct usbnet *dev, struct sk_buff *skb, gfp_t flags)
1113{
1114 struct sk_buff *skb_out;
1115 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
Alexey Orishko900d4952010-11-29 23:23:28 +00001116
1117 /*
1118 * The Ethernet API we are using does not support transmitting
1119 * multiple Ethernet frames in a single call. This driver will
1120 * accumulate multiple Ethernet frames and send out a larger
1121 * USB frame when the USB buffer is full or when a single jiffies
1122 * timeout happens.
1123 */
1124 if (ctx == NULL)
1125 goto error;
1126
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +00001127 spin_lock_bh(&ctx->mtx);
Bjørn Morkbed6f762013-11-01 11:16:42 +01001128 skb_out = cdc_ncm_fill_tx_frame(dev, skb, cpu_to_le32(USB_CDC_NCM_NDP16_NOCRC_SIGN));
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +00001129 spin_unlock_bh(&ctx->mtx);
Alexey Orishko900d4952010-11-29 23:23:28 +00001130 return skb_out;
1131
1132error:
1133 if (skb != NULL)
1134 dev_kfree_skb_any(skb);
1135
1136 return NULL;
1137}
Enrico Mioso2f69702c2013-11-04 09:50:47 +01001138EXPORT_SYMBOL_GPL(cdc_ncm_tx_fixup);
Alexey Orishko900d4952010-11-29 23:23:28 +00001139
Bjørn Morkff06ab12012-10-22 10:56:33 +00001140/* verify NTB header and return offset of first NDP, or negative error */
Bjørn Morkc91ce3b2012-10-22 10:56:35 +00001141int cdc_ncm_rx_verify_nth16(struct cdc_ncm_ctx *ctx, struct sk_buff *skb_in)
Alexey Orishko900d4952010-11-29 23:23:28 +00001142{
Bjørn Morkae223cd2013-11-01 11:16:54 +01001143 struct usbnet *dev = netdev_priv(skb_in->dev);
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +00001144 struct usb_cdc_ncm_nth16 *nth16;
Bjørn Morkff06ab12012-10-22 10:56:33 +00001145 int len;
1146 int ret = -EINVAL;
Alexey Orishko900d4952010-11-29 23:23:28 +00001147
Alexey Orishko900d4952010-11-29 23:23:28 +00001148 if (ctx == NULL)
1149 goto error;
1150
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +00001151 if (skb_in->len < (sizeof(struct usb_cdc_ncm_nth16) +
1152 sizeof(struct usb_cdc_ncm_ndp16))) {
Bjørn Morkae223cd2013-11-01 11:16:54 +01001153 netif_dbg(dev, rx_err, dev->net, "frame too short\n");
Alexey Orishko900d4952010-11-29 23:23:28 +00001154 goto error;
1155 }
1156
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +00001157 nth16 = (struct usb_cdc_ncm_nth16 *)skb_in->data;
Alexey Orishko900d4952010-11-29 23:23:28 +00001158
Bjørn Mork986e10d2013-11-01 11:16:56 +01001159 if (nth16->dwSignature != cpu_to_le32(USB_CDC_NCM_NTH16_SIGN)) {
Bjørn Mork5448d752013-11-01 11:16:55 +01001160 netif_dbg(dev, rx_err, dev->net,
1161 "invalid NTH16 signature <%#010x>\n",
1162 le32_to_cpu(nth16->dwSignature));
Alexey Orishko900d4952010-11-29 23:23:28 +00001163 goto error;
1164 }
1165
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +00001166 len = le16_to_cpu(nth16->wBlockLength);
1167 if (len > ctx->rx_max) {
Bjørn Morkae223cd2013-11-01 11:16:54 +01001168 netif_dbg(dev, rx_err, dev->net,
1169 "unsupported NTB block length %u/%u\n", len,
1170 ctx->rx_max);
Alexey Orishko900d4952010-11-29 23:23:28 +00001171 goto error;
1172 }
1173
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +00001174 if ((ctx->rx_seq + 1) != le16_to_cpu(nth16->wSequence) &&
Bjørn Morkae223cd2013-11-01 11:16:54 +01001175 (ctx->rx_seq || le16_to_cpu(nth16->wSequence)) &&
1176 !((ctx->rx_seq == 0xffff) && !le16_to_cpu(nth16->wSequence))) {
1177 netif_dbg(dev, rx_err, dev->net,
1178 "sequence number glitch prev=%d curr=%d\n",
1179 ctx->rx_seq, le16_to_cpu(nth16->wSequence));
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +00001180 }
1181 ctx->rx_seq = le16_to_cpu(nth16->wSequence);
1182
Bjørn Morkff06ab12012-10-22 10:56:33 +00001183 ret = le16_to_cpu(nth16->wNdpIndex);
1184error:
1185 return ret;
1186}
Bjørn Morkc91ce3b2012-10-22 10:56:35 +00001187EXPORT_SYMBOL_GPL(cdc_ncm_rx_verify_nth16);
Bjørn Morkff06ab12012-10-22 10:56:33 +00001188
1189/* verify NDP header and return number of datagrams, or negative error */
Bjørn Morkc91ce3b2012-10-22 10:56:35 +00001190int cdc_ncm_rx_verify_ndp16(struct sk_buff *skb_in, int ndpoffset)
Bjørn Morkff06ab12012-10-22 10:56:33 +00001191{
Bjørn Morkae223cd2013-11-01 11:16:54 +01001192 struct usbnet *dev = netdev_priv(skb_in->dev);
Bjørn Morkff06ab12012-10-22 10:56:33 +00001193 struct usb_cdc_ncm_ndp16 *ndp16;
1194 int ret = -EINVAL;
1195
Bjørn Mork75d67d32012-10-22 10:56:32 +00001196 if ((ndpoffset + sizeof(struct usb_cdc_ncm_ndp16)) > skb_in->len) {
Bjørn Morkae223cd2013-11-01 11:16:54 +01001197 netif_dbg(dev, rx_err, dev->net, "invalid NDP offset <%u>\n",
1198 ndpoffset);
Alexey Orishko900d4952010-11-29 23:23:28 +00001199 goto error;
1200 }
Bjørn Mork75d67d32012-10-22 10:56:32 +00001201 ndp16 = (struct usb_cdc_ncm_ndp16 *)(skb_in->data + ndpoffset);
Alexey Orishko900d4952010-11-29 23:23:28 +00001202
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +00001203 if (le16_to_cpu(ndp16->wLength) < USB_CDC_NCM_NDP16_LENGTH_MIN) {
Bjørn Morkae223cd2013-11-01 11:16:54 +01001204 netif_dbg(dev, rx_err, dev->net, "invalid DPT16 length <%u>\n",
1205 le16_to_cpu(ndp16->wLength));
Bjørn Morkff06ab12012-10-22 10:56:33 +00001206 goto error;
Alexey Orishko900d4952010-11-29 23:23:28 +00001207 }
1208
Bjørn Morkff06ab12012-10-22 10:56:33 +00001209 ret = ((le16_to_cpu(ndp16->wLength) -
Alexey Orishko900d4952010-11-29 23:23:28 +00001210 sizeof(struct usb_cdc_ncm_ndp16)) /
1211 sizeof(struct usb_cdc_ncm_dpe16));
Bjørn Morkff06ab12012-10-22 10:56:33 +00001212 ret--; /* we process NDP entries except for the last one */
Alexey Orishko900d4952010-11-29 23:23:28 +00001213
Bjørn Morkae223cd2013-11-01 11:16:54 +01001214 if ((sizeof(struct usb_cdc_ncm_ndp16) +
1215 ret * (sizeof(struct usb_cdc_ncm_dpe16))) > skb_in->len) {
1216 netif_dbg(dev, rx_err, dev->net, "Invalid nframes = %d\n", ret);
Bjørn Morkff06ab12012-10-22 10:56:33 +00001217 ret = -EINVAL;
Alexey Orishko900d4952010-11-29 23:23:28 +00001218 }
1219
Bjørn Morkff06ab12012-10-22 10:56:33 +00001220error:
1221 return ret;
1222}
Bjørn Morkc91ce3b2012-10-22 10:56:35 +00001223EXPORT_SYMBOL_GPL(cdc_ncm_rx_verify_ndp16);
Bjørn Morkff06ab12012-10-22 10:56:33 +00001224
Enrico Mioso2f69702c2013-11-04 09:50:47 +01001225int cdc_ncm_rx_fixup(struct usbnet *dev, struct sk_buff *skb_in)
Bjørn Morkff06ab12012-10-22 10:56:33 +00001226{
1227 struct sk_buff *skb;
1228 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
1229 int len;
1230 int nframes;
1231 int x;
1232 int offset;
1233 struct usb_cdc_ncm_ndp16 *ndp16;
1234 struct usb_cdc_ncm_dpe16 *dpe16;
1235 int ndpoffset;
1236 int loopcount = 50; /* arbitrary max preventing infinite loop */
Bjørn Morkbeeecd42014-05-16 21:48:25 +02001237 u32 payload = 0;
Bjørn Morkff06ab12012-10-22 10:56:33 +00001238
1239 ndpoffset = cdc_ncm_rx_verify_nth16(ctx, skb_in);
1240 if (ndpoffset < 0)
1241 goto error;
1242
1243next_ndp:
1244 nframes = cdc_ncm_rx_verify_ndp16(skb_in, ndpoffset);
1245 if (nframes < 0)
1246 goto error;
1247
1248 ndp16 = (struct usb_cdc_ncm_ndp16 *)(skb_in->data + ndpoffset);
1249
Bjørn Mork986e10d2013-11-01 11:16:56 +01001250 if (ndp16->dwSignature != cpu_to_le32(USB_CDC_NCM_NDP16_NOCRC_SIGN)) {
Bjørn Mork5448d752013-11-01 11:16:55 +01001251 netif_dbg(dev, rx_err, dev->net,
1252 "invalid DPT16 signature <%#010x>\n",
1253 le32_to_cpu(ndp16->dwSignature));
Bjørn Morkff06ab12012-10-22 10:56:33 +00001254 goto err_ndp;
1255 }
1256 dpe16 = ndp16->dpe16;
Alexey Orishko900d4952010-11-29 23:23:28 +00001257
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +00001258 for (x = 0; x < nframes; x++, dpe16++) {
1259 offset = le16_to_cpu(dpe16->wDatagramIndex);
1260 len = le16_to_cpu(dpe16->wDatagramLength);
Alexey Orishko900d4952010-11-29 23:23:28 +00001261
1262 /*
1263 * CDC NCM ch. 3.7
1264 * All entries after first NULL entry are to be ignored
1265 */
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +00001266 if ((offset == 0) || (len == 0)) {
Alexey Orishko900d4952010-11-29 23:23:28 +00001267 if (!x)
Bjørn Mork75d67d32012-10-22 10:56:32 +00001268 goto err_ndp; /* empty NTB */
Alexey Orishko900d4952010-11-29 23:23:28 +00001269 break;
1270 }
1271
1272 /* sanity checking */
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +00001273 if (((offset + len) > skb_in->len) ||
1274 (len > ctx->rx_max) || (len < ETH_HLEN)) {
Bjørn Morkae223cd2013-11-01 11:16:54 +01001275 netif_dbg(dev, rx_err, dev->net,
1276 "invalid frame detected (ignored) offset[%u]=%u, length=%u, skb=%p\n",
1277 x, offset, len, skb_in);
Alexey Orishko900d4952010-11-29 23:23:28 +00001278 if (!x)
Bjørn Mork75d67d32012-10-22 10:56:32 +00001279 goto err_ndp;
Alexey Orishko900d4952010-11-29 23:23:28 +00001280 break;
1281
1282 } else {
1283 skb = skb_clone(skb_in, GFP_ATOMIC);
Jesper Juhl9e567902011-01-13 11:40:11 +00001284 if (!skb)
1285 goto error;
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +00001286 skb->len = len;
Alexey Orishko900d4952010-11-29 23:23:28 +00001287 skb->data = ((u8 *)skb_in->data) + offset;
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +00001288 skb_set_tail_pointer(skb, len);
Alexey Orishko900d4952010-11-29 23:23:28 +00001289 usbnet_skb_return(dev, skb);
Bjørn Morkbeeecd42014-05-16 21:48:25 +02001290 payload += len; /* count payload bytes in this NTB */
Alexey Orishko900d4952010-11-29 23:23:28 +00001291 }
1292 }
Bjørn Mork75d67d32012-10-22 10:56:32 +00001293err_ndp:
1294 /* are there more NDPs to process? */
1295 ndpoffset = le16_to_cpu(ndp16->wNextNdpIndex);
1296 if (ndpoffset && loopcount--)
1297 goto next_ndp;
1298
Bjørn Morkbeeecd42014-05-16 21:48:25 +02001299 /* update stats */
1300 ctx->rx_overhead += skb_in->len - payload;
1301 ctx->rx_ntbs++;
1302
Alexey Orishko900d4952010-11-29 23:23:28 +00001303 return 1;
1304error:
1305 return 0;
1306}
Enrico Mioso2f69702c2013-11-04 09:50:47 +01001307EXPORT_SYMBOL_GPL(cdc_ncm_rx_fixup);
Alexey Orishko900d4952010-11-29 23:23:28 +00001308
1309static void
Bjørn Morkbed6f762013-11-01 11:16:42 +01001310cdc_ncm_speed_change(struct usbnet *dev,
Alexey Orishko84e77a82011-02-07 09:45:10 +00001311 struct usb_cdc_speed_change *data)
Alexey Orishko900d4952010-11-29 23:23:28 +00001312{
Alexey Orishko84e77a82011-02-07 09:45:10 +00001313 uint32_t rx_speed = le32_to_cpu(data->DLBitRRate);
1314 uint32_t tx_speed = le32_to_cpu(data->ULBitRate);
Alexey Orishko900d4952010-11-29 23:23:28 +00001315
1316 /*
1317 * Currently the USB-NET API does not support reporting the actual
1318 * device speed. Do print it instead.
1319 */
Bjørn Morkf3028c52013-11-01 11:16:44 +01001320 if ((tx_speed > 1000000) && (rx_speed > 1000000)) {
Bjørn Morkae223cd2013-11-01 11:16:54 +01001321 netif_info(dev, link, dev->net,
1322 "%u mbit/s downlink %u mbit/s uplink\n",
Bjørn Morkf3028c52013-11-01 11:16:44 +01001323 (unsigned int)(rx_speed / 1000000U),
1324 (unsigned int)(tx_speed / 1000000U));
1325 } else {
Bjørn Morkae223cd2013-11-01 11:16:54 +01001326 netif_info(dev, link, dev->net,
1327 "%u kbit/s downlink %u kbit/s uplink\n",
Bjørn Morkf3028c52013-11-01 11:16:44 +01001328 (unsigned int)(rx_speed / 1000U),
1329 (unsigned int)(tx_speed / 1000U));
Alexey Orishko900d4952010-11-29 23:23:28 +00001330 }
1331}
1332
1333static void cdc_ncm_status(struct usbnet *dev, struct urb *urb)
1334{
1335 struct cdc_ncm_ctx *ctx;
1336 struct usb_cdc_notification *event;
1337
1338 ctx = (struct cdc_ncm_ctx *)dev->data[0];
1339
1340 if (urb->actual_length < sizeof(*event))
1341 return;
1342
1343 /* test for split data in 8-byte chunks */
1344 if (test_and_clear_bit(EVENT_STS_SPLIT, &dev->flags)) {
Bjørn Morkbed6f762013-11-01 11:16:42 +01001345 cdc_ncm_speed_change(dev,
Alexey Orishko84e77a82011-02-07 09:45:10 +00001346 (struct usb_cdc_speed_change *)urb->transfer_buffer);
Alexey Orishko900d4952010-11-29 23:23:28 +00001347 return;
1348 }
1349
1350 event = urb->transfer_buffer;
1351
1352 switch (event->bNotificationType) {
1353 case USB_CDC_NOTIFY_NETWORK_CONNECTION:
1354 /*
1355 * According to the CDC NCM specification ch.7.1
1356 * USB_CDC_NOTIFY_NETWORK_CONNECTION notification shall be
1357 * sent by device after USB_CDC_NOTIFY_SPEED_CHANGE.
1358 */
Bjørn Mork1a7c6cc2012-10-25 21:44:08 +00001359 ctx->connected = le16_to_cpu(event->wValue);
Bjørn Morkae223cd2013-11-01 11:16:54 +01001360 netif_info(dev, link, dev->net,
1361 "network connection: %sconnected\n",
1362 ctx->connected ? "" : "dis");
Ming Lei8a34b0a2013-04-11 04:40:33 +00001363 usbnet_link_change(dev, ctx->connected, 0);
Alexey Orishko900d4952010-11-29 23:23:28 +00001364 break;
1365
1366 case USB_CDC_NOTIFY_SPEED_CHANGE:
Alexey Orishko84e77a82011-02-07 09:45:10 +00001367 if (urb->actual_length < (sizeof(*event) +
1368 sizeof(struct usb_cdc_speed_change)))
Alexey Orishko900d4952010-11-29 23:23:28 +00001369 set_bit(EVENT_STS_SPLIT, &dev->flags);
1370 else
Bjørn Morkbed6f762013-11-01 11:16:42 +01001371 cdc_ncm_speed_change(dev,
1372 (struct usb_cdc_speed_change *)&event[1]);
Alexey Orishko900d4952010-11-29 23:23:28 +00001373 break;
1374
1375 default:
Bjørn Mork67a36602013-04-08 08:26:23 +00001376 dev_dbg(&dev->udev->dev,
1377 "NCM: unexpected notification 0x%02x!\n",
1378 event->bNotificationType);
Alexey Orishko900d4952010-11-29 23:23:28 +00001379 break;
1380 }
1381}
1382
1383static int cdc_ncm_check_connect(struct usbnet *dev)
1384{
1385 struct cdc_ncm_ctx *ctx;
1386
1387 ctx = (struct cdc_ncm_ctx *)dev->data[0];
1388 if (ctx == NULL)
1389 return 1; /* disconnected */
1390
1391 return !ctx->connected;
1392}
1393
Alexey Orishko900d4952010-11-29 23:23:28 +00001394static const struct driver_info cdc_ncm_info = {
1395 .description = "CDC NCM",
Arnd Bergmannc2613442011-04-01 20:12:02 -07001396 .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET,
Alexey Orishko900d4952010-11-29 23:23:28 +00001397 .bind = cdc_ncm_bind,
1398 .unbind = cdc_ncm_unbind,
1399 .check_connect = cdc_ncm_check_connect,
Oliver Neukuma5e40702012-12-18 04:46:12 +00001400 .manage_power = usbnet_manage_power,
Alexey Orishko900d4952010-11-29 23:23:28 +00001401 .status = cdc_ncm_status,
1402 .rx_fixup = cdc_ncm_rx_fixup,
1403 .tx_fixup = cdc_ncm_tx_fixup,
1404};
1405
Dan Williamsf94898e2012-07-24 08:43:22 +00001406/* Same as cdc_ncm_info, but with FLAG_WWAN */
1407static const struct driver_info wwan_info = {
1408 .description = "Mobile Broadband Network Device",
1409 .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET
1410 | FLAG_WWAN,
1411 .bind = cdc_ncm_bind,
1412 .unbind = cdc_ncm_unbind,
1413 .check_connect = cdc_ncm_check_connect,
Oliver Neukuma5e40702012-12-18 04:46:12 +00001414 .manage_power = usbnet_manage_power,
Dan Williamsf94898e2012-07-24 08:43:22 +00001415 .status = cdc_ncm_status,
1416 .rx_fixup = cdc_ncm_rx_fixup,
1417 .tx_fixup = cdc_ncm_tx_fixup,
1418};
1419
Wei Shuai2f62d5a2013-01-21 06:00:32 +00001420/* Same as wwan_info, but with FLAG_NOARP */
1421static const struct driver_info wwan_noarp_info = {
1422 .description = "Mobile Broadband Network Device (NO ARP)",
1423 .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET
1424 | FLAG_WWAN | FLAG_NOARP,
1425 .bind = cdc_ncm_bind,
1426 .unbind = cdc_ncm_unbind,
1427 .check_connect = cdc_ncm_check_connect,
1428 .manage_power = usbnet_manage_power,
1429 .status = cdc_ncm_status,
1430 .rx_fixup = cdc_ncm_rx_fixup,
1431 .tx_fixup = cdc_ncm_tx_fixup,
1432};
1433
Dan Williamsf94898e2012-07-24 08:43:22 +00001434static const struct usb_device_id cdc_devs[] = {
1435 /* Ericsson MBM devices like F5521gw */
1436 { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
1437 | USB_DEVICE_ID_MATCH_VENDOR,
1438 .idVendor = 0x0bdb,
1439 .bInterfaceClass = USB_CLASS_COMM,
1440 .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM,
1441 .bInterfaceProtocol = USB_CDC_PROTO_NONE,
1442 .driver_info = (unsigned long) &wwan_info,
1443 },
1444
Peter Meiserf3a1ef92012-08-02 02:30:20 +00001445 /* Dell branded MBM devices like DW5550 */
1446 { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
1447 | USB_DEVICE_ID_MATCH_VENDOR,
1448 .idVendor = 0x413c,
1449 .bInterfaceClass = USB_CLASS_COMM,
1450 .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM,
1451 .bInterfaceProtocol = USB_CDC_PROTO_NONE,
1452 .driver_info = (unsigned long) &wwan_info,
1453 },
1454
1455 /* Toshiba branded MBM devices */
1456 { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
1457 | USB_DEVICE_ID_MATCH_VENDOR,
1458 .idVendor = 0x0930,
1459 .bInterfaceClass = USB_CLASS_COMM,
1460 .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM,
1461 .bInterfaceProtocol = USB_CDC_PROTO_NONE,
1462 .driver_info = (unsigned long) &wwan_info,
1463 },
1464
Bjørn Mork1f84eab2013-02-27 03:08:58 +00001465 /* tag Huawei devices as wwan */
1466 { USB_VENDOR_AND_INTERFACE_INFO(0x12d1,
1467 USB_CLASS_COMM,
1468 USB_CDC_SUBCLASS_NCM,
1469 USB_CDC_PROTO_NONE),
1470 .driver_info = (unsigned long)&wwan_info,
1471 },
1472
Wei Shuai2f62d5a2013-01-21 06:00:32 +00001473 /* Infineon(now Intel) HSPA Modem platform */
1474 { USB_DEVICE_AND_INTERFACE_INFO(0x1519, 0x0443,
1475 USB_CLASS_COMM,
1476 USB_CDC_SUBCLASS_NCM, USB_CDC_PROTO_NONE),
1477 .driver_info = (unsigned long)&wwan_noarp_info,
1478 },
1479
Dan Williamsf94898e2012-07-24 08:43:22 +00001480 /* Generic CDC-NCM devices */
1481 { USB_INTERFACE_INFO(USB_CLASS_COMM,
1482 USB_CDC_SUBCLASS_NCM, USB_CDC_PROTO_NONE),
1483 .driver_info = (unsigned long)&cdc_ncm_info,
1484 },
1485 {
1486 },
1487};
1488MODULE_DEVICE_TABLE(usb, cdc_devs);
1489
Alexey Orishko900d4952010-11-29 23:23:28 +00001490static struct usb_driver cdc_ncm_driver = {
1491 .name = "cdc_ncm",
1492 .id_table = cdc_devs,
Bjørn Mork085e50e2013-11-01 11:16:50 +01001493 .probe = usbnet_probe,
1494 .disconnect = usbnet_disconnect,
Alexey Orishko900d4952010-11-29 23:23:28 +00001495 .suspend = usbnet_suspend,
1496 .resume = usbnet_resume,
Stefan Metzmacher85e3c652011-06-01 02:01:41 +00001497 .reset_resume = usbnet_resume,
Alexey Orishko900d4952010-11-29 23:23:28 +00001498 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07001499 .disable_hub_initiated_lpm = 1,
Alexey Orishko900d4952010-11-29 23:23:28 +00001500};
1501
Greg Kroah-Hartmand632eb12011-11-18 09:44:20 -08001502module_usb_driver(cdc_ncm_driver);
Alexey Orishko900d4952010-11-29 23:23:28 +00001503
1504MODULE_AUTHOR("Hans Petter Selasky");
1505MODULE_DESCRIPTION("USB CDC NCM host driver");
1506MODULE_LICENSE("Dual BSD/GPL");