update/add new 3G modem modules
[tomato.git] / release / src-rt / linux / linux-2.6 / drivers / net / usb / qmi_wwan.c
blobf9a542f4be0a35e8709d81269935f2988b7b8afe
1 /*
2 * Copyright (c) 2012 Bjørn Mork <bjorn@mork.no>
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)
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.
13 #include <linux/module.h>
14 #include <linux/netdevice.h>
15 #include <linux/ethtool.h>
16 #include <linux/etherdevice.h>
17 #include <linux/mii.h>
18 #include <linux/usb.h>
20 #include "usbnet.h"
21 #include <linux/usb/cdc.h>
22 #include <linux/usb/cdc-wdm.h>
24 /* This driver supports wwan (3G/LTE/?) devices using a vendor
25 * specific management protocol called Qualcomm MSM Interface (QMI) -
26 * in addition to the more common AT commands over serial interface
27 * management
29 * QMI is wrapped in CDC, using CDC encapsulated commands on the
30 * control ("master") interface of a two-interface CDC Union
31 * resembling standard CDC ECM. The devices do not use the control
32 * interface for any other CDC messages. Most likely because the
33 * management protocol is used in place of the standard CDC
34 * notifications NOTIFY_NETWORK_CONNECTION and NOTIFY_SPEED_CHANGE
36 * Alternatively, control and data functions can be combined in a
37 * single USB interface.
39 * Handling a protocol like QMI is out of the scope for any driver.
40 * It is exported as a character device using the cdc-wdm driver as
41 * a subdriver, enabling userspace applications ("modem managers") to
42 * handle it.
44 * These devices may alternatively/additionally be configured using AT
45 * commands on a serial interface
48 /* driver specific data */
49 struct qmi_wwan_state {
50 struct usb_driver *subdriver;
51 atomic_t pmcount;
52 unsigned long unused;
53 struct usb_interface *control;
54 struct usb_interface *data;
57 /* default ethernet address used by the modem */
58 static const u8 default_modem_addr[ETH_ALEN] = {0x02, 0x50, 0xf3};
60 /* Make up an ethernet header if the packet doesn't have one.
62 * A firmware bug common among several devices cause them to send raw
63 * IP packets under some circumstances. There is no way for the
64 * driver/host to know when this will happen. And even when the bug
65 * hits, some packets will still arrive with an intact header.
67 * The supported devices are only capably of sending IPv4, IPv6 and
68 * ARP packets on a point-to-point link. Any packet with an ethernet
69 * header will have either our address or a broadcast/multicast
70 * address as destination. ARP packets will always have a header.
72 * This means that this function will reliably add the appropriate
73 * header iff necessary, provided our hardware address does not start
74 * with 4 or 6.
76 * Another common firmware bug results in all packets being addressed
77 * to 00:a0:c6:00:00:00 despite the host address being different.
78 * This function will also fixup such packets.
80 static int qmi_wwan_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
82 __be16 proto;
84 /* usbnet rx_complete guarantees that skb->len is at least
85 * hard_header_len, so we can inspect the dest address without
86 * checking skb->len
88 switch (skb->data[0] & 0xf0) {
89 case 0x40:
90 proto = htons(ETH_P_IP);
91 break;
92 case 0x60:
93 proto = htons(ETH_P_IPV6);
94 break;
95 case 0x00:
96 if (is_multicast_ether_addr(skb->data))
97 return 1;
98 /* possibly bogus destination - rewrite just in case */
99 skb_reset_mac_header(skb);
100 goto fix_dest;
101 default:
102 /* pass along other packets without modifications */
103 return 1;
105 if (skb_headroom(skb) < ETH_HLEN)
106 return 0;
107 skb_push(skb, ETH_HLEN);
108 skb_reset_mac_header(skb);
109 eth_hdr(skb)->h_proto = proto;
110 memset(eth_hdr(skb)->h_source, 0, ETH_ALEN);
111 fix_dest:
112 memcpy(eth_hdr(skb)->h_dest, dev->net->dev_addr, ETH_ALEN);
113 return 1;
116 /* very simplistic detection of IPv4 or IPv6 headers */
117 static bool possibly_iphdr(const char *data)
119 return (data[0] & 0xd0) == 0x40;
122 /* disallow addresses which may be confused with IP headers */
123 static int qmi_wwan_mac_addr(struct net_device *dev, void *p)
125 struct sockaddr *addr = p;
127 if (netif_running(dev))
128 return -EBUSY;
129 if (!is_valid_ether_addr(addr->sa_data))
130 return -EADDRNOTAVAIL;
131 if (possibly_iphdr(addr->sa_data))
132 return -EADDRNOTAVAIL;
133 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
134 return 0;
137 /* using a counter to merge subdriver requests with our own into a combined state */
138 static int qmi_wwan_manage_power(struct usbnet *dev, int on)
140 struct qmi_wwan_state *info = (void *)&dev->data;
141 int rv = 0;
143 dev_dbg(&dev->intf->dev, "%s() pmcount=%d, on=%d\n", __func__, atomic_read(&info->pmcount), on);
145 if ((on && atomic_add_return(1, &info->pmcount) == 1) || (!on && atomic_dec_and_test(&info->pmcount))) {
146 /* need autopm_get/put here to ensure the usbcore sees the new value */
147 rv = usb_autopm_get_interface(dev->intf);
148 if (rv < 0)
149 goto err;
150 dev->intf->needs_remote_wakeup = on;
151 usb_autopm_put_interface(dev->intf);
153 err:
154 return rv;
157 static int qmi_wwan_cdc_wdm_manage_power(struct usb_interface *intf, int on)
159 struct usbnet *dev = usb_get_intfdata(intf);
161 /* can be called while disconnecting */
162 if (!dev)
163 return 0;
164 return qmi_wwan_manage_power(dev, on);
167 /* collect all three endpoints and register subdriver */
168 static int qmi_wwan_register_subdriver(struct usbnet *dev)
170 int rv;
171 struct usb_driver *subdriver = NULL;
172 struct qmi_wwan_state *info = (void *)&dev->data;
174 /* collect bulk endpoints */
175 rv = usbnet_get_endpoints(dev, info->data);
176 if (rv < 0)
177 goto err;
179 /* update status endpoint if separate control interface */
180 if (info->control != info->data)
181 dev->status = &info->control->cur_altsetting->endpoint[0];
183 /* require interrupt endpoint for subdriver */
184 if (!dev->status) {
185 rv = -EINVAL;
186 goto err;
189 /* for subdriver power management */
190 atomic_set(&info->pmcount, 0);
192 /* register subdriver */
193 subdriver = usb_cdc_wdm_register(info->control, &dev->status->desc, 4096, &qmi_wwan_cdc_wdm_manage_power);
194 if (IS_ERR(subdriver)) {
195 dev_err(&info->control->dev, "subdriver registration failed\n");
196 rv = PTR_ERR(subdriver);
197 goto err;
200 /* prevent usbnet from using status endpoint */
201 dev->status = NULL;
203 /* save subdriver struct for suspend/resume wrappers */
204 info->subdriver = subdriver;
206 err:
207 return rv;
210 static int qmi_wwan_bind(struct usbnet *dev, struct usb_interface *intf)
212 int status = -1;
213 u8 *buf = intf->cur_altsetting->extra;
214 int len = intf->cur_altsetting->extralen;
215 struct usb_interface_descriptor *desc = &intf->cur_altsetting->desc;
216 struct usb_cdc_union_desc *cdc_union = NULL;
217 struct usb_cdc_ether_desc *cdc_ether = NULL;
218 u32 found = 0;
219 struct usb_driver *driver = driver_of(intf);
220 struct qmi_wwan_state *info = (void *)&dev->data;
222 BUILD_BUG_ON((sizeof(((struct usbnet *)0)->data) < sizeof(struct qmi_wwan_state)));
224 /* set up initial state */
225 info->control = intf;
226 info->data = intf;
228 /* and a number of CDC descriptors */
229 while (len > 3) {
230 struct usb_descriptor_header *h = (void *)buf;
232 /* ignore any misplaced descriptors */
233 if (h->bDescriptorType != USB_DT_CS_INTERFACE)
234 goto next_desc;
236 /* buf[2] is CDC descriptor subtype */
237 switch (buf[2]) {
238 case USB_CDC_HEADER_TYPE:
239 if (found & 1 << USB_CDC_HEADER_TYPE) {
240 dev_dbg(&intf->dev, "extra CDC header\n");
241 goto err;
243 if (h->bLength != sizeof(struct usb_cdc_header_desc)) {
244 dev_dbg(&intf->dev, "CDC header len %u\n", h->bLength);
245 goto err;
247 break;
248 case USB_CDC_UNION_TYPE:
249 if (found & 1 << USB_CDC_UNION_TYPE) {
250 dev_dbg(&intf->dev, "extra CDC union\n");
251 goto err;
253 if (h->bLength != sizeof(struct usb_cdc_union_desc)) {
254 dev_dbg(&intf->dev, "CDC union len %u\n", h->bLength);
255 goto err;
257 cdc_union = (struct usb_cdc_union_desc *)buf;
258 break;
259 case USB_CDC_ETHERNET_TYPE:
260 if (found & 1 << USB_CDC_ETHERNET_TYPE) {
261 dev_dbg(&intf->dev, "extra CDC ether\n");
262 goto err;
264 if (h->bLength != sizeof(struct usb_cdc_ether_desc)) {
265 dev_dbg(&intf->dev, "CDC ether len %u\n", h->bLength);
266 goto err;
268 cdc_ether = (struct usb_cdc_ether_desc *)buf;
269 break;
273 * Remember which CDC functional descriptors we've seen. Works
274 * for all types we care about, of which USB_CDC_ETHERNET_TYPE
275 * (0x0f) is the highest numbered
277 if (buf[2] < 32)
278 found |= 1 << buf[2];
280 next_desc:
281 len -= h->bLength;
282 buf += h->bLength;
285 /* Use separate control and data interfaces if we found a CDC Union */
286 if (cdc_union) {
287 info->data = usb_ifnum_to_if(dev->udev, cdc_union->bSlaveInterface0);
288 if (desc->bInterfaceNumber != cdc_union->bMasterInterface0 || !info->data) {
289 dev_err(&intf->dev, "bogus CDC Union: master=%u, slave=%u\n",
290 cdc_union->bMasterInterface0, cdc_union->bSlaveInterface0);
291 goto err;
295 /* errors aren't fatal - we can live with the dynamic address */
296 if (cdc_ether) {
297 dev->hard_mtu = le16_to_cpu(cdc_ether->wMaxSegmentSize);
298 usbnet_get_ethernet_addr(dev, cdc_ether->iMACAddress);
301 /* claim data interface and set it up */
302 if (info->control != info->data) {
303 status = usb_driver_claim_interface(driver, info->data, dev);
304 if (status < 0)
305 goto err;
308 status = qmi_wwan_register_subdriver(dev);
309 if (status < 0 && info->control != info->data) {
310 usb_set_intfdata(info->data, NULL);
311 usb_driver_release_interface(driver, info->data);
314 /* Never use the same address on both ends of the link, even
315 * if the buggy firmware told us to.
317 if (!compare_ether_addr(dev->net->dev_addr, default_modem_addr))
318 random_ether_addr(dev->net->dev_addr);
320 /* make MAC addr easily distinguishable from an IP header */
321 if (possibly_iphdr(dev->net->dev_addr)) {
322 dev->net->dev_addr[0] |= 0x02; /* set local assignment bit */
323 dev->net->dev_addr[0] &= 0xbf; /* clear "IP" bit */
325 dev->net->open = usbnet_open;
326 dev->net->stop = usbnet_stop;
327 dev->net->hard_start_xmit = usbnet_start_xmit;
328 dev->net->tx_timeout = usbnet_tx_timeout;
329 dev->net->change_mtu = usbnet_change_mtu;
330 dev->net->set_mac_address = qmi_wwan_mac_addr;
331 err:
332 return status;
335 static void qmi_wwan_unbind(struct usbnet *dev, struct usb_interface *intf)
337 struct qmi_wwan_state *info = (void *)&dev->data;
338 struct usb_driver *driver = driver_of(intf);
339 struct usb_interface *other;
341 if (info->subdriver && info->subdriver->disconnect)
342 info->subdriver->disconnect(info->control);
344 /* allow user to unbind using either control or data */
345 if (intf == info->control)
346 other = info->data;
347 else
348 other = info->control;
350 /* only if not shared */
351 if (other && intf != other) {
352 usb_set_intfdata(other, NULL);
353 usb_driver_release_interface(driver, other);
356 info->subdriver = NULL;
357 info->data = NULL;
358 info->control = NULL;
361 /* suspend/resume wrappers calling both usbnet and the cdc-wdm
362 * subdriver if present.
364 * NOTE: cdc-wdm also supports pre/post_reset, but we cannot provide
365 * wrappers for those without adding usbnet reset support first.
367 static int qmi_wwan_suspend(struct usb_interface *intf, pm_message_t message)
369 struct usbnet *dev = usb_get_intfdata(intf);
370 struct qmi_wwan_state *info = (void *)&dev->data;
371 int ret;
373 ret = usbnet_suspend(intf, message);
374 if (ret < 0)
375 goto err;
377 if (intf == info->control && info->subdriver && info->subdriver->suspend)
378 ret = info->subdriver->suspend(intf, message);
379 if (ret < 0)
380 usbnet_resume(intf);
381 err:
382 return ret;
385 static int qmi_wwan_resume(struct usb_interface *intf)
387 struct usbnet *dev = usb_get_intfdata(intf);
388 struct qmi_wwan_state *info = (void *)&dev->data;
389 int ret = 0;
390 bool callsub = (intf == info->control && info->subdriver && info->subdriver->resume);
392 if (callsub)
393 ret = info->subdriver->resume(intf);
394 if (ret < 0)
395 goto err;
396 ret = usbnet_resume(intf);
397 if (ret < 0 && callsub && info->subdriver->suspend)
398 info->subdriver->suspend(intf, PMSG_SUSPEND);
399 err:
400 return ret;
403 static const struct driver_info qmi_wwan_info = {
404 .description = "WWAN/QMI device",
405 .flags = 0,
406 .bind = qmi_wwan_bind,
407 .unbind = qmi_wwan_unbind,
408 // .manage_power = qmi_wwan_manage_power,
409 .rx_fixup = qmi_wwan_rx_fixup,
412 #define HUAWEI_VENDOR_ID 0x12D1
414 /* map QMI/wwan function by a fixed interface number */
415 #define QMI_FIXED_INTF(vend, prod, num) \
416 USB_DEVICE_INTERFACE_NUMBER(vend, prod, num), \
417 .driver_info = (unsigned long)&qmi_wwan_info
419 /* Gobi 1000 QMI/wwan interface number is 3 according to qcserial */
420 #define QMI_GOBI1K_DEVICE(vend, prod) \
421 QMI_FIXED_INTF(vend, prod, 3)
423 /* Gobi 2000/3000 QMI/wwan interface number is 0 according to qcserial */
424 #define QMI_GOBI_DEVICE(vend, prod) \
425 QMI_FIXED_INTF(vend, prod, 0)
427 static const struct usb_device_id products[] = {
428 /* 1. CDC ECM like devices match on the control interface */
429 { /* Huawei E392, E398 and possibly others sharing both device id and more... */
430 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 9),
431 .driver_info = (unsigned long)&qmi_wwan_info,
433 { /* Vodafone/Huawei K5005 (12d1:14c8) and similar modems */
434 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 57),
435 .driver_info = (unsigned long)&qmi_wwan_info,
437 { /* HUAWEI_INTERFACE_NDIS_CONTROL_QUALCOMM */
438 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 0x01, 0x69),
439 .driver_info = (unsigned long)&qmi_wwan_info,
442 /* 2. Combined interface devices matching on class+protocol */
443 { /* Huawei E367 and possibly others in "Windows mode" */
444 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 7),
445 .driver_info = (unsigned long)&qmi_wwan_info,
447 { /* Huawei E392, E398 and possibly others in "Windows mode" */
448 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 17),
449 .driver_info = (unsigned long)&qmi_wwan_info,
451 { /* HUAWEI_NDIS_SINGLE_INTERFACE_VDF */
452 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 0x01, 0x37),
453 .driver_info = (unsigned long)&qmi_wwan_info,
455 { /* HUAWEI_INTERFACE_NDIS_HW_QUALCOMM */
456 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 0x01, 0x67),
457 .driver_info = (unsigned long)&qmi_wwan_info,
459 { /* Pantech UML290, P4200 and more */
460 USB_VENDOR_AND_INTERFACE_INFO(0x106c, USB_CLASS_VENDOR_SPEC, 0xf0, 0xff),
461 .driver_info = (unsigned long)&qmi_wwan_info,
463 { /* Pantech UML290 - newer firmware */
464 USB_VENDOR_AND_INTERFACE_INFO(0x106c, USB_CLASS_VENDOR_SPEC, 0xf1, 0xff),
465 .driver_info = (unsigned long)&qmi_wwan_info,
467 { /* Novatel USB551L and MC551 */
468 USB_DEVICE_AND_INTERFACE_INFO(0x1410, 0xb001,
469 USB_CLASS_COMM,
470 USB_CDC_SUBCLASS_ETHERNET,
471 USB_CDC_PROTO_NONE),
472 .driver_info = (unsigned long)&qmi_wwan_info,
474 { /* Novatel E362 */
475 USB_DEVICE_AND_INTERFACE_INFO(0x1410, 0x9010,
476 USB_CLASS_COMM,
477 USB_CDC_SUBCLASS_ETHERNET,
478 USB_CDC_PROTO_NONE),
479 .driver_info = (unsigned long)&qmi_wwan_info,
481 { /* Dell Wireless 5800 (Novatel E362) */
482 USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x8195,
483 USB_CLASS_COMM,
484 USB_CDC_SUBCLASS_ETHERNET,
485 USB_CDC_PROTO_NONE),
486 .driver_info = (unsigned long)&qmi_wwan_info,
488 { /* Dell Wireless 5800 V2 (Novatel E362) */
489 USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x8196,
490 USB_CLASS_COMM,
491 USB_CDC_SUBCLASS_ETHERNET,
492 USB_CDC_PROTO_NONE),
493 .driver_info = (unsigned long)&qmi_wwan_info,
496 /* 3. Combined interface devices matching on interface number */
497 {QMI_FIXED_INTF(0x0408, 0xea42, 4)}, /* Yota / Megafon M100-1 */
498 {QMI_FIXED_INTF(0x12d1, 0x140c, 1)}, /* Huawei E173 */
499 {QMI_FIXED_INTF(0x19d2, 0x0002, 1)},
500 {QMI_FIXED_INTF(0x19d2, 0x0012, 1)},
501 {QMI_FIXED_INTF(0x19d2, 0x0017, 3)},
502 {QMI_FIXED_INTF(0x19d2, 0x0021, 4)},
503 {QMI_FIXED_INTF(0x19d2, 0x0025, 1)},
504 {QMI_FIXED_INTF(0x19d2, 0x0031, 4)},
505 {QMI_FIXED_INTF(0x19d2, 0x0042, 4)},
506 {QMI_FIXED_INTF(0x19d2, 0x0049, 5)},
507 {QMI_FIXED_INTF(0x19d2, 0x0052, 4)},
508 {QMI_FIXED_INTF(0x19d2, 0x0055, 1)}, /* ZTE (Vodafone) K3520-Z */
509 {QMI_FIXED_INTF(0x19d2, 0x0058, 4)},
510 {QMI_FIXED_INTF(0x19d2, 0x0063, 4)}, /* ZTE (Vodafone) K3565-Z */
511 {QMI_FIXED_INTF(0x19d2, 0x0104, 4)}, /* ZTE (Vodafone) K4505-Z */
512 {QMI_FIXED_INTF(0x19d2, 0x0113, 5)},
513 {QMI_FIXED_INTF(0x19d2, 0x0118, 5)},
514 {QMI_FIXED_INTF(0x19d2, 0x0121, 5)},
515 {QMI_FIXED_INTF(0x19d2, 0x0123, 4)},
516 {QMI_FIXED_INTF(0x19d2, 0x0124, 5)},
517 {QMI_FIXED_INTF(0x19d2, 0x0125, 6)},
518 {QMI_FIXED_INTF(0x19d2, 0x0126, 5)},
519 {QMI_FIXED_INTF(0x19d2, 0x0130, 1)},
520 {QMI_FIXED_INTF(0x19d2, 0x0133, 3)},
521 {QMI_FIXED_INTF(0x19d2, 0x0141, 5)},
522 {QMI_FIXED_INTF(0x19d2, 0x0157, 5)}, /* ZTE MF683 */
523 {QMI_FIXED_INTF(0x19d2, 0x0158, 3)},
524 {QMI_FIXED_INTF(0x19d2, 0x0167, 4)}, /* ZTE MF820D */
525 {QMI_FIXED_INTF(0x19d2, 0x0168, 4)},
526 {QMI_FIXED_INTF(0x19d2, 0x0176, 3)},
527 {QMI_FIXED_INTF(0x19d2, 0x0178, 3)},
528 {QMI_FIXED_INTF(0x19d2, 0x0191, 4)}, /* ZTE EuFi890 */
529 {QMI_FIXED_INTF(0x19d2, 0x0199, 1)}, /* ZTE MF820S */
530 {QMI_FIXED_INTF(0x19d2, 0x0200, 1)},
531 {QMI_FIXED_INTF(0x19d2, 0x0257, 3)}, /* ZTE MF821 */
532 {QMI_FIXED_INTF(0x19d2, 0x0265, 4)}, /* ONDA MT8205 4G LTE */
533 {QMI_FIXED_INTF(0x19d2, 0x0284, 4)}, /* ZTE MF880 */
534 {QMI_FIXED_INTF(0x19d2, 0x0326, 4)}, /* ZTE MF821D */
535 {QMI_FIXED_INTF(0x19d2, 0x1008, 4)}, /* ZTE (Vodafone) K3570-Z */
536 {QMI_FIXED_INTF(0x19d2, 0x1010, 4)}, /* ZTE (Vodafone) K3571-Z */
537 {QMI_FIXED_INTF(0x19d2, 0x1012, 4)},
538 {QMI_FIXED_INTF(0x19d2, 0x1018, 3)}, /* ZTE (Vodafone) K5006-Z */
539 {QMI_FIXED_INTF(0x19d2, 0x1021, 2)},
540 {QMI_FIXED_INTF(0x19d2, 0x1245, 4)},
541 {QMI_FIXED_INTF(0x19d2, 0x1247, 4)},
542 {QMI_FIXED_INTF(0x19d2, 0x1252, 4)},
543 {QMI_FIXED_INTF(0x19d2, 0x1254, 4)},
544 {QMI_FIXED_INTF(0x19d2, 0x1255, 3)},
545 {QMI_FIXED_INTF(0x19d2, 0x1255, 4)},
546 {QMI_FIXED_INTF(0x19d2, 0x1256, 4)},
547 {QMI_FIXED_INTF(0x19d2, 0x1401, 2)},
548 {QMI_FIXED_INTF(0x19d2, 0x1402, 2)}, /* ZTE MF60 */
549 {QMI_FIXED_INTF(0x19d2, 0x1424, 2)},
550 {QMI_FIXED_INTF(0x19d2, 0x1425, 2)},
551 {QMI_FIXED_INTF(0x19d2, 0x1426, 2)}, /* ZTE MF91 */
552 {QMI_FIXED_INTF(0x19d2, 0x2002, 4)}, /* ZTE (Vodafone) K3765-Z */
553 {QMI_FIXED_INTF(0x0f3d, 0x68a2, 8)}, /* Sierra Wireless MC7700 */
554 {QMI_FIXED_INTF(0x114f, 0x68a2, 8)}, /* Sierra Wireless MC7750 */
555 {QMI_FIXED_INTF(0x1199, 0x68a2, 8)}, /* Sierra Wireless MC7710 in QMI mode */
556 {QMI_FIXED_INTF(0x1199, 0x68a2, 19)}, /* Sierra Wireless MC7710 in QMI mode */
557 {QMI_FIXED_INTF(0x1199, 0x901c, 8)}, /* Sierra Wireless EM7700 */
558 {QMI_FIXED_INTF(0x1bbb, 0x011e, 4)}, /* Telekom Speedstick LTE II (Alcatel One Touch L100V LTE) */
559 {QMI_FIXED_INTF(0x2357, 0x0201, 4)}, /* TP-LINK HSUPA Modem MA180 */
560 {QMI_FIXED_INTF(0x1bc7, 0x1200, 5)}, /* Telit LE920 */
562 /* 4. Gobi 1000 devices */
563 {QMI_GOBI1K_DEVICE(0x05c6, 0x9212)}, /* Acer Gobi Modem Device */
564 {QMI_GOBI1K_DEVICE(0x03f0, 0x1f1d)}, /* HP un2400 Gobi Modem Device */
565 {QMI_GOBI1K_DEVICE(0x04da, 0x250d)}, /* Panasonic Gobi Modem device */
566 {QMI_GOBI1K_DEVICE(0x413c, 0x8172)}, /* Dell Gobi Modem device */
567 {QMI_GOBI1K_DEVICE(0x1410, 0xa001)}, /* Novatel Gobi Modem device */
568 {QMI_GOBI1K_DEVICE(0x0b05, 0x1776)}, /* Asus Gobi Modem device */
569 {QMI_GOBI1K_DEVICE(0x19d2, 0xfff3)}, /* ONDA Gobi Modem device */
570 {QMI_GOBI1K_DEVICE(0x05c6, 0x9001)}, /* Generic Gobi Modem device */
571 {QMI_GOBI1K_DEVICE(0x05c6, 0x9002)}, /* Generic Gobi Modem device */
572 {QMI_GOBI1K_DEVICE(0x05c6, 0x9202)}, /* Generic Gobi Modem device */
573 {QMI_GOBI1K_DEVICE(0x05c6, 0x9203)}, /* Generic Gobi Modem device */
574 {QMI_GOBI1K_DEVICE(0x05c6, 0x9222)}, /* Generic Gobi Modem device */
575 {QMI_GOBI1K_DEVICE(0x05c6, 0x9009)}, /* Generic Gobi Modem device */
577 /* 5. Gobi 2000 and 3000 devices */
578 {QMI_GOBI_DEVICE(0x413c, 0x8186)}, /* Dell Gobi 2000 Modem device (N0218, VU936) */
579 {QMI_GOBI_DEVICE(0x413c, 0x8194)}, /* Dell Gobi 3000 Composite */
580 {QMI_GOBI_DEVICE(0x05c6, 0x920b)}, /* Generic Gobi 2000 Modem device */
581 {QMI_GOBI_DEVICE(0x05c6, 0x920d)}, /* Gobi 3000 Composite */
582 {QMI_GOBI_DEVICE(0x05c6, 0x9225)}, /* Sony Gobi 2000 Modem device (N0279, VU730) */
583 {QMI_GOBI_DEVICE(0x05c6, 0x9245)}, /* Samsung Gobi 2000 Modem device (VL176) */
584 {QMI_GOBI_DEVICE(0x03f0, 0x251d)}, /* HP Gobi 2000 Modem device (VP412) */
585 {QMI_GOBI_DEVICE(0x05c6, 0x9215)}, /* Acer Gobi 2000 Modem device (VP413) */
586 {QMI_GOBI_DEVICE(0x05c6, 0x9265)}, /* Asus Gobi 2000 Modem device (VR305) */
587 {QMI_GOBI_DEVICE(0x05c6, 0x9235)}, /* Top Global Gobi 2000 Modem device (VR306) */
588 {QMI_GOBI_DEVICE(0x05c6, 0x9275)}, /* iRex Technologies Gobi 2000 Modem device (VR307) */
589 {QMI_GOBI_DEVICE(0x1199, 0x68a5)}, /* Sierra Wireless Modem */
590 {QMI_GOBI_DEVICE(0x1199, 0x68a9)}, /* Sierra Wireless Modem */
591 {QMI_GOBI_DEVICE(0x1199, 0x9001)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
592 {QMI_GOBI_DEVICE(0x1199, 0x9002)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
593 {QMI_GOBI_DEVICE(0x1199, 0x9003)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
594 {QMI_GOBI_DEVICE(0x1199, 0x9004)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
595 {QMI_GOBI_DEVICE(0x1199, 0x9005)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
596 {QMI_GOBI_DEVICE(0x1199, 0x9006)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
597 {QMI_GOBI_DEVICE(0x1199, 0x9007)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
598 {QMI_GOBI_DEVICE(0x1199, 0x9008)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
599 {QMI_GOBI_DEVICE(0x1199, 0x9009)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
600 {QMI_GOBI_DEVICE(0x1199, 0x900a)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
601 {QMI_GOBI_DEVICE(0x1199, 0x9011)}, /* Sierra Wireless Gobi 2000 Modem device (MC8305) */
602 {QMI_FIXED_INTF(0x1199, 0x9011, 5)}, /* alternate interface number!? */
603 {QMI_GOBI_DEVICE(0x16d8, 0x8002)}, /* CMDTech Gobi 2000 Modem device (VU922) */
604 {QMI_GOBI_DEVICE(0x05c6, 0x9205)}, /* Gobi 2000 Modem device */
605 {QMI_GOBI_DEVICE(0x1199, 0x9013)}, /* Sierra Wireless Gobi 3000 Modem device (MC8355) */
606 {QMI_GOBI_DEVICE(0x03f0, 0x371d)}, /* HP un2430 Mobile Broadband Module */
607 {QMI_GOBI_DEVICE(0x1199, 0x9015)}, /* Sierra Wireless Gobi 3000 Modem device */
608 {QMI_GOBI_DEVICE(0x1199, 0x9019)}, /* Sierra Wireless Gobi 3000 Modem device */
609 {QMI_GOBI_DEVICE(0x1199, 0x901b)}, /* Sierra Wireless MC7770 */
610 {QMI_GOBI_DEVICE(0x12d1, 0x14f1)}, /* Sony Gobi 3000 Composite */
611 {QMI_GOBI_DEVICE(0x1410, 0xa021)}, /* Foxconn Gobi 3000 Modem device (Novatel E396) */
613 { } /* END */
615 MODULE_DEVICE_TABLE(usb, products);
617 static int qmi_wwan_probe(struct usb_interface *intf, const struct usb_device_id *prod)
619 struct usb_device_id *id = (struct usb_device_id *)prod;
621 /* Workaround to enable dynamic IDs. This disables usbnet
622 * blacklisting functionality. Which, if required, can be
623 * reimplemented here by using a magic "blacklist" value
624 * instead of 0 in the static device id table
626 if (!id->driver_info) {
627 dev_dbg(&intf->dev, "setting defaults for dynamic device id\n");
628 id->driver_info = (unsigned long)&qmi_wwan_info;
631 return usbnet_probe(intf, id);
634 static struct usb_driver qmi_wwan_driver = {
635 .name = "qmi_wwan",
636 .id_table = products,
637 .probe = qmi_wwan_probe,
638 .disconnect = usbnet_disconnect,
639 .suspend = qmi_wwan_suspend,
640 .resume = qmi_wwan_resume,
641 .reset_resume = qmi_wwan_resume,
642 .supports_autosuspend = 1,
645 static int __init qmi_wwan_init(void)
647 return usb_register(&qmi_wwan_driver);
649 module_init(qmi_wwan_init);
651 static void __exit qmi_wwan_exit(void)
653 usb_deregister(&qmi_wwan_driver);
655 module_exit(qmi_wwan_exit);
657 MODULE_AUTHOR("Bjørn Mork <bjorn@mork.no>");
658 MODULE_DESCRIPTION("Qualcomm MSM Interface (QMI) WWAN driver");
659 MODULE_LICENSE("GPL");