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>
19 #include <linux/usb/cdc.h>
20 #include <linux/usb/usbnet.h>
21 #include <linux/usb/cdc-wdm.h>
23 /* This driver supports wwan (3G/LTE/?) devices using a vendor
24 * specific management protocol called Qualcomm MSM Interface (QMI) -
25 * in addition to the more common AT commands over serial interface
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
35 * Alternatively, control and data functions can be combined in a
36 * single USB interface.
38 * Handling a protocol like QMI is out of the scope for any driver.
39 * It is exported as a character device using the cdc-wdm driver as
40 * a subdriver, enabling userspace applications ("modem managers") to
43 * These devices may alternatively/additionally be configured using AT
44 * commands on a serial interface
47 /* driver specific data */
48 struct qmi_wwan_state
{
49 struct usb_driver
*subdriver
;
52 struct usb_interface
*control
;
53 struct usb_interface
*data
;
56 /* default ethernet address used by the modem */
57 static const u8 default_modem_addr
[ETH_ALEN
] = {0x02, 0x50, 0xf3};
59 /* Make up an ethernet header if the packet doesn't have one.
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.
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.
71 * This means that this function will reliably add the appropriate
72 * header iff necessary, provided our hardware address does not start
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.
79 static int qmi_wwan_rx_fixup(struct usbnet
*dev
, struct sk_buff
*skb
)
83 /* This check is no longer done by usbnet */
84 if (skb
->len
< dev
->net
->hard_header_len
)
87 switch (skb
->data
[0] & 0xf0) {
89 proto
= htons(ETH_P_IP
);
92 proto
= htons(ETH_P_IPV6
);
95 if (is_multicast_ether_addr(skb
->data
))
97 /* possibly bogus destination - rewrite just in case */
98 skb_reset_mac_header(skb
);
101 /* pass along other packets without modifications */
104 if (skb_headroom(skb
) < ETH_HLEN
)
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
);
111 memcpy(eth_hdr(skb
)->h_dest
, dev
->net
->dev_addr
, ETH_ALEN
);
115 /* very simplistic detection of IPv4 or IPv6 headers */
116 static bool possibly_iphdr(const char *data
)
118 return (data
[0] & 0xd0) == 0x40;
121 /* disallow addresses which may be confused with IP headers */
122 static int qmi_wwan_mac_addr(struct net_device
*dev
, void *p
)
125 struct sockaddr
*addr
= p
;
127 ret
= eth_prepare_mac_addr_change(dev
, p
);
130 if (possibly_iphdr(addr
->sa_data
))
131 return -EADDRNOTAVAIL
;
132 eth_commit_mac_addr_change(dev
, p
);
136 static 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
,
146 /* using a counter to merge subdriver requests with our own into a combined state */
147 static int qmi_wwan_manage_power(struct usbnet
*dev
, int on
)
149 struct qmi_wwan_state
*info
= (void *)&dev
->data
;
152 dev_dbg(&dev
->intf
->dev
, "%s() pmcount=%d, on=%d\n", __func__
, atomic_read(&info
->pmcount
), on
);
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
);
159 dev
->intf
->needs_remote_wakeup
= on
;
160 usb_autopm_put_interface(dev
->intf
);
166 static int qmi_wwan_cdc_wdm_manage_power(struct usb_interface
*intf
, int on
)
168 struct usbnet
*dev
= usb_get_intfdata(intf
);
170 /* can be called while disconnecting */
173 return qmi_wwan_manage_power(dev
, on
);
176 /* collect all three endpoints and register subdriver */
177 static int qmi_wwan_register_subdriver(struct usbnet
*dev
)
180 struct usb_driver
*subdriver
= NULL
;
181 struct qmi_wwan_state
*info
= (void *)&dev
->data
;
183 /* collect bulk endpoints */
184 rv
= usbnet_get_endpoints(dev
, info
->data
);
188 /* update status endpoint if separate control interface */
189 if (info
->control
!= info
->data
)
190 dev
->status
= &info
->control
->cur_altsetting
->endpoint
[0];
192 /* require interrupt endpoint for subdriver */
198 /* for subdriver power management */
199 atomic_set(&info
->pmcount
, 0);
201 /* register subdriver */
202 subdriver
= usb_cdc_wdm_register(info
->control
, &dev
->status
->desc
, 4096, &qmi_wwan_cdc_wdm_manage_power
);
203 if (IS_ERR(subdriver
)) {
204 dev_err(&info
->control
->dev
, "subdriver registration failed\n");
205 rv
= PTR_ERR(subdriver
);
209 /* prevent usbnet from using status endpoint */
212 /* save subdriver struct for suspend/resume wrappers */
213 info
->subdriver
= subdriver
;
219 static int qmi_wwan_bind(struct usbnet
*dev
, struct usb_interface
*intf
)
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
;
228 struct usb_driver
*driver
= driver_of(intf
);
229 struct qmi_wwan_state
*info
= (void *)&dev
->data
;
231 BUILD_BUG_ON((sizeof(((struct usbnet
*)0)->data
) < sizeof(struct qmi_wwan_state
)));
233 /* set up initial state */
234 info
->control
= intf
;
237 /* and a number of CDC descriptors */
239 struct usb_descriptor_header
*h
= (void *)buf
;
241 /* ignore any misplaced descriptors */
242 if (h
->bDescriptorType
!= USB_DT_CS_INTERFACE
)
245 /* buf[2] is CDC descriptor subtype */
247 case USB_CDC_HEADER_TYPE
:
248 if (found
& 1 << USB_CDC_HEADER_TYPE
) {
249 dev_dbg(&intf
->dev
, "extra CDC header\n");
252 if (h
->bLength
!= sizeof(struct usb_cdc_header_desc
)) {
253 dev_dbg(&intf
->dev
, "CDC header len %u\n", h
->bLength
);
257 case USB_CDC_UNION_TYPE
:
258 if (found
& 1 << USB_CDC_UNION_TYPE
) {
259 dev_dbg(&intf
->dev
, "extra CDC union\n");
262 if (h
->bLength
!= sizeof(struct usb_cdc_union_desc
)) {
263 dev_dbg(&intf
->dev
, "CDC union len %u\n", h
->bLength
);
266 cdc_union
= (struct usb_cdc_union_desc
*)buf
;
268 case USB_CDC_ETHERNET_TYPE
:
269 if (found
& 1 << USB_CDC_ETHERNET_TYPE
) {
270 dev_dbg(&intf
->dev
, "extra CDC ether\n");
273 if (h
->bLength
!= sizeof(struct usb_cdc_ether_desc
)) {
274 dev_dbg(&intf
->dev
, "CDC ether len %u\n", h
->bLength
);
277 cdc_ether
= (struct usb_cdc_ether_desc
*)buf
;
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
287 found
|= 1 << buf
[2];
294 /* Use separate control and data interfaces if we found a 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
);
304 /* errors aren't fatal - we can live with the dynamic address */
306 dev
->hard_mtu
= le16_to_cpu(cdc_ether
->wMaxSegmentSize
);
307 usbnet_get_ethernet_addr(dev
, cdc_ether
->iMACAddress
);
310 /* claim data interface and set it up */
311 if (info
->control
!= info
->data
) {
312 status
= usb_driver_claim_interface(driver
, info
->data
, dev
);
317 status
= qmi_wwan_register_subdriver(dev
);
318 if (status
< 0 && info
->control
!= info
->data
) {
319 usb_set_intfdata(info
->data
, NULL
);
320 usb_driver_release_interface(driver
, info
->data
);
323 /* Never use the same address on both ends of the link, even
324 * if the buggy firmware told us to.
326 if (ether_addr_equal(dev
->net
->dev_addr
, default_modem_addr
))
327 eth_hw_addr_random(dev
->net
);
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 */
334 dev
->net
->netdev_ops
= &qmi_wwan_netdev_ops
;
339 static void qmi_wwan_unbind(struct usbnet
*dev
, struct usb_interface
*intf
)
341 struct qmi_wwan_state
*info
= (void *)&dev
->data
;
342 struct usb_driver
*driver
= driver_of(intf
);
343 struct usb_interface
*other
;
345 if (info
->subdriver
&& info
->subdriver
->disconnect
)
346 info
->subdriver
->disconnect(info
->control
);
348 /* allow user to unbind using either control or data */
349 if (intf
== info
->control
)
352 other
= info
->control
;
354 /* only if not shared */
355 if (other
&& intf
!= other
) {
356 usb_set_intfdata(other
, NULL
);
357 usb_driver_release_interface(driver
, other
);
360 info
->subdriver
= NULL
;
362 info
->control
= NULL
;
365 /* suspend/resume wrappers calling both usbnet and the cdc-wdm
366 * subdriver if present.
368 * NOTE: cdc-wdm also supports pre/post_reset, but we cannot provide
369 * wrappers for those without adding usbnet reset support first.
371 static int qmi_wwan_suspend(struct usb_interface
*intf
, pm_message_t message
)
373 struct usbnet
*dev
= usb_get_intfdata(intf
);
374 struct qmi_wwan_state
*info
= (void *)&dev
->data
;
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.
382 ret
= usbnet_suspend(intf
, message
);
386 if (intf
== info
->control
&& info
->subdriver
&& info
->subdriver
->suspend
)
387 ret
= info
->subdriver
->suspend(intf
, message
);
394 static int qmi_wwan_resume(struct usb_interface
*intf
)
396 struct usbnet
*dev
= usb_get_intfdata(intf
);
397 struct qmi_wwan_state
*info
= (void *)&dev
->data
;
399 bool callsub
= (intf
== info
->control
&& info
->subdriver
&& info
->subdriver
->resume
);
402 ret
= info
->subdriver
->resume(intf
);
405 ret
= usbnet_resume(intf
);
406 if (ret
< 0 && callsub
&& info
->subdriver
->suspend
)
407 info
->subdriver
->suspend(intf
, PMSG_SUSPEND
);
412 static const struct driver_info qmi_wwan_info
= {
413 .description
= "WWAN/QMI device",
415 .bind
= qmi_wwan_bind
,
416 .unbind
= qmi_wwan_unbind
,
417 .manage_power
= qmi_wwan_manage_power
,
418 .rx_fixup
= qmi_wwan_rx_fixup
,
421 #define HUAWEI_VENDOR_ID 0x12D1
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), \
426 .driver_info = (unsigned long)&qmi_wwan_info
428 /* Gobi 1000 QMI/wwan interface number is 3 according to qcserial */
429 #define QMI_GOBI1K_DEVICE(vend, prod) \
430 QMI_FIXED_INTF(vend, prod, 3)
432 /* Gobi 2000/3000 QMI/wwan interface number is 0 according to qcserial */
433 #define QMI_GOBI_DEVICE(vend, prod) \
434 QMI_FIXED_INTF(vend, prod, 0)
436 static const struct usb_device_id products
[] = {
437 /* 1. CDC ECM like devices match on the control interface */
438 { /* Huawei E392, E398 and possibly others sharing both device id and more... */
439 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID
, USB_CLASS_VENDOR_SPEC
, 1, 9),
440 .driver_info
= (unsigned long)&qmi_wwan_info
,
442 { /* Vodafone/Huawei K5005 (12d1:14c8) and similar modems */
443 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID
, USB_CLASS_VENDOR_SPEC
, 1, 57),
444 .driver_info
= (unsigned long)&qmi_wwan_info
,
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
,
451 /* 2. Combined interface devices matching on class+protocol */
452 { /* Huawei E367 and possibly others in "Windows mode" */
453 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID
, USB_CLASS_VENDOR_SPEC
, 1, 7),
454 .driver_info
= (unsigned long)&qmi_wwan_info
,
456 { /* Huawei E392, E398 and possibly others in "Windows mode" */
457 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID
, USB_CLASS_VENDOR_SPEC
, 1, 17),
458 .driver_info
= (unsigned long)&qmi_wwan_info
,
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
,
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
,
468 { /* Pantech UML290, P4200 and more */
469 USB_VENDOR_AND_INTERFACE_INFO(0x106c, USB_CLASS_VENDOR_SPEC
, 0xf0, 0xff),
470 .driver_info
= (unsigned long)&qmi_wwan_info
,
472 { /* Pantech UML290 - newer firmware */
473 USB_VENDOR_AND_INTERFACE_INFO(0x106c, USB_CLASS_VENDOR_SPEC
, 0xf1, 0xff),
474 .driver_info
= (unsigned long)&qmi_wwan_info
,
476 { /* Novatel USB551L and MC551 */
477 USB_DEVICE_AND_INTERFACE_INFO(0x1410, 0xb001,
479 USB_CDC_SUBCLASS_ETHERNET
,
481 .driver_info
= (unsigned long)&qmi_wwan_info
,
484 USB_DEVICE_AND_INTERFACE_INFO(0x1410, 0x9010,
486 USB_CDC_SUBCLASS_ETHERNET
,
488 .driver_info
= (unsigned long)&qmi_wwan_info
,
490 { /* Dell Wireless 5800 (Novatel E362) */
491 USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x8195,
493 USB_CDC_SUBCLASS_ETHERNET
,
495 .driver_info
= (unsigned long)&qmi_wwan_info
,
497 { /* Dell Wireless 5800 V2 (Novatel E362) */
498 USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x8196,
500 USB_CDC_SUBCLASS_ETHERNET
,
502 .driver_info
= (unsigned long)&qmi_wwan_info
,
504 { /* Dell Wireless 5804 (Novatel E371) */
505 USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x819b,
507 USB_CDC_SUBCLASS_ETHERNET
,
509 .driver_info
= (unsigned long)&qmi_wwan_info
,
512 USB_DEVICE_AND_INTERFACE_INFO(0x16d5, 0x650a,
514 USB_CDC_SUBCLASS_ETHERNET
,
516 .driver_info
= (unsigned long)&qmi_wwan_info
,
519 /* 3. Combined interface devices matching on interface number */
520 {QMI_FIXED_INTF(0x0408, 0xea42, 4)}, /* Yota / Megafon M100-1 */
521 {QMI_FIXED_INTF(0x05c6, 0x7000, 0)},
522 {QMI_FIXED_INTF(0x05c6, 0x7001, 1)},
523 {QMI_FIXED_INTF(0x05c6, 0x7002, 1)},
524 {QMI_FIXED_INTF(0x05c6, 0x7101, 1)},
525 {QMI_FIXED_INTF(0x05c6, 0x7101, 2)},
526 {QMI_FIXED_INTF(0x05c6, 0x7101, 3)},
527 {QMI_FIXED_INTF(0x05c6, 0x7102, 1)},
528 {QMI_FIXED_INTF(0x05c6, 0x7102, 2)},
529 {QMI_FIXED_INTF(0x05c6, 0x7102, 3)},
530 {QMI_FIXED_INTF(0x05c6, 0x8000, 7)},
531 {QMI_FIXED_INTF(0x05c6, 0x8001, 6)},
532 {QMI_FIXED_INTF(0x05c6, 0x9000, 4)},
533 {QMI_FIXED_INTF(0x05c6, 0x9003, 4)},
534 {QMI_FIXED_INTF(0x05c6, 0x9005, 2)},
535 {QMI_FIXED_INTF(0x05c6, 0x900a, 4)},
536 {QMI_FIXED_INTF(0x05c6, 0x900b, 2)},
537 {QMI_FIXED_INTF(0x05c6, 0x900c, 4)},
538 {QMI_FIXED_INTF(0x05c6, 0x900c, 5)},
539 {QMI_FIXED_INTF(0x05c6, 0x900c, 6)},
540 {QMI_FIXED_INTF(0x05c6, 0x900d, 5)},
541 {QMI_FIXED_INTF(0x05c6, 0x900f, 3)},
542 {QMI_FIXED_INTF(0x05c6, 0x900f, 4)},
543 {QMI_FIXED_INTF(0x05c6, 0x900f, 5)},
544 {QMI_FIXED_INTF(0x05c6, 0x9010, 4)},
545 {QMI_FIXED_INTF(0x05c6, 0x9010, 5)},
546 {QMI_FIXED_INTF(0x05c6, 0x9011, 3)},
547 {QMI_FIXED_INTF(0x05c6, 0x9011, 4)},
548 {QMI_FIXED_INTF(0x05c6, 0x9021, 1)},
549 {QMI_FIXED_INTF(0x05c6, 0x9022, 2)},
550 {QMI_FIXED_INTF(0x05c6, 0x9025, 4)}, /* Alcatel-sbell ASB TL131 TDD LTE (China Mobile) */
551 {QMI_FIXED_INTF(0x05c6, 0x9026, 3)},
552 {QMI_FIXED_INTF(0x05c6, 0x902e, 5)},
553 {QMI_FIXED_INTF(0x05c6, 0x9031, 5)},
554 {QMI_FIXED_INTF(0x05c6, 0x9032, 4)},
555 {QMI_FIXED_INTF(0x05c6, 0x9033, 3)},
556 {QMI_FIXED_INTF(0x05c6, 0x9033, 4)},
557 {QMI_FIXED_INTF(0x05c6, 0x9033, 5)},
558 {QMI_FIXED_INTF(0x05c6, 0x9033, 6)},
559 {QMI_FIXED_INTF(0x05c6, 0x9034, 3)},
560 {QMI_FIXED_INTF(0x05c6, 0x9034, 4)},
561 {QMI_FIXED_INTF(0x05c6, 0x9034, 5)},
562 {QMI_FIXED_INTF(0x05c6, 0x9034, 6)},
563 {QMI_FIXED_INTF(0x05c6, 0x9034, 7)},
564 {QMI_FIXED_INTF(0x05c6, 0x9035, 4)},
565 {QMI_FIXED_INTF(0x05c6, 0x9036, 3)},
566 {QMI_FIXED_INTF(0x05c6, 0x9037, 5)},
567 {QMI_FIXED_INTF(0x05c6, 0x9038, 4)},
568 {QMI_FIXED_INTF(0x05c6, 0x903b, 7)},
569 {QMI_FIXED_INTF(0x05c6, 0x903c, 6)},
570 {QMI_FIXED_INTF(0x05c6, 0x903d, 6)},
571 {QMI_FIXED_INTF(0x05c6, 0x903e, 5)},
572 {QMI_FIXED_INTF(0x05c6, 0x9043, 3)},
573 {QMI_FIXED_INTF(0x05c6, 0x9046, 3)},
574 {QMI_FIXED_INTF(0x05c6, 0x9046, 4)},
575 {QMI_FIXED_INTF(0x05c6, 0x9046, 5)},
576 {QMI_FIXED_INTF(0x05c6, 0x9047, 2)},
577 {QMI_FIXED_INTF(0x05c6, 0x9047, 3)},
578 {QMI_FIXED_INTF(0x05c6, 0x9047, 4)},
579 {QMI_FIXED_INTF(0x05c6, 0x9048, 4)},
580 {QMI_FIXED_INTF(0x05c6, 0x9048, 5)},
581 {QMI_FIXED_INTF(0x05c6, 0x9048, 6)},
582 {QMI_FIXED_INTF(0x05c6, 0x9048, 7)},
583 {QMI_FIXED_INTF(0x05c6, 0x9048, 8)},
584 {QMI_FIXED_INTF(0x05c6, 0x904c, 5)},
585 {QMI_FIXED_INTF(0x05c6, 0x904c, 6)},
586 {QMI_FIXED_INTF(0x05c6, 0x904c, 7)},
587 {QMI_FIXED_INTF(0x05c6, 0x904c, 8)},
588 {QMI_FIXED_INTF(0x05c6, 0x9050, 3)},
589 {QMI_FIXED_INTF(0x05c6, 0x9052, 4)},
590 {QMI_FIXED_INTF(0x05c6, 0x9053, 6)},
591 {QMI_FIXED_INTF(0x05c6, 0x9053, 7)},
592 {QMI_FIXED_INTF(0x05c6, 0x9054, 5)},
593 {QMI_FIXED_INTF(0x05c6, 0x9054, 6)},
594 {QMI_FIXED_INTF(0x05c6, 0x9055, 3)},
595 {QMI_FIXED_INTF(0x05c6, 0x9055, 4)},
596 {QMI_FIXED_INTF(0x05c6, 0x9055, 5)},
597 {QMI_FIXED_INTF(0x05c6, 0x9055, 6)},
598 {QMI_FIXED_INTF(0x05c6, 0x9055, 7)},
599 {QMI_FIXED_INTF(0x05c6, 0x9056, 3)},
600 {QMI_FIXED_INTF(0x05c6, 0x9062, 2)},
601 {QMI_FIXED_INTF(0x05c6, 0x9062, 3)},
602 {QMI_FIXED_INTF(0x05c6, 0x9062, 4)},
603 {QMI_FIXED_INTF(0x05c6, 0x9062, 5)},
604 {QMI_FIXED_INTF(0x05c6, 0x9062, 6)},
605 {QMI_FIXED_INTF(0x05c6, 0x9062, 7)},
606 {QMI_FIXED_INTF(0x05c6, 0x9062, 8)},
607 {QMI_FIXED_INTF(0x05c6, 0x9062, 9)},
608 {QMI_FIXED_INTF(0x05c6, 0x9064, 3)},
609 {QMI_FIXED_INTF(0x05c6, 0x9065, 6)},
610 {QMI_FIXED_INTF(0x05c6, 0x9065, 7)},
611 {QMI_FIXED_INTF(0x05c6, 0x9066, 5)},
612 {QMI_FIXED_INTF(0x05c6, 0x9066, 6)},
613 {QMI_FIXED_INTF(0x05c6, 0x9067, 1)},
614 {QMI_FIXED_INTF(0x05c6, 0x9068, 2)},
615 {QMI_FIXED_INTF(0x05c6, 0x9068, 3)},
616 {QMI_FIXED_INTF(0x05c6, 0x9068, 4)},
617 {QMI_FIXED_INTF(0x05c6, 0x9068, 5)},
618 {QMI_FIXED_INTF(0x05c6, 0x9068, 6)},
619 {QMI_FIXED_INTF(0x05c6, 0x9068, 7)},
620 {QMI_FIXED_INTF(0x05c6, 0x9069, 5)},
621 {QMI_FIXED_INTF(0x05c6, 0x9069, 6)},
622 {QMI_FIXED_INTF(0x05c6, 0x9069, 7)},
623 {QMI_FIXED_INTF(0x05c6, 0x9069, 8)},
624 {QMI_FIXED_INTF(0x05c6, 0x9070, 4)},
625 {QMI_FIXED_INTF(0x05c6, 0x9070, 5)},
626 {QMI_FIXED_INTF(0x05c6, 0x9075, 5)},
627 {QMI_FIXED_INTF(0x05c6, 0x9076, 4)},
628 {QMI_FIXED_INTF(0x05c6, 0x9076, 5)},
629 {QMI_FIXED_INTF(0x05c6, 0x9076, 6)},
630 {QMI_FIXED_INTF(0x05c6, 0x9076, 7)},
631 {QMI_FIXED_INTF(0x05c6, 0x9076, 8)},
632 {QMI_FIXED_INTF(0x05c6, 0x9077, 3)},
633 {QMI_FIXED_INTF(0x05c6, 0x9077, 4)},
634 {QMI_FIXED_INTF(0x05c6, 0x9077, 5)},
635 {QMI_FIXED_INTF(0x05c6, 0x9077, 6)},
636 {QMI_FIXED_INTF(0x05c6, 0x9078, 3)},
637 {QMI_FIXED_INTF(0x05c6, 0x9079, 4)},
638 {QMI_FIXED_INTF(0x05c6, 0x9079, 5)},
639 {QMI_FIXED_INTF(0x05c6, 0x9079, 6)},
640 {QMI_FIXED_INTF(0x05c6, 0x9079, 7)},
641 {QMI_FIXED_INTF(0x05c6, 0x9079, 8)},
642 {QMI_FIXED_INTF(0x05c6, 0x9080, 5)},
643 {QMI_FIXED_INTF(0x05c6, 0x9080, 6)},
644 {QMI_FIXED_INTF(0x05c6, 0x9080, 7)},
645 {QMI_FIXED_INTF(0x05c6, 0x9080, 8)},
646 {QMI_FIXED_INTF(0x05c6, 0x9083, 3)},
647 {QMI_FIXED_INTF(0x05c6, 0x9084, 4)},
648 {QMI_FIXED_INTF(0x05c6, 0x920d, 0)},
649 {QMI_FIXED_INTF(0x05c6, 0x920d, 5)},
650 {QMI_FIXED_INTF(0x0846, 0x68a2, 8)},
651 {QMI_FIXED_INTF(0x12d1, 0x140c, 1)}, /* Huawei E173 */
652 {QMI_FIXED_INTF(0x12d1, 0x14ac, 1)}, /* Huawei E1820 */
653 {QMI_FIXED_INTF(0x16d8, 0x6003, 0)}, /* CMOTech 6003 */
654 {QMI_FIXED_INTF(0x16d8, 0x6007, 0)}, /* CMOTech CHE-628S */
655 {QMI_FIXED_INTF(0x16d8, 0x6008, 0)}, /* CMOTech CMU-301 */
656 {QMI_FIXED_INTF(0x16d8, 0x6280, 0)}, /* CMOTech CHU-628 */
657 {QMI_FIXED_INTF(0x16d8, 0x7001, 0)}, /* CMOTech CHU-720S */
658 {QMI_FIXED_INTF(0x16d8, 0x7002, 0)}, /* CMOTech 7002 */
659 {QMI_FIXED_INTF(0x16d8, 0x7003, 4)}, /* CMOTech CHU-629K */
660 {QMI_FIXED_INTF(0x16d8, 0x7004, 3)}, /* CMOTech 7004 */
661 {QMI_FIXED_INTF(0x16d8, 0x7006, 5)}, /* CMOTech CGU-629 */
662 {QMI_FIXED_INTF(0x16d8, 0x700a, 4)}, /* CMOTech CHU-629S */
663 {QMI_FIXED_INTF(0x16d8, 0x7211, 0)}, /* CMOTech CHU-720I */
664 {QMI_FIXED_INTF(0x16d8, 0x7212, 0)}, /* CMOTech 7212 */
665 {QMI_FIXED_INTF(0x16d8, 0x7213, 0)}, /* CMOTech 7213 */
666 {QMI_FIXED_INTF(0x16d8, 0x7251, 1)}, /* CMOTech 7251 */
667 {QMI_FIXED_INTF(0x16d8, 0x7252, 1)}, /* CMOTech 7252 */
668 {QMI_FIXED_INTF(0x16d8, 0x7253, 1)}, /* CMOTech 7253 */
669 {QMI_FIXED_INTF(0x19d2, 0x0002, 1)},
670 {QMI_FIXED_INTF(0x19d2, 0x0012, 1)},
671 {QMI_FIXED_INTF(0x19d2, 0x0017, 3)},
672 {QMI_FIXED_INTF(0x19d2, 0x0019, 3)}, /* ONDA MT689DC */
673 {QMI_FIXED_INTF(0x19d2, 0x0021, 4)},
674 {QMI_FIXED_INTF(0x19d2, 0x0025, 1)},
675 {QMI_FIXED_INTF(0x19d2, 0x0031, 4)},
676 {QMI_FIXED_INTF(0x19d2, 0x0042, 4)},
677 {QMI_FIXED_INTF(0x19d2, 0x0049, 5)},
678 {QMI_FIXED_INTF(0x19d2, 0x0052, 4)},
679 {QMI_FIXED_INTF(0x19d2, 0x0055, 1)}, /* ZTE (Vodafone) K3520-Z */
680 {QMI_FIXED_INTF(0x19d2, 0x0058, 4)},
681 {QMI_FIXED_INTF(0x19d2, 0x0063, 4)}, /* ZTE (Vodafone) K3565-Z */
682 {QMI_FIXED_INTF(0x19d2, 0x0104, 4)}, /* ZTE (Vodafone) K4505-Z */
683 {QMI_FIXED_INTF(0x19d2, 0x0113, 5)},
684 {QMI_FIXED_INTF(0x19d2, 0x0118, 5)},
685 {QMI_FIXED_INTF(0x19d2, 0x0121, 5)},
686 {QMI_FIXED_INTF(0x19d2, 0x0123, 4)},
687 {QMI_FIXED_INTF(0x19d2, 0x0124, 5)},
688 {QMI_FIXED_INTF(0x19d2, 0x0125, 6)},
689 {QMI_FIXED_INTF(0x19d2, 0x0126, 5)},
690 {QMI_FIXED_INTF(0x19d2, 0x0130, 1)},
691 {QMI_FIXED_INTF(0x19d2, 0x0133, 3)},
692 {QMI_FIXED_INTF(0x19d2, 0x0141, 5)},
693 {QMI_FIXED_INTF(0x19d2, 0x0157, 5)}, /* ZTE MF683 */
694 {QMI_FIXED_INTF(0x19d2, 0x0158, 3)},
695 {QMI_FIXED_INTF(0x19d2, 0x0167, 4)}, /* ZTE MF820D */
696 {QMI_FIXED_INTF(0x19d2, 0x0168, 4)},
697 {QMI_FIXED_INTF(0x19d2, 0x0176, 3)},
698 {QMI_FIXED_INTF(0x19d2, 0x0178, 3)},
699 {QMI_FIXED_INTF(0x19d2, 0x0191, 4)}, /* ZTE EuFi890 */
700 {QMI_FIXED_INTF(0x19d2, 0x0199, 1)}, /* ZTE MF820S */
701 {QMI_FIXED_INTF(0x19d2, 0x0200, 1)},
702 {QMI_FIXED_INTF(0x19d2, 0x0257, 3)}, /* ZTE MF821 */
703 {QMI_FIXED_INTF(0x19d2, 0x0265, 4)}, /* ONDA MT8205 4G LTE */
704 {QMI_FIXED_INTF(0x19d2, 0x0284, 4)}, /* ZTE MF880 */
705 {QMI_FIXED_INTF(0x19d2, 0x0326, 4)}, /* ZTE MF821D */
706 {QMI_FIXED_INTF(0x19d2, 0x0412, 4)}, /* Telewell TW-LTE 4G */
707 {QMI_FIXED_INTF(0x19d2, 0x1008, 4)}, /* ZTE (Vodafone) K3570-Z */
708 {QMI_FIXED_INTF(0x19d2, 0x1010, 4)}, /* ZTE (Vodafone) K3571-Z */
709 {QMI_FIXED_INTF(0x19d2, 0x1012, 4)},
710 {QMI_FIXED_INTF(0x19d2, 0x1018, 3)}, /* ZTE (Vodafone) K5006-Z */
711 {QMI_FIXED_INTF(0x19d2, 0x1021, 2)},
712 {QMI_FIXED_INTF(0x19d2, 0x1245, 4)},
713 {QMI_FIXED_INTF(0x19d2, 0x1247, 4)},
714 {QMI_FIXED_INTF(0x19d2, 0x1252, 4)},
715 {QMI_FIXED_INTF(0x19d2, 0x1254, 4)},
716 {QMI_FIXED_INTF(0x19d2, 0x1255, 3)},
717 {QMI_FIXED_INTF(0x19d2, 0x1255, 4)},
718 {QMI_FIXED_INTF(0x19d2, 0x1256, 4)},
719 {QMI_FIXED_INTF(0x19d2, 0x1270, 5)}, /* ZTE MF667 */
720 {QMI_FIXED_INTF(0x19d2, 0x1401, 2)},
721 {QMI_FIXED_INTF(0x19d2, 0x1402, 2)}, /* ZTE MF60 */
722 {QMI_FIXED_INTF(0x19d2, 0x1424, 2)},
723 {QMI_FIXED_INTF(0x19d2, 0x1425, 2)},
724 {QMI_FIXED_INTF(0x19d2, 0x1426, 2)}, /* ZTE MF91 */
725 {QMI_FIXED_INTF(0x19d2, 0x1428, 2)}, /* Telewell TW-LTE 4G v2 */
726 {QMI_FIXED_INTF(0x19d2, 0x2002, 4)}, /* ZTE (Vodafone) K3765-Z */
727 {QMI_FIXED_INTF(0x0f3d, 0x68a2, 8)}, /* Sierra Wireless MC7700 */
728 {QMI_FIXED_INTF(0x114f, 0x68a2, 8)}, /* Sierra Wireless MC7750 */
729 {QMI_FIXED_INTF(0x1199, 0x68a2, 8)}, /* Sierra Wireless MC7710 in QMI mode */
730 {QMI_FIXED_INTF(0x1199, 0x68a2, 19)}, /* Sierra Wireless MC7710 in QMI mode */
731 {QMI_FIXED_INTF(0x1199, 0x68c0, 8)}, /* Sierra Wireless MC73xx */
732 {QMI_FIXED_INTF(0x1199, 0x68c0, 10)}, /* Sierra Wireless MC73xx */
733 {QMI_FIXED_INTF(0x1199, 0x68c0, 11)}, /* Sierra Wireless MC73xx */
734 {QMI_FIXED_INTF(0x1199, 0x901c, 8)}, /* Sierra Wireless EM7700 */
735 {QMI_FIXED_INTF(0x1199, 0x901f, 8)}, /* Sierra Wireless EM7355 */
736 {QMI_FIXED_INTF(0x1199, 0x9041, 8)}, /* Sierra Wireless MC7305/MC7355 */
737 {QMI_FIXED_INTF(0x1199, 0x9051, 8)}, /* Netgear AirCard 340U */
738 {QMI_FIXED_INTF(0x1199, 0x9057, 8)},
739 {QMI_FIXED_INTF(0x1bbb, 0x011e, 4)}, /* Telekom Speedstick LTE II (Alcatel One Touch L100V LTE) */
740 {QMI_FIXED_INTF(0x1bbb, 0x0203, 2)}, /* Alcatel L800MA */
741 {QMI_FIXED_INTF(0x2357, 0x0201, 4)}, /* TP-LINK HSUPA Modem MA180 */
742 {QMI_FIXED_INTF(0x2357, 0x9000, 4)}, /* TP-LINK MA260 */
743 {QMI_FIXED_INTF(0x1bc7, 0x1200, 5)}, /* Telit LE920 */
744 {QMI_FIXED_INTF(0x1bc7, 0x1201, 2)}, /* Telit LE920 */
745 {QMI_FIXED_INTF(0x0b3c, 0xc000, 4)}, /* Olivetti Olicard 100 */
746 {QMI_FIXED_INTF(0x0b3c, 0xc001, 4)}, /* Olivetti Olicard 120 */
747 {QMI_FIXED_INTF(0x0b3c, 0xc002, 4)}, /* Olivetti Olicard 140 */
748 {QMI_FIXED_INTF(0x0b3c, 0xc004, 6)}, /* Olivetti Olicard 155 */
749 {QMI_FIXED_INTF(0x0b3c, 0xc005, 6)}, /* Olivetti Olicard 200 */
750 {QMI_FIXED_INTF(0x0b3c, 0xc00a, 6)}, /* Olivetti Olicard 160 */
751 {QMI_FIXED_INTF(0x0b3c, 0xc00b, 4)}, /* Olivetti Olicard 500 */
752 {QMI_FIXED_INTF(0x1e2d, 0x0060, 4)}, /* Cinterion PLxx */
753 {QMI_FIXED_INTF(0x1e2d, 0x0053, 4)}, /* Cinterion PHxx,PXxx */
754 {QMI_FIXED_INTF(0x413c, 0x81a2, 8)}, /* Dell Wireless 5806 Gobi(TM) 4G LTE Mobile Broadband Card */
755 {QMI_FIXED_INTF(0x413c, 0x81a3, 8)}, /* Dell Wireless 5570 HSPA+ (42Mbps) Mobile Broadband Card */
756 {QMI_FIXED_INTF(0x413c, 0x81a4, 8)}, /* Dell Wireless 5570e HSPA+ (42Mbps) Mobile Broadband Card */
757 {QMI_FIXED_INTF(0x413c, 0x81a8, 8)}, /* Dell Wireless 5808 Gobi(TM) 4G LTE Mobile Broadband Card */
758 {QMI_FIXED_INTF(0x413c, 0x81a9, 8)}, /* Dell Wireless 5808e Gobi(TM) 4G LTE Mobile Broadband Card */
760 /* 4. Gobi 1000 devices */
761 {QMI_GOBI1K_DEVICE(0x05c6, 0x9212)}, /* Acer Gobi Modem Device */
762 {QMI_GOBI1K_DEVICE(0x03f0, 0x1f1d)}, /* HP un2400 Gobi Modem Device */
763 {QMI_GOBI1K_DEVICE(0x04da, 0x250d)}, /* Panasonic Gobi Modem device */
764 {QMI_GOBI1K_DEVICE(0x413c, 0x8172)}, /* Dell Gobi Modem device */
765 {QMI_GOBI1K_DEVICE(0x1410, 0xa001)}, /* Novatel/Verizon USB-1000 */
766 {QMI_GOBI1K_DEVICE(0x1410, 0xa002)}, /* Novatel Gobi Modem device */
767 {QMI_GOBI1K_DEVICE(0x1410, 0xa003)}, /* Novatel Gobi Modem device */
768 {QMI_GOBI1K_DEVICE(0x1410, 0xa004)}, /* Novatel Gobi Modem device */
769 {QMI_GOBI1K_DEVICE(0x1410, 0xa005)}, /* Novatel Gobi Modem device */
770 {QMI_GOBI1K_DEVICE(0x1410, 0xa006)}, /* Novatel Gobi Modem device */
771 {QMI_GOBI1K_DEVICE(0x1410, 0xa007)}, /* Novatel Gobi Modem device */
772 {QMI_GOBI1K_DEVICE(0x0b05, 0x1776)}, /* Asus Gobi Modem device */
773 {QMI_GOBI1K_DEVICE(0x19d2, 0xfff3)}, /* ONDA Gobi Modem device */
774 {QMI_GOBI1K_DEVICE(0x05c6, 0x9001)}, /* Generic Gobi Modem device */
775 {QMI_GOBI1K_DEVICE(0x05c6, 0x9002)}, /* Generic Gobi Modem device */
776 {QMI_GOBI1K_DEVICE(0x05c6, 0x9202)}, /* Generic Gobi Modem device */
777 {QMI_GOBI1K_DEVICE(0x05c6, 0x9203)}, /* Generic Gobi Modem device */
778 {QMI_GOBI1K_DEVICE(0x05c6, 0x9222)}, /* Generic Gobi Modem device */
779 {QMI_GOBI1K_DEVICE(0x05c6, 0x9009)}, /* Generic Gobi Modem device */
781 /* 5. Gobi 2000 and 3000 devices */
782 {QMI_GOBI_DEVICE(0x413c, 0x8186)}, /* Dell Gobi 2000 Modem device (N0218, VU936) */
783 {QMI_GOBI_DEVICE(0x413c, 0x8194)}, /* Dell Gobi 3000 Composite */
784 {QMI_GOBI_DEVICE(0x05c6, 0x920b)}, /* Generic Gobi 2000 Modem device */
785 {QMI_GOBI_DEVICE(0x05c6, 0x9225)}, /* Sony Gobi 2000 Modem device (N0279, VU730) */
786 {QMI_GOBI_DEVICE(0x05c6, 0x9245)}, /* Samsung Gobi 2000 Modem device (VL176) */
787 {QMI_GOBI_DEVICE(0x03f0, 0x251d)}, /* HP Gobi 2000 Modem device (VP412) */
788 {QMI_GOBI_DEVICE(0x05c6, 0x9215)}, /* Acer Gobi 2000 Modem device (VP413) */
789 {QMI_GOBI_DEVICE(0x05c6, 0x9265)}, /* Asus Gobi 2000 Modem device (VR305) */
790 {QMI_GOBI_DEVICE(0x05c6, 0x9235)}, /* Top Global Gobi 2000 Modem device (VR306) */
791 {QMI_GOBI_DEVICE(0x05c6, 0x9275)}, /* iRex Technologies Gobi 2000 Modem device (VR307) */
792 {QMI_GOBI_DEVICE(0x0af0, 0x8120)}, /* Option GTM681W */
793 {QMI_GOBI_DEVICE(0x1199, 0x68a5)}, /* Sierra Wireless Modem */
794 {QMI_GOBI_DEVICE(0x1199, 0x68a9)}, /* Sierra Wireless Modem */
795 {QMI_GOBI_DEVICE(0x1199, 0x9001)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
796 {QMI_GOBI_DEVICE(0x1199, 0x9002)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
797 {QMI_GOBI_DEVICE(0x1199, 0x9003)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
798 {QMI_GOBI_DEVICE(0x1199, 0x9004)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
799 {QMI_GOBI_DEVICE(0x1199, 0x9005)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
800 {QMI_GOBI_DEVICE(0x1199, 0x9006)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
801 {QMI_GOBI_DEVICE(0x1199, 0x9007)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
802 {QMI_GOBI_DEVICE(0x1199, 0x9008)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
803 {QMI_GOBI_DEVICE(0x1199, 0x9009)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
804 {QMI_GOBI_DEVICE(0x1199, 0x900a)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
805 {QMI_GOBI_DEVICE(0x1199, 0x9011)}, /* Sierra Wireless Gobi 2000 Modem device (MC8305) */
806 {QMI_GOBI_DEVICE(0x16d8, 0x8002)}, /* CMDTech Gobi 2000 Modem device (VU922) */
807 {QMI_GOBI_DEVICE(0x05c6, 0x9205)}, /* Gobi 2000 Modem device */
808 {QMI_GOBI_DEVICE(0x1199, 0x9013)}, /* Sierra Wireless Gobi 3000 Modem device (MC8355) */
809 {QMI_GOBI_DEVICE(0x03f0, 0x371d)}, /* HP un2430 Mobile Broadband Module */
810 {QMI_GOBI_DEVICE(0x1199, 0x9015)}, /* Sierra Wireless Gobi 3000 Modem device */
811 {QMI_GOBI_DEVICE(0x1199, 0x9019)}, /* Sierra Wireless Gobi 3000 Modem device */
812 {QMI_GOBI_DEVICE(0x1199, 0x901b)}, /* Sierra Wireless MC7770 */
813 {QMI_GOBI_DEVICE(0x12d1, 0x14f1)}, /* Sony Gobi 3000 Composite */
814 {QMI_GOBI_DEVICE(0x1410, 0xa021)}, /* Foxconn Gobi 3000 Modem device (Novatel E396) */
818 MODULE_DEVICE_TABLE(usb
, products
);
820 static int qmi_wwan_probe(struct usb_interface
*intf
, const struct usb_device_id
*prod
)
822 struct usb_device_id
*id
= (struct usb_device_id
*)prod
;
824 /* Workaround to enable dynamic IDs. This disables usbnet
825 * blacklisting functionality. Which, if required, can be
826 * reimplemented here by using a magic "blacklist" value
827 * instead of 0 in the static device id table
829 if (!id
->driver_info
) {
830 dev_dbg(&intf
->dev
, "setting defaults for dynamic device id\n");
831 id
->driver_info
= (unsigned long)&qmi_wwan_info
;
834 return usbnet_probe(intf
, id
);
837 static struct usb_driver qmi_wwan_driver
= {
839 .id_table
= products
,
840 .probe
= qmi_wwan_probe
,
841 .disconnect
= usbnet_disconnect
,
842 .suspend
= qmi_wwan_suspend
,
843 .resume
= qmi_wwan_resume
,
844 .reset_resume
= qmi_wwan_resume
,
845 .supports_autosuspend
= 1,
846 .disable_hub_initiated_lpm
= 1,
849 module_usb_driver(qmi_wwan_driver
);
851 MODULE_AUTHOR("Bjørn Mork <bjorn@mork.no>");
852 MODULE_DESCRIPTION("Qualcomm MSM Interface (QMI) WWAN driver");
853 MODULE_LICENSE("GPL");