Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net
[deliverable/linux.git] / drivers / net / usb / qmi_wwan.c
CommitLineData
423ce8ca
BM
1/*
2 * Copyright (c) 2012 Bjørn Mork <bjorn@mork.no>
3 *
230718bd
BM
4 * The probing code is heavily inspired by cdc_ether, which is:
5 * Copyright (C) 2003-2005 by David Brownell
6 * Copyright (C) 2006 by Ole Andre Vadla Ravnas (ActiveSync)
7 *
423ce8ca
BM
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 */
12
13#include <linux/module.h>
14#include <linux/netdevice.h>
15#include <linux/ethtool.h>
6ff509af 16#include <linux/etherdevice.h>
423ce8ca
BM
17#include <linux/mii.h>
18#include <linux/usb.h>
19#include <linux/usb/cdc.h>
20#include <linux/usb/usbnet.h>
c3ecb08a 21#include <linux/usb/cdc-wdm.h>
423ce8ca 22
230718bd 23/* This driver supports wwan (3G/LTE/?) devices using a vendor
423ce8ca
BM
24 * specific management protocol called Qualcomm MSM Interface (QMI) -
25 * in addition to the more common AT commands over serial interface
26 * management
27 *
28 * QMI is wrapped in CDC, using CDC encapsulated commands on the
29 * control ("master") interface of a two-interface CDC Union
30 * resembling standard CDC ECM. The devices do not use the control
31 * interface for any other CDC messages. Most likely because the
32 * management protocol is used in place of the standard CDC
33 * notifications NOTIFY_NETWORK_CONNECTION and NOTIFY_SPEED_CHANGE
34 *
230718bd
BM
35 * Alternatively, control and data functions can be combined in a
36 * single USB interface.
37 *
423ce8ca 38 * Handling a protocol like QMI is out of the scope for any driver.
230718bd
BM
39 * It is exported as a character device using the cdc-wdm driver as
40 * a subdriver, enabling userspace applications ("modem managers") to
41 * handle it.
423ce8ca
BM
42 *
43 * These devices may alternatively/additionally be configured using AT
230718bd 44 * commands on a serial interface
423ce8ca
BM
45 */
46
853c24f7
BM
47/* driver specific data */
48struct qmi_wwan_state {
49 struct usb_driver *subdriver;
50 atomic_t pmcount;
f47cd136
BM
51 unsigned long unused;
52 struct usb_interface *control;
53 struct usb_interface *data;
853c24f7
BM
54};
55
cc6ba5fd
BM
56/* default ethernet address used by the modem */
57static const u8 default_modem_addr[ETH_ALEN] = {0x02, 0x50, 0xf3};
58
6ff509af
BM
59/* Make up an ethernet header if the packet doesn't have one.
60 *
61 * A firmware bug common among several devices cause them to send raw
62 * IP packets under some circumstances. There is no way for the
63 * driver/host to know when this will happen. And even when the bug
64 * hits, some packets will still arrive with an intact header.
65 *
66 * The supported devices are only capably of sending IPv4, IPv6 and
67 * ARP packets on a point-to-point link. Any packet with an ethernet
68 * header will have either our address or a broadcast/multicast
69 * address as destination. ARP packets will always have a header.
70 *
71 * This means that this function will reliably add the appropriate
72 * header iff necessary, provided our hardware address does not start
73 * with 4 or 6.
6483bdc9
BM
74 *
75 * Another common firmware bug results in all packets being addressed
76 * to 00:a0:c6:00:00:00 despite the host address being different.
77 * This function will also fixup such packets.
6ff509af
BM
78 */
79static int qmi_wwan_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
80{
81 __be16 proto;
82
83 /* usbnet rx_complete guarantees that skb->len is at least
84 * hard_header_len, so we can inspect the dest address without
85 * checking skb->len
86 */
87 switch (skb->data[0] & 0xf0) {
88 case 0x40:
89 proto = htons(ETH_P_IP);
90 break;
91 case 0x60:
92 proto = htons(ETH_P_IPV6);
93 break;
6483bdc9
BM
94 case 0x00:
95 if (is_multicast_ether_addr(skb->data))
96 return 1;
97 /* possibly bogus destination - rewrite just in case */
98 skb_reset_mac_header(skb);
99 goto fix_dest;
6ff509af
BM
100 default:
101 /* pass along other packets without modifications */
102 return 1;
103 }
104 if (skb_headroom(skb) < ETH_HLEN)
105 return 0;
106 skb_push(skb, ETH_HLEN);
107 skb_reset_mac_header(skb);
108 eth_hdr(skb)->h_proto = proto;
109 memset(eth_hdr(skb)->h_source, 0, ETH_ALEN);
6483bdc9 110fix_dest:
6ff509af
BM
111 memcpy(eth_hdr(skb)->h_dest, dev->net->dev_addr, ETH_ALEN);
112 return 1;
113}
114
115/* very simplistic detection of IPv4 or IPv6 headers */
116static bool possibly_iphdr(const char *data)
117{
118 return (data[0] & 0xd0) == 0x40;
119}
120
121/* disallow addresses which may be confused with IP headers */
122static int qmi_wwan_mac_addr(struct net_device *dev, void *p)
123{
124 int ret;
125 struct sockaddr *addr = p;
126
127 ret = eth_prepare_mac_addr_change(dev, p);
128 if (ret < 0)
129 return ret;
130 if (possibly_iphdr(addr->sa_data))
131 return -EADDRNOTAVAIL;
132 eth_commit_mac_addr_change(dev, p);
133 return 0;
134}
135
136static const struct net_device_ops qmi_wwan_netdev_ops = {
137 .ndo_open = usbnet_open,
138 .ndo_stop = usbnet_stop,
139 .ndo_start_xmit = usbnet_start_xmit,
140 .ndo_tx_timeout = usbnet_tx_timeout,
141 .ndo_change_mtu = usbnet_change_mtu,
142 .ndo_set_mac_address = qmi_wwan_mac_addr,
143 .ndo_validate_addr = eth_validate_addr,
144};
145
f47cd136
BM
146/* using a counter to merge subdriver requests with our own into a combined state */
147static int qmi_wwan_manage_power(struct usbnet *dev, int on)
148{
149 struct qmi_wwan_state *info = (void *)&dev->data;
150 int rv = 0;
151
152 dev_dbg(&dev->intf->dev, "%s() pmcount=%d, on=%d\n", __func__, atomic_read(&info->pmcount), on);
153
154 if ((on && atomic_add_return(1, &info->pmcount) == 1) || (!on && atomic_dec_and_test(&info->pmcount))) {
155 /* need autopm_get/put here to ensure the usbcore sees the new value */
156 rv = usb_autopm_get_interface(dev->intf);
157 if (rv < 0)
158 goto err;
159 dev->intf->needs_remote_wakeup = on;
160 usb_autopm_put_interface(dev->intf);
161 }
162err:
163 return rv;
164}
165
166static int qmi_wwan_cdc_wdm_manage_power(struct usb_interface *intf, int on)
167{
168 struct usbnet *dev = usb_get_intfdata(intf);
b26d344c
DM
169
170 /* can be called while disconnecting */
171 if (!dev)
172 return 0;
f47cd136
BM
173 return qmi_wwan_manage_power(dev, on);
174}
175
176/* collect all three endpoints and register subdriver */
177static int qmi_wwan_register_subdriver(struct usbnet *dev)
178{
179 int rv;
180 struct usb_driver *subdriver = NULL;
181 struct qmi_wwan_state *info = (void *)&dev->data;
182
183 /* collect bulk endpoints */
184 rv = usbnet_get_endpoints(dev, info->data);
185 if (rv < 0)
186 goto err;
187
188 /* update status endpoint if separate control interface */
189 if (info->control != info->data)
190 dev->status = &info->control->cur_altsetting->endpoint[0];
191
192 /* require interrupt endpoint for subdriver */
193 if (!dev->status) {
194 rv = -EINVAL;
195 goto err;
196 }
197
198 /* for subdriver power management */
199 atomic_set(&info->pmcount, 0);
200
201 /* register subdriver */
3ee24037 202 subdriver = usb_cdc_wdm_register(info->control, &dev->status->desc, 4096, &qmi_wwan_cdc_wdm_manage_power);
f47cd136
BM
203 if (IS_ERR(subdriver)) {
204 dev_err(&info->control->dev, "subdriver registration failed\n");
205 rv = PTR_ERR(subdriver);
206 goto err;
207 }
208
209 /* prevent usbnet from using status endpoint */
210 dev->status = NULL;
211
212 /* save subdriver struct for suspend/resume wrappers */
213 info->subdriver = subdriver;
214
215err:
216 return rv;
217}
218
423ce8ca
BM
219static int qmi_wwan_bind(struct usbnet *dev, struct usb_interface *intf)
220{
221 int status = -1;
423ce8ca
BM
222 u8 *buf = intf->cur_altsetting->extra;
223 int len = intf->cur_altsetting->extralen;
224 struct usb_interface_descriptor *desc = &intf->cur_altsetting->desc;
225 struct usb_cdc_union_desc *cdc_union = NULL;
226 struct usb_cdc_ether_desc *cdc_ether = NULL;
423ce8ca 227 u32 found = 0;
230718bd 228 struct usb_driver *driver = driver_of(intf);
853c24f7
BM
229 struct qmi_wwan_state *info = (void *)&dev->data;
230
231 BUILD_BUG_ON((sizeof(((struct usbnet *)0)->data) < sizeof(struct qmi_wwan_state)));
c3ecb08a 232
b701f16d
BM
233 /* set up initial state */
234 info->control = intf;
235 info->data = intf;
423ce8ca 236
bd877e48 237 /* and a number of CDC descriptors */
423ce8ca
BM
238 while (len > 3) {
239 struct usb_descriptor_header *h = (void *)buf;
240
241 /* ignore any misplaced descriptors */
242 if (h->bDescriptorType != USB_DT_CS_INTERFACE)
243 goto next_desc;
244
245 /* buf[2] is CDC descriptor subtype */
246 switch (buf[2]) {
247 case USB_CDC_HEADER_TYPE:
248 if (found & 1 << USB_CDC_HEADER_TYPE) {
249 dev_dbg(&intf->dev, "extra CDC header\n");
250 goto err;
251 }
252 if (h->bLength != sizeof(struct usb_cdc_header_desc)) {
253 dev_dbg(&intf->dev, "CDC header len %u\n", h->bLength);
254 goto err;
255 }
256 break;
257 case USB_CDC_UNION_TYPE:
258 if (found & 1 << USB_CDC_UNION_TYPE) {
259 dev_dbg(&intf->dev, "extra CDC union\n");
260 goto err;
261 }
262 if (h->bLength != sizeof(struct usb_cdc_union_desc)) {
263 dev_dbg(&intf->dev, "CDC union len %u\n", h->bLength);
264 goto err;
265 }
266 cdc_union = (struct usb_cdc_union_desc *)buf;
267 break;
268 case USB_CDC_ETHERNET_TYPE:
269 if (found & 1 << USB_CDC_ETHERNET_TYPE) {
270 dev_dbg(&intf->dev, "extra CDC ether\n");
271 goto err;
272 }
273 if (h->bLength != sizeof(struct usb_cdc_ether_desc)) {
274 dev_dbg(&intf->dev, "CDC ether len %u\n", h->bLength);
275 goto err;
276 }
277 cdc_ether = (struct usb_cdc_ether_desc *)buf;
278 break;
279 }
280
281 /*
282 * Remember which CDC functional descriptors we've seen. Works
283 * for all types we care about, of which USB_CDC_ETHERNET_TYPE
284 * (0x0f) is the highest numbered
285 */
286 if (buf[2] < 32)
287 found |= 1 << buf[2];
288
289next_desc:
290 len -= h->bLength;
291 buf += h->bLength;
292 }
293
b701f16d
BM
294 /* Use separate control and data interfaces if we found a CDC Union */
295 if (cdc_union) {
296 info->data = usb_ifnum_to_if(dev->udev, cdc_union->bSlaveInterface0);
297 if (desc->bInterfaceNumber != cdc_union->bMasterInterface0 || !info->data) {
298 dev_err(&intf->dev, "bogus CDC Union: master=%u, slave=%u\n",
299 cdc_union->bMasterInterface0, cdc_union->bSlaveInterface0);
300 goto err;
301 }
423ce8ca
BM
302 }
303
304 /* errors aren't fatal - we can live with the dynamic address */
305 if (cdc_ether) {
306 dev->hard_mtu = le16_to_cpu(cdc_ether->wMaxSegmentSize);
307 usbnet_get_ethernet_addr(dev, cdc_ether->iMACAddress);
308 }
309
230718bd 310 /* claim data interface and set it up */
b701f16d
BM
311 if (info->control != info->data) {
312 status = usb_driver_claim_interface(driver, info->data, dev);
313 if (status < 0)
314 goto err;
315 }
423ce8ca 316
230718bd 317 status = qmi_wwan_register_subdriver(dev);
bd877e48 318 if (status < 0 && info->control != info->data) {
230718bd
BM
319 usb_set_intfdata(info->data, NULL);
320 usb_driver_release_interface(driver, info->data);
321 }
423ce8ca 322
cc6ba5fd
BM
323 /* Never use the same address on both ends of the link, even
324 * if the buggy firmware told us to.
325 */
7367d0b5 326 if (ether_addr_equal(dev->net->dev_addr, default_modem_addr))
cc6ba5fd
BM
327 eth_hw_addr_random(dev->net);
328
6ff509af
BM
329 /* make MAC addr easily distinguishable from an IP header */
330 if (possibly_iphdr(dev->net->dev_addr)) {
331 dev->net->dev_addr[0] |= 0x02; /* set local assignment bit */
332 dev->net->dev_addr[0] &= 0xbf; /* clear "IP" bit */
333 }
334 dev->net->netdev_ops = &qmi_wwan_netdev_ops;
423ce8ca
BM
335err:
336 return status;
337}
338
230718bd 339static void qmi_wwan_unbind(struct usbnet *dev, struct usb_interface *intf)
c3ecb08a 340{
853c24f7 341 struct qmi_wwan_state *info = (void *)&dev->data;
230718bd
BM
342 struct usb_driver *driver = driver_of(intf);
343 struct usb_interface *other;
c3ecb08a 344
853c24f7 345 if (info->subdriver && info->subdriver->disconnect)
230718bd
BM
346 info->subdriver->disconnect(info->control);
347
348 /* allow user to unbind using either control or data */
349 if (intf == info->control)
350 other = info->data;
351 else
352 other = info->control;
353
354 /* only if not shared */
355 if (other && intf != other) {
356 usb_set_intfdata(other, NULL);
357 usb_driver_release_interface(driver, other);
358 }
c3ecb08a 359
853c24f7 360 info->subdriver = NULL;
230718bd
BM
361 info->data = NULL;
362 info->control = NULL;
c3ecb08a
BM
363}
364
365/* suspend/resume wrappers calling both usbnet and the cdc-wdm
366 * subdriver if present.
367 *
368 * NOTE: cdc-wdm also supports pre/post_reset, but we cannot provide
369 * wrappers for those without adding usbnet reset support first.
370 */
371static int qmi_wwan_suspend(struct usb_interface *intf, pm_message_t message)
372{
373 struct usbnet *dev = usb_get_intfdata(intf);
853c24f7 374 struct qmi_wwan_state *info = (void *)&dev->data;
c3ecb08a
BM
375 int ret;
376
81b50be0
ML
377 /*
378 * Both usbnet_suspend() and subdriver->suspend() MUST return 0
379 * in system sleep context, otherwise, the resume callback has
380 * to recover device from previous suspend failure.
381 */
c3ecb08a
BM
382 ret = usbnet_suspend(intf, message);
383 if (ret < 0)
384 goto err;
385
8624dd2a 386 if (intf == info->control && info->subdriver && info->subdriver->suspend)
853c24f7 387 ret = info->subdriver->suspend(intf, message);
c3ecb08a
BM
388 if (ret < 0)
389 usbnet_resume(intf);
390err:
391 return ret;
392}
393
394static int qmi_wwan_resume(struct usb_interface *intf)
395{
396 struct usbnet *dev = usb_get_intfdata(intf);
853c24f7 397 struct qmi_wwan_state *info = (void *)&dev->data;
c3ecb08a 398 int ret = 0;
8624dd2a 399 bool callsub = (intf == info->control && info->subdriver && info->subdriver->resume);
c3ecb08a 400
8624dd2a 401 if (callsub)
853c24f7 402 ret = info->subdriver->resume(intf);
c3ecb08a
BM
403 if (ret < 0)
404 goto err;
405 ret = usbnet_resume(intf);
8624dd2a 406 if (ret < 0 && callsub && info->subdriver->suspend)
853c24f7 407 info->subdriver->suspend(intf, PMSG_SUSPEND);
c3ecb08a
BM
408err:
409 return ret;
410}
411
423ce8ca 412static const struct driver_info qmi_wwan_info = {
a40345b5 413 .description = "WWAN/QMI device",
423ce8ca
BM
414 .flags = FLAG_WWAN,
415 .bind = qmi_wwan_bind,
230718bd 416 .unbind = qmi_wwan_unbind,
423ce8ca 417 .manage_power = qmi_wwan_manage_power,
6ff509af 418 .rx_fixup = qmi_wwan_rx_fixup,
423ce8ca
BM
419};
420
421#define HUAWEI_VENDOR_ID 0x12D1
b9f90eb2 422
03304bcb
BM
423/* map QMI/wwan function by a fixed interface number */
424#define QMI_FIXED_INTF(vend, prod, num) \
425 USB_DEVICE_INTERFACE_NUMBER(vend, prod, num), \
bd877e48 426 .driver_info = (unsigned long)&qmi_wwan_info
03304bcb 427
b9f90eb2
BM
428/* Gobi 1000 QMI/wwan interface number is 3 according to qcserial */
429#define QMI_GOBI1K_DEVICE(vend, prod) \
03304bcb 430 QMI_FIXED_INTF(vend, prod, 3)
b9f90eb2 431
03304bcb 432/* Gobi 2000/3000 QMI/wwan interface number is 0 according to qcserial */
b086cf04 433#define QMI_GOBI_DEVICE(vend, prod) \
03304bcb 434 QMI_FIXED_INTF(vend, prod, 0)
423ce8ca
BM
435
436static const struct usb_device_id products[] = {
03304bcb 437 /* 1. CDC ECM like devices match on the control interface */
c3ecb08a 438 { /* Huawei E392, E398 and possibly others sharing both device id and more... */
5ea42963 439 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 9),
c3ecb08a
BM
440 .driver_info = (unsigned long)&qmi_wwan_info,
441 },
88c16dc3 442 { /* Vodafone/Huawei K5005 (12d1:14c8) and similar modems */
5ea42963 443 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 57),
88c16dc3
BM
444 .driver_info = (unsigned long)&qmi_wwan_info,
445 },
e21b9d03
BM
446 { /* HUAWEI_INTERFACE_NDIS_CONTROL_QUALCOMM */
447 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 0x01, 0x69),
448 .driver_info = (unsigned long)&qmi_wwan_info,
449 },
03304bcb
BM
450
451 /* 2. Combined interface devices matching on class+protocol */
9db273f4 452 { /* Huawei E367 and possibly others in "Windows mode" */
42d94dcb
BM
453 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 7),
454 .driver_info = (unsigned long)&qmi_wwan_info,
455 },
03304bcb 456 { /* Huawei E392, E398 and possibly others in "Windows mode" */
5ea42963 457 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 17),
bd877e48 458 .driver_info = (unsigned long)&qmi_wwan_info,
c3ecb08a 459 },
e21b9d03
BM
460 { /* HUAWEI_NDIS_SINGLE_INTERFACE_VDF */
461 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 0x01, 0x37),
462 .driver_info = (unsigned long)&qmi_wwan_info,
463 },
464 { /* HUAWEI_INTERFACE_NDIS_HW_QUALCOMM */
465 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 0x01, 0x67),
466 .driver_info = (unsigned long)&qmi_wwan_info,
467 },
9db273f4 468 { /* Pantech UML290, P4200 and more */
42d94dcb 469 USB_VENDOR_AND_INTERFACE_INFO(0x106c, USB_CLASS_VENDOR_SPEC, 0xf0, 0xff),
bd877e48 470 .driver_info = (unsigned long)&qmi_wwan_info,
b086cf04 471 },
10cbc1d9 472 { /* Pantech UML290 - newer firmware */
42d94dcb 473 USB_VENDOR_AND_INTERFACE_INFO(0x106c, USB_CLASS_VENDOR_SPEC, 0xf1, 0xff),
bd877e48 474 .driver_info = (unsigned long)&qmi_wwan_info,
10cbc1d9 475 },
f8295ec2
DW
476 { /* Novatel USB551L and MC551 */
477 USB_DEVICE_AND_INTERFACE_INFO(0x1410, 0xb001,
478 USB_CLASS_COMM,
479 USB_CDC_SUBCLASS_ETHERNET,
480 USB_CDC_PROTO_NONE),
481 .driver_info = (unsigned long)&qmi_wwan_info,
482 },
483 { /* Novatel E362 */
484 USB_DEVICE_AND_INTERFACE_INFO(0x1410, 0x9010,
485 USB_CLASS_COMM,
486 USB_CDC_SUBCLASS_ETHERNET,
487 USB_CDC_PROTO_NONE),
488 .driver_info = (unsigned long)&qmi_wwan_info,
489 },
0370acd4
DW
490 { /* Dell Wireless 5800 (Novatel E362) */
491 USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x8195,
492 USB_CLASS_COMM,
493 USB_CDC_SUBCLASS_ETHERNET,
494 USB_CDC_PROTO_NONE),
495 .driver_info = (unsigned long)&qmi_wwan_info,
496 },
497 { /* Dell Wireless 5800 V2 (Novatel E362) */
498 USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x8196,
499 USB_CLASS_COMM,
45d213f5
DW
500 USB_CDC_SUBCLASS_ETHERNET,
501 USB_CDC_PROTO_NONE),
502 .driver_info = (unsigned long)&qmi_wwan_info,
503 },
7fdb7846
DW
504 { /* Dell Wireless 5804 (Novatel E371) */
505 USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x819b,
506 USB_CLASS_COMM,
507 USB_CDC_SUBCLASS_ETHERNET,
508 USB_CDC_PROTO_NONE),
509 .driver_info = (unsigned long)&qmi_wwan_info,
510 },
45d213f5
DW
511 { /* ADU960S */
512 USB_DEVICE_AND_INTERFACE_INFO(0x16d5, 0x650a,
513 USB_CLASS_COMM,
0370acd4
DW
514 USB_CDC_SUBCLASS_ETHERNET,
515 USB_CDC_PROTO_NONE),
516 .driver_info = (unsigned long)&qmi_wwan_info,
517 },
b9f90eb2 518
03304bcb 519 /* 3. Combined interface devices matching on interface number */
1bf014e5 520 {QMI_FIXED_INTF(0x0408, 0xea42, 4)}, /* Yota / Megafon M100-1 */
ba695af0 521 {QMI_FIXED_INTF(0x12d1, 0x140c, 1)}, /* Huawei E173 */
c2020be3 522 {QMI_FIXED_INTF(0x12d1, 0x14ac, 1)}, /* Huawei E1820 */
c6846ee1
BM
523 {QMI_FIXED_INTF(0x19d2, 0x0002, 1)},
524 {QMI_FIXED_INTF(0x19d2, 0x0012, 1)},
525 {QMI_FIXED_INTF(0x19d2, 0x0017, 3)},
d8eb8f99 526 {QMI_FIXED_INTF(0x19d2, 0x0019, 3)}, /* ONDA MT689DC */
c6846ee1
BM
527 {QMI_FIXED_INTF(0x19d2, 0x0021, 4)},
528 {QMI_FIXED_INTF(0x19d2, 0x0025, 1)},
529 {QMI_FIXED_INTF(0x19d2, 0x0031, 4)},
530 {QMI_FIXED_INTF(0x19d2, 0x0042, 4)},
531 {QMI_FIXED_INTF(0x19d2, 0x0049, 5)},
532 {QMI_FIXED_INTF(0x19d2, 0x0052, 4)},
03304bcb 533 {QMI_FIXED_INTF(0x19d2, 0x0055, 1)}, /* ZTE (Vodafone) K3520-Z */
c6846ee1 534 {QMI_FIXED_INTF(0x19d2, 0x0058, 4)},
03304bcb
BM
535 {QMI_FIXED_INTF(0x19d2, 0x0063, 4)}, /* ZTE (Vodafone) K3565-Z */
536 {QMI_FIXED_INTF(0x19d2, 0x0104, 4)}, /* ZTE (Vodafone) K4505-Z */
c6846ee1
BM
537 {QMI_FIXED_INTF(0x19d2, 0x0113, 5)},
538 {QMI_FIXED_INTF(0x19d2, 0x0118, 5)},
539 {QMI_FIXED_INTF(0x19d2, 0x0121, 5)},
540 {QMI_FIXED_INTF(0x19d2, 0x0123, 4)},
541 {QMI_FIXED_INTF(0x19d2, 0x0124, 5)},
542 {QMI_FIXED_INTF(0x19d2, 0x0125, 6)},
543 {QMI_FIXED_INTF(0x19d2, 0x0126, 5)},
544 {QMI_FIXED_INTF(0x19d2, 0x0130, 1)},
545 {QMI_FIXED_INTF(0x19d2, 0x0133, 3)},
546 {QMI_FIXED_INTF(0x19d2, 0x0141, 5)},
42d94dcb 547 {QMI_FIXED_INTF(0x19d2, 0x0157, 5)}, /* ZTE MF683 */
c6846ee1 548 {QMI_FIXED_INTF(0x19d2, 0x0158, 3)},
03304bcb 549 {QMI_FIXED_INTF(0x19d2, 0x0167, 4)}, /* ZTE MF820D */
c6846ee1
BM
550 {QMI_FIXED_INTF(0x19d2, 0x0168, 4)},
551 {QMI_FIXED_INTF(0x19d2, 0x0176, 3)},
552 {QMI_FIXED_INTF(0x19d2, 0x0178, 3)},
553 {QMI_FIXED_INTF(0x19d2, 0x0191, 4)}, /* ZTE EuFi890 */
554 {QMI_FIXED_INTF(0x19d2, 0x0199, 1)}, /* ZTE MF820S */
555 {QMI_FIXED_INTF(0x19d2, 0x0200, 1)},
556 {QMI_FIXED_INTF(0x19d2, 0x0257, 3)}, /* ZTE MF821 */
c1acd709 557 {QMI_FIXED_INTF(0x19d2, 0x0265, 4)}, /* ONDA MT8205 4G LTE */
f8b84034 558 {QMI_FIXED_INTF(0x19d2, 0x0284, 4)}, /* ZTE MF880 */
03304bcb 559 {QMI_FIXED_INTF(0x19d2, 0x0326, 4)}, /* ZTE MF821D */
0decc64b 560 {QMI_FIXED_INTF(0x19d2, 0x0412, 4)}, /* Telewell TW-LTE 4G */
03304bcb
BM
561 {QMI_FIXED_INTF(0x19d2, 0x1008, 4)}, /* ZTE (Vodafone) K3570-Z */
562 {QMI_FIXED_INTF(0x19d2, 0x1010, 4)}, /* ZTE (Vodafone) K3571-Z */
c6846ee1 563 {QMI_FIXED_INTF(0x19d2, 0x1012, 4)},
10cbc1d9 564 {QMI_FIXED_INTF(0x19d2, 0x1018, 3)}, /* ZTE (Vodafone) K5006-Z */
c6846ee1
BM
565 {QMI_FIXED_INTF(0x19d2, 0x1021, 2)},
566 {QMI_FIXED_INTF(0x19d2, 0x1245, 4)},
567 {QMI_FIXED_INTF(0x19d2, 0x1247, 4)},
568 {QMI_FIXED_INTF(0x19d2, 0x1252, 4)},
569 {QMI_FIXED_INTF(0x19d2, 0x1254, 4)},
570 {QMI_FIXED_INTF(0x19d2, 0x1255, 3)},
571 {QMI_FIXED_INTF(0x19d2, 0x1255, 4)},
572 {QMI_FIXED_INTF(0x19d2, 0x1256, 4)},
573 {QMI_FIXED_INTF(0x19d2, 0x1401, 2)},
03304bcb 574 {QMI_FIXED_INTF(0x19d2, 0x1402, 2)}, /* ZTE MF60 */
c6846ee1
BM
575 {QMI_FIXED_INTF(0x19d2, 0x1424, 2)},
576 {QMI_FIXED_INTF(0x19d2, 0x1425, 2)},
577 {QMI_FIXED_INTF(0x19d2, 0x1426, 2)}, /* ZTE MF91 */
03304bcb 578 {QMI_FIXED_INTF(0x19d2, 0x2002, 4)}, /* ZTE (Vodafone) K3765-Z */
9b469a60
BM
579 {QMI_FIXED_INTF(0x0f3d, 0x68a2, 8)}, /* Sierra Wireless MC7700 */
580 {QMI_FIXED_INTF(0x114f, 0x68a2, 8)}, /* Sierra Wireless MC7750 */
03304bcb
BM
581 {QMI_FIXED_INTF(0x1199, 0x68a2, 8)}, /* Sierra Wireless MC7710 in QMI mode */
582 {QMI_FIXED_INTF(0x1199, 0x68a2, 19)}, /* Sierra Wireless MC7710 in QMI mode */
9b469a60 583 {QMI_FIXED_INTF(0x1199, 0x901c, 8)}, /* Sierra Wireless EM7700 */
68172668 584 {QMI_FIXED_INTF(0x1bbb, 0x011e, 4)}, /* Telekom Speedstick LTE II (Alcatel One Touch L100V LTE) */
3022551b 585 {QMI_FIXED_INTF(0x2357, 0x0201, 4)}, /* TP-LINK HSUPA Modem MA180 */
d0b5e516 586 {QMI_FIXED_INTF(0x2357, 0x9000, 4)}, /* TP-LINK MA260 */
3d6d7ab5 587 {QMI_FIXED_INTF(0x1bc7, 0x1200, 5)}, /* Telit LE920 */
bcef9a8f 588 {QMI_FIXED_INTF(0x1e2d, 0x12d1, 4)}, /* Cinterion PLxx */
03304bcb
BM
589
590 /* 4. Gobi 1000 devices */
b9f90eb2
BM
591 {QMI_GOBI1K_DEVICE(0x05c6, 0x9212)}, /* Acer Gobi Modem Device */
592 {QMI_GOBI1K_DEVICE(0x03f0, 0x1f1d)}, /* HP un2400 Gobi Modem Device */
b9f90eb2
BM
593 {QMI_GOBI1K_DEVICE(0x04da, 0x250d)}, /* Panasonic Gobi Modem device */
594 {QMI_GOBI1K_DEVICE(0x413c, 0x8172)}, /* Dell Gobi Modem device */
8afe3dc8
DW
595 {QMI_GOBI1K_DEVICE(0x1410, 0xa001)}, /* Novatel/Verizon USB-1000 */
596 {QMI_GOBI1K_DEVICE(0x1410, 0xa002)}, /* Novatel Gobi Modem device */
597 {QMI_GOBI1K_DEVICE(0x1410, 0xa003)}, /* Novatel Gobi Modem device */
598 {QMI_GOBI1K_DEVICE(0x1410, 0xa004)}, /* Novatel Gobi Modem device */
599 {QMI_GOBI1K_DEVICE(0x1410, 0xa005)}, /* Novatel Gobi Modem device */
600 {QMI_GOBI1K_DEVICE(0x1410, 0xa006)}, /* Novatel Gobi Modem device */
601 {QMI_GOBI1K_DEVICE(0x1410, 0xa007)}, /* Novatel Gobi Modem device */
b9f90eb2
BM
602 {QMI_GOBI1K_DEVICE(0x0b05, 0x1776)}, /* Asus Gobi Modem device */
603 {QMI_GOBI1K_DEVICE(0x19d2, 0xfff3)}, /* ONDA Gobi Modem device */
604 {QMI_GOBI1K_DEVICE(0x05c6, 0x9001)}, /* Generic Gobi Modem device */
605 {QMI_GOBI1K_DEVICE(0x05c6, 0x9002)}, /* Generic Gobi Modem device */
606 {QMI_GOBI1K_DEVICE(0x05c6, 0x9202)}, /* Generic Gobi Modem device */
607 {QMI_GOBI1K_DEVICE(0x05c6, 0x9203)}, /* Generic Gobi Modem device */
608 {QMI_GOBI1K_DEVICE(0x05c6, 0x9222)}, /* Generic Gobi Modem device */
609 {QMI_GOBI1K_DEVICE(0x05c6, 0x9009)}, /* Generic Gobi Modem device */
610
03304bcb 611 /* 5. Gobi 2000 and 3000 devices */
b086cf04 612 {QMI_GOBI_DEVICE(0x413c, 0x8186)}, /* Dell Gobi 2000 Modem device (N0218, VU936) */
50022005 613 {QMI_GOBI_DEVICE(0x413c, 0x8194)}, /* Dell Gobi 3000 Composite */
b086cf04 614 {QMI_GOBI_DEVICE(0x05c6, 0x920b)}, /* Generic Gobi 2000 Modem device */
50022005 615 {QMI_GOBI_DEVICE(0x05c6, 0x920d)}, /* Gobi 3000 Composite */
b086cf04
BM
616 {QMI_GOBI_DEVICE(0x05c6, 0x9225)}, /* Sony Gobi 2000 Modem device (N0279, VU730) */
617 {QMI_GOBI_DEVICE(0x05c6, 0x9245)}, /* Samsung Gobi 2000 Modem device (VL176) */
618 {QMI_GOBI_DEVICE(0x03f0, 0x251d)}, /* HP Gobi 2000 Modem device (VP412) */
619 {QMI_GOBI_DEVICE(0x05c6, 0x9215)}, /* Acer Gobi 2000 Modem device (VP413) */
620 {QMI_GOBI_DEVICE(0x05c6, 0x9265)}, /* Asus Gobi 2000 Modem device (VR305) */
621 {QMI_GOBI_DEVICE(0x05c6, 0x9235)}, /* Top Global Gobi 2000 Modem device (VR306) */
622 {QMI_GOBI_DEVICE(0x05c6, 0x9275)}, /* iRex Technologies Gobi 2000 Modem device (VR307) */
aa3aba1c 623 {QMI_GOBI_DEVICE(0x0af0, 0x8120)}, /* Option GTM681W */
9b469a60
BM
624 {QMI_GOBI_DEVICE(0x1199, 0x68a5)}, /* Sierra Wireless Modem */
625 {QMI_GOBI_DEVICE(0x1199, 0x68a9)}, /* Sierra Wireless Modem */
b086cf04
BM
626 {QMI_GOBI_DEVICE(0x1199, 0x9001)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
627 {QMI_GOBI_DEVICE(0x1199, 0x9002)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
628 {QMI_GOBI_DEVICE(0x1199, 0x9003)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
629 {QMI_GOBI_DEVICE(0x1199, 0x9004)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
630 {QMI_GOBI_DEVICE(0x1199, 0x9005)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
631 {QMI_GOBI_DEVICE(0x1199, 0x9006)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
632 {QMI_GOBI_DEVICE(0x1199, 0x9007)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
633 {QMI_GOBI_DEVICE(0x1199, 0x9008)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
634 {QMI_GOBI_DEVICE(0x1199, 0x9009)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
635 {QMI_GOBI_DEVICE(0x1199, 0x900a)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
636 {QMI_GOBI_DEVICE(0x1199, 0x9011)}, /* Sierra Wireless Gobi 2000 Modem device (MC8305) */
637 {QMI_GOBI_DEVICE(0x16d8, 0x8002)}, /* CMDTech Gobi 2000 Modem device (VU922) */
638 {QMI_GOBI_DEVICE(0x05c6, 0x9205)}, /* Gobi 2000 Modem device */
639 {QMI_GOBI_DEVICE(0x1199, 0x9013)}, /* Sierra Wireless Gobi 3000 Modem device (MC8355) */
b48d6f8b 640 {QMI_GOBI_DEVICE(0x03f0, 0x371d)}, /* HP un2430 Mobile Broadband Module */
5e071b5d
BM
641 {QMI_GOBI_DEVICE(0x1199, 0x9015)}, /* Sierra Wireless Gobi 3000 Modem device */
642 {QMI_GOBI_DEVICE(0x1199, 0x9019)}, /* Sierra Wireless Gobi 3000 Modem device */
9b469a60 643 {QMI_GOBI_DEVICE(0x1199, 0x901b)}, /* Sierra Wireless MC7770 */
50022005 644 {QMI_GOBI_DEVICE(0x12d1, 0x14f1)}, /* Sony Gobi 3000 Composite */
fa026e22 645 {QMI_GOBI_DEVICE(0x1410, 0xa021)}, /* Foxconn Gobi 3000 Modem device (Novatel E396) */
9b469a60 646
b086cf04 647 { } /* END */
423ce8ca
BM
648};
649MODULE_DEVICE_TABLE(usb, products);
650
1817e83d
BM
651static int qmi_wwan_probe(struct usb_interface *intf, const struct usb_device_id *prod)
652{
653 struct usb_device_id *id = (struct usb_device_id *)prod;
654
655 /* Workaround to enable dynamic IDs. This disables usbnet
656 * blacklisting functionality. Which, if required, can be
657 * reimplemented here by using a magic "blacklist" value
658 * instead of 0 in the static device id table
659 */
660 if (!id->driver_info) {
661 dev_dbg(&intf->dev, "setting defaults for dynamic device id\n");
bd877e48 662 id->driver_info = (unsigned long)&qmi_wwan_info;
1817e83d
BM
663 }
664
665 return usbnet_probe(intf, id);
666}
667
423ce8ca
BM
668static struct usb_driver qmi_wwan_driver = {
669 .name = "qmi_wwan",
670 .id_table = products,
1817e83d 671 .probe = qmi_wwan_probe,
423ce8ca 672 .disconnect = usbnet_disconnect,
c3ecb08a
BM
673 .suspend = qmi_wwan_suspend,
674 .resume = qmi_wwan_resume,
675 .reset_resume = qmi_wwan_resume,
423ce8ca 676 .supports_autosuspend = 1,
e1f12eb6 677 .disable_hub_initiated_lpm = 1,
423ce8ca
BM
678};
679
677a3d60 680module_usb_driver(qmi_wwan_driver);
423ce8ca
BM
681
682MODULE_AUTHOR("Bjørn Mork <bjorn@mork.no>");
683MODULE_DESCRIPTION("Qualcomm MSM Interface (QMI) WWAN driver");
684MODULE_LICENSE("GPL");
This page took 0.184217 seconds and 5 git commands to generate.