blob: 62dcb2e11e0b9d0c3ade16488ab5d5fde067bd44 [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 Morkae223cd2013-11-01 11:16:54 +010089 dev_dbg(&dev->intf->dev, "failed GET_NTB_PARAMETERS\n");
Alexey Orishko900d4952010-11-29 23:23:28 +000090 return 1;
91 }
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 !=
374 union_desc->bMasterInterface0)
375 goto error;
Alexey Orishko900d4952010-11-29 23:23:28 +0000376 ctx->data = usb_ifnum_to_if(dev->udev,
Bjørn Mork83292232013-11-01 11:16:47 +0100377 union_desc->bSlaveInterface0);
Alexey Orishko900d4952010-11-29 23:23:28 +0000378 break;
379
380 case USB_CDC_ETHERNET_TYPE:
381 if (buf[0] < sizeof(*(ctx->ether_desc)))
382 break;
383
384 ctx->ether_desc =
385 (const struct usb_cdc_ether_desc *)buf;
Alexey Orishko900d4952010-11-29 23:23:28 +0000386 break;
387
388 case USB_CDC_NCM_TYPE:
389 if (buf[0] < sizeof(*(ctx->func_desc)))
390 break;
391
392 ctx->func_desc = (const struct usb_cdc_ncm_desc *)buf;
393 break;
394
Greg Suarez38396e42012-10-22 10:56:31 +0000395 case USB_CDC_MBIM_TYPE:
396 if (buf[0] < sizeof(*(ctx->mbim_desc)))
397 break;
398
399 ctx->mbim_desc = (const struct usb_cdc_mbim_desc *)buf;
400 break;
401
Alexey Orishko900d4952010-11-29 23:23:28 +0000402 default:
403 break;
404 }
405advance:
406 /* advance to next descriptor */
407 temp = buf[0];
408 buf += temp;
409 len -= temp;
410 }
411
Bjørn Mork9992c2e2013-01-21 05:50:38 +0000412 /* some buggy devices have an IAD but no CDC Union */
Bjørn Mork83292232013-11-01 11:16:47 +0100413 if (!union_desc && intf->intf_assoc && intf->intf_assoc->bInterfaceCount == 2) {
Bjørn Mork56a666d2013-01-25 23:36:59 +0000414 ctx->data = usb_ifnum_to_if(dev->udev, intf->cur_altsetting->desc.bInterfaceNumber + 1);
415 dev_dbg(&intf->dev, "CDC Union missing - got slave from IAD\n");
Bjørn Mork9992c2e2013-01-21 05:50:38 +0000416 }
417
Alexey Orishko900d4952010-11-29 23:23:28 +0000418 /* check if we got everything */
Bjørn Mork9fe02342013-11-01 11:16:48 +0100419 if (!ctx->data || (!ctx->mbim_desc && !ctx->ether_desc))
Alexey Orishko900d4952010-11-29 23:23:28 +0000420 goto error;
421
Bjørn Morkbbc8d922012-11-13 03:19:43 +0000422 /* claim data interface, if different from control */
423 if (ctx->data != ctx->control) {
424 temp = usb_driver_claim_interface(driver, ctx->data, dev);
425 if (temp)
426 goto error;
427 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000428
429 iface_no = ctx->data->cur_altsetting->desc.bInterfaceNumber;
430
431 /* reset data interface */
432 temp = usb_set_interface(dev->udev, iface_no, 0);
433 if (temp)
Alexey Orishko19694ac2011-05-24 05:26:13 +0000434 goto error2;
Alexey Orishko900d4952010-11-29 23:23:28 +0000435
Alexey Orishko900d4952010-11-29 23:23:28 +0000436 /* configure data interface */
Greg Suarez38396e42012-10-22 10:56:31 +0000437 temp = usb_set_interface(dev->udev, iface_no, data_altsetting);
Alexey Orishko900d4952010-11-29 23:23:28 +0000438 if (temp)
Alexey Orishko19694ac2011-05-24 05:26:13 +0000439 goto error2;
Alexey Orishko900d4952010-11-29 23:23:28 +0000440
Bjørn Morkff1632a2013-11-01 11:16:41 +0100441 cdc_ncm_find_endpoints(dev, ctx->data);
442 cdc_ncm_find_endpoints(dev, ctx->control);
443 if (!dev->in || !dev->out || !dev->status)
Alexey Orishko19694ac2011-05-24 05:26:13 +0000444 goto error2;
Alexey Orishko900d4952010-11-29 23:23:28 +0000445
Bjørn Mork6a9612e2013-11-01 11:16:45 +0100446 /* initialize data interface */
447 if (cdc_ncm_setup(dev))
448 goto error2;
449
Alexey Orishko900d4952010-11-29 23:23:28 +0000450 usb_set_intfdata(ctx->data, dev);
451 usb_set_intfdata(ctx->control, dev);
Alexey Orishko900d4952010-11-29 23:23:28 +0000452
Greg Suarez38396e42012-10-22 10:56:31 +0000453 if (ctx->ether_desc) {
454 temp = usbnet_get_ethernet_addr(dev, ctx->ether_desc->iMACAddress);
455 if (temp)
456 goto error2;
457 dev_info(&dev->udev->dev, "MAC-Address: %pM\n", dev->net->dev_addr);
458 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000459
Bjørn Mork43c87f72013-11-01 11:16:52 +0100460 /* usbnet use these values for sizing tx/rx queues */
461 dev->hard_mtu = ctx->tx_max;
Alexey Orishko900d4952010-11-29 23:23:28 +0000462 dev->rx_urb_size = ctx->rx_max;
463
Alexey Orishko900d4952010-11-29 23:23:28 +0000464 return 0;
465
Alexey Orishko19694ac2011-05-24 05:26:13 +0000466error2:
467 usb_set_intfdata(ctx->control, NULL);
468 usb_set_intfdata(ctx->data, NULL);
Bjørn Mork6b4ef602013-01-21 05:50:40 +0000469 if (ctx->data != ctx->control)
470 usb_driver_release_interface(driver, ctx->data);
Alexey Orishko900d4952010-11-29 23:23:28 +0000471error:
472 cdc_ncm_free((struct cdc_ncm_ctx *)dev->data[0]);
473 dev->data[0] = 0;
Alexey Orishko19694ac2011-05-24 05:26:13 +0000474 dev_info(&dev->udev->dev, "bind() failure\n");
Alexey Orishko900d4952010-11-29 23:23:28 +0000475 return -ENODEV;
476}
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000477EXPORT_SYMBOL_GPL(cdc_ncm_bind_common);
Alexey Orishko900d4952010-11-29 23:23:28 +0000478
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000479void cdc_ncm_unbind(struct usbnet *dev, struct usb_interface *intf)
Alexey Orishko900d4952010-11-29 23:23:28 +0000480{
481 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
Alexey Orishko19694ac2011-05-24 05:26:13 +0000482 struct usb_driver *driver = driver_of(intf);
Alexey Orishko900d4952010-11-29 23:23:28 +0000483
484 if (ctx == NULL)
485 return; /* no setup */
486
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000487 atomic_set(&ctx->stop, 1);
488
489 if (hrtimer_active(&ctx->tx_timer))
490 hrtimer_cancel(&ctx->tx_timer);
491
492 tasklet_kill(&ctx->bh);
493
Bjørn Morkbbc8d922012-11-13 03:19:43 +0000494 /* handle devices with combined control and data interface */
495 if (ctx->control == ctx->data)
496 ctx->data = NULL;
497
Alexey Orishko19694ac2011-05-24 05:26:13 +0000498 /* disconnect master --> disconnect slave */
499 if (intf == ctx->control && ctx->data) {
500 usb_set_intfdata(ctx->data, NULL);
Alexey Orishko900d4952010-11-29 23:23:28 +0000501 usb_driver_release_interface(driver, ctx->data);
Alexey Orishko19694ac2011-05-24 05:26:13 +0000502 ctx->data = NULL;
Alexey Orishko900d4952010-11-29 23:23:28 +0000503
Alexey Orishko19694ac2011-05-24 05:26:13 +0000504 } else if (intf == ctx->data && ctx->control) {
505 usb_set_intfdata(ctx->control, NULL);
Alexey Orishko900d4952010-11-29 23:23:28 +0000506 usb_driver_release_interface(driver, ctx->control);
Alexey Orishko19694ac2011-05-24 05:26:13 +0000507 ctx->control = NULL;
Alexey Orishko900d4952010-11-29 23:23:28 +0000508 }
509
Bjørn Mork3e515662013-11-01 11:16:40 +0100510 usb_set_intfdata(intf, NULL);
Alexey Orishko900d4952010-11-29 23:23:28 +0000511 cdc_ncm_free(ctx);
512}
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000513EXPORT_SYMBOL_GPL(cdc_ncm_unbind);
Alexey Orishko900d4952010-11-29 23:23:28 +0000514
Bjørn Mork1e8bbe62013-03-14 01:05:13 +0000515/* Select the MBIM altsetting iff it is preferred and available,
516 * returning the number of the corresponding data interface altsetting
517 */
518u8 cdc_ncm_select_altsetting(struct usbnet *dev, struct usb_interface *intf)
Greg Suarez38396e42012-10-22 10:56:31 +0000519{
Bjørn Mork1e8bbe62013-03-14 01:05:13 +0000520 struct usb_host_interface *alt;
Greg Suarez38396e42012-10-22 10:56:31 +0000521
Bjørn Morkbd329e12012-10-22 10:56:38 +0000522 /* The MBIM spec defines a NCM compatible default altsetting,
523 * which we may have matched:
524 *
525 * "Functions that implement both NCM 1.0 and MBIM (an
526 * “NCM/MBIM function”) according to this recommendation
527 * shall provide two alternate settings for the
528 * Communication Interface. Alternate setting 0, and the
529 * associated class and endpoint descriptors, shall be
530 * constructed according to the rules given for the
531 * Communication Interface in section 5 of [USBNCM10].
532 * Alternate setting 1, and the associated class and
533 * endpoint descriptors, shall be constructed according to
534 * the rules given in section 6 (USB Device Model) of this
535 * specification."
Bjørn Morkbd329e12012-10-22 10:56:38 +0000536 */
Bjørn Mork1e8bbe62013-03-14 01:05:13 +0000537 if (prefer_mbim && intf->num_altsetting == 2) {
538 alt = usb_altnum_to_altsetting(intf, CDC_NCM_COMM_ALTSETTING_MBIM);
539 if (alt && cdc_ncm_comm_intf_is_mbim(alt) &&
540 !usb_set_interface(dev->udev,
541 intf->cur_altsetting->desc.bInterfaceNumber,
542 CDC_NCM_COMM_ALTSETTING_MBIM))
543 return CDC_NCM_DATA_ALTSETTING_MBIM;
Bjørn Morkf350ca02013-02-13 12:09:52 +0000544 }
Bjørn Mork1e8bbe62013-03-14 01:05:13 +0000545 return CDC_NCM_DATA_ALTSETTING_NCM;
546}
547EXPORT_SYMBOL_GPL(cdc_ncm_select_altsetting);
548
549static int cdc_ncm_bind(struct usbnet *dev, struct usb_interface *intf)
550{
551 int ret;
552
553 /* MBIM backwards compatible function? */
554 cdc_ncm_select_altsetting(dev, intf);
555 if (cdc_ncm_comm_intf_is_mbim(intf->cur_altsetting))
556 return -ENODEV;
Bjørn Morkbd329e12012-10-22 10:56:38 +0000557
Greg Suarez38396e42012-10-22 10:56:31 +0000558 /* NCM data altsetting is always 1 */
559 ret = cdc_ncm_bind_common(dev, intf, 1);
560
561 /*
562 * We should get an event when network connection is "connected" or
563 * "disconnected". Set network connection in "disconnected" state
564 * (carrier is OFF) during attach, so the IP network stack does not
565 * start IPv6 negotiation and more.
566 */
Ming Lei8a34b0a2013-04-11 04:40:33 +0000567 usbnet_link_change(dev, 0, 0);
Greg Suarez38396e42012-10-22 10:56:31 +0000568 return ret;
569}
570
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000571static 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 +0000572{
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000573 size_t align = ALIGN(skb->len, modulus) - skb->len + remainder;
574
575 if (skb->len + align > max)
576 align = max - skb->len;
577 if (align && skb_tailroom(skb) >= align)
578 memset(skb_put(skb, align), 0, align);
579}
580
581/* return a pointer to a valid struct usb_cdc_ncm_ndp16 of type sign, possibly
582 * allocating a new one within skb
583 */
584static struct usb_cdc_ncm_ndp16 *cdc_ncm_ndp(struct cdc_ncm_ctx *ctx, struct sk_buff *skb, __le32 sign, size_t reserve)
585{
586 struct usb_cdc_ncm_ndp16 *ndp16 = NULL;
587 struct usb_cdc_ncm_nth16 *nth16 = (void *)skb->data;
588 size_t ndpoffset = le16_to_cpu(nth16->wNdpIndex);
589
590 /* follow the chain of NDPs, looking for a match */
591 while (ndpoffset) {
592 ndp16 = (struct usb_cdc_ncm_ndp16 *)(skb->data + ndpoffset);
593 if (ndp16->dwSignature == sign)
594 return ndp16;
595 ndpoffset = le16_to_cpu(ndp16->wNextNdpIndex);
596 }
597
598 /* align new NDP */
599 cdc_ncm_align_tail(skb, ctx->tx_ndp_modulus, 0, ctx->tx_max);
600
601 /* verify that there is room for the NDP and the datagram (reserve) */
602 if ((ctx->tx_max - skb->len - reserve) < CDC_NCM_NDP_SIZE)
603 return NULL;
604
605 /* link to it */
606 if (ndp16)
607 ndp16->wNextNdpIndex = cpu_to_le16(skb->len);
608 else
609 nth16->wNdpIndex = cpu_to_le16(skb->len);
610
611 /* push a new empty NDP */
612 ndp16 = (struct usb_cdc_ncm_ndp16 *)memset(skb_put(skb, CDC_NCM_NDP_SIZE), 0, CDC_NCM_NDP_SIZE);
613 ndp16->dwSignature = sign;
614 ndp16->wLength = cpu_to_le16(sizeof(struct usb_cdc_ncm_ndp16) + sizeof(struct usb_cdc_ncm_dpe16));
615 return ndp16;
Alexey Orishko900d4952010-11-29 23:23:28 +0000616}
617
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000618struct sk_buff *
Bjørn Morkbed6f762013-11-01 11:16:42 +0100619cdc_ncm_fill_tx_frame(struct usbnet *dev, struct sk_buff *skb, __le32 sign)
Alexey Orishko900d4952010-11-29 23:23:28 +0000620{
Bjørn Morkbed6f762013-11-01 11:16:42 +0100621 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000622 struct usb_cdc_ncm_nth16 *nth16;
623 struct usb_cdc_ncm_ndp16 *ndp16;
Alexey Orishko900d4952010-11-29 23:23:28 +0000624 struct sk_buff *skb_out;
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000625 u16 n = 0, index, ndplen;
Alexey Orishko84e77a82011-02-07 09:45:10 +0000626 u8 ready2send = 0;
Alexey Orishko900d4952010-11-29 23:23:28 +0000627
628 /* if there is a remaining skb, it gets priority */
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000629 if (skb != NULL) {
Alexey Orishko900d4952010-11-29 23:23:28 +0000630 swap(skb, ctx->tx_rem_skb);
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000631 swap(sign, ctx->tx_rem_sign);
632 } else {
Alexey Orishko84e77a82011-02-07 09:45:10 +0000633 ready2send = 1;
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000634 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000635
636 /* check if we are resuming an OUT skb */
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000637 skb_out = ctx->tx_curr_skb;
Alexey Orishko900d4952010-11-29 23:23:28 +0000638
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000639 /* allocate a new OUT skb */
640 if (!skb_out) {
Bjørn Mork205722262013-11-01 11:16:38 +0100641 skb_out = alloc_skb(ctx->tx_max, GFP_ATOMIC);
Alexey Orishko900d4952010-11-29 23:23:28 +0000642 if (skb_out == NULL) {
643 if (skb != NULL) {
644 dev_kfree_skb_any(skb);
Bjørn Morkbed6f762013-11-01 11:16:42 +0100645 dev->net->stats.tx_dropped++;
Alexey Orishko900d4952010-11-29 23:23:28 +0000646 }
647 goto exit_no_skb;
648 }
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000649 /* fill out the initial 16-bit NTB header */
650 nth16 = (struct usb_cdc_ncm_nth16 *)memset(skb_put(skb_out, sizeof(struct usb_cdc_ncm_nth16)), 0, sizeof(struct usb_cdc_ncm_nth16));
651 nth16->dwSignature = cpu_to_le32(USB_CDC_NCM_NTH16_SIGN);
652 nth16->wHeaderLength = cpu_to_le16(sizeof(struct usb_cdc_ncm_nth16));
653 nth16->wSequence = cpu_to_le16(ctx->tx_seq++);
Alexey Orishko900d4952010-11-29 23:23:28 +0000654
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000655 /* count total number of frames in this NTB */
Alexey Orishko900d4952010-11-29 23:23:28 +0000656 ctx->tx_curr_frame_num = 0;
657 }
658
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000659 for (n = ctx->tx_curr_frame_num; n < ctx->tx_max_datagrams; n++) {
660 /* send any remaining skb first */
Alexey Orishko900d4952010-11-29 23:23:28 +0000661 if (skb == NULL) {
662 skb = ctx->tx_rem_skb;
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000663 sign = ctx->tx_rem_sign;
Alexey Orishko900d4952010-11-29 23:23:28 +0000664 ctx->tx_rem_skb = NULL;
665
666 /* check for end of skb */
667 if (skb == NULL)
668 break;
669 }
670
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000671 /* get the appropriate NDP for this skb */
672 ndp16 = cdc_ncm_ndp(ctx, skb_out, sign, skb->len + ctx->tx_modulus + ctx->tx_remainder);
673
674 /* align beginning of next frame */
675 cdc_ncm_align_tail(skb_out, ctx->tx_modulus, ctx->tx_remainder, ctx->tx_max);
676
677 /* check if we had enough room left for both NDP and frame */
678 if (!ndp16 || skb_out->len + skb->len > ctx->tx_max) {
Alexey Orishko900d4952010-11-29 23:23:28 +0000679 if (n == 0) {
680 /* won't fit, MTU problem? */
681 dev_kfree_skb_any(skb);
682 skb = NULL;
Bjørn Morkbed6f762013-11-01 11:16:42 +0100683 dev->net->stats.tx_dropped++;
Alexey Orishko900d4952010-11-29 23:23:28 +0000684 } else {
685 /* no room for skb - store for later */
686 if (ctx->tx_rem_skb != NULL) {
687 dev_kfree_skb_any(ctx->tx_rem_skb);
Bjørn Morkbed6f762013-11-01 11:16:42 +0100688 dev->net->stats.tx_dropped++;
Alexey Orishko900d4952010-11-29 23:23:28 +0000689 }
690 ctx->tx_rem_skb = skb;
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000691 ctx->tx_rem_sign = sign;
Alexey Orishko900d4952010-11-29 23:23:28 +0000692 skb = NULL;
Alexey Orishko84e77a82011-02-07 09:45:10 +0000693 ready2send = 1;
Alexey Orishko900d4952010-11-29 23:23:28 +0000694 }
695 break;
696 }
697
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000698 /* calculate frame number withing this NDP */
699 ndplen = le16_to_cpu(ndp16->wLength);
700 index = (ndplen - sizeof(struct usb_cdc_ncm_ndp16)) / sizeof(struct usb_cdc_ncm_dpe16) - 1;
Alexey Orishko900d4952010-11-29 23:23:28 +0000701
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000702 /* OK, add this skb */
703 ndp16->dpe16[index].wDatagramLength = cpu_to_le16(skb->len);
704 ndp16->dpe16[index].wDatagramIndex = cpu_to_le16(skb_out->len);
705 ndp16->wLength = cpu_to_le16(ndplen + sizeof(struct usb_cdc_ncm_dpe16));
706 memcpy(skb_put(skb_out, skb->len), skb->data, skb->len);
Alexey Orishko900d4952010-11-29 23:23:28 +0000707 dev_kfree_skb_any(skb);
708 skb = NULL;
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000709
710 /* send now if this NDP is full */
711 if (index >= CDC_NCM_DPT_DATAGRAMS_MAX) {
712 ready2send = 1;
713 break;
714 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000715 }
716
717 /* free up any dangling skb */
718 if (skb != NULL) {
719 dev_kfree_skb_any(skb);
720 skb = NULL;
Bjørn Morkbed6f762013-11-01 11:16:42 +0100721 dev->net->stats.tx_dropped++;
Alexey Orishko900d4952010-11-29 23:23:28 +0000722 }
723
724 ctx->tx_curr_frame_num = n;
725
726 if (n == 0) {
727 /* wait for more frames */
728 /* push variables */
729 ctx->tx_curr_skb = skb_out;
Alexey Orishko900d4952010-11-29 23:23:28 +0000730 goto exit_no_skb;
731
Alexey Orishko84e77a82011-02-07 09:45:10 +0000732 } else if ((n < ctx->tx_max_datagrams) && (ready2send == 0)) {
Alexey Orishko900d4952010-11-29 23:23:28 +0000733 /* wait for more frames */
734 /* push variables */
735 ctx->tx_curr_skb = skb_out;
Alexey Orishko900d4952010-11-29 23:23:28 +0000736 /* set the pending count */
737 if (n < CDC_NCM_RESTART_TIMER_DATAGRAM_CNT)
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000738 ctx->tx_timer_pending = CDC_NCM_TIMER_PENDING_CNT;
Alexey Orishko900d4952010-11-29 23:23:28 +0000739 goto exit_no_skb;
740
741 } else {
742 /* frame goes out */
743 /* variables will be reset at next call */
744 }
745
Bjørn Mork205722262013-11-01 11:16:38 +0100746 /* If collected data size is less or equal CDC_NCM_MIN_TX_PKT
747 * bytes, we send buffers as it is. If we get more data, it
748 * would be more efficient for USB HS mobile device with DMA
749 * engine to receive a full size NTB, than canceling DMA
750 * transfer and receiving a short packet.
Bjørn Mork4d619f62013-11-01 11:16:49 +0100751 *
752 * This optimization support is pointless if we end up sending
753 * a ZLP after full sized NTBs.
Alexey Orishko900d4952010-11-29 23:23:28 +0000754 */
Bjørn Mork4d619f62013-11-01 11:16:49 +0100755 if (!(dev->driver_info->flags & FLAG_SEND_ZLP) &&
756 skb_out->len > CDC_NCM_MIN_TX_PKT)
Bjørn Mork205722262013-11-01 11:16:38 +0100757 memset(skb_put(skb_out, ctx->tx_max - skb_out->len), 0,
758 ctx->tx_max - skb_out->len);
759 else if ((skb_out->len % dev->maxpacket) == 0)
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000760 *skb_put(skb_out, 1) = 0; /* force short packet */
Alexey Orishko900d4952010-11-29 23:23:28 +0000761
Bjørn Morkc78b7c52012-10-22 10:56:34 +0000762 /* set final frame length */
763 nth16 = (struct usb_cdc_ncm_nth16 *)skb_out->data;
764 nth16->wBlockLength = cpu_to_le16(skb_out->len);
Alexey Orishko900d4952010-11-29 23:23:28 +0000765
766 /* return skb */
767 ctx->tx_curr_skb = NULL;
Bjørn Morkbed6f762013-11-01 11:16:42 +0100768 dev->net->stats.tx_packets += ctx->tx_curr_frame_num;
Alexey Orishko900d4952010-11-29 23:23:28 +0000769 return skb_out;
770
771exit_no_skb:
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000772 /* Start timer, if there is a remaining skb */
773 if (ctx->tx_curr_skb != NULL)
774 cdc_ncm_tx_timeout_start(ctx);
Alexey Orishko900d4952010-11-29 23:23:28 +0000775 return NULL;
776}
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000777EXPORT_SYMBOL_GPL(cdc_ncm_fill_tx_frame);
Alexey Orishko900d4952010-11-29 23:23:28 +0000778
779static void cdc_ncm_tx_timeout_start(struct cdc_ncm_ctx *ctx)
780{
781 /* start timer, if not already started */
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000782 if (!(hrtimer_active(&ctx->tx_timer) || atomic_read(&ctx->stop)))
783 hrtimer_start(&ctx->tx_timer,
784 ktime_set(0, CDC_NCM_TIMER_INTERVAL),
785 HRTIMER_MODE_REL);
Alexey Orishko900d4952010-11-29 23:23:28 +0000786}
787
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000788static enum hrtimer_restart cdc_ncm_tx_timer_cb(struct hrtimer *timer)
Alexey Orishko900d4952010-11-29 23:23:28 +0000789{
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000790 struct cdc_ncm_ctx *ctx =
791 container_of(timer, struct cdc_ncm_ctx, tx_timer);
Alexey Orishko900d4952010-11-29 23:23:28 +0000792
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000793 if (!atomic_read(&ctx->stop))
794 tasklet_schedule(&ctx->bh);
795 return HRTIMER_NORESTART;
796}
797
798static void cdc_ncm_txpath_bh(unsigned long param)
799{
Bjørn Morkbed6f762013-11-01 11:16:42 +0100800 struct usbnet *dev = (struct usbnet *)param;
801 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000802
803 spin_lock_bh(&ctx->mtx);
Alexey Orishko900d4952010-11-29 23:23:28 +0000804 if (ctx->tx_timer_pending != 0) {
805 ctx->tx_timer_pending--;
Alexey Orishko900d4952010-11-29 23:23:28 +0000806 cdc_ncm_tx_timeout_start(ctx);
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000807 spin_unlock_bh(&ctx->mtx);
Bjørn Morkbed6f762013-11-01 11:16:42 +0100808 } else if (dev->net != NULL) {
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000809 spin_unlock_bh(&ctx->mtx);
Bjørn Morkbed6f762013-11-01 11:16:42 +0100810 netif_tx_lock_bh(dev->net);
811 usbnet_start_xmit(NULL, dev->net);
812 netif_tx_unlock_bh(dev->net);
Bjørn Mork7b1e0cb2012-10-25 21:44:09 +0000813 } else {
814 spin_unlock_bh(&ctx->mtx);
Alexey Orishkof742aa82011-01-17 07:07:25 +0000815 }
Alexey Orishko900d4952010-11-29 23:23:28 +0000816}
817
818static struct sk_buff *
819cdc_ncm_tx_fixup(struct usbnet *dev, struct sk_buff *skb, gfp_t flags)
820{
821 struct sk_buff *skb_out;
822 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
Alexey Orishko900d4952010-11-29 23:23:28 +0000823
824 /*
825 * The Ethernet API we are using does not support transmitting
826 * multiple Ethernet frames in a single call. This driver will
827 * accumulate multiple Ethernet frames and send out a larger
828 * USB frame when the USB buffer is full or when a single jiffies
829 * timeout happens.
830 */
831 if (ctx == NULL)
832 goto error;
833
Alexey Orishkoc84ff1d2012-03-14 11:26:10 +0000834 spin_lock_bh(&ctx->mtx);
Bjørn Morkbed6f762013-11-01 11:16:42 +0100835 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 +0000836 spin_unlock_bh(&ctx->mtx);
Alexey Orishko900d4952010-11-29 23:23:28 +0000837 return skb_out;
838
839error:
840 if (skb != NULL)
841 dev_kfree_skb_any(skb);
842
843 return NULL;
844}
845
Bjørn Morkff06ab12012-10-22 10:56:33 +0000846/* verify NTB header and return offset of first NDP, or negative error */
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000847int cdc_ncm_rx_verify_nth16(struct cdc_ncm_ctx *ctx, struct sk_buff *skb_in)
Alexey Orishko900d4952010-11-29 23:23:28 +0000848{
Bjørn Morkae223cd2013-11-01 11:16:54 +0100849 struct usbnet *dev = netdev_priv(skb_in->dev);
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000850 struct usb_cdc_ncm_nth16 *nth16;
Bjørn Morkff06ab12012-10-22 10:56:33 +0000851 int len;
852 int ret = -EINVAL;
Alexey Orishko900d4952010-11-29 23:23:28 +0000853
Alexey Orishko900d4952010-11-29 23:23:28 +0000854 if (ctx == NULL)
855 goto error;
856
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000857 if (skb_in->len < (sizeof(struct usb_cdc_ncm_nth16) +
858 sizeof(struct usb_cdc_ncm_ndp16))) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100859 netif_dbg(dev, rx_err, dev->net, "frame too short\n");
Alexey Orishko900d4952010-11-29 23:23:28 +0000860 goto error;
861 }
862
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000863 nth16 = (struct usb_cdc_ncm_nth16 *)skb_in->data;
Alexey Orishko900d4952010-11-29 23:23:28 +0000864
Bjørn Mork986e10d2013-11-01 11:16:56 +0100865 if (nth16->dwSignature != cpu_to_le32(USB_CDC_NCM_NTH16_SIGN)) {
Bjørn Mork5448d752013-11-01 11:16:55 +0100866 netif_dbg(dev, rx_err, dev->net,
867 "invalid NTH16 signature <%#010x>\n",
868 le32_to_cpu(nth16->dwSignature));
Alexey Orishko900d4952010-11-29 23:23:28 +0000869 goto error;
870 }
871
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000872 len = le16_to_cpu(nth16->wBlockLength);
873 if (len > ctx->rx_max) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100874 netif_dbg(dev, rx_err, dev->net,
875 "unsupported NTB block length %u/%u\n", len,
876 ctx->rx_max);
Alexey Orishko900d4952010-11-29 23:23:28 +0000877 goto error;
878 }
879
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000880 if ((ctx->rx_seq + 1) != le16_to_cpu(nth16->wSequence) &&
Bjørn Morkae223cd2013-11-01 11:16:54 +0100881 (ctx->rx_seq || le16_to_cpu(nth16->wSequence)) &&
882 !((ctx->rx_seq == 0xffff) && !le16_to_cpu(nth16->wSequence))) {
883 netif_dbg(dev, rx_err, dev->net,
884 "sequence number glitch prev=%d curr=%d\n",
885 ctx->rx_seq, le16_to_cpu(nth16->wSequence));
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000886 }
887 ctx->rx_seq = le16_to_cpu(nth16->wSequence);
888
Bjørn Morkff06ab12012-10-22 10:56:33 +0000889 ret = le16_to_cpu(nth16->wNdpIndex);
890error:
891 return ret;
892}
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000893EXPORT_SYMBOL_GPL(cdc_ncm_rx_verify_nth16);
Bjørn Morkff06ab12012-10-22 10:56:33 +0000894
895/* verify NDP header and return number of datagrams, or negative error */
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000896int cdc_ncm_rx_verify_ndp16(struct sk_buff *skb_in, int ndpoffset)
Bjørn Morkff06ab12012-10-22 10:56:33 +0000897{
Bjørn Morkae223cd2013-11-01 11:16:54 +0100898 struct usbnet *dev = netdev_priv(skb_in->dev);
Bjørn Morkff06ab12012-10-22 10:56:33 +0000899 struct usb_cdc_ncm_ndp16 *ndp16;
900 int ret = -EINVAL;
901
Bjørn Mork75d67d32012-10-22 10:56:32 +0000902 if ((ndpoffset + sizeof(struct usb_cdc_ncm_ndp16)) > skb_in->len) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100903 netif_dbg(dev, rx_err, dev->net, "invalid NDP offset <%u>\n",
904 ndpoffset);
Alexey Orishko900d4952010-11-29 23:23:28 +0000905 goto error;
906 }
Bjørn Mork75d67d32012-10-22 10:56:32 +0000907 ndp16 = (struct usb_cdc_ncm_ndp16 *)(skb_in->data + ndpoffset);
Alexey Orishko900d4952010-11-29 23:23:28 +0000908
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000909 if (le16_to_cpu(ndp16->wLength) < USB_CDC_NCM_NDP16_LENGTH_MIN) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100910 netif_dbg(dev, rx_err, dev->net, "invalid DPT16 length <%u>\n",
911 le16_to_cpu(ndp16->wLength));
Bjørn Morkff06ab12012-10-22 10:56:33 +0000912 goto error;
Alexey Orishko900d4952010-11-29 23:23:28 +0000913 }
914
Bjørn Morkff06ab12012-10-22 10:56:33 +0000915 ret = ((le16_to_cpu(ndp16->wLength) -
Alexey Orishko900d4952010-11-29 23:23:28 +0000916 sizeof(struct usb_cdc_ncm_ndp16)) /
917 sizeof(struct usb_cdc_ncm_dpe16));
Bjørn Morkff06ab12012-10-22 10:56:33 +0000918 ret--; /* we process NDP entries except for the last one */
Alexey Orishko900d4952010-11-29 23:23:28 +0000919
Bjørn Morkae223cd2013-11-01 11:16:54 +0100920 if ((sizeof(struct usb_cdc_ncm_ndp16) +
921 ret * (sizeof(struct usb_cdc_ncm_dpe16))) > skb_in->len) {
922 netif_dbg(dev, rx_err, dev->net, "Invalid nframes = %d\n", ret);
Bjørn Morkff06ab12012-10-22 10:56:33 +0000923 ret = -EINVAL;
Alexey Orishko900d4952010-11-29 23:23:28 +0000924 }
925
Bjørn Morkff06ab12012-10-22 10:56:33 +0000926error:
927 return ret;
928}
Bjørn Morkc91ce3b2012-10-22 10:56:35 +0000929EXPORT_SYMBOL_GPL(cdc_ncm_rx_verify_ndp16);
Bjørn Morkff06ab12012-10-22 10:56:33 +0000930
931static int cdc_ncm_rx_fixup(struct usbnet *dev, struct sk_buff *skb_in)
932{
933 struct sk_buff *skb;
934 struct cdc_ncm_ctx *ctx = (struct cdc_ncm_ctx *)dev->data[0];
935 int len;
936 int nframes;
937 int x;
938 int offset;
939 struct usb_cdc_ncm_ndp16 *ndp16;
940 struct usb_cdc_ncm_dpe16 *dpe16;
941 int ndpoffset;
942 int loopcount = 50; /* arbitrary max preventing infinite loop */
943
944 ndpoffset = cdc_ncm_rx_verify_nth16(ctx, skb_in);
945 if (ndpoffset < 0)
946 goto error;
947
948next_ndp:
949 nframes = cdc_ncm_rx_verify_ndp16(skb_in, ndpoffset);
950 if (nframes < 0)
951 goto error;
952
953 ndp16 = (struct usb_cdc_ncm_ndp16 *)(skb_in->data + ndpoffset);
954
Bjørn Mork986e10d2013-11-01 11:16:56 +0100955 if (ndp16->dwSignature != cpu_to_le32(USB_CDC_NCM_NDP16_NOCRC_SIGN)) {
Bjørn Mork5448d752013-11-01 11:16:55 +0100956 netif_dbg(dev, rx_err, dev->net,
957 "invalid DPT16 signature <%#010x>\n",
958 le32_to_cpu(ndp16->dwSignature));
Bjørn Morkff06ab12012-10-22 10:56:33 +0000959 goto err_ndp;
960 }
961 dpe16 = ndp16->dpe16;
Alexey Orishko900d4952010-11-29 23:23:28 +0000962
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000963 for (x = 0; x < nframes; x++, dpe16++) {
964 offset = le16_to_cpu(dpe16->wDatagramIndex);
965 len = le16_to_cpu(dpe16->wDatagramLength);
Alexey Orishko900d4952010-11-29 23:23:28 +0000966
967 /*
968 * CDC NCM ch. 3.7
969 * All entries after first NULL entry are to be ignored
970 */
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000971 if ((offset == 0) || (len == 0)) {
Alexey Orishko900d4952010-11-29 23:23:28 +0000972 if (!x)
Bjørn Mork75d67d32012-10-22 10:56:32 +0000973 goto err_ndp; /* empty NTB */
Alexey Orishko900d4952010-11-29 23:23:28 +0000974 break;
975 }
976
977 /* sanity checking */
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000978 if (((offset + len) > skb_in->len) ||
979 (len > ctx->rx_max) || (len < ETH_HLEN)) {
Bjørn Morkae223cd2013-11-01 11:16:54 +0100980 netif_dbg(dev, rx_err, dev->net,
981 "invalid frame detected (ignored) offset[%u]=%u, length=%u, skb=%p\n",
982 x, offset, len, skb_in);
Alexey Orishko900d4952010-11-29 23:23:28 +0000983 if (!x)
Bjørn Mork75d67d32012-10-22 10:56:32 +0000984 goto err_ndp;
Alexey Orishko900d4952010-11-29 23:23:28 +0000985 break;
986
987 } else {
988 skb = skb_clone(skb_in, GFP_ATOMIC);
Jesper Juhl9e567902011-01-13 11:40:11 +0000989 if (!skb)
990 goto error;
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000991 skb->len = len;
Alexey Orishko900d4952010-11-29 23:23:28 +0000992 skb->data = ((u8 *)skb_in->data) + offset;
Alexey Orishkod5ddb4a2012-03-14 11:26:12 +0000993 skb_set_tail_pointer(skb, len);
Alexey Orishko900d4952010-11-29 23:23:28 +0000994 usbnet_skb_return(dev, skb);
995 }
996 }
Bjørn Mork75d67d32012-10-22 10:56:32 +0000997err_ndp:
998 /* are there more NDPs to process? */
999 ndpoffset = le16_to_cpu(ndp16->wNextNdpIndex);
1000 if (ndpoffset && loopcount--)
1001 goto next_ndp;
1002
Alexey Orishko900d4952010-11-29 23:23:28 +00001003 return 1;
1004error:
1005 return 0;
1006}
1007
1008static void
Bjørn Morkbed6f762013-11-01 11:16:42 +01001009cdc_ncm_speed_change(struct usbnet *dev,
Alexey Orishko84e77a82011-02-07 09:45:10 +00001010 struct usb_cdc_speed_change *data)
Alexey Orishko900d4952010-11-29 23:23:28 +00001011{
Alexey Orishko84e77a82011-02-07 09:45:10 +00001012 uint32_t rx_speed = le32_to_cpu(data->DLBitRRate);
1013 uint32_t tx_speed = le32_to_cpu(data->ULBitRate);
Alexey Orishko900d4952010-11-29 23:23:28 +00001014
1015 /*
1016 * Currently the USB-NET API does not support reporting the actual
1017 * device speed. Do print it instead.
1018 */
Bjørn Morkf3028c52013-11-01 11:16:44 +01001019 if ((tx_speed > 1000000) && (rx_speed > 1000000)) {
Bjørn Morkae223cd2013-11-01 11:16:54 +01001020 netif_info(dev, link, dev->net,
1021 "%u mbit/s downlink %u mbit/s uplink\n",
Bjørn Morkf3028c52013-11-01 11:16:44 +01001022 (unsigned int)(rx_speed / 1000000U),
1023 (unsigned int)(tx_speed / 1000000U));
1024 } else {
Bjørn Morkae223cd2013-11-01 11:16:54 +01001025 netif_info(dev, link, dev->net,
1026 "%u kbit/s downlink %u kbit/s uplink\n",
Bjørn Morkf3028c52013-11-01 11:16:44 +01001027 (unsigned int)(rx_speed / 1000U),
1028 (unsigned int)(tx_speed / 1000U));
Alexey Orishko900d4952010-11-29 23:23:28 +00001029 }
1030}
1031
1032static void cdc_ncm_status(struct usbnet *dev, struct urb *urb)
1033{
1034 struct cdc_ncm_ctx *ctx;
1035 struct usb_cdc_notification *event;
1036
1037 ctx = (struct cdc_ncm_ctx *)dev->data[0];
1038
1039 if (urb->actual_length < sizeof(*event))
1040 return;
1041
1042 /* test for split data in 8-byte chunks */
1043 if (test_and_clear_bit(EVENT_STS_SPLIT, &dev->flags)) {
Bjørn Morkbed6f762013-11-01 11:16:42 +01001044 cdc_ncm_speed_change(dev,
Alexey Orishko84e77a82011-02-07 09:45:10 +00001045 (struct usb_cdc_speed_change *)urb->transfer_buffer);
Alexey Orishko900d4952010-11-29 23:23:28 +00001046 return;
1047 }
1048
1049 event = urb->transfer_buffer;
1050
1051 switch (event->bNotificationType) {
1052 case USB_CDC_NOTIFY_NETWORK_CONNECTION:
1053 /*
1054 * According to the CDC NCM specification ch.7.1
1055 * USB_CDC_NOTIFY_NETWORK_CONNECTION notification shall be
1056 * sent by device after USB_CDC_NOTIFY_SPEED_CHANGE.
1057 */
Bjørn Mork1a7c6cc2012-10-25 21:44:08 +00001058 ctx->connected = le16_to_cpu(event->wValue);
Bjørn Morkae223cd2013-11-01 11:16:54 +01001059 netif_info(dev, link, dev->net,
1060 "network connection: %sconnected\n",
1061 ctx->connected ? "" : "dis");
Ming Lei8a34b0a2013-04-11 04:40:33 +00001062 usbnet_link_change(dev, ctx->connected, 0);
Alexey Orishko900d4952010-11-29 23:23:28 +00001063 break;
1064
1065 case USB_CDC_NOTIFY_SPEED_CHANGE:
Alexey Orishko84e77a82011-02-07 09:45:10 +00001066 if (urb->actual_length < (sizeof(*event) +
1067 sizeof(struct usb_cdc_speed_change)))
Alexey Orishko900d4952010-11-29 23:23:28 +00001068 set_bit(EVENT_STS_SPLIT, &dev->flags);
1069 else
Bjørn Morkbed6f762013-11-01 11:16:42 +01001070 cdc_ncm_speed_change(dev,
1071 (struct usb_cdc_speed_change *)&event[1]);
Alexey Orishko900d4952010-11-29 23:23:28 +00001072 break;
1073
1074 default:
Bjørn Mork67a36602013-04-08 08:26:23 +00001075 dev_dbg(&dev->udev->dev,
1076 "NCM: unexpected notification 0x%02x!\n",
1077 event->bNotificationType);
Alexey Orishko900d4952010-11-29 23:23:28 +00001078 break;
1079 }
1080}
1081
1082static int cdc_ncm_check_connect(struct usbnet *dev)
1083{
1084 struct cdc_ncm_ctx *ctx;
1085
1086 ctx = (struct cdc_ncm_ctx *)dev->data[0];
1087 if (ctx == NULL)
1088 return 1; /* disconnected */
1089
1090 return !ctx->connected;
1091}
1092
Alexey Orishko900d4952010-11-29 23:23:28 +00001093static const struct driver_info cdc_ncm_info = {
1094 .description = "CDC NCM",
Arnd Bergmannc2613442011-04-01 20:12:02 -07001095 .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET,
Alexey Orishko900d4952010-11-29 23:23:28 +00001096 .bind = cdc_ncm_bind,
1097 .unbind = cdc_ncm_unbind,
1098 .check_connect = cdc_ncm_check_connect,
Oliver Neukuma5e40702012-12-18 04:46:12 +00001099 .manage_power = usbnet_manage_power,
Alexey Orishko900d4952010-11-29 23:23:28 +00001100 .status = cdc_ncm_status,
1101 .rx_fixup = cdc_ncm_rx_fixup,
1102 .tx_fixup = cdc_ncm_tx_fixup,
1103};
1104
Dan Williamsf94898e2012-07-24 08:43:22 +00001105/* Same as cdc_ncm_info, but with FLAG_WWAN */
1106static const struct driver_info wwan_info = {
1107 .description = "Mobile Broadband Network Device",
1108 .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET
1109 | FLAG_WWAN,
1110 .bind = cdc_ncm_bind,
1111 .unbind = cdc_ncm_unbind,
1112 .check_connect = cdc_ncm_check_connect,
Oliver Neukuma5e40702012-12-18 04:46:12 +00001113 .manage_power = usbnet_manage_power,
Dan Williamsf94898e2012-07-24 08:43:22 +00001114 .status = cdc_ncm_status,
1115 .rx_fixup = cdc_ncm_rx_fixup,
1116 .tx_fixup = cdc_ncm_tx_fixup,
1117};
1118
Wei Shuai2f62d5a2013-01-21 06:00:32 +00001119/* Same as wwan_info, but with FLAG_NOARP */
1120static const struct driver_info wwan_noarp_info = {
1121 .description = "Mobile Broadband Network Device (NO ARP)",
1122 .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET
1123 | FLAG_WWAN | FLAG_NOARP,
1124 .bind = cdc_ncm_bind,
1125 .unbind = cdc_ncm_unbind,
1126 .check_connect = cdc_ncm_check_connect,
1127 .manage_power = usbnet_manage_power,
1128 .status = cdc_ncm_status,
1129 .rx_fixup = cdc_ncm_rx_fixup,
1130 .tx_fixup = cdc_ncm_tx_fixup,
1131};
1132
Dan Williamsf94898e2012-07-24 08:43:22 +00001133static const struct usb_device_id cdc_devs[] = {
1134 /* Ericsson MBM devices like F5521gw */
1135 { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
1136 | USB_DEVICE_ID_MATCH_VENDOR,
1137 .idVendor = 0x0bdb,
1138 .bInterfaceClass = USB_CLASS_COMM,
1139 .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM,
1140 .bInterfaceProtocol = USB_CDC_PROTO_NONE,
1141 .driver_info = (unsigned long) &wwan_info,
1142 },
1143
Peter Meiserf3a1ef9c2012-08-02 02:30:20 +00001144 /* Dell branded MBM devices like DW5550 */
1145 { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
1146 | USB_DEVICE_ID_MATCH_VENDOR,
1147 .idVendor = 0x413c,
1148 .bInterfaceClass = USB_CLASS_COMM,
1149 .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM,
1150 .bInterfaceProtocol = USB_CDC_PROTO_NONE,
1151 .driver_info = (unsigned long) &wwan_info,
1152 },
1153
1154 /* Toshiba branded MBM devices */
1155 { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
1156 | USB_DEVICE_ID_MATCH_VENDOR,
1157 .idVendor = 0x0930,
1158 .bInterfaceClass = USB_CLASS_COMM,
1159 .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM,
1160 .bInterfaceProtocol = USB_CDC_PROTO_NONE,
1161 .driver_info = (unsigned long) &wwan_info,
1162 },
1163
Bjørn Mork1f84eab2013-02-27 03:08:58 +00001164 /* tag Huawei devices as wwan */
1165 { USB_VENDOR_AND_INTERFACE_INFO(0x12d1,
1166 USB_CLASS_COMM,
1167 USB_CDC_SUBCLASS_NCM,
1168 USB_CDC_PROTO_NONE),
1169 .driver_info = (unsigned long)&wwan_info,
1170 },
1171
Bjørn Morkbbc8d922012-11-13 03:19:43 +00001172 /* Huawei NCM devices disguised as vendor specific */
1173 { USB_VENDOR_AND_INTERFACE_INFO(0x12d1, 0xff, 0x02, 0x16),
1174 .driver_info = (unsigned long)&wwan_info,
1175 },
1176 { USB_VENDOR_AND_INTERFACE_INFO(0x12d1, 0xff, 0x02, 0x46),
1177 .driver_info = (unsigned long)&wwan_info,
1178 },
Bjørn Mork96316c52013-02-06 05:21:53 +00001179 { USB_VENDOR_AND_INTERFACE_INFO(0x12d1, 0xff, 0x02, 0x76),
1180 .driver_info = (unsigned long)&wwan_info,
1181 },
Bjørn Morkbbc8d922012-11-13 03:19:43 +00001182
Wei Shuai2f62d5a2013-01-21 06:00:32 +00001183 /* Infineon(now Intel) HSPA Modem platform */
1184 { USB_DEVICE_AND_INTERFACE_INFO(0x1519, 0x0443,
1185 USB_CLASS_COMM,
1186 USB_CDC_SUBCLASS_NCM, USB_CDC_PROTO_NONE),
1187 .driver_info = (unsigned long)&wwan_noarp_info,
1188 },
1189
Dan Williamsf94898e2012-07-24 08:43:22 +00001190 /* Generic CDC-NCM devices */
1191 { USB_INTERFACE_INFO(USB_CLASS_COMM,
1192 USB_CDC_SUBCLASS_NCM, USB_CDC_PROTO_NONE),
1193 .driver_info = (unsigned long)&cdc_ncm_info,
1194 },
1195 {
1196 },
1197};
1198MODULE_DEVICE_TABLE(usb, cdc_devs);
1199
Alexey Orishko900d4952010-11-29 23:23:28 +00001200static struct usb_driver cdc_ncm_driver = {
1201 .name = "cdc_ncm",
1202 .id_table = cdc_devs,
Bjørn Mork085e50e2013-11-01 11:16:50 +01001203 .probe = usbnet_probe,
1204 .disconnect = usbnet_disconnect,
Alexey Orishko900d4952010-11-29 23:23:28 +00001205 .suspend = usbnet_suspend,
1206 .resume = usbnet_resume,
Stefan Metzmacher85e3c652011-06-01 02:01:41 +00001207 .reset_resume = usbnet_resume,
Alexey Orishko900d4952010-11-29 23:23:28 +00001208 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07001209 .disable_hub_initiated_lpm = 1,
Alexey Orishko900d4952010-11-29 23:23:28 +00001210};
1211
Greg Kroah-Hartmand632eb12011-11-18 09:44:20 -08001212module_usb_driver(cdc_ncm_driver);
Alexey Orishko900d4952010-11-29 23:23:28 +00001213
1214MODULE_AUTHOR("Hans Petter Selasky");
1215MODULE_DESCRIPTION("USB CDC NCM host driver");
1216MODULE_LICENSE("Dual BSD/GPL");