blob: 4531f38fc0e5ca8e8438b72edc5e10306cd3bf16 [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>
42#include <linux/init.h>
43#include <linux/netdevice.h>
44#include <linux/ctype.h>
45#include <linux/ethtool.h>
46#include <linux/workqueue.h>
47#include <linux/mii.h>
48#include <linux/crc32.h>
49#include <linux/usb.h>
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +000050#include <linux/hrtimer.h>
Alexey Orishko900d4952010-11-29 23:23:28 +000051#include <linux/atomic.h>
52#include <linux/usb/usbnet.h>
53#include <linux/usb/cdc.h>
Bjørn Morkc91ce3b2012-10-22 10:56:35 +000054#include <linux/usb/cdc_ncm.h>
Alexey Orishko900d4952010-11-29 23:23:28 +000055
Bjørn Mork1e8bbe62013-03-14 01:05:13 +000056#if IS_ENABLED(CONFIG_USB_NET_CDC_MBIM)
57static bool prefer_mbim = true;
58#else
59static bool prefer_mbim;
60#endif
61module_param(prefer_mbim, bool, S_IRUGO | S_IWUSR);
62MODULE_PARM_DESC(prefer_mbim, "Prefer MBIM setting on dual NCM/MBIM functions");
63
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +000064static void cdc_ncm_txpath_bh(unsigned long param);
65static void cdc_ncm_tx_timeout_start(struct cdc_ncm_ctx *ctx);
66static enum hrtimer_restart cdc_ncm_tx_timer_cb(struct hrtimer *hr_timer);
Alexey Orishko900d4952010-11-29 23:23:28 +000067static struct usb_driver cdc_ncm_driver;
Alexey Orishko900d4952010-11-29 23:23:28 +000068
Bjørn Morkbed6f762013-11-01 11:16:42 +010069static u8 cdc_ncm_setup(struct usbnet *dev)
Alexey Orishko900d4952010-11-29 23:23:28 +000070{
Bjørn Morkbed6f762013-11-01 11:16:42 +010071 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
Bjørn Mork6a9612e2013-11-01 11:16:45 +010072 struct usb_cdc_ncm_ntb_parameters ncm_parm;
Alexey Orishko900d4952010-11-29 23:23:28 +000073 u32 val;
Alexey Orishko900d4952010-11-29 23:23:28 +000074 u8 flags;
75 u8 iface_no;
76 int err;
Greg Suarez2d1c4312012-10-22 10:56:30 +000077 int eth_hlen;
Alexey Orishko84e77a82011-02-07 09:45:10 +000078 u16 ntb_fmt_supported;
Bjørn Mork47175e52013-11-01 11:16:58 +010079 __le16 max_datagram_size;
Alexey Orishko900d4952010-11-29 23:23:28 +000080
81 iface_no = ctx->control->cur_altsetting->desc.bInterfaceNumber;
82
Ming Lei90b8b032012-10-24 19:46:56 +000083 err = usbnet_read_cmd(dev, USB_CDC_GET_NTB_PARAMETERS,
84 USB_TYPE_CLASS | USB_DIR_IN
85 |USB_RECIP_INTERFACE,
Bjørn Mork6a9612e2013-11-01 11:16:45 +010086 0, iface_no, &ncm_parm,
87 sizeof(ncm_parm));
Giuseppe Scrivano36c35412011-08-03 22:10:29 +000088 if (err < 0) {
Bjørn Mork59ede312013-11-01 11:16:59 +010089 dev_err(&dev->intf->dev, "failed GET_NTB_PARAMETERS\n");
90 return err; /* GET_NTB_PARAMETERS is required */
Alexey Orishko900d4952010-11-29 23:23:28 +000091 }
92
93 /* read correct set of parameters according to device mode */
Bjørn Mork6a9612e2013-11-01 11:16:45 +010094 ctx->rx_max = le32_to_cpu(ncm_parm.dwNtbInMaxSize);
95 ctx->tx_max = le32_to_cpu(ncm_parm.dwNtbOutMaxSize);
96 ctx->tx_remainder = le16_to_cpu(ncm_parm.wNdpOutPayloadRemainder);
97 ctx->tx_modulus = le16_to_cpu(ncm_parm.wNdpOutDivisor);
98 ctx->tx_ndp_modulus = le16_to_cpu(ncm_parm.wNdpOutAlignment);
Alexey Orishko84e77a82011-02-07 09:45:10 +000099 /* devices prior to NCM Errata shall set this field to zero */
Bjørn Mork6a9612e2013-11-01 11:16:45 +0100100 ctx->tx_max_datagrams = le16_to_cpu(ncm_parm.wNtbOutMaxDatagrams);
101 ntb_fmt_supported = le16_to_cpu(ncm_parm.bmNtbFormatsSupported);
Alexey Orishko900d4952010-11-29 23:23:28 +0000102
Bjørn Mork47175e52013-11-01 11:16:58 +0100103 /* there are some minor differences in NCM and MBIM defaults */
104 if (cdc_ncm_comm_intf_is_mbim(ctx->control->cur_altsetting)) {
105 if (!ctx->mbim_desc)
106 return -EINVAL;
Greg Suarez2d1c4312012-10-22 10:56:30 +0000107 eth_hlen = 0;
Bjørn Mork47175e52013-11-01 11:16:58 +0100108 flags = ctx->mbim_desc->bmNetworkCapabilities;
109 ctx->max_datagram_size = le16_to_cpu(ctx->mbim_desc->wMaxSegmentSize);
110 if (ctx->max_datagram_size < CDC_MBIM_MIN_DATAGRAM_SIZE)
111 ctx->max_datagram_size = CDC_MBIM_MIN_DATAGRAM_SIZE;
Greg Suarez2d1c4312012-10-22 10:56:30 +0000112 } else {
Bjørn Mork47175e52013-11-01 11:16:58 +0100113 if (!ctx->func_desc)
114 return -EINVAL;
115 eth_hlen = ETH_HLEN;
116 flags = ctx->func_desc->bmNetworkCapabilities;
117 ctx->max_datagram_size = le16_to_cpu(ctx->ether_desc->wMaxSegmentSize);
118 if (ctx->max_datagram_size < CDC_NCM_MIN_DATAGRAM_SIZE)
119 ctx->max_datagram_size = CDC_NCM_MIN_DATAGRAM_SIZE;
Greg Suarez2d1c4312012-10-22 10:56:30 +0000120 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000121
Bjørn Mork47175e52013-11-01 11:16:58 +0100122 /* common absolute max for NCM and MBIM */
123 if (ctx->max_datagram_size > CDC_NCM_MAX_DATAGRAM_SIZE)
124 ctx->max_datagram_size = CDC_NCM_MAX_DATAGRAM_SIZE;
125
Bjørn Morkae223cd2013-11-01 11:16:54 +0100126 dev_dbg(&dev->intf->dev,
127 "dwNtbInMaxSize=%u dwNtbOutMaxSize=%u wNdpOutPayloadRemainder=%u wNdpOutDivisor=%u wNdpOutAlignment=%u wNtbOutMaxDatagrams=%u flags=0x%x\n",
128 ctx->rx_max, ctx->tx_max, ctx->tx_remainder, ctx->tx_modulus,
129 ctx->tx_ndp_modulus, ctx->tx_max_datagrams, flags);
Alexey Orishko900d4952010-11-29 23:23:28 +0000130
Alexey Orishko84e77a82011-02-07 09:45:10 +0000131 /* max count of tx datagrams */
132 if ((ctx->tx_max_datagrams == 0) ||
133 (ctx->tx_max_datagrams > CDC_NCM_DPT_DATAGRAMS_MAX))
134 ctx->tx_max_datagrams = CDC_NCM_DPT_DATAGRAMS_MAX;
Alexey Orishko900d4952010-11-29 23:23:28 +0000135
136 /* verify maximum size of received NTB in bytes */
Alexey Orishko84e77a82011-02-07 09:45:10 +0000137 if (ctx->rx_max < USB_CDC_NCM_NTB_MIN_IN_SIZE) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100138 dev_dbg(&dev->intf->dev, "Using min receive length=%d\n",
139 USB_CDC_NCM_NTB_MIN_IN_SIZE);
Alexey Orishko84e77a82011-02-07 09:45:10 +0000140 ctx->rx_max = USB_CDC_NCM_NTB_MIN_IN_SIZE;
141 }
142
143 if (ctx->rx_max > CDC_NCM_NTB_MAX_SIZE_RX) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100144 dev_dbg(&dev->intf->dev, "Using default maximum receive length=%d\n",
145 CDC_NCM_NTB_MAX_SIZE_RX);
Alexey Orishko900d4952010-11-29 23:23:28 +0000146 ctx->rx_max = CDC_NCM_NTB_MAX_SIZE_RX;
147 }
148
Alexey Orishko84e77a82011-02-07 09:45:10 +0000149 /* inform device about NTB input size changes */
Bjørn Mork6a9612e2013-11-01 11:16:45 +0100150 if (ctx->rx_max != le32_to_cpu(ncm_parm.dwNtbInMaxSize)) {
Ming Lei90b8b032012-10-24 19:46:56 +0000151 __le32 dwNtbInMaxSize = cpu_to_le32(ctx->rx_max);
Alexey Orishko84e77a82011-02-07 09:45:10 +0000152
Ming Lei90b8b032012-10-24 19:46:56 +0000153 err = usbnet_write_cmd(dev, USB_CDC_SET_NTB_INPUT_SIZE,
154 USB_TYPE_CLASS | USB_DIR_OUT
155 | USB_RECIP_INTERFACE,
156 0, iface_no, &dwNtbInMaxSize, 4);
Giuseppe Scrivano36c35412011-08-03 22:10:29 +0000157 if (err < 0)
Bjørn Morkae223cd2013-11-01 11:16:54 +0100158 dev_dbg(&dev->intf->dev, "Setting NTB Input Size failed\n");
Alexey Orishko84e77a82011-02-07 09:45:10 +0000159 }
160
Alexey Orishko900d4952010-11-29 23:23:28 +0000161 /* verify maximum size of transmitted NTB in bytes */
Bjørn Mork47175e52013-11-01 11:16:58 +0100162 if ((ctx->tx_max < (CDC_NCM_MIN_HDR_SIZE + ctx->max_datagram_size)) ||
Alexey Orishko900d4952010-11-29 23:23:28 +0000163 (ctx->tx_max > CDC_NCM_NTB_MAX_SIZE_TX)) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100164 dev_dbg(&dev->intf->dev, "Using default maximum transmit length=%d\n",
165 CDC_NCM_NTB_MAX_SIZE_TX);
Alexey Orishko900d4952010-11-29 23:23:28 +0000166 ctx->tx_max = CDC_NCM_NTB_MAX_SIZE_TX;
Bjørn Mork6a9612e2013-11-01 11:16:45 +0100167
168 /* Adding a pad byte here simplifies the handling in
169 * cdc_ncm_fill_tx_frame, by making tx_max always
170 * represent the real skb max size.
171 */
172 if (ctx->tx_max % usb_maxpacket(dev->udev, dev->out, 1) == 0)
173 ctx->tx_max++;
174
Alexey Orishko900d4952010-11-29 23:23:28 +0000175 }
176
177 /*
178 * verify that the structure alignment is:
179 * - power of two
180 * - not greater than the maximum transmit length
181 * - not less than four bytes
182 */
183 val = ctx->tx_ndp_modulus;
184
185 if ((val < USB_CDC_NCM_NDP_ALIGN_MIN_SIZE) ||
186 (val != ((-val) & val)) || (val >= ctx->tx_max)) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100187 dev_dbg(&dev->intf->dev, "Using default alignment: 4 bytes\n");
Alexey Orishko900d4952010-11-29 23:23:28 +0000188 ctx->tx_ndp_modulus = USB_CDC_NCM_NDP_ALIGN_MIN_SIZE;
189 }
190
191 /*
192 * verify that the payload alignment is:
193 * - power of two
194 * - not greater than the maximum transmit length
195 * - not less than four bytes
196 */
197 val = ctx->tx_modulus;
198
199 if ((val < USB_CDC_NCM_NDP_ALIGN_MIN_SIZE) ||
200 (val != ((-val) & val)) || (val >= ctx->tx_max)) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100201 dev_dbg(&dev->intf->dev, "Using default transmit modulus: 4 bytes\n");
Alexey Orishko900d4952010-11-29 23:23:28 +0000202 ctx->tx_modulus = USB_CDC_NCM_NDP_ALIGN_MIN_SIZE;
203 }
204
205 /* verify the payload remainder */
206 if (ctx->tx_remainder >= ctx->tx_modulus) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100207 dev_dbg(&dev->intf->dev, "Using default transmit remainder: 0 bytes\n");
Alexey Orishko900d4952010-11-29 23:23:28 +0000208 ctx->tx_remainder = 0;
209 }
210
211 /* adjust TX-remainder according to NCM specification. */
Greg Suarez2d1c4312012-10-22 10:56:30 +0000212 ctx->tx_remainder = ((ctx->tx_remainder - eth_hlen) &
213 (ctx->tx_modulus - 1));
Alexey Orishko900d4952010-11-29 23:23:28 +0000214
215 /* additional configuration */
216
217 /* set CRC Mode */
Alexey Orishko84e77a82011-02-07 09:45:10 +0000218 if (flags & USB_CDC_NCM_NCAP_CRC_MODE) {
Ming Lei90b8b032012-10-24 19:46:56 +0000219 err = usbnet_write_cmd(dev, USB_CDC_SET_CRC_MODE,
220 USB_TYPE_CLASS | USB_DIR_OUT
221 | USB_RECIP_INTERFACE,
222 USB_CDC_NCM_CRC_NOT_APPENDED,
223 iface_no, NULL, 0);
Giuseppe Scrivano36c35412011-08-03 22:10:29 +0000224 if (err < 0)
Bjørn Morkae223cd2013-11-01 11:16:54 +0100225 dev_dbg(&dev->intf->dev, "Setting CRC mode off failed\n");
Alexey Orishko84e77a82011-02-07 09:45:10 +0000226 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000227
Alexey Orishko84e77a82011-02-07 09:45:10 +0000228 /* set NTB format, if both formats are supported */
229 if (ntb_fmt_supported & USB_CDC_NCM_NTH32_SIGN) {
Ming Lei90b8b032012-10-24 19:46:56 +0000230 err = usbnet_write_cmd(dev, USB_CDC_SET_NTB_FORMAT,
231 USB_TYPE_CLASS | USB_DIR_OUT
232 | USB_RECIP_INTERFACE,
233 USB_CDC_NCM_NTB16_FORMAT,
234 iface_no, NULL, 0);
Giuseppe Scrivano36c35412011-08-03 22:10:29 +0000235 if (err < 0)
Bjørn Morkae223cd2013-11-01 11:16:54 +0100236 dev_dbg(&dev->intf->dev, "Setting NTB format to 16-bit failed\n");
Alexey Orishko84e77a82011-02-07 09:45:10 +0000237 }
238
Bjørn Mork47175e52013-11-01 11:16:58 +0100239 /* inform the device about the selected Max Datagram Size */
240 if (!(flags & USB_CDC_NCM_NCAP_MAX_DATAGRAM_SIZE))
241 goto out;
Alexey Orishko900d4952010-11-29 23:23:28 +0000242
Bjørn Mork47175e52013-11-01 11:16:58 +0100243 /* read current mtu value from device */
244 err = usbnet_read_cmd(dev, USB_CDC_GET_MAX_DATAGRAM_SIZE,
245 USB_TYPE_CLASS | USB_DIR_IN | USB_RECIP_INTERFACE,
246 0, iface_no, &max_datagram_size, 2);
247 if (err < 0) {
248 dev_dbg(&dev->intf->dev, "GET_MAX_DATAGRAM_SIZE failed\n");
249 goto out;
Alexey Orishko900d4952010-11-29 23:23:28 +0000250 }
251
Bjørn Mork47175e52013-11-01 11:16:58 +0100252 if (le16_to_cpu(max_datagram_size) == ctx->max_datagram_size)
253 goto out;
Alexey Orishko900d4952010-11-29 23:23:28 +0000254
Bjørn Mork47175e52013-11-01 11:16:58 +0100255 max_datagram_size = cpu_to_le16(ctx->max_datagram_size);
256 err = usbnet_write_cmd(dev, USB_CDC_SET_MAX_DATAGRAM_SIZE,
257 USB_TYPE_CLASS | USB_DIR_OUT | USB_RECIP_INTERFACE,
258 0, iface_no, &max_datagram_size, 2);
259 if (err < 0)
260 dev_dbg(&dev->intf->dev, "SET_MAX_DATAGRAM_SIZE failed\n");
261
262out:
263 /* set MTU to max supported by the device if necessary */
264 if (dev->net->mtu > ctx->max_datagram_size - eth_hlen)
265 dev->net->mtu = ctx->max_datagram_size - eth_hlen;
Alexey Orishko900d4952010-11-29 23:23:28 +0000266 return 0;
267}
268
269static void
Bjørn Morkff1632a2013-11-01 11:16:41 +0100270cdc_ncm_find_endpoints(struct usbnet *dev, struct usb_interface *intf)
Alexey Orishko900d4952010-11-29 23:23:28 +0000271{
Bjørn Morkff1632a2013-11-01 11:16:41 +0100272 struct usb_host_endpoint *e, *in = NULL, *out = NULL;
Alexey Orishko900d4952010-11-29 23:23:28 +0000273 u8 ep;
274
275 for (ep = 0; ep < intf->cur_altsetting->desc.bNumEndpoints; ep++) {
276
277 e = intf->cur_altsetting->endpoint + ep;
278 switch (e->desc.bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) {
279 case USB_ENDPOINT_XFER_INT:
280 if (usb_endpoint_dir_in(&e->desc)) {
Bjørn Morkff1632a2013-11-01 11:16:41 +0100281 if (!dev->status)
282 dev->status = e;
Alexey Orishko900d4952010-11-29 23:23:28 +0000283 }
284 break;
285
286 case USB_ENDPOINT_XFER_BULK:
287 if (usb_endpoint_dir_in(&e->desc)) {
Bjørn Morkff1632a2013-11-01 11:16:41 +0100288 if (!in)
289 in = e;
Alexey Orishko900d4952010-11-29 23:23:28 +0000290 } else {
Bjørn Morkff1632a2013-11-01 11:16:41 +0100291 if (!out)
292 out = e;
Alexey Orishko900d4952010-11-29 23:23:28 +0000293 }
294 break;
295
296 default:
297 break;
298 }
299 }
Bjørn Morkff1632a2013-11-01 11:16:41 +0100300 if (in && !dev->in)
301 dev->in = usb_rcvbulkpipe(dev->udev,
302 in->desc.bEndpointAddress &
303 USB_ENDPOINT_NUMBER_MASK);
304 if (out && !dev->out)
305 dev->out = usb_sndbulkpipe(dev->udev,
306 out->desc.bEndpointAddress &
307 USB_ENDPOINT_NUMBER_MASK);
Alexey Orishko900d4952010-11-29 23:23:28 +0000308}
309
310static void cdc_ncm_free(struct cdc_ncm_ctx *ctx)
311{
312 if (ctx == NULL)
313 return;
314
Alexey Orishko900d4952010-11-29 23:23:28 +0000315 if (ctx->tx_rem_skb != NULL) {
316 dev_kfree_skb_any(ctx->tx_rem_skb);
317 ctx->tx_rem_skb = NULL;
318 }
319
320 if (ctx->tx_curr_skb != NULL) {
321 dev_kfree_skb_any(ctx->tx_curr_skb);
322 ctx->tx_curr_skb = NULL;
323 }
324
325 kfree(ctx);
326}
327
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000328int cdc_ncm_bind_common(struct usbnet *dev, struct usb_interface *intf, u8 data_altsetting)
Alexey Orishko900d4952010-11-29 23:23:28 +0000329{
Bjørn Mork83292232013-11-01 11:16:47 +0100330 const struct usb_cdc_union_desc *union_desc = NULL;
Alexey Orishko900d4952010-11-29 23:23:28 +0000331 struct cdc_ncm_ctx *ctx;
332 struct usb_driver *driver;
333 u8 *buf;
334 int len;
335 int temp;
336 u8 iface_no;
337
Thomas Meyerc7969842011-11-17 12:43:40 +0000338 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
Devendra Naga8f0923c2013-03-29 23:03:22 +0000339 if (!ctx)
340 return -ENOMEM;
Alexey Orishko900d4952010-11-29 23:23:28 +0000341
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000342 hrtimer_init(&ctx->tx_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
343 ctx->tx_timer.function = &cdc_ncm_tx_timer_cb;
Bjørn Morkbed6f762013-11-01 11:16:42 +0100344 ctx->bh.data = (unsigned long)dev;
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000345 ctx->bh.func = cdc_ncm_txpath_bh;
346 atomic_set(&ctx->stop, 0);
Alexey Orishko900d4952010-11-29 23:23:28 +0000347 spin_lock_init(&ctx->mtx);
Alexey Orishko900d4952010-11-29 23:23:28 +0000348
349 /* store ctx pointer in device data field */
350 dev->data[0] = (unsigned long)ctx;
351
Bjørn Mork9fe02342013-11-01 11:16:48 +0100352 /* only the control interface can be successfully probed */
353 ctx->control = intf;
354
Alexey Orishko900d4952010-11-29 23:23:28 +0000355 /* get some pointers */
356 driver = driver_of(intf);
357 buf = intf->cur_altsetting->extra;
358 len = intf->cur_altsetting->extralen;
359
Alexey Orishko900d4952010-11-29 23:23:28 +0000360 /* parse through descriptors associated with control interface */
361 while ((len > 0) && (buf[0] > 2) && (buf[0] <= len)) {
362
363 if (buf[1] != USB_DT_CS_INTERFACE)
364 goto advance;
365
366 switch (buf[2]) {
367 case USB_CDC_UNION_TYPE:
Bjørn Mork83292232013-11-01 11:16:47 +0100368 if (buf[0] < sizeof(*union_desc))
Alexey Orishko900d4952010-11-29 23:23:28 +0000369 break;
370
Bjørn Mork83292232013-11-01 11:16:47 +0100371 union_desc = (const struct usb_cdc_union_desc *)buf;
Bjørn Mork9fe02342013-11-01 11:16:48 +0100372 /* the master must be the interface we are probing */
373 if (intf->cur_altsetting->desc.bInterfaceNumber !=
Bjørn Mork296e81f2013-11-01 11:17:00 +0100374 union_desc->bMasterInterface0) {
375 dev_dbg(&intf->dev, "bogus CDC Union\n");
Bjørn Mork9fe02342013-11-01 11:16:48 +0100376 goto error;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100377 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000378 ctx->data = usb_ifnum_to_if(dev->udev,
Bjørn Mork83292232013-11-01 11:16:47 +0100379 union_desc->bSlaveInterface0);
Alexey Orishko900d4952010-11-29 23:23:28 +0000380 break;
381
382 case USB_CDC_ETHERNET_TYPE:
383 if (buf[0] < sizeof(*(ctx->ether_desc)))
384 break;
385
386 ctx->ether_desc =
387 (const struct usb_cdc_ether_desc *)buf;
Alexey Orishko900d4952010-11-29 23:23:28 +0000388 break;
389
390 case USB_CDC_NCM_TYPE:
391 if (buf[0] < sizeof(*(ctx->func_desc)))
392 break;
393
394 ctx->func_desc = (const struct usb_cdc_ncm_desc *)buf;
395 break;
396
Greg Suarez38396e42012-10-22 10:56:31 +0000397 case USB_CDC_MBIM_TYPE:
398 if (buf[0] < sizeof(*(ctx->mbim_desc)))
399 break;
400
401 ctx->mbim_desc = (const struct usb_cdc_mbim_desc *)buf;
402 break;
403
Alexey Orishko900d4952010-11-29 23:23:28 +0000404 default:
405 break;
406 }
407advance:
408 /* advance to next descriptor */
409 temp = buf[0];
410 buf += temp;
411 len -= temp;
412 }
413
Bjørn Mork9992c2e2013-01-21 05:50:38 +0000414 /* some buggy devices have an IAD but no CDC Union */
Bjørn Mork83292232013-11-01 11:16:47 +0100415 if (!union_desc && intf->intf_assoc && intf->intf_assoc->bInterfaceCount == 2) {
Bjørn Mork56a666d2013-01-25 23:36:59 +0000416 ctx->data = usb_ifnum_to_if(dev->udev, intf->cur_altsetting->desc.bInterfaceNumber + 1);
417 dev_dbg(&intf->dev, "CDC Union missing - got slave from IAD\n");
Bjørn Mork9992c2e2013-01-21 05:50:38 +0000418 }
419
Alexey Orishko900d4952010-11-29 23:23:28 +0000420 /* check if we got everything */
Bjørn Mork296e81f2013-11-01 11:17:00 +0100421 if (!ctx->data || (!ctx->mbim_desc && !ctx->ether_desc)) {
422 dev_dbg(&intf->dev, "CDC descriptors missing\n");
Alexey Orishko900d4952010-11-29 23:23:28 +0000423 goto error;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100424 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000425
Bjørn Morkbbc8d922012-11-13 03:19:43 +0000426 /* claim data interface, if different from control */
427 if (ctx->data != ctx->control) {
428 temp = usb_driver_claim_interface(driver, ctx->data, dev);
Bjørn Mork296e81f2013-11-01 11:17:00 +0100429 if (temp) {
430 dev_dbg(&intf->dev, "failed to claim data intf\n");
Bjørn Morkbbc8d922012-11-13 03:19:43 +0000431 goto error;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100432 }
Bjørn Morkbbc8d922012-11-13 03:19:43 +0000433 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000434
435 iface_no = ctx->data->cur_altsetting->desc.bInterfaceNumber;
436
437 /* reset data interface */
438 temp = usb_set_interface(dev->udev, iface_no, 0);
Bjørn Mork296e81f2013-11-01 11:17:00 +0100439 if (temp) {
440 dev_dbg(&intf->dev, "set interface failed\n");
Alexey Orishko19694ac2011-05-24 05:26:13 +0000441 goto error2;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100442 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000443
Alexey Orishko900d4952010-11-29 23:23:28 +0000444 /* configure data interface */
Greg Suarez38396e42012-10-22 10:56:31 +0000445 temp = usb_set_interface(dev->udev, iface_no, data_altsetting);
Bjørn Mork296e81f2013-11-01 11:17:00 +0100446 if (temp) {
447 dev_dbg(&intf->dev, "set interface failed\n");
Alexey Orishko19694ac2011-05-24 05:26:13 +0000448 goto error2;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100449 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000450
Bjørn Morkff1632a2013-11-01 11:16:41 +0100451 cdc_ncm_find_endpoints(dev, ctx->data);
452 cdc_ncm_find_endpoints(dev, ctx->control);
Bjørn Mork296e81f2013-11-01 11:17:00 +0100453 if (!dev->in || !dev->out || !dev->status) {
454 dev_dbg(&intf->dev, "failed to collect endpoints\n");
Alexey Orishko19694ac2011-05-24 05:26:13 +0000455 goto error2;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100456 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000457
Bjørn Mork6a9612e2013-11-01 11:16:45 +0100458 /* initialize data interface */
Bjørn Mork296e81f2013-11-01 11:17:00 +0100459 if (cdc_ncm_setup(dev)) {
460 dev_dbg(&intf->dev, "cdc_ncm_setup() failed\n");
Bjørn Mork6a9612e2013-11-01 11:16:45 +0100461 goto error2;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100462 }
Bjørn Mork6a9612e2013-11-01 11:16:45 +0100463
Alexey Orishko900d4952010-11-29 23:23:28 +0000464 usb_set_intfdata(ctx->data, dev);
465 usb_set_intfdata(ctx->control, dev);
Alexey Orishko900d4952010-11-29 23:23:28 +0000466
Greg Suarez38396e42012-10-22 10:56:31 +0000467 if (ctx->ether_desc) {
468 temp = usbnet_get_ethernet_addr(dev, ctx->ether_desc->iMACAddress);
Bjørn Mork296e81f2013-11-01 11:17:00 +0100469 if (temp) {
470 dev_dbg(&intf->dev, "failed to get mac address\n");
Greg Suarez38396e42012-10-22 10:56:31 +0000471 goto error2;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100472 }
473 dev_info(&intf->dev, "MAC-Address: %pM\n", dev->net->dev_addr);
Greg Suarez38396e42012-10-22 10:56:31 +0000474 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000475
Bjørn Mork43c87f72013-11-01 11:16:52 +0100476 /* usbnet use these values for sizing tx/rx queues */
477 dev->hard_mtu = ctx->tx_max;
Alexey Orishko900d4952010-11-29 23:23:28 +0000478 dev->rx_urb_size = ctx->rx_max;
479
Alexey Orishko900d4952010-11-29 23:23:28 +0000480 return 0;
481
Alexey Orishko19694ac2011-05-24 05:26:13 +0000482error2:
483 usb_set_intfdata(ctx->control, NULL);
484 usb_set_intfdata(ctx->data, NULL);
Bjørn Mork6b4ef602013-01-21 05:50:40 +0000485 if (ctx->data != ctx->control)
486 usb_driver_release_interface(driver, ctx->data);
Alexey Orishko900d4952010-11-29 23:23:28 +0000487error:
488 cdc_ncm_free((struct cdc_ncm_ctx *)dev->data[0]);
489 dev->data[0] = 0;
Bjørn Mork296e81f2013-11-01 11:17:00 +0100490 dev_info(&intf->dev, "bind() failure\n");
Alexey Orishko900d4952010-11-29 23:23:28 +0000491 return -ENODEV;
492}
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000493EXPORT_SYMBOL_GPL(cdc_ncm_bind_common);
Alexey Orishko900d4952010-11-29 23:23:28 +0000494
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000495void cdc_ncm_unbind(struct usbnet *dev, struct usb_interface *intf)
Alexey Orishko900d4952010-11-29 23:23:28 +0000496{
497 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
Alexey Orishko19694ac2011-05-24 05:26:13 +0000498 struct usb_driver *driver = driver_of(intf);
Alexey Orishko900d4952010-11-29 23:23:28 +0000499
500 if (ctx == NULL)
501 return; /* no setup */
502
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000503 atomic_set(&ctx->stop, 1);
504
505 if (hrtimer_active(&ctx->tx_timer))
506 hrtimer_cancel(&ctx->tx_timer);
507
508 tasklet_kill(&ctx->bh);
509
Bjørn Morkbbc8d922012-11-13 03:19:43 +0000510 /* handle devices with combined control and data interface */
511 if (ctx->control == ctx->data)
512 ctx->data = NULL;
513
Alexey Orishko19694ac2011-05-24 05:26:13 +0000514 /* disconnect master --> disconnect slave */
515 if (intf == ctx->control && ctx->data) {
516 usb_set_intfdata(ctx->data, NULL);
Alexey Orishko900d4952010-11-29 23:23:28 +0000517 usb_driver_release_interface(driver, ctx->data);
Alexey Orishko19694ac2011-05-24 05:26:13 +0000518 ctx->data = NULL;
Alexey Orishko900d4952010-11-29 23:23:28 +0000519
Alexey Orishko19694ac2011-05-24 05:26:13 +0000520 } else if (intf == ctx->data && ctx->control) {
521 usb_set_intfdata(ctx->control, NULL);
Alexey Orishko900d4952010-11-29 23:23:28 +0000522 usb_driver_release_interface(driver, ctx->control);
Alexey Orishko19694ac2011-05-24 05:26:13 +0000523 ctx->control = NULL;
Alexey Orishko900d4952010-11-29 23:23:28 +0000524 }
525
Bjørn Mork3e515662013-11-01 11:16:40 +0100526 usb_set_intfdata(intf, NULL);
Alexey Orishko900d4952010-11-29 23:23:28 +0000527 cdc_ncm_free(ctx);
528}
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000529EXPORT_SYMBOL_GPL(cdc_ncm_unbind);
Alexey Orishko900d4952010-11-29 23:23:28 +0000530
Bjørn Mork1e8bbe62013-03-14 01:05:13 +0000531/* Select the MBIM altsetting iff it is preferred and available,
532 * returning the number of the corresponding data interface altsetting
533 */
534u8 cdc_ncm_select_altsetting(struct usbnet *dev, struct usb_interface *intf)
Greg Suarez38396e42012-10-22 10:56:31 +0000535{
Bjørn Mork1e8bbe62013-03-14 01:05:13 +0000536 struct usb_host_interface *alt;
Greg Suarez38396e42012-10-22 10:56:31 +0000537
Bjørn Morkbd329e12012-10-22 10:56:38 +0000538 /* The MBIM spec defines a NCM compatible default altsetting,
539 * which we may have matched:
540 *
541 * "Functions that implement both NCM 1.0 and MBIM (an
542 * “NCM/MBIM function”) according to this recommendation
543 * shall provide two alternate settings for the
544 * Communication Interface. Alternate setting 0, and the
545 * associated class and endpoint descriptors, shall be
546 * constructed according to the rules given for the
547 * Communication Interface in section 5 of [USBNCM10].
548 * Alternate setting 1, and the associated class and
549 * endpoint descriptors, shall be constructed according to
550 * the rules given in section 6 (USB Device Model) of this
551 * specification."
Bjørn Morkbd329e12012-10-22 10:56:38 +0000552 */
Bjørn Mork1e8bbe62013-03-14 01:05:13 +0000553 if (prefer_mbim && intf->num_altsetting == 2) {
554 alt = usb_altnum_to_altsetting(intf, CDC_NCM_COMM_ALTSETTING_MBIM);
555 if (alt && cdc_ncm_comm_intf_is_mbim(alt) &&
556 !usb_set_interface(dev->udev,
557 intf->cur_altsetting->desc.bInterfaceNumber,
558 CDC_NCM_COMM_ALTSETTING_MBIM))
559 return CDC_NCM_DATA_ALTSETTING_MBIM;
Bjørn Morkf350ca02013-02-13 12:09:52 +0000560 }
Bjørn Mork1e8bbe62013-03-14 01:05:13 +0000561 return CDC_NCM_DATA_ALTSETTING_NCM;
562}
563EXPORT_SYMBOL_GPL(cdc_ncm_select_altsetting);
564
565static int cdc_ncm_bind(struct usbnet *dev, struct usb_interface *intf)
566{
567 int ret;
568
569 /* MBIM backwards compatible function? */
570 cdc_ncm_select_altsetting(dev, intf);
571 if (cdc_ncm_comm_intf_is_mbim(intf->cur_altsetting))
572 return -ENODEV;
Bjørn Morkbd329e12012-10-22 10:56:38 +0000573
Greg Suarez38396e42012-10-22 10:56:31 +0000574 /* NCM data altsetting is always 1 */
575 ret = cdc_ncm_bind_common(dev, intf, 1);
576
577 /*
578 * We should get an event when network connection is "connected" or
579 * "disconnected". Set network connection in "disconnected" state
580 * (carrier is OFF) during attach, so the IP network stack does not
581 * start IPv6 negotiation and more.
582 */
Ming Lei8a34b0a2013-04-11 04:40:33 +0000583 usbnet_link_change(dev, 0, 0);
Greg Suarez38396e42012-10-22 10:56:31 +0000584 return ret;
585}
586
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000587static 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 +0000588{
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000589 size_t align = ALIGN(skb->len, modulus) - skb->len + remainder;
590
591 if (skb->len + align > max)
592 align = max - skb->len;
593 if (align && skb_tailroom(skb) >= align)
594 memset(skb_put(skb, align), 0, align);
595}
596
597/* return a pointer to a valid struct usb_cdc_ncm_ndp16 of type sign, possibly
598 * allocating a new one within skb
599 */
600static struct usb_cdc_ncm_ndp16 *cdc_ncm_ndp(struct cdc_ncm_ctx *ctx, struct sk_buff *skb, __le32 sign, size_t reserve)
601{
602 struct usb_cdc_ncm_ndp16 *ndp16 = NULL;
603 struct usb_cdc_ncm_nth16 *nth16 = (void *)skb->data;
604 size_t ndpoffset = le16_to_cpu(nth16->wNdpIndex);
605
606 /* follow the chain of NDPs, looking for a match */
607 while (ndpoffset) {
608 ndp16 = (struct usb_cdc_ncm_ndp16 *)(skb->data + ndpoffset);
609 if (ndp16->dwSignature == sign)
610 return ndp16;
611 ndpoffset = le16_to_cpu(ndp16->wNextNdpIndex);
612 }
613
614 /* align new NDP */
615 cdc_ncm_align_tail(skb, ctx->tx_ndp_modulus, 0, ctx->tx_max);
616
617 /* verify that there is room for the NDP and the datagram (reserve) */
618 if ((ctx->tx_max - skb->len - reserve) < CDC_NCM_NDP_SIZE)
619 return NULL;
620
621 /* link to it */
622 if (ndp16)
623 ndp16->wNextNdpIndex = cpu_to_le16(skb->len);
624 else
625 nth16->wNdpIndex = cpu_to_le16(skb->len);
626
627 /* push a new empty NDP */
628 ndp16 = (struct usb_cdc_ncm_ndp16 *)memset(skb_put(skb, CDC_NCM_NDP_SIZE), 0, CDC_NCM_NDP_SIZE);
629 ndp16->dwSignature = sign;
630 ndp16->wLength = cpu_to_le16(sizeof(struct usb_cdc_ncm_ndp16) + sizeof(struct usb_cdc_ncm_dpe16));
631 return ndp16;
Alexey Orishko900d4952010-11-29 23:23:28 +0000632}
633
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000634struct sk_buff *
Bjørn Morkbed6f762013-11-01 11:16:42 +0100635cdc_ncm_fill_tx_frame(struct usbnet *dev, struct sk_buff *skb, __le32 sign)
Alexey Orishko900d4952010-11-29 23:23:28 +0000636{
Bjørn Morkbed6f762013-11-01 11:16:42 +0100637 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000638 struct usb_cdc_ncm_nth16 *nth16;
639 struct usb_cdc_ncm_ndp16 *ndp16;
Alexey Orishko900d4952010-11-29 23:23:28 +0000640 struct sk_buff *skb_out;
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000641 u16 n = 0, index, ndplen;
Alexey Orishko84e77a82011-02-07 09:45:10 +0000642 u8 ready2send = 0;
Alexey Orishko900d4952010-11-29 23:23:28 +0000643
644 /* if there is a remaining skb, it gets priority */
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000645 if (skb != NULL) {
Alexey Orishko900d4952010-11-29 23:23:28 +0000646 swap(skb, ctx->tx_rem_skb);
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000647 swap(sign, ctx->tx_rem_sign);
648 } else {
Alexey Orishko84e77a82011-02-07 09:45:10 +0000649 ready2send = 1;
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000650 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000651
652 /* check if we are resuming an OUT skb */
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000653 skb_out = ctx->tx_curr_skb;
Alexey Orishko900d4952010-11-29 23:23:28 +0000654
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000655 /* allocate a new OUT skb */
656 if (!skb_out) {
Bjørn Mork205722262013-11-01 11:16:38 +0100657 skb_out = alloc_skb(ctx->tx_max, GFP_ATOMIC);
Alexey Orishko900d4952010-11-29 23:23:28 +0000658 if (skb_out == NULL) {
659 if (skb != NULL) {
660 dev_kfree_skb_any(skb);
Bjørn Morkbed6f762013-11-01 11:16:42 +0100661 dev->net->stats.tx_dropped++;
Alexey Orishko900d4952010-11-29 23:23:28 +0000662 }
663 goto exit_no_skb;
664 }
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000665 /* fill out the initial 16-bit NTB header */
666 nth16 = (struct usb_cdc_ncm_nth16 *)memset(skb_put(skb_out, sizeof(struct usb_cdc_ncm_nth16)), 0, sizeof(struct usb_cdc_ncm_nth16));
667 nth16->dwSignature = cpu_to_le32(USB_CDC_NCM_NTH16_SIGN);
668 nth16->wHeaderLength = cpu_to_le16(sizeof(struct usb_cdc_ncm_nth16));
669 nth16->wSequence = cpu_to_le16(ctx->tx_seq++);
Alexey Orishko900d4952010-11-29 23:23:28 +0000670
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000671 /* count total number of frames in this NTB */
Alexey Orishko900d4952010-11-29 23:23:28 +0000672 ctx->tx_curr_frame_num = 0;
673 }
674
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000675 for (n = ctx->tx_curr_frame_num; n < ctx->tx_max_datagrams; n++) {
676 /* send any remaining skb first */
Alexey Orishko900d4952010-11-29 23:23:28 +0000677 if (skb == NULL) {
678 skb = ctx->tx_rem_skb;
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000679 sign = ctx->tx_rem_sign;
Alexey Orishko900d4952010-11-29 23:23:28 +0000680 ctx->tx_rem_skb = NULL;
681
682 /* check for end of skb */
683 if (skb == NULL)
684 break;
685 }
686
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000687 /* get the appropriate NDP for this skb */
688 ndp16 = cdc_ncm_ndp(ctx, skb_out, sign, skb->len + ctx->tx_modulus + ctx->tx_remainder);
689
690 /* align beginning of next frame */
691 cdc_ncm_align_tail(skb_out, ctx->tx_modulus, ctx->tx_remainder, ctx->tx_max);
692
693 /* check if we had enough room left for both NDP and frame */
694 if (!ndp16 || skb_out->len + skb->len > ctx->tx_max) {
Alexey Orishko900d4952010-11-29 23:23:28 +0000695 if (n == 0) {
696 /* won't fit, MTU problem? */
697 dev_kfree_skb_any(skb);
698 skb = NULL;
Bjørn Morkbed6f762013-11-01 11:16:42 +0100699 dev->net->stats.tx_dropped++;
Alexey Orishko900d4952010-11-29 23:23:28 +0000700 } else {
701 /* no room for skb - store for later */
702 if (ctx->tx_rem_skb != NULL) {
703 dev_kfree_skb_any(ctx->tx_rem_skb);
Bjørn Morkbed6f762013-11-01 11:16:42 +0100704 dev->net->stats.tx_dropped++;
Alexey Orishko900d4952010-11-29 23:23:28 +0000705 }
706 ctx->tx_rem_skb = skb;
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000707 ctx->tx_rem_sign = sign;
Alexey Orishko900d4952010-11-29 23:23:28 +0000708 skb = NULL;
Alexey Orishko84e77a82011-02-07 09:45:10 +0000709 ready2send = 1;
Alexey Orishko900d4952010-11-29 23:23:28 +0000710 }
711 break;
712 }
713
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000714 /* calculate frame number withing this NDP */
715 ndplen = le16_to_cpu(ndp16->wLength);
716 index = (ndplen - sizeof(struct usb_cdc_ncm_ndp16)) / sizeof(struct usb_cdc_ncm_dpe16) - 1;
Alexey Orishko900d4952010-11-29 23:23:28 +0000717
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000718 /* OK, add this skb */
719 ndp16->dpe16[index].wDatagramLength = cpu_to_le16(skb->len);
720 ndp16->dpe16[index].wDatagramIndex = cpu_to_le16(skb_out->len);
721 ndp16->wLength = cpu_to_le16(ndplen + sizeof(struct usb_cdc_ncm_dpe16));
722 memcpy(skb_put(skb_out, skb->len), skb->data, skb->len);
Alexey Orishko900d4952010-11-29 23:23:28 +0000723 dev_kfree_skb_any(skb);
724 skb = NULL;
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000725
726 /* send now if this NDP is full */
727 if (index >= CDC_NCM_DPT_DATAGRAMS_MAX) {
728 ready2send = 1;
729 break;
730 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000731 }
732
733 /* free up any dangling skb */
734 if (skb != NULL) {
735 dev_kfree_skb_any(skb);
736 skb = NULL;
Bjørn Morkbed6f762013-11-01 11:16:42 +0100737 dev->net->stats.tx_dropped++;
Alexey Orishko900d4952010-11-29 23:23:28 +0000738 }
739
740 ctx->tx_curr_frame_num = n;
741
742 if (n == 0) {
743 /* wait for more frames */
744 /* push variables */
745 ctx->tx_curr_skb = skb_out;
Alexey Orishko900d4952010-11-29 23:23:28 +0000746 goto exit_no_skb;
747
Alexey Orishko84e77a82011-02-07 09:45:10 +0000748 } else if ((n < ctx->tx_max_datagrams) && (ready2send == 0)) {
Alexey Orishko900d4952010-11-29 23:23:28 +0000749 /* wait for more frames */
750 /* push variables */
751 ctx->tx_curr_skb = skb_out;
Alexey Orishko900d4952010-11-29 23:23:28 +0000752 /* set the pending count */
753 if (n < CDC_NCM_RESTART_TIMER_DATAGRAM_CNT)
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000754 ctx->tx_timer_pending = CDC_NCM_TIMER_PENDING_CNT;
Alexey Orishko900d4952010-11-29 23:23:28 +0000755 goto exit_no_skb;
756
757 } else {
758 /* frame goes out */
759 /* variables will be reset at next call */
760 }
761
Bjørn Mork205722262013-11-01 11:16:38 +0100762 /* If collected data size is less or equal CDC_NCM_MIN_TX_PKT
763 * bytes, we send buffers as it is. If we get more data, it
764 * would be more efficient for USB HS mobile device with DMA
765 * engine to receive a full size NTB, than canceling DMA
766 * transfer and receiving a short packet.
Bjørn Mork4d619f62013-11-01 11:16:49 +0100767 *
768 * This optimization support is pointless if we end up sending
769 * a ZLP after full sized NTBs.
Alexey Orishko900d4952010-11-29 23:23:28 +0000770 */
Bjørn Mork4d619f62013-11-01 11:16:49 +0100771 if (!(dev->driver_info->flags & FLAG_SEND_ZLP) &&
772 skb_out->len > CDC_NCM_MIN_TX_PKT)
Bjørn Mork205722262013-11-01 11:16:38 +0100773 memset(skb_put(skb_out, ctx->tx_max - skb_out->len), 0,
774 ctx->tx_max - skb_out->len);
775 else if ((skb_out->len % dev->maxpacket) == 0)
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000776 *skb_put(skb_out, 1) = 0; /* force short packet */
Alexey Orishko900d4952010-11-29 23:23:28 +0000777
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000778 /* set final frame length */
779 nth16 = (struct usb_cdc_ncm_nth16 *)skb_out->data;
780 nth16->wBlockLength = cpu_to_le16(skb_out->len);
Alexey Orishko900d4952010-11-29 23:23:28 +0000781
782 /* return skb */
783 ctx->tx_curr_skb = NULL;
Bjørn Morkbed6f762013-11-01 11:16:42 +0100784 dev->net->stats.tx_packets += ctx->tx_curr_frame_num;
Alexey Orishko900d4952010-11-29 23:23:28 +0000785 return skb_out;
786
787exit_no_skb:
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000788 /* Start timer, if there is a remaining skb */
789 if (ctx->tx_curr_skb != NULL)
790 cdc_ncm_tx_timeout_start(ctx);
Alexey Orishko900d4952010-11-29 23:23:28 +0000791 return NULL;
792}
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000793EXPORT_SYMBOL_GPL(cdc_ncm_fill_tx_frame);
Alexey Orishko900d4952010-11-29 23:23:28 +0000794
795static void cdc_ncm_tx_timeout_start(struct cdc_ncm_ctx *ctx)
796{
797 /* start timer, if not already started */
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000798 if (!(hrtimer_active(&ctx->tx_timer) || atomic_read(&ctx->stop)))
799 hrtimer_start(&ctx->tx_timer,
800 ktime_set(0, CDC_NCM_TIMER_INTERVAL),
801 HRTIMER_MODE_REL);
Alexey Orishko900d4952010-11-29 23:23:28 +0000802}
803
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000804static enum hrtimer_restart cdc_ncm_tx_timer_cb(struct hrtimer *timer)
Alexey Orishko900d4952010-11-29 23:23:28 +0000805{
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000806 struct cdc_ncm_ctx *ctx =
807 container_of(timer, struct cdc_ncm_ctx, tx_timer);
Alexey Orishko900d4952010-11-29 23:23:28 +0000808
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000809 if (!atomic_read(&ctx->stop))
810 tasklet_schedule(&ctx->bh);
811 return HRTIMER_NORESTART;
812}
813
814static void cdc_ncm_txpath_bh(unsigned long param)
815{
Bjørn Morkbed6f762013-11-01 11:16:42 +0100816 struct usbnet *dev = (struct usbnet *)param;
817 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000818
819 spin_lock_bh(&ctx->mtx);
Alexey Orishko900d4952010-11-29 23:23:28 +0000820 if (ctx->tx_timer_pending != 0) {
821 ctx->tx_timer_pending--;
Alexey Orishko900d4952010-11-29 23:23:28 +0000822 cdc_ncm_tx_timeout_start(ctx);
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000823 spin_unlock_bh(&ctx->mtx);
Bjørn Morkbed6f762013-11-01 11:16:42 +0100824 } else if (dev->net != NULL) {
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000825 spin_unlock_bh(&ctx->mtx);
Bjørn Morkbed6f762013-11-01 11:16:42 +0100826 netif_tx_lock_bh(dev->net);
827 usbnet_start_xmit(NULL, dev->net);
828 netif_tx_unlock_bh(dev->net);
Bjørn Mork7b1e0cb2012-10-25 21:44:09 +0000829 } else {
830 spin_unlock_bh(&ctx->mtx);
Alexey Orishkof742aa82011-01-17 07:07:25 +0000831 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000832}
833
834static struct sk_buff *
835cdc_ncm_tx_fixup(struct usbnet *dev, struct sk_buff *skb, gfp_t flags)
836{
837 struct sk_buff *skb_out;
838 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
Alexey Orishko900d4952010-11-29 23:23:28 +0000839
840 /*
841 * The Ethernet API we are using does not support transmitting
842 * multiple Ethernet frames in a single call. This driver will
843 * accumulate multiple Ethernet frames and send out a larger
844 * USB frame when the USB buffer is full or when a single jiffies
845 * timeout happens.
846 */
847 if (ctx == NULL)
848 goto error;
849
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000850 spin_lock_bh(&ctx->mtx);
Bjørn Morkbed6f762013-11-01 11:16:42 +0100851 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 +0000852 spin_unlock_bh(&ctx->mtx);
Alexey Orishko900d4952010-11-29 23:23:28 +0000853 return skb_out;
854
855error:
856 if (skb != NULL)
857 dev_kfree_skb_any(skb);
858
859 return NULL;
860}
861
Bjørn Morkff06ab12012-10-22 10:56:33 +0000862/* verify NTB header and return offset of first NDP, or negative error */
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000863int cdc_ncm_rx_verify_nth16(struct cdc_ncm_ctx *ctx, struct sk_buff *skb_in)
Alexey Orishko900d4952010-11-29 23:23:28 +0000864{
Bjørn Morkae223cd2013-11-01 11:16:54 +0100865 struct usbnet *dev = netdev_priv(skb_in->dev);
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000866 struct usb_cdc_ncm_nth16 *nth16;
Bjørn Morkff06ab12012-10-22 10:56:33 +0000867 int len;
868 int ret = -EINVAL;
Alexey Orishko900d4952010-11-29 23:23:28 +0000869
Alexey Orishko900d4952010-11-29 23:23:28 +0000870 if (ctx == NULL)
871 goto error;
872
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000873 if (skb_in->len < (sizeof(struct usb_cdc_ncm_nth16) +
874 sizeof(struct usb_cdc_ncm_ndp16))) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100875 netif_dbg(dev, rx_err, dev->net, "frame too short\n");
Alexey Orishko900d4952010-11-29 23:23:28 +0000876 goto error;
877 }
878
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000879 nth16 = (struct usb_cdc_ncm_nth16 *)skb_in->data;
Alexey Orishko900d4952010-11-29 23:23:28 +0000880
Bjørn Mork986e10d2013-11-01 11:16:56 +0100881 if (nth16->dwSignature != cpu_to_le32(USB_CDC_NCM_NTH16_SIGN)) {
Bjørn Mork5448d752013-11-01 11:16:55 +0100882 netif_dbg(dev, rx_err, dev->net,
883 "invalid NTH16 signature <%#010x>\n",
884 le32_to_cpu(nth16->dwSignature));
Alexey Orishko900d4952010-11-29 23:23:28 +0000885 goto error;
886 }
887
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000888 len = le16_to_cpu(nth16->wBlockLength);
889 if (len > ctx->rx_max) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100890 netif_dbg(dev, rx_err, dev->net,
891 "unsupported NTB block length %u/%u\n", len,
892 ctx->rx_max);
Alexey Orishko900d4952010-11-29 23:23:28 +0000893 goto error;
894 }
895
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000896 if ((ctx->rx_seq + 1) != le16_to_cpu(nth16->wSequence) &&
Bjørn Morkae223cd2013-11-01 11:16:54 +0100897 (ctx->rx_seq || le16_to_cpu(nth16->wSequence)) &&
898 !((ctx->rx_seq == 0xffff) && !le16_to_cpu(nth16->wSequence))) {
899 netif_dbg(dev, rx_err, dev->net,
900 "sequence number glitch prev=%d curr=%d\n",
901 ctx->rx_seq, le16_to_cpu(nth16->wSequence));
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000902 }
903 ctx->rx_seq = le16_to_cpu(nth16->wSequence);
904
Bjørn Morkff06ab12012-10-22 10:56:33 +0000905 ret = le16_to_cpu(nth16->wNdpIndex);
906error:
907 return ret;
908}
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000909EXPORT_SYMBOL_GPL(cdc_ncm_rx_verify_nth16);
Bjørn Morkff06ab12012-10-22 10:56:33 +0000910
911/* verify NDP header and return number of datagrams, or negative error */
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000912int cdc_ncm_rx_verify_ndp16(struct sk_buff *skb_in, int ndpoffset)
Bjørn Morkff06ab12012-10-22 10:56:33 +0000913{
Bjørn Morkae223cd2013-11-01 11:16:54 +0100914 struct usbnet *dev = netdev_priv(skb_in->dev);
Bjørn Morkff06ab12012-10-22 10:56:33 +0000915 struct usb_cdc_ncm_ndp16 *ndp16;
916 int ret = -EINVAL;
917
Bjørn Mork75d67d32012-10-22 10:56:32 +0000918 if ((ndpoffset + sizeof(struct usb_cdc_ncm_ndp16)) > skb_in->len) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100919 netif_dbg(dev, rx_err, dev->net, "invalid NDP offset <%u>\n",
920 ndpoffset);
Alexey Orishko900d4952010-11-29 23:23:28 +0000921 goto error;
922 }
Bjørn Mork75d67d32012-10-22 10:56:32 +0000923 ndp16 = (struct usb_cdc_ncm_ndp16 *)(skb_in->data + ndpoffset);
Alexey Orishko900d4952010-11-29 23:23:28 +0000924
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000925 if (le16_to_cpu(ndp16->wLength) < USB_CDC_NCM_NDP16_LENGTH_MIN) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100926 netif_dbg(dev, rx_err, dev->net, "invalid DPT16 length <%u>\n",
927 le16_to_cpu(ndp16->wLength));
Bjørn Morkff06ab12012-10-22 10:56:33 +0000928 goto error;
Alexey Orishko900d4952010-11-29 23:23:28 +0000929 }
930
Bjørn Morkff06ab12012-10-22 10:56:33 +0000931 ret = ((le16_to_cpu(ndp16->wLength) -
Alexey Orishko900d4952010-11-29 23:23:28 +0000932 sizeof(struct usb_cdc_ncm_ndp16)) /
933 sizeof(struct usb_cdc_ncm_dpe16));
Bjørn Morkff06ab12012-10-22 10:56:33 +0000934 ret--; /* we process NDP entries except for the last one */
Alexey Orishko900d4952010-11-29 23:23:28 +0000935
Bjørn Morkae223cd2013-11-01 11:16:54 +0100936 if ((sizeof(struct usb_cdc_ncm_ndp16) +
937 ret * (sizeof(struct usb_cdc_ncm_dpe16))) > skb_in->len) {
938 netif_dbg(dev, rx_err, dev->net, "Invalid nframes = %d\n", ret);
Bjørn Morkff06ab12012-10-22 10:56:33 +0000939 ret = -EINVAL;
Alexey Orishko900d4952010-11-29 23:23:28 +0000940 }
941
Bjørn Morkff06ab12012-10-22 10:56:33 +0000942error:
943 return ret;
944}
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000945EXPORT_SYMBOL_GPL(cdc_ncm_rx_verify_ndp16);
Bjørn Morkff06ab12012-10-22 10:56:33 +0000946
947static int cdc_ncm_rx_fixup(struct usbnet *dev, struct sk_buff *skb_in)
948{
949 struct sk_buff *skb;
950 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
951 int len;
952 int nframes;
953 int x;
954 int offset;
955 struct usb_cdc_ncm_ndp16 *ndp16;
956 struct usb_cdc_ncm_dpe16 *dpe16;
957 int ndpoffset;
958 int loopcount = 50; /* arbitrary max preventing infinite loop */
959
960 ndpoffset = cdc_ncm_rx_verify_nth16(ctx, skb_in);
961 if (ndpoffset < 0)
962 goto error;
963
964next_ndp:
965 nframes = cdc_ncm_rx_verify_ndp16(skb_in, ndpoffset);
966 if (nframes < 0)
967 goto error;
968
969 ndp16 = (struct usb_cdc_ncm_ndp16 *)(skb_in->data + ndpoffset);
970
Bjørn Mork986e10d2013-11-01 11:16:56 +0100971 if (ndp16->dwSignature != cpu_to_le32(USB_CDC_NCM_NDP16_NOCRC_SIGN)) {
Bjørn Mork5448d752013-11-01 11:16:55 +0100972 netif_dbg(dev, rx_err, dev->net,
973 "invalid DPT16 signature <%#010x>\n",
974 le32_to_cpu(ndp16->dwSignature));
Bjørn Morkff06ab12012-10-22 10:56:33 +0000975 goto err_ndp;
976 }
977 dpe16 = ndp16->dpe16;
Alexey Orishko900d4952010-11-29 23:23:28 +0000978
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000979 for (x = 0; x < nframes; x++, dpe16++) {
980 offset = le16_to_cpu(dpe16->wDatagramIndex);
981 len = le16_to_cpu(dpe16->wDatagramLength);
Alexey Orishko900d4952010-11-29 23:23:28 +0000982
983 /*
984 * CDC NCM ch. 3.7
985 * All entries after first NULL entry are to be ignored
986 */
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000987 if ((offset == 0) || (len == 0)) {
Alexey Orishko900d4952010-11-29 23:23:28 +0000988 if (!x)
Bjørn Mork75d67d32012-10-22 10:56:32 +0000989 goto err_ndp; /* empty NTB */
Alexey Orishko900d4952010-11-29 23:23:28 +0000990 break;
991 }
992
993 /* sanity checking */
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000994 if (((offset + len) > skb_in->len) ||
995 (len > ctx->rx_max) || (len < ETH_HLEN)) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100996 netif_dbg(dev, rx_err, dev->net,
997 "invalid frame detected (ignored) offset[%u]=%u, length=%u, skb=%p\n",
998 x, offset, len, skb_in);
Alexey Orishko900d4952010-11-29 23:23:28 +0000999 if (!x)
Bjørn Mork75d67d32012-10-22 10:56:32 +00001000 goto err_ndp;
Alexey Orishko900d4952010-11-29 23:23:28 +00001001 break;
1002
1003 } else {
1004 skb = skb_clone(skb_in, GFP_ATOMIC);
Jesper Juhl9e567902011-01-13 11:40:11 +00001005 if (!skb)
1006 goto error;
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +00001007 skb->len = len;
Alexey Orishko900d4952010-11-29 23:23:28 +00001008 skb->data = ((u8 *)skb_in->data) + offset;
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +00001009 skb_set_tail_pointer(skb, len);
Alexey Orishko900d4952010-11-29 23:23:28 +00001010 usbnet_skb_return(dev, skb);
1011 }
1012 }
Bjørn Mork75d67d32012-10-22 10:56:32 +00001013err_ndp:
1014 /* are there more NDPs to process? */
1015 ndpoffset = le16_to_cpu(ndp16->wNextNdpIndex);
1016 if (ndpoffset && loopcount--)
1017 goto next_ndp;
1018
Alexey Orishko900d4952010-11-29 23:23:28 +00001019 return 1;
1020error:
1021 return 0;
1022}
1023
1024static void
Bjørn Morkbed6f762013-11-01 11:16:42 +01001025cdc_ncm_speed_change(struct usbnet *dev,
Alexey Orishko84e77a82011-02-07 09:45:10 +00001026 struct usb_cdc_speed_change *data)
Alexey Orishko900d4952010-11-29 23:23:28 +00001027{
Alexey Orishko84e77a82011-02-07 09:45:10 +00001028 uint32_t rx_speed = le32_to_cpu(data->DLBitRRate);
1029 uint32_t tx_speed = le32_to_cpu(data->ULBitRate);
Alexey Orishko900d4952010-11-29 23:23:28 +00001030
1031 /*
1032 * Currently the USB-NET API does not support reporting the actual
1033 * device speed. Do print it instead.
1034 */
Bjørn Morkf3028c52013-11-01 11:16:44 +01001035 if ((tx_speed > 1000000) && (rx_speed > 1000000)) {
Bjørn Morkae223cd2013-11-01 11:16:54 +01001036 netif_info(dev, link, dev->net,
1037 "%u mbit/s downlink %u mbit/s uplink\n",
Bjørn Morkf3028c52013-11-01 11:16:44 +01001038 (unsigned int)(rx_speed / 1000000U),
1039 (unsigned int)(tx_speed / 1000000U));
1040 } else {
Bjørn Morkae223cd2013-11-01 11:16:54 +01001041 netif_info(dev, link, dev->net,
1042 "%u kbit/s downlink %u kbit/s uplink\n",
Bjørn Morkf3028c52013-11-01 11:16:44 +01001043 (unsigned int)(rx_speed / 1000U),
1044 (unsigned int)(tx_speed / 1000U));
Alexey Orishko900d4952010-11-29 23:23:28 +00001045 }
1046}
1047
1048static void cdc_ncm_status(struct usbnet *dev, struct urb *urb)
1049{
1050 struct cdc_ncm_ctx *ctx;
1051 struct usb_cdc_notification *event;
1052
1053 ctx = (struct cdc_ncm_ctx *)dev->data[0];
1054
1055 if (urb->actual_length < sizeof(*event))
1056 return;
1057
1058 /* test for split data in 8-byte chunks */
1059 if (test_and_clear_bit(EVENT_STS_SPLIT, &dev->flags)) {
Bjørn Morkbed6f762013-11-01 11:16:42 +01001060 cdc_ncm_speed_change(dev,
Alexey Orishko84e77a82011-02-07 09:45:10 +00001061 (struct usb_cdc_speed_change *)urb->transfer_buffer);
Alexey Orishko900d4952010-11-29 23:23:28 +00001062 return;
1063 }
1064
1065 event = urb->transfer_buffer;
1066
1067 switch (event->bNotificationType) {
1068 case USB_CDC_NOTIFY_NETWORK_CONNECTION:
1069 /*
1070 * According to the CDC NCM specification ch.7.1
1071 * USB_CDC_NOTIFY_NETWORK_CONNECTION notification shall be
1072 * sent by device after USB_CDC_NOTIFY_SPEED_CHANGE.
1073 */
Bjørn Mork1a7c6cc2012-10-25 21:44:08 +00001074 ctx->connected = le16_to_cpu(event->wValue);
Bjørn Morkae223cd2013-11-01 11:16:54 +01001075 netif_info(dev, link, dev->net,
1076 "network connection: %sconnected\n",
1077 ctx->connected ? "" : "dis");
Ming Lei8a34b0a2013-04-11 04:40:33 +00001078 usbnet_link_change(dev, ctx->connected, 0);
Alexey Orishko900d4952010-11-29 23:23:28 +00001079 break;
1080
1081 case USB_CDC_NOTIFY_SPEED_CHANGE:
Alexey Orishko84e77a82011-02-07 09:45:10 +00001082 if (urb->actual_length < (sizeof(*event) +
1083 sizeof(struct usb_cdc_speed_change)))
Alexey Orishko900d4952010-11-29 23:23:28 +00001084 set_bit(EVENT_STS_SPLIT, &dev->flags);
1085 else
Bjørn Morkbed6f762013-11-01 11:16:42 +01001086 cdc_ncm_speed_change(dev,
1087 (struct usb_cdc_speed_change *)&event[1]);
Alexey Orishko900d4952010-11-29 23:23:28 +00001088 break;
1089
1090 default:
Bjørn Mork67a36602013-04-08 08:26:23 +00001091 dev_dbg(&dev->udev->dev,
1092 "NCM: unexpected notification 0x%02x!\n",
1093 event->bNotificationType);
Alexey Orishko900d4952010-11-29 23:23:28 +00001094 break;
1095 }
1096}
1097
1098static int cdc_ncm_check_connect(struct usbnet *dev)
1099{
1100 struct cdc_ncm_ctx *ctx;
1101
1102 ctx = (struct cdc_ncm_ctx *)dev->data[0];
1103 if (ctx == NULL)
1104 return 1; /* disconnected */
1105
1106 return !ctx->connected;
1107}
1108
Alexey Orishko900d4952010-11-29 23:23:28 +00001109static const struct driver_info cdc_ncm_info = {
1110 .description = "CDC NCM",
Arnd Bergmannc2613442011-04-01 20:12:02 -07001111 .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET,
Alexey Orishko900d4952010-11-29 23:23:28 +00001112 .bind = cdc_ncm_bind,
1113 .unbind = cdc_ncm_unbind,
1114 .check_connect = cdc_ncm_check_connect,
Oliver Neukuma5e40702012-12-18 04:46:12 +00001115 .manage_power = usbnet_manage_power,
Alexey Orishko900d4952010-11-29 23:23:28 +00001116 .status = cdc_ncm_status,
1117 .rx_fixup = cdc_ncm_rx_fixup,
1118 .tx_fixup = cdc_ncm_tx_fixup,
1119};
1120
Dan Williamsf94898e2012-07-24 08:43:22 +00001121/* Same as cdc_ncm_info, but with FLAG_WWAN */
1122static const struct driver_info wwan_info = {
1123 .description = "Mobile Broadband Network Device",
1124 .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET
1125 | FLAG_WWAN,
1126 .bind = cdc_ncm_bind,
1127 .unbind = cdc_ncm_unbind,
1128 .check_connect = cdc_ncm_check_connect,
Oliver Neukuma5e40702012-12-18 04:46:12 +00001129 .manage_power = usbnet_manage_power,
Dan Williamsf94898e2012-07-24 08:43:22 +00001130 .status = cdc_ncm_status,
1131 .rx_fixup = cdc_ncm_rx_fixup,
1132 .tx_fixup = cdc_ncm_tx_fixup,
1133};
1134
Wei Shuai2f62d5a2013-01-21 06:00:32 +00001135/* Same as wwan_info, but with FLAG_NOARP */
1136static const struct driver_info wwan_noarp_info = {
1137 .description = "Mobile Broadband Network Device (NO ARP)",
1138 .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET
1139 | FLAG_WWAN | FLAG_NOARP,
1140 .bind = cdc_ncm_bind,
1141 .unbind = cdc_ncm_unbind,
1142 .check_connect = cdc_ncm_check_connect,
1143 .manage_power = usbnet_manage_power,
1144 .status = cdc_ncm_status,
1145 .rx_fixup = cdc_ncm_rx_fixup,
1146 .tx_fixup = cdc_ncm_tx_fixup,
1147};
1148
Dan Williamsf94898e2012-07-24 08:43:22 +00001149static const struct usb_device_id cdc_devs[] = {
1150 /* Ericsson MBM devices like F5521gw */
1151 { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
1152 | USB_DEVICE_ID_MATCH_VENDOR,
1153 .idVendor = 0x0bdb,
1154 .bInterfaceClass = USB_CLASS_COMM,
1155 .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM,
1156 .bInterfaceProtocol = USB_CDC_PROTO_NONE,
1157 .driver_info = (unsigned long) &wwan_info,
1158 },
1159
Peter Meiserf3a1ef9c2012-08-02 02:30:20 +00001160 /* Dell branded MBM devices like DW5550 */
1161 { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
1162 | USB_DEVICE_ID_MATCH_VENDOR,
1163 .idVendor = 0x413c,
1164 .bInterfaceClass = USB_CLASS_COMM,
1165 .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM,
1166 .bInterfaceProtocol = USB_CDC_PROTO_NONE,
1167 .driver_info = (unsigned long) &wwan_info,
1168 },
1169
1170 /* Toshiba branded MBM devices */
1171 { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
1172 | USB_DEVICE_ID_MATCH_VENDOR,
1173 .idVendor = 0x0930,
1174 .bInterfaceClass = USB_CLASS_COMM,
1175 .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM,
1176 .bInterfaceProtocol = USB_CDC_PROTO_NONE,
1177 .driver_info = (unsigned long) &wwan_info,
1178 },
1179
Bjørn Mork1f84eab2013-02-27 03:08:58 +00001180 /* tag Huawei devices as wwan */
1181 { USB_VENDOR_AND_INTERFACE_INFO(0x12d1,
1182 USB_CLASS_COMM,
1183 USB_CDC_SUBCLASS_NCM,
1184 USB_CDC_PROTO_NONE),
1185 .driver_info = (unsigned long)&wwan_info,
1186 },
1187
Bjørn Morkbbc8d922012-11-13 03:19:43 +00001188 /* Huawei NCM devices disguised as vendor specific */
1189 { USB_VENDOR_AND_INTERFACE_INFO(0x12d1, 0xff, 0x02, 0x16),
1190 .driver_info = (unsigned long)&wwan_info,
1191 },
1192 { USB_VENDOR_AND_INTERFACE_INFO(0x12d1, 0xff, 0x02, 0x46),
1193 .driver_info = (unsigned long)&wwan_info,
1194 },
Bjørn Mork96316c52013-02-06 05:21:53 +00001195 { USB_VENDOR_AND_INTERFACE_INFO(0x12d1, 0xff, 0x02, 0x76),
1196 .driver_info = (unsigned long)&wwan_info,
1197 },
Bjørn Morkbbc8d922012-11-13 03:19:43 +00001198
Wei Shuai2f62d5a2013-01-21 06:00:32 +00001199 /* Infineon(now Intel) HSPA Modem platform */
1200 { USB_DEVICE_AND_INTERFACE_INFO(0x1519, 0x0443,
1201 USB_CLASS_COMM,
1202 USB_CDC_SUBCLASS_NCM, USB_CDC_PROTO_NONE),
1203 .driver_info = (unsigned long)&wwan_noarp_info,
1204 },
1205
Dan Williamsf94898e2012-07-24 08:43:22 +00001206 /* Generic CDC-NCM devices */
1207 { USB_INTERFACE_INFO(USB_CLASS_COMM,
1208 USB_CDC_SUBCLASS_NCM, USB_CDC_PROTO_NONE),
1209 .driver_info = (unsigned long)&cdc_ncm_info,
1210 },
1211 {
1212 },
1213};
1214MODULE_DEVICE_TABLE(usb, cdc_devs);
1215
Alexey Orishko900d4952010-11-29 23:23:28 +00001216static struct usb_driver cdc_ncm_driver = {
1217 .name = "cdc_ncm",
1218 .id_table = cdc_devs,
Bjørn Mork085e50e2013-11-01 11:16:50 +01001219 .probe = usbnet_probe,
1220 .disconnect = usbnet_disconnect,
Alexey Orishko900d4952010-11-29 23:23:28 +00001221 .suspend = usbnet_suspend,
1222 .resume = usbnet_resume,
Stefan Metzmacher85e3c652011-06-01 02:01:41 +00001223 .reset_resume = usbnet_resume,
Alexey Orishko900d4952010-11-29 23:23:28 +00001224 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07001225 .disable_hub_initiated_lpm = 1,
Alexey Orishko900d4952010-11-29 23:23:28 +00001226};
1227
Greg Kroah-Hartmand632eb12011-11-18 09:44:20 -08001228module_usb_driver(cdc_ncm_driver);
Alexey Orishko900d4952010-11-29 23:23:28 +00001229
1230MODULE_AUTHOR("Hans Petter Selasky");
1231MODULE_DESCRIPTION("USB CDC NCM host driver");
1232MODULE_LICENSE("Dual BSD/GPL");