blob: e0a4a2b08e4526a14fc20e64346af85e88623ed2 [file] [log] [blame]
Bjørn Mork423ce8c2012-01-19 15:37:22 +00001/*
2 * Copyright (c) 2012 Bjørn Mork <bjorn@mork.no>
3 *
Bjørn Mork230718b2012-06-19 00:42:01 +00004 * 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 *
Bjørn Mork423ce8c2012-01-19 15:37:22 +00008 * 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>
Bjørn Mork6ff509a2013-04-18 12:57:09 +000016#include <linux/etherdevice.h>
Bjørn Mork423ce8c2012-01-19 15:37:22 +000017#include <linux/mii.h>
18#include <linux/usb.h>
19#include <linux/usb/cdc.h>
20#include <linux/usb/usbnet.h>
Bjørn Morkc3ecb082012-03-09 12:35:05 +010021#include <linux/usb/cdc-wdm.h>
Bjørn Mork423ce8c2012-01-19 15:37:22 +000022
Bjørn Mork230718b2012-06-19 00:42:01 +000023/* This driver supports wwan (3G/LTE/?) devices using a vendor
Bjørn Mork423ce8c2012-01-19 15:37:22 +000024 * 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 *
Bjørn Mork230718b2012-06-19 00:42:01 +000035 * Alternatively, control and data functions can be combined in a
36 * single USB interface.
37 *
Bjørn Mork423ce8c2012-01-19 15:37:22 +000038 * Handling a protocol like QMI is out of the scope for any driver.
Bjørn Mork230718b2012-06-19 00:42:01 +000039 * 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.
Bjørn Mork423ce8c2012-01-19 15:37:22 +000042 *
43 * These devices may alternatively/additionally be configured using AT
Bjørn Mork230718b2012-06-19 00:42:01 +000044 * commands on a serial interface
Bjørn Mork423ce8c2012-01-19 15:37:22 +000045 */
46
Bjørn Mork853c24f2012-06-19 00:41:59 +000047/* driver specific data */
48struct qmi_wwan_state {
49 struct usb_driver *subdriver;
50 atomic_t pmcount;
Bjørn Morkf47cd132012-06-19 00:42:00 +000051 unsigned long unused;
52 struct usb_interface *control;
53 struct usb_interface *data;
Bjørn Mork853c24f2012-06-19 00:41:59 +000054};
55
Bjørn Morkcc6ba5f2013-04-18 12:57:11 +000056/* default ethernet address used by the modem */
57static const u8 default_modem_addr[ETH_ALEN] = {0x02, 0x50, 0xf3};
58
Bjørn Mork6ff509a2013-04-18 12:57:09 +000059/* 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.
Bjørn Mork6483bdc2013-04-18 12:57:10 +000074 *
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.
Bjørn Mork6ff509a2013-04-18 12:57:09 +000078 */
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;
Bjørn Mork6483bdc2013-04-18 12:57:10 +000094 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;
Bjørn Mork6ff509a2013-04-18 12:57:09 +0000100 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);
Bjørn Mork6483bdc2013-04-18 12:57:10 +0000110fix_dest:
Bjørn Mork6ff509a2013-04-18 12:57:09 +0000111 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
Fabio Porceddae0584952013-09-25 11:21:26 +0200146/* using a counter to merge subdriver requests with our own into a
147 * combined state
148 */
Bjørn Morkf47cd132012-06-19 00:42:00 +0000149static int qmi_wwan_manage_power(struct usbnet *dev, int on)
150{
151 struct qmi_wwan_state *info = (void *)&dev->data;
152 int rv = 0;
153
Fabio Porceddae0584952013-09-25 11:21:26 +0200154 dev_dbg(&dev->intf->dev, "%s() pmcount=%d, on=%d\n", __func__,
155 atomic_read(&info->pmcount), on);
Bjørn Morkf47cd132012-06-19 00:42:00 +0000156
Fabio Porceddae0584952013-09-25 11:21:26 +0200157 if ((on && atomic_add_return(1, &info->pmcount) == 1) ||
158 (!on && atomic_dec_and_test(&info->pmcount))) {
159 /* need autopm_get/put here to ensure the usbcore sees
160 * the new value
161 */
Bjørn Morkf47cd132012-06-19 00:42:00 +0000162 rv = usb_autopm_get_interface(dev->intf);
163 if (rv < 0)
164 goto err;
165 dev->intf->needs_remote_wakeup = on;
166 usb_autopm_put_interface(dev->intf);
167 }
168err:
169 return rv;
170}
171
172static int qmi_wwan_cdc_wdm_manage_power(struct usb_interface *intf, int on)
173{
174 struct usbnet *dev = usb_get_intfdata(intf);
David S. Millerb26d3442012-06-28 17:37:00 -0700175
176 /* can be called while disconnecting */
177 if (!dev)
178 return 0;
Bjørn Morkf47cd132012-06-19 00:42:00 +0000179 return qmi_wwan_manage_power(dev, on);
180}
181
182/* collect all three endpoints and register subdriver */
183static int qmi_wwan_register_subdriver(struct usbnet *dev)
184{
185 int rv;
186 struct usb_driver *subdriver = NULL;
187 struct qmi_wwan_state *info = (void *)&dev->data;
188
189 /* collect bulk endpoints */
190 rv = usbnet_get_endpoints(dev, info->data);
191 if (rv < 0)
192 goto err;
193
194 /* update status endpoint if separate control interface */
195 if (info->control != info->data)
196 dev->status = &info->control->cur_altsetting->endpoint[0];
197
198 /* require interrupt endpoint for subdriver */
199 if (!dev->status) {
200 rv = -EINVAL;
201 goto err;
202 }
203
204 /* for subdriver power management */
205 atomic_set(&info->pmcount, 0);
206
207 /* register subdriver */
Fabio Porceddae0584952013-09-25 11:21:26 +0200208 subdriver = usb_cdc_wdm_register(info->control, &dev->status->desc,
209 4096, &qmi_wwan_cdc_wdm_manage_power);
Bjørn Morkf47cd132012-06-19 00:42:00 +0000210 if (IS_ERR(subdriver)) {
211 dev_err(&info->control->dev, "subdriver registration failed\n");
212 rv = PTR_ERR(subdriver);
213 goto err;
214 }
215
216 /* prevent usbnet from using status endpoint */
217 dev->status = NULL;
218
219 /* save subdriver struct for suspend/resume wrappers */
220 info->subdriver = subdriver;
221
222err:
223 return rv;
224}
225
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000226static int qmi_wwan_bind(struct usbnet *dev, struct usb_interface *intf)
227{
228 int status = -1;
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000229 u8 *buf = intf->cur_altsetting->extra;
230 int len = intf->cur_altsetting->extralen;
231 struct usb_interface_descriptor *desc = &intf->cur_altsetting->desc;
232 struct usb_cdc_union_desc *cdc_union = NULL;
233 struct usb_cdc_ether_desc *cdc_ether = NULL;
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000234 u32 found = 0;
Bjørn Mork230718b2012-06-19 00:42:01 +0000235 struct usb_driver *driver = driver_of(intf);
Bjørn Mork853c24f2012-06-19 00:41:59 +0000236 struct qmi_wwan_state *info = (void *)&dev->data;
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100237
Fabio Porceddae0584952013-09-25 11:21:26 +0200238 BUILD_BUG_ON((sizeof(((struct usbnet *)0)->data) <
239 sizeof(struct qmi_wwan_state)));
Bjørn Mork853c24f2012-06-19 00:41:59 +0000240
Bjørn Morkb701f162013-03-13 02:25:17 +0000241 /* set up initial state */
242 info->control = intf;
243 info->data = intf;
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000244
Bjørn Morkbd877e482012-09-07 07:36:07 +0000245 /* and a number of CDC descriptors */
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000246 while (len > 3) {
247 struct usb_descriptor_header *h = (void *)buf;
248
249 /* ignore any misplaced descriptors */
250 if (h->bDescriptorType != USB_DT_CS_INTERFACE)
251 goto next_desc;
252
253 /* buf[2] is CDC descriptor subtype */
254 switch (buf[2]) {
255 case USB_CDC_HEADER_TYPE:
256 if (found & 1 << USB_CDC_HEADER_TYPE) {
257 dev_dbg(&intf->dev, "extra CDC header\n");
258 goto err;
259 }
260 if (h->bLength != sizeof(struct usb_cdc_header_desc)) {
Fabio Porceddae0584952013-09-25 11:21:26 +0200261 dev_dbg(&intf->dev, "CDC header len %u\n",
262 h->bLength);
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000263 goto err;
264 }
265 break;
266 case USB_CDC_UNION_TYPE:
267 if (found & 1 << USB_CDC_UNION_TYPE) {
268 dev_dbg(&intf->dev, "extra CDC union\n");
269 goto err;
270 }
271 if (h->bLength != sizeof(struct usb_cdc_union_desc)) {
Fabio Porceddae0584952013-09-25 11:21:26 +0200272 dev_dbg(&intf->dev, "CDC union len %u\n",
273 h->bLength);
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000274 goto err;
275 }
276 cdc_union = (struct usb_cdc_union_desc *)buf;
277 break;
278 case USB_CDC_ETHERNET_TYPE:
279 if (found & 1 << USB_CDC_ETHERNET_TYPE) {
280 dev_dbg(&intf->dev, "extra CDC ether\n");
281 goto err;
282 }
283 if (h->bLength != sizeof(struct usb_cdc_ether_desc)) {
Fabio Porceddae0584952013-09-25 11:21:26 +0200284 dev_dbg(&intf->dev, "CDC ether len %u\n",
285 h->bLength);
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000286 goto err;
287 }
288 cdc_ether = (struct usb_cdc_ether_desc *)buf;
289 break;
290 }
291
Fabio Porceddae0584952013-09-25 11:21:26 +0200292 /* Remember which CDC functional descriptors we've seen. Works
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000293 * for all types we care about, of which USB_CDC_ETHERNET_TYPE
294 * (0x0f) is the highest numbered
295 */
296 if (buf[2] < 32)
297 found |= 1 << buf[2];
298
299next_desc:
300 len -= h->bLength;
301 buf += h->bLength;
302 }
303
Bjørn Morkb701f162013-03-13 02:25:17 +0000304 /* Use separate control and data interfaces if we found a CDC Union */
305 if (cdc_union) {
Fabio Porceddae0584952013-09-25 11:21:26 +0200306 info->data = usb_ifnum_to_if(dev->udev,
307 cdc_union->bSlaveInterface0);
308 if (desc->bInterfaceNumber != cdc_union->bMasterInterface0 ||
309 !info->data) {
310 dev_err(&intf->dev,
311 "bogus CDC Union: master=%u, slave=%u\n",
312 cdc_union->bMasterInterface0,
313 cdc_union->bSlaveInterface0);
Bjørn Morkb701f162013-03-13 02:25:17 +0000314 goto err;
315 }
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000316 }
317
318 /* errors aren't fatal - we can live with the dynamic address */
319 if (cdc_ether) {
320 dev->hard_mtu = le16_to_cpu(cdc_ether->wMaxSegmentSize);
321 usbnet_get_ethernet_addr(dev, cdc_ether->iMACAddress);
322 }
323
Bjørn Mork230718b2012-06-19 00:42:01 +0000324 /* claim data interface and set it up */
Bjørn Morkb701f162013-03-13 02:25:17 +0000325 if (info->control != info->data) {
326 status = usb_driver_claim_interface(driver, info->data, dev);
327 if (status < 0)
328 goto err;
329 }
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000330
Bjørn Mork230718b2012-06-19 00:42:01 +0000331 status = qmi_wwan_register_subdriver(dev);
Bjørn Morkbd877e482012-09-07 07:36:07 +0000332 if (status < 0 && info->control != info->data) {
Bjørn Mork230718b2012-06-19 00:42:01 +0000333 usb_set_intfdata(info->data, NULL);
334 usb_driver_release_interface(driver, info->data);
335 }
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000336
Bjørn Morkcc6ba5f2013-04-18 12:57:11 +0000337 /* Never use the same address on both ends of the link, even
338 * if the buggy firmware told us to.
339 */
Joe Perches7367d0b2013-09-01 11:51:23 -0700340 if (ether_addr_equal(dev->net->dev_addr, default_modem_addr))
Bjørn Morkcc6ba5f2013-04-18 12:57:11 +0000341 eth_hw_addr_random(dev->net);
342
Bjørn Mork6ff509a2013-04-18 12:57:09 +0000343 /* make MAC addr easily distinguishable from an IP header */
344 if (possibly_iphdr(dev->net->dev_addr)) {
345 dev->net->dev_addr[0] |= 0x02; /* set local assignment bit */
346 dev->net->dev_addr[0] &= 0xbf; /* clear "IP" bit */
347 }
348 dev->net->netdev_ops = &qmi_wwan_netdev_ops;
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000349err:
350 return status;
351}
352
Bjørn Mork230718b2012-06-19 00:42:01 +0000353static void qmi_wwan_unbind(struct usbnet *dev, struct usb_interface *intf)
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100354{
Bjørn Mork853c24f2012-06-19 00:41:59 +0000355 struct qmi_wwan_state *info = (void *)&dev->data;
Bjørn Mork230718b2012-06-19 00:42:01 +0000356 struct usb_driver *driver = driver_of(intf);
357 struct usb_interface *other;
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100358
Bjørn Mork853c24f2012-06-19 00:41:59 +0000359 if (info->subdriver && info->subdriver->disconnect)
Bjørn Mork230718b2012-06-19 00:42:01 +0000360 info->subdriver->disconnect(info->control);
361
362 /* allow user to unbind using either control or data */
363 if (intf == info->control)
364 other = info->data;
365 else
366 other = info->control;
367
368 /* only if not shared */
369 if (other && intf != other) {
370 usb_set_intfdata(other, NULL);
371 usb_driver_release_interface(driver, other);
372 }
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100373
Bjørn Mork853c24f2012-06-19 00:41:59 +0000374 info->subdriver = NULL;
Bjørn Mork230718b2012-06-19 00:42:01 +0000375 info->data = NULL;
376 info->control = NULL;
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100377}
378
379/* suspend/resume wrappers calling both usbnet and the cdc-wdm
380 * subdriver if present.
381 *
382 * NOTE: cdc-wdm also supports pre/post_reset, but we cannot provide
383 * wrappers for those without adding usbnet reset support first.
384 */
385static int qmi_wwan_suspend(struct usb_interface *intf, pm_message_t message)
386{
387 struct usbnet *dev = usb_get_intfdata(intf);
Bjørn Mork853c24f2012-06-19 00:41:59 +0000388 struct qmi_wwan_state *info = (void *)&dev->data;
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100389 int ret;
390
Fabio Porceddae0584952013-09-25 11:21:26 +0200391 /* Both usbnet_suspend() and subdriver->suspend() MUST return 0
Ming Lei81b50be2013-03-15 12:08:57 +0800392 * in system sleep context, otherwise, the resume callback has
393 * to recover device from previous suspend failure.
394 */
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100395 ret = usbnet_suspend(intf, message);
396 if (ret < 0)
397 goto err;
398
Fabio Porceddae0584952013-09-25 11:21:26 +0200399 if (intf == info->control && info->subdriver &&
400 info->subdriver->suspend)
Bjørn Mork853c24f2012-06-19 00:41:59 +0000401 ret = info->subdriver->suspend(intf, message);
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100402 if (ret < 0)
403 usbnet_resume(intf);
404err:
405 return ret;
406}
407
408static int qmi_wwan_resume(struct usb_interface *intf)
409{
410 struct usbnet *dev = usb_get_intfdata(intf);
Bjørn Mork853c24f2012-06-19 00:41:59 +0000411 struct qmi_wwan_state *info = (void *)&dev->data;
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100412 int ret = 0;
Fabio Porceddae0584952013-09-25 11:21:26 +0200413 bool callsub = (intf == info->control && info->subdriver &&
414 info->subdriver->resume);
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100415
Bjørn Mork8624dd22012-09-12 20:44:35 +0000416 if (callsub)
Bjørn Mork853c24f2012-06-19 00:41:59 +0000417 ret = info->subdriver->resume(intf);
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100418 if (ret < 0)
419 goto err;
420 ret = usbnet_resume(intf);
Bjørn Mork8624dd22012-09-12 20:44:35 +0000421 if (ret < 0 && callsub && info->subdriver->suspend)
Bjørn Mork853c24f2012-06-19 00:41:59 +0000422 info->subdriver->suspend(intf, PMSG_SUSPEND);
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100423err:
424 return ret;
425}
426
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000427static const struct driver_info qmi_wwan_info = {
Bjørn Morka40345b2012-06-19 00:42:02 +0000428 .description = "WWAN/QMI device",
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000429 .flags = FLAG_WWAN,
430 .bind = qmi_wwan_bind,
Bjørn Mork230718b2012-06-19 00:42:01 +0000431 .unbind = qmi_wwan_unbind,
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000432 .manage_power = qmi_wwan_manage_power,
Bjørn Mork6ff509a2013-04-18 12:57:09 +0000433 .rx_fixup = qmi_wwan_rx_fixup,
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000434};
435
436#define HUAWEI_VENDOR_ID 0x12D1
Bjørn Morkb9f90eb2012-06-21 02:45:58 +0000437
Bjørn Mork03304bc2012-08-12 09:16:30 +0000438/* map QMI/wwan function by a fixed interface number */
439#define QMI_FIXED_INTF(vend, prod, num) \
440 USB_DEVICE_INTERFACE_NUMBER(vend, prod, num), \
Bjørn Morkbd877e482012-09-07 07:36:07 +0000441 .driver_info = (unsigned long)&qmi_wwan_info
Bjørn Mork03304bc2012-08-12 09:16:30 +0000442
Bjørn Morkb9f90eb2012-06-21 02:45:58 +0000443/* Gobi 1000 QMI/wwan interface number is 3 according to qcserial */
444#define QMI_GOBI1K_DEVICE(vend, prod) \
Bjørn Mork03304bc2012-08-12 09:16:30 +0000445 QMI_FIXED_INTF(vend, prod, 3)
Bjørn Morkb9f90eb2012-06-21 02:45:58 +0000446
Bjørn Mork03304bc2012-08-12 09:16:30 +0000447/* Gobi 2000/3000 QMI/wwan interface number is 0 according to qcserial */
Bjørn Morkb086cf02012-03-09 12:35:06 +0100448#define QMI_GOBI_DEVICE(vend, prod) \
Bjørn Mork03304bc2012-08-12 09:16:30 +0000449 QMI_FIXED_INTF(vend, prod, 0)
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000450
451static const struct usb_device_id products[] = {
Bjørn Mork03304bc2012-08-12 09:16:30 +0000452 /* 1. CDC ECM like devices match on the control interface */
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100453 { /* Huawei E392, E398 and possibly others sharing both device id and more... */
Bjørn Mork5ea42962012-08-12 09:16:32 +0000454 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 9),
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100455 .driver_info = (unsigned long)&qmi_wwan_info,
456 },
Bjørn Mork88c16dc2012-05-19 07:20:31 +0000457 { /* Vodafone/Huawei K5005 (12d1:14c8) and similar modems */
Bjørn Mork5ea42962012-08-12 09:16:32 +0000458 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 57),
Bjørn Mork88c16dc2012-05-19 07:20:31 +0000459 .driver_info = (unsigned long)&qmi_wwan_info,
460 },
Bjørn Morke21b9d02013-02-06 05:22:08 +0000461 { /* HUAWEI_INTERFACE_NDIS_CONTROL_QUALCOMM */
462 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 0x01, 0x69),
463 .driver_info = (unsigned long)&qmi_wwan_info,
464 },
Bjørn Mork03304bc2012-08-12 09:16:30 +0000465
466 /* 2. Combined interface devices matching on class+protocol */
Bjørn Mork9db273f2012-09-19 10:03:36 +0000467 { /* Huawei E367 and possibly others in "Windows mode" */
Bjørn Mork42d94dc2012-09-19 21:18:05 +0000468 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 7),
469 .driver_info = (unsigned long)&qmi_wwan_info,
470 },
Bjørn Mork03304bc2012-08-12 09:16:30 +0000471 { /* Huawei E392, E398 and possibly others in "Windows mode" */
Bjørn Mork5ea42962012-08-12 09:16:32 +0000472 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 17),
Bjørn Morkbd877e482012-09-07 07:36:07 +0000473 .driver_info = (unsigned long)&qmi_wwan_info,
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100474 },
Bjørn Morke21b9d02013-02-06 05:22:08 +0000475 { /* HUAWEI_NDIS_SINGLE_INTERFACE_VDF */
476 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 0x01, 0x37),
477 .driver_info = (unsigned long)&qmi_wwan_info,
478 },
479 { /* HUAWEI_INTERFACE_NDIS_HW_QUALCOMM */
480 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 0x01, 0x67),
481 .driver_info = (unsigned long)&qmi_wwan_info,
482 },
Bjørn Mork9db273f2012-09-19 10:03:36 +0000483 { /* Pantech UML290, P4200 and more */
Bjørn Mork42d94dc2012-09-19 21:18:05 +0000484 USB_VENDOR_AND_INTERFACE_INFO(0x106c, USB_CLASS_VENDOR_SPEC, 0xf0, 0xff),
Bjørn Morkbd877e482012-09-07 07:36:07 +0000485 .driver_info = (unsigned long)&qmi_wwan_info,
Bjørn Morkb086cf02012-03-09 12:35:06 +0100486 },
Bjørn Mork10cbc1d2012-08-15 03:42:57 +0000487 { /* Pantech UML290 - newer firmware */
Bjørn Mork42d94dc2012-09-19 21:18:05 +0000488 USB_VENDOR_AND_INTERFACE_INFO(0x106c, USB_CLASS_VENDOR_SPEC, 0xf1, 0xff),
Bjørn Morkbd877e482012-09-07 07:36:07 +0000489 .driver_info = (unsigned long)&qmi_wwan_info,
Bjørn Mork10cbc1d2012-08-15 03:42:57 +0000490 },
Dan Williamsf8295ec2012-10-24 12:10:34 +0000491 { /* Novatel USB551L and MC551 */
492 USB_DEVICE_AND_INTERFACE_INFO(0x1410, 0xb001,
493 USB_CLASS_COMM,
494 USB_CDC_SUBCLASS_ETHERNET,
495 USB_CDC_PROTO_NONE),
496 .driver_info = (unsigned long)&qmi_wwan_info,
497 },
498 { /* Novatel E362 */
499 USB_DEVICE_AND_INTERFACE_INFO(0x1410, 0x9010,
500 USB_CLASS_COMM,
501 USB_CDC_SUBCLASS_ETHERNET,
502 USB_CDC_PROTO_NONE),
503 .driver_info = (unsigned long)&qmi_wwan_info,
504 },
Dan Williams0370acd2012-12-17 08:17:41 +0000505 { /* Dell Wireless 5800 (Novatel E362) */
506 USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x8195,
507 USB_CLASS_COMM,
508 USB_CDC_SUBCLASS_ETHERNET,
509 USB_CDC_PROTO_NONE),
510 .driver_info = (unsigned long)&qmi_wwan_info,
511 },
512 { /* Dell Wireless 5800 V2 (Novatel E362) */
513 USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x8196,
514 USB_CLASS_COMM,
515 USB_CDC_SUBCLASS_ETHERNET,
516 USB_CDC_PROTO_NONE),
517 .driver_info = (unsigned long)&qmi_wwan_info,
518 },
Dan Williams7fdb7842013-05-06 11:17:37 +0000519 { /* Dell Wireless 5804 (Novatel E371) */
520 USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x819b,
521 USB_CLASS_COMM,
522 USB_CDC_SUBCLASS_ETHERNET,
523 USB_CDC_PROTO_NONE),
524 .driver_info = (unsigned long)&qmi_wwan_info,
525 },
Dan Williams45d213f2013-02-18 17:25:09 +0000526 { /* ADU960S */
527 USB_DEVICE_AND_INTERFACE_INFO(0x16d5, 0x650a,
528 USB_CLASS_COMM,
529 USB_CDC_SUBCLASS_ETHERNET,
530 USB_CDC_PROTO_NONE),
531 .driver_info = (unsigned long)&qmi_wwan_info,
532 },
Bjørn Morkb9f90eb2012-06-21 02:45:58 +0000533
Bjørn Mork03304bc2012-08-12 09:16:30 +0000534 /* 3. Combined interface devices matching on interface number */
Bjørn Mork1bf014e2013-02-12 02:42:50 +0000535 {QMI_FIXED_INTF(0x0408, 0xea42, 4)}, /* Yota / Megafon M100-1 */
Bjørn Mork04706672013-09-10 15:06:20 +0200536 {QMI_FIXED_INTF(0x05c6, 0x7000, 0)},
537 {QMI_FIXED_INTF(0x05c6, 0x7001, 1)},
538 {QMI_FIXED_INTF(0x05c6, 0x7002, 1)},
539 {QMI_FIXED_INTF(0x05c6, 0x7101, 1)},
540 {QMI_FIXED_INTF(0x05c6, 0x7101, 2)},
541 {QMI_FIXED_INTF(0x05c6, 0x7101, 3)},
542 {QMI_FIXED_INTF(0x05c6, 0x7102, 1)},
543 {QMI_FIXED_INTF(0x05c6, 0x7102, 2)},
544 {QMI_FIXED_INTF(0x05c6, 0x7102, 3)},
545 {QMI_FIXED_INTF(0x05c6, 0x8000, 7)},
546 {QMI_FIXED_INTF(0x05c6, 0x8001, 6)},
547 {QMI_FIXED_INTF(0x05c6, 0x9000, 4)},
548 {QMI_FIXED_INTF(0x05c6, 0x9003, 4)},
549 {QMI_FIXED_INTF(0x05c6, 0x9005, 2)},
550 {QMI_FIXED_INTF(0x05c6, 0x900a, 4)},
551 {QMI_FIXED_INTF(0x05c6, 0x900b, 2)},
552 {QMI_FIXED_INTF(0x05c6, 0x900c, 4)},
553 {QMI_FIXED_INTF(0x05c6, 0x900c, 5)},
554 {QMI_FIXED_INTF(0x05c6, 0x900c, 6)},
555 {QMI_FIXED_INTF(0x05c6, 0x900d, 5)},
556 {QMI_FIXED_INTF(0x05c6, 0x900f, 3)},
557 {QMI_FIXED_INTF(0x05c6, 0x900f, 4)},
558 {QMI_FIXED_INTF(0x05c6, 0x900f, 5)},
559 {QMI_FIXED_INTF(0x05c6, 0x9010, 4)},
560 {QMI_FIXED_INTF(0x05c6, 0x9010, 5)},
561 {QMI_FIXED_INTF(0x05c6, 0x9011, 3)},
562 {QMI_FIXED_INTF(0x05c6, 0x9011, 4)},
563 {QMI_FIXED_INTF(0x05c6, 0x9021, 1)},
564 {QMI_FIXED_INTF(0x05c6, 0x9022, 2)},
565 {QMI_FIXED_INTF(0x05c6, 0x9025, 4)}, /* Alcatel-sbell ASB TL131 TDD LTE (China Mobile) */
566 {QMI_FIXED_INTF(0x05c6, 0x9026, 3)},
567 {QMI_FIXED_INTF(0x05c6, 0x902e, 5)},
568 {QMI_FIXED_INTF(0x05c6, 0x9031, 5)},
569 {QMI_FIXED_INTF(0x05c6, 0x9032, 4)},
570 {QMI_FIXED_INTF(0x05c6, 0x9033, 3)},
571 {QMI_FIXED_INTF(0x05c6, 0x9033, 4)},
572 {QMI_FIXED_INTF(0x05c6, 0x9033, 5)},
573 {QMI_FIXED_INTF(0x05c6, 0x9033, 6)},
574 {QMI_FIXED_INTF(0x05c6, 0x9034, 3)},
575 {QMI_FIXED_INTF(0x05c6, 0x9034, 4)},
576 {QMI_FIXED_INTF(0x05c6, 0x9034, 5)},
577 {QMI_FIXED_INTF(0x05c6, 0x9034, 6)},
578 {QMI_FIXED_INTF(0x05c6, 0x9034, 7)},
579 {QMI_FIXED_INTF(0x05c6, 0x9035, 4)},
580 {QMI_FIXED_INTF(0x05c6, 0x9036, 3)},
581 {QMI_FIXED_INTF(0x05c6, 0x9037, 5)},
582 {QMI_FIXED_INTF(0x05c6, 0x9038, 4)},
583 {QMI_FIXED_INTF(0x05c6, 0x903b, 7)},
584 {QMI_FIXED_INTF(0x05c6, 0x903c, 6)},
585 {QMI_FIXED_INTF(0x05c6, 0x903d, 6)},
586 {QMI_FIXED_INTF(0x05c6, 0x903e, 5)},
587 {QMI_FIXED_INTF(0x05c6, 0x9043, 3)},
588 {QMI_FIXED_INTF(0x05c6, 0x9046, 3)},
589 {QMI_FIXED_INTF(0x05c6, 0x9046, 4)},
590 {QMI_FIXED_INTF(0x05c6, 0x9046, 5)},
591 {QMI_FIXED_INTF(0x05c6, 0x9047, 2)},
592 {QMI_FIXED_INTF(0x05c6, 0x9047, 3)},
593 {QMI_FIXED_INTF(0x05c6, 0x9047, 4)},
594 {QMI_FIXED_INTF(0x05c6, 0x9048, 4)},
595 {QMI_FIXED_INTF(0x05c6, 0x9048, 5)},
596 {QMI_FIXED_INTF(0x05c6, 0x9048, 6)},
597 {QMI_FIXED_INTF(0x05c6, 0x9048, 7)},
598 {QMI_FIXED_INTF(0x05c6, 0x9048, 8)},
599 {QMI_FIXED_INTF(0x05c6, 0x904c, 5)},
600 {QMI_FIXED_INTF(0x05c6, 0x904c, 6)},
601 {QMI_FIXED_INTF(0x05c6, 0x904c, 7)},
602 {QMI_FIXED_INTF(0x05c6, 0x904c, 8)},
603 {QMI_FIXED_INTF(0x05c6, 0x9050, 3)},
604 {QMI_FIXED_INTF(0x05c6, 0x9052, 4)},
605 {QMI_FIXED_INTF(0x05c6, 0x9053, 6)},
606 {QMI_FIXED_INTF(0x05c6, 0x9053, 7)},
607 {QMI_FIXED_INTF(0x05c6, 0x9054, 5)},
608 {QMI_FIXED_INTF(0x05c6, 0x9054, 6)},
609 {QMI_FIXED_INTF(0x05c6, 0x9055, 3)},
610 {QMI_FIXED_INTF(0x05c6, 0x9055, 4)},
611 {QMI_FIXED_INTF(0x05c6, 0x9055, 5)},
612 {QMI_FIXED_INTF(0x05c6, 0x9055, 6)},
613 {QMI_FIXED_INTF(0x05c6, 0x9055, 7)},
614 {QMI_FIXED_INTF(0x05c6, 0x9056, 3)},
615 {QMI_FIXED_INTF(0x05c6, 0x9062, 2)},
616 {QMI_FIXED_INTF(0x05c6, 0x9062, 3)},
617 {QMI_FIXED_INTF(0x05c6, 0x9062, 4)},
618 {QMI_FIXED_INTF(0x05c6, 0x9062, 5)},
619 {QMI_FIXED_INTF(0x05c6, 0x9062, 6)},
620 {QMI_FIXED_INTF(0x05c6, 0x9062, 7)},
621 {QMI_FIXED_INTF(0x05c6, 0x9062, 8)},
622 {QMI_FIXED_INTF(0x05c6, 0x9062, 9)},
623 {QMI_FIXED_INTF(0x05c6, 0x9064, 3)},
624 {QMI_FIXED_INTF(0x05c6, 0x9065, 6)},
625 {QMI_FIXED_INTF(0x05c6, 0x9065, 7)},
626 {QMI_FIXED_INTF(0x05c6, 0x9066, 5)},
627 {QMI_FIXED_INTF(0x05c6, 0x9066, 6)},
628 {QMI_FIXED_INTF(0x05c6, 0x9067, 1)},
629 {QMI_FIXED_INTF(0x05c6, 0x9068, 2)},
630 {QMI_FIXED_INTF(0x05c6, 0x9068, 3)},
631 {QMI_FIXED_INTF(0x05c6, 0x9068, 4)},
632 {QMI_FIXED_INTF(0x05c6, 0x9068, 5)},
633 {QMI_FIXED_INTF(0x05c6, 0x9068, 6)},
634 {QMI_FIXED_INTF(0x05c6, 0x9068, 7)},
635 {QMI_FIXED_INTF(0x05c6, 0x9069, 5)},
636 {QMI_FIXED_INTF(0x05c6, 0x9069, 6)},
637 {QMI_FIXED_INTF(0x05c6, 0x9069, 7)},
638 {QMI_FIXED_INTF(0x05c6, 0x9069, 8)},
639 {QMI_FIXED_INTF(0x05c6, 0x9070, 4)},
640 {QMI_FIXED_INTF(0x05c6, 0x9070, 5)},
641 {QMI_FIXED_INTF(0x05c6, 0x9075, 5)},
642 {QMI_FIXED_INTF(0x05c6, 0x9076, 4)},
643 {QMI_FIXED_INTF(0x05c6, 0x9076, 5)},
644 {QMI_FIXED_INTF(0x05c6, 0x9076, 6)},
645 {QMI_FIXED_INTF(0x05c6, 0x9076, 7)},
646 {QMI_FIXED_INTF(0x05c6, 0x9076, 8)},
647 {QMI_FIXED_INTF(0x05c6, 0x9077, 3)},
648 {QMI_FIXED_INTF(0x05c6, 0x9077, 4)},
649 {QMI_FIXED_INTF(0x05c6, 0x9077, 5)},
650 {QMI_FIXED_INTF(0x05c6, 0x9077, 6)},
651 {QMI_FIXED_INTF(0x05c6, 0x9078, 3)},
652 {QMI_FIXED_INTF(0x05c6, 0x9079, 4)},
653 {QMI_FIXED_INTF(0x05c6, 0x9079, 5)},
654 {QMI_FIXED_INTF(0x05c6, 0x9079, 6)},
655 {QMI_FIXED_INTF(0x05c6, 0x9079, 7)},
656 {QMI_FIXED_INTF(0x05c6, 0x9079, 8)},
657 {QMI_FIXED_INTF(0x05c6, 0x9080, 5)},
658 {QMI_FIXED_INTF(0x05c6, 0x9080, 6)},
659 {QMI_FIXED_INTF(0x05c6, 0x9080, 7)},
660 {QMI_FIXED_INTF(0x05c6, 0x9080, 8)},
661 {QMI_FIXED_INTF(0x05c6, 0x9083, 3)},
662 {QMI_FIXED_INTF(0x05c6, 0x9084, 4)},
663 {QMI_FIXED_INTF(0x05c6, 0x920d, 0)},
664 {QMI_FIXED_INTF(0x05c6, 0x920d, 5)},
Bjørn Morkba695af2012-11-25 06:03:59 +0000665 {QMI_FIXED_INTF(0x12d1, 0x140c, 1)}, /* Huawei E173 */
Bjørn Morkc2020be2013-06-06 12:57:02 +0200666 {QMI_FIXED_INTF(0x12d1, 0x14ac, 1)}, /* Huawei E1820 */
Bjørn Morkc6846ee2012-10-18 05:11:29 +0000667 {QMI_FIXED_INTF(0x19d2, 0x0002, 1)},
668 {QMI_FIXED_INTF(0x19d2, 0x0012, 1)},
669 {QMI_FIXED_INTF(0x19d2, 0x0017, 3)},
Enrico Miosod8eb8f92013-06-29 15:39:19 +0200670 {QMI_FIXED_INTF(0x19d2, 0x0019, 3)}, /* ONDA MT689DC */
Bjørn Morkc6846ee2012-10-18 05:11:29 +0000671 {QMI_FIXED_INTF(0x19d2, 0x0021, 4)},
672 {QMI_FIXED_INTF(0x19d2, 0x0025, 1)},
673 {QMI_FIXED_INTF(0x19d2, 0x0031, 4)},
674 {QMI_FIXED_INTF(0x19d2, 0x0042, 4)},
675 {QMI_FIXED_INTF(0x19d2, 0x0049, 5)},
676 {QMI_FIXED_INTF(0x19d2, 0x0052, 4)},
Bjørn Mork03304bc2012-08-12 09:16:30 +0000677 {QMI_FIXED_INTF(0x19d2, 0x0055, 1)}, /* ZTE (Vodafone) K3520-Z */
Bjørn Morkc6846ee2012-10-18 05:11:29 +0000678 {QMI_FIXED_INTF(0x19d2, 0x0058, 4)},
Bjørn Mork03304bc2012-08-12 09:16:30 +0000679 {QMI_FIXED_INTF(0x19d2, 0x0063, 4)}, /* ZTE (Vodafone) K3565-Z */
680 {QMI_FIXED_INTF(0x19d2, 0x0104, 4)}, /* ZTE (Vodafone) K4505-Z */
Bjørn Morkc6846ee2012-10-18 05:11:29 +0000681 {QMI_FIXED_INTF(0x19d2, 0x0113, 5)},
682 {QMI_FIXED_INTF(0x19d2, 0x0118, 5)},
683 {QMI_FIXED_INTF(0x19d2, 0x0121, 5)},
684 {QMI_FIXED_INTF(0x19d2, 0x0123, 4)},
685 {QMI_FIXED_INTF(0x19d2, 0x0124, 5)},
686 {QMI_FIXED_INTF(0x19d2, 0x0125, 6)},
687 {QMI_FIXED_INTF(0x19d2, 0x0126, 5)},
688 {QMI_FIXED_INTF(0x19d2, 0x0130, 1)},
689 {QMI_FIXED_INTF(0x19d2, 0x0133, 3)},
690 {QMI_FIXED_INTF(0x19d2, 0x0141, 5)},
Bjørn Mork42d94dc2012-09-19 21:18:05 +0000691 {QMI_FIXED_INTF(0x19d2, 0x0157, 5)}, /* ZTE MF683 */
Bjørn Morkc6846ee2012-10-18 05:11:29 +0000692 {QMI_FIXED_INTF(0x19d2, 0x0158, 3)},
Bjørn Mork03304bc2012-08-12 09:16:30 +0000693 {QMI_FIXED_INTF(0x19d2, 0x0167, 4)}, /* ZTE MF820D */
Bjørn Morkc6846ee2012-10-18 05:11:29 +0000694 {QMI_FIXED_INTF(0x19d2, 0x0168, 4)},
695 {QMI_FIXED_INTF(0x19d2, 0x0176, 3)},
696 {QMI_FIXED_INTF(0x19d2, 0x0178, 3)},
697 {QMI_FIXED_INTF(0x19d2, 0x0191, 4)}, /* ZTE EuFi890 */
698 {QMI_FIXED_INTF(0x19d2, 0x0199, 1)}, /* ZTE MF820S */
699 {QMI_FIXED_INTF(0x19d2, 0x0200, 1)},
700 {QMI_FIXED_INTF(0x19d2, 0x0257, 3)}, /* ZTE MF821 */
Bjørn Morkc1acd702013-01-18 04:26:34 +0000701 {QMI_FIXED_INTF(0x19d2, 0x0265, 4)}, /* ONDA MT8205 4G LTE */
Bjørn Morkf8b84032012-12-19 04:15:51 +0000702 {QMI_FIXED_INTF(0x19d2, 0x0284, 4)}, /* ZTE MF880 */
Bjørn Mork03304bc2012-08-12 09:16:30 +0000703 {QMI_FIXED_INTF(0x19d2, 0x0326, 4)}, /* ZTE MF821D */
Teppo Kotilainen0decc642013-05-02 23:05:13 +0000704 {QMI_FIXED_INTF(0x19d2, 0x0412, 4)}, /* Telewell TW-LTE 4G */
Bjørn Mork03304bc2012-08-12 09:16:30 +0000705 {QMI_FIXED_INTF(0x19d2, 0x1008, 4)}, /* ZTE (Vodafone) K3570-Z */
706 {QMI_FIXED_INTF(0x19d2, 0x1010, 4)}, /* ZTE (Vodafone) K3571-Z */
Bjørn Morkc6846ee2012-10-18 05:11:29 +0000707 {QMI_FIXED_INTF(0x19d2, 0x1012, 4)},
Bjørn Mork10cbc1d2012-08-15 03:42:57 +0000708 {QMI_FIXED_INTF(0x19d2, 0x1018, 3)}, /* ZTE (Vodafone) K5006-Z */
Bjørn Morkc6846ee2012-10-18 05:11:29 +0000709 {QMI_FIXED_INTF(0x19d2, 0x1021, 2)},
710 {QMI_FIXED_INTF(0x19d2, 0x1245, 4)},
711 {QMI_FIXED_INTF(0x19d2, 0x1247, 4)},
712 {QMI_FIXED_INTF(0x19d2, 0x1252, 4)},
713 {QMI_FIXED_INTF(0x19d2, 0x1254, 4)},
714 {QMI_FIXED_INTF(0x19d2, 0x1255, 3)},
715 {QMI_FIXED_INTF(0x19d2, 0x1255, 4)},
716 {QMI_FIXED_INTF(0x19d2, 0x1256, 4)},
717 {QMI_FIXED_INTF(0x19d2, 0x1401, 2)},
Bjørn Mork03304bc2012-08-12 09:16:30 +0000718 {QMI_FIXED_INTF(0x19d2, 0x1402, 2)}, /* ZTE MF60 */
Bjørn Morkc6846ee2012-10-18 05:11:29 +0000719 {QMI_FIXED_INTF(0x19d2, 0x1424, 2)},
720 {QMI_FIXED_INTF(0x19d2, 0x1425, 2)},
721 {QMI_FIXED_INTF(0x19d2, 0x1426, 2)}, /* ZTE MF91 */
Bjørn Mork03304bc2012-08-12 09:16:30 +0000722 {QMI_FIXED_INTF(0x19d2, 0x2002, 4)}, /* ZTE (Vodafone) K3765-Z */
Bjørn Mork9b469a62012-08-12 09:16:31 +0000723 {QMI_FIXED_INTF(0x0f3d, 0x68a2, 8)}, /* Sierra Wireless MC7700 */
724 {QMI_FIXED_INTF(0x114f, 0x68a2, 8)}, /* Sierra Wireless MC7750 */
Bjørn Mork03304bc2012-08-12 09:16:30 +0000725 {QMI_FIXED_INTF(0x1199, 0x68a2, 8)}, /* Sierra Wireless MC7710 in QMI mode */
726 {QMI_FIXED_INTF(0x1199, 0x68a2, 19)}, /* Sierra Wireless MC7710 in QMI mode */
Bjørn Mork9b469a62012-08-12 09:16:31 +0000727 {QMI_FIXED_INTF(0x1199, 0x901c, 8)}, /* Sierra Wireless EM7700 */
Bjørn Mork68172662012-12-28 06:30:55 +0000728 {QMI_FIXED_INTF(0x1bbb, 0x011e, 4)}, /* Telekom Speedstick LTE II (Alcatel One Touch L100V LTE) */
Bjørn Mork30225512013-01-14 23:19:50 +0000729 {QMI_FIXED_INTF(0x2357, 0x0201, 4)}, /* TP-LINK HSUPA Modem MA180 */
Bjørn Morkd0b5e512013-06-28 17:17:51 +0200730 {QMI_FIXED_INTF(0x2357, 0x9000, 4)}, /* TP-LINK MA260 */
Daniele Palmas3d6d7ab2013-01-30 02:47:06 +0000731 {QMI_FIXED_INTF(0x1bc7, 0x1200, 5)}, /* Telit LE920 */
Fabio Porcedda905468f2013-09-25 11:21:25 +0200732 {QMI_FIXED_INTF(0x1bc7, 0x1201, 2)}, /* Telit LE920 */
Enrico Miosoce97fef2013-10-15 15:06:48 +0200733 {QMI_FIXED_INTF(0x0b3c, 0xc005, 6)}, /* Olivetti Olicard 200 */
Aleksander Morgado2d77f342013-09-25 17:02:36 +0200734 {QMI_FIXED_INTF(0x1e2d, 0x0060, 4)}, /* Cinterion PLxx */
Bjørn Mork03304bc2012-08-12 09:16:30 +0000735
736 /* 4. Gobi 1000 devices */
Bjørn Morkb9f90eb2012-06-21 02:45:58 +0000737 {QMI_GOBI1K_DEVICE(0x05c6, 0x9212)}, /* Acer Gobi Modem Device */
738 {QMI_GOBI1K_DEVICE(0x03f0, 0x1f1d)}, /* HP un2400 Gobi Modem Device */
Bjørn Morkb9f90eb2012-06-21 02:45:58 +0000739 {QMI_GOBI1K_DEVICE(0x04da, 0x250d)}, /* Panasonic Gobi Modem device */
740 {QMI_GOBI1K_DEVICE(0x413c, 0x8172)}, /* Dell Gobi Modem device */
Dan Williams8afe3dc2013-06-20 16:10:59 -0500741 {QMI_GOBI1K_DEVICE(0x1410, 0xa001)}, /* Novatel/Verizon USB-1000 */
742 {QMI_GOBI1K_DEVICE(0x1410, 0xa002)}, /* Novatel Gobi Modem device */
743 {QMI_GOBI1K_DEVICE(0x1410, 0xa003)}, /* Novatel Gobi Modem device */
744 {QMI_GOBI1K_DEVICE(0x1410, 0xa004)}, /* Novatel Gobi Modem device */
745 {QMI_GOBI1K_DEVICE(0x1410, 0xa005)}, /* Novatel Gobi Modem device */
746 {QMI_GOBI1K_DEVICE(0x1410, 0xa006)}, /* Novatel Gobi Modem device */
747 {QMI_GOBI1K_DEVICE(0x1410, 0xa007)}, /* Novatel Gobi Modem device */
Bjørn Morkb9f90eb2012-06-21 02:45:58 +0000748 {QMI_GOBI1K_DEVICE(0x0b05, 0x1776)}, /* Asus Gobi Modem device */
749 {QMI_GOBI1K_DEVICE(0x19d2, 0xfff3)}, /* ONDA Gobi Modem device */
750 {QMI_GOBI1K_DEVICE(0x05c6, 0x9001)}, /* Generic Gobi Modem device */
751 {QMI_GOBI1K_DEVICE(0x05c6, 0x9002)}, /* Generic Gobi Modem device */
752 {QMI_GOBI1K_DEVICE(0x05c6, 0x9202)}, /* Generic Gobi Modem device */
753 {QMI_GOBI1K_DEVICE(0x05c6, 0x9203)}, /* Generic Gobi Modem device */
754 {QMI_GOBI1K_DEVICE(0x05c6, 0x9222)}, /* Generic Gobi Modem device */
755 {QMI_GOBI1K_DEVICE(0x05c6, 0x9009)}, /* Generic Gobi Modem device */
756
Bjørn Mork03304bc2012-08-12 09:16:30 +0000757 /* 5. Gobi 2000 and 3000 devices */
Bjørn Morkb086cf02012-03-09 12:35:06 +0100758 {QMI_GOBI_DEVICE(0x413c, 0x8186)}, /* Dell Gobi 2000 Modem device (N0218, VU936) */
Bjørn Mork50022002012-09-01 03:47:26 +0000759 {QMI_GOBI_DEVICE(0x413c, 0x8194)}, /* Dell Gobi 3000 Composite */
Bjørn Morkb086cf02012-03-09 12:35:06 +0100760 {QMI_GOBI_DEVICE(0x05c6, 0x920b)}, /* Generic Gobi 2000 Modem device */
761 {QMI_GOBI_DEVICE(0x05c6, 0x9225)}, /* Sony Gobi 2000 Modem device (N0279, VU730) */
762 {QMI_GOBI_DEVICE(0x05c6, 0x9245)}, /* Samsung Gobi 2000 Modem device (VL176) */
763 {QMI_GOBI_DEVICE(0x03f0, 0x251d)}, /* HP Gobi 2000 Modem device (VP412) */
764 {QMI_GOBI_DEVICE(0x05c6, 0x9215)}, /* Acer Gobi 2000 Modem device (VP413) */
765 {QMI_GOBI_DEVICE(0x05c6, 0x9265)}, /* Asus Gobi 2000 Modem device (VR305) */
766 {QMI_GOBI_DEVICE(0x05c6, 0x9235)}, /* Top Global Gobi 2000 Modem device (VR306) */
767 {QMI_GOBI_DEVICE(0x05c6, 0x9275)}, /* iRex Technologies Gobi 2000 Modem device (VR307) */
Bjørn Morkaa3aba12013-06-28 17:17:50 +0200768 {QMI_GOBI_DEVICE(0x0af0, 0x8120)}, /* Option GTM681W */
Bjørn Mork9b469a62012-08-12 09:16:31 +0000769 {QMI_GOBI_DEVICE(0x1199, 0x68a5)}, /* Sierra Wireless Modem */
770 {QMI_GOBI_DEVICE(0x1199, 0x68a9)}, /* Sierra Wireless Modem */
Bjørn Morkb086cf02012-03-09 12:35:06 +0100771 {QMI_GOBI_DEVICE(0x1199, 0x9001)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
772 {QMI_GOBI_DEVICE(0x1199, 0x9002)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
773 {QMI_GOBI_DEVICE(0x1199, 0x9003)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
774 {QMI_GOBI_DEVICE(0x1199, 0x9004)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
775 {QMI_GOBI_DEVICE(0x1199, 0x9005)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
776 {QMI_GOBI_DEVICE(0x1199, 0x9006)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
777 {QMI_GOBI_DEVICE(0x1199, 0x9007)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
778 {QMI_GOBI_DEVICE(0x1199, 0x9008)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
779 {QMI_GOBI_DEVICE(0x1199, 0x9009)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
780 {QMI_GOBI_DEVICE(0x1199, 0x900a)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
781 {QMI_GOBI_DEVICE(0x1199, 0x9011)}, /* Sierra Wireless Gobi 2000 Modem device (MC8305) */
782 {QMI_GOBI_DEVICE(0x16d8, 0x8002)}, /* CMDTech Gobi 2000 Modem device (VU922) */
783 {QMI_GOBI_DEVICE(0x05c6, 0x9205)}, /* Gobi 2000 Modem device */
784 {QMI_GOBI_DEVICE(0x1199, 0x9013)}, /* Sierra Wireless Gobi 3000 Modem device (MC8355) */
Pierre Sauterb48d6f82012-09-10 07:02:59 +0000785 {QMI_GOBI_DEVICE(0x03f0, 0x371d)}, /* HP un2430 Mobile Broadband Module */
Bjørn Mork5e071b52012-05-23 23:19:32 +0000786 {QMI_GOBI_DEVICE(0x1199, 0x9015)}, /* Sierra Wireless Gobi 3000 Modem device */
787 {QMI_GOBI_DEVICE(0x1199, 0x9019)}, /* Sierra Wireless Gobi 3000 Modem device */
Bjørn Mork9b469a62012-08-12 09:16:31 +0000788 {QMI_GOBI_DEVICE(0x1199, 0x901b)}, /* Sierra Wireless MC7770 */
Bjørn Mork50022002012-09-01 03:47:26 +0000789 {QMI_GOBI_DEVICE(0x12d1, 0x14f1)}, /* Sony Gobi 3000 Composite */
Aleksander Morgadofa026e22012-08-28 02:30:32 +0000790 {QMI_GOBI_DEVICE(0x1410, 0xa021)}, /* Foxconn Gobi 3000 Modem device (Novatel E396) */
Bjørn Mork9b469a62012-08-12 09:16:31 +0000791
Bjørn Morkb086cf02012-03-09 12:35:06 +0100792 { } /* END */
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000793};
794MODULE_DEVICE_TABLE(usb, products);
795
Fabio Porceddae0584952013-09-25 11:21:26 +0200796static int qmi_wwan_probe(struct usb_interface *intf,
797 const struct usb_device_id *prod)
Bjørn Mork1817e832012-07-17 11:14:32 +0000798{
799 struct usb_device_id *id = (struct usb_device_id *)prod;
800
801 /* Workaround to enable dynamic IDs. This disables usbnet
802 * blacklisting functionality. Which, if required, can be
803 * reimplemented here by using a magic "blacklist" value
804 * instead of 0 in the static device id table
805 */
806 if (!id->driver_info) {
807 dev_dbg(&intf->dev, "setting defaults for dynamic device id\n");
Bjørn Morkbd877e482012-09-07 07:36:07 +0000808 id->driver_info = (unsigned long)&qmi_wwan_info;
Bjørn Mork1817e832012-07-17 11:14:32 +0000809 }
810
811 return usbnet_probe(intf, id);
812}
813
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000814static struct usb_driver qmi_wwan_driver = {
815 .name = "qmi_wwan",
816 .id_table = products,
Bjørn Mork1817e832012-07-17 11:14:32 +0000817 .probe = qmi_wwan_probe,
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000818 .disconnect = usbnet_disconnect,
Bjørn Morkc3ecb082012-03-09 12:35:05 +0100819 .suspend = qmi_wwan_suspend,
820 .resume = qmi_wwan_resume,
821 .reset_resume = qmi_wwan_resume,
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000822 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -0700823 .disable_hub_initiated_lpm = 1,
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000824};
825
Bjørn Mork677a3d62012-06-19 00:42:03 +0000826module_usb_driver(qmi_wwan_driver);
Bjørn Mork423ce8c2012-01-19 15:37:22 +0000827
828MODULE_AUTHOR("Bjørn Mork <bjorn@mork.no>");
829MODULE_DESCRIPTION("Qualcomm MSM Interface (QMI) WWAN driver");
830MODULE_LICENSE("GPL");