GNU Linux-libre 4.19.211-gnu1
[releases.git] / drivers / net / usb / qmi_wwan.c
1 /*
2  * Copyright (c) 2012  Bjørn Mork <bjorn@mork.no>
3  *
4  * The probing code is heavily inspired by cdc_ether, which is:
5  * Copyright (C) 2003-2005 by David Brownell
6  * Copyright (C) 2006 by Ole Andre Vadla Ravnas (ActiveSync)
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * version 2 as published by the Free Software Foundation.
11  */
12
13 #include <linux/module.h>
14 #include <linux/sched/signal.h>
15 #include <linux/netdevice.h>
16 #include <linux/ethtool.h>
17 #include <linux/etherdevice.h>
18 #include <linux/if_arp.h>
19 #include <linux/mii.h>
20 #include <linux/rtnetlink.h>
21 #include <linux/usb.h>
22 #include <linux/usb/cdc.h>
23 #include <linux/usb/usbnet.h>
24 #include <linux/usb/cdc-wdm.h>
25 #include <linux/u64_stats_sync.h>
26
27 /* This driver supports wwan (3G/LTE/?) devices using a vendor
28  * specific management protocol called Qualcomm MSM Interface (QMI) -
29  * in addition to the more common AT commands over serial interface
30  * management
31  *
32  * QMI is wrapped in CDC, using CDC encapsulated commands on the
33  * control ("master") interface of a two-interface CDC Union
34  * resembling standard CDC ECM.  The devices do not use the control
35  * interface for any other CDC messages.  Most likely because the
36  * management protocol is used in place of the standard CDC
37  * notifications NOTIFY_NETWORK_CONNECTION and NOTIFY_SPEED_CHANGE
38  *
39  * Alternatively, control and data functions can be combined in a
40  * single USB interface.
41  *
42  * Handling a protocol like QMI is out of the scope for any driver.
43  * It is exported as a character device using the cdc-wdm driver as
44  * a subdriver, enabling userspace applications ("modem managers") to
45  * handle it.
46  *
47  * These devices may alternatively/additionally be configured using AT
48  * commands on a serial interface
49  */
50
51 /* driver specific data */
52 struct qmi_wwan_state {
53         struct usb_driver *subdriver;
54         atomic_t pmcount;
55         unsigned long flags;
56         struct usb_interface *control;
57         struct usb_interface *data;
58 };
59
60 enum qmi_wwan_flags {
61         QMI_WWAN_FLAG_RAWIP = 1 << 0,
62         QMI_WWAN_FLAG_MUX = 1 << 1,
63 };
64
65 enum qmi_wwan_quirks {
66         QMI_WWAN_QUIRK_DTR = 1 << 0,    /* needs "set DTR" request */
67 };
68
69 struct qmimux_hdr {
70         u8 pad;
71         u8 mux_id;
72         __be16 pkt_len;
73 };
74
75 struct qmimux_priv {
76         struct net_device *real_dev;
77         u8 mux_id;
78         struct pcpu_sw_netstats __percpu *stats64;
79 };
80
81 static int qmimux_open(struct net_device *dev)
82 {
83         struct qmimux_priv *priv = netdev_priv(dev);
84         struct net_device *real_dev = priv->real_dev;
85
86         if (!(priv->real_dev->flags & IFF_UP))
87                 return -ENETDOWN;
88
89         if (netif_carrier_ok(real_dev))
90                 netif_carrier_on(dev);
91         return 0;
92 }
93
94 static int qmimux_stop(struct net_device *dev)
95 {
96         netif_carrier_off(dev);
97         return 0;
98 }
99
100 static netdev_tx_t qmimux_start_xmit(struct sk_buff *skb, struct net_device *dev)
101 {
102         struct qmimux_priv *priv = netdev_priv(dev);
103         unsigned int len = skb->len;
104         struct qmimux_hdr *hdr;
105         netdev_tx_t ret;
106
107         hdr = skb_push(skb, sizeof(struct qmimux_hdr));
108         hdr->pad = 0;
109         hdr->mux_id = priv->mux_id;
110         hdr->pkt_len = cpu_to_be16(len);
111         skb->dev = priv->real_dev;
112         ret = dev_queue_xmit(skb);
113
114         if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
115                 struct pcpu_sw_netstats *stats64 = this_cpu_ptr(priv->stats64);
116
117                 u64_stats_update_begin(&stats64->syncp);
118                 stats64->tx_packets++;
119                 stats64->tx_bytes += len;
120                 u64_stats_update_end(&stats64->syncp);
121         } else {
122                 dev->stats.tx_dropped++;
123         }
124
125         return ret;
126 }
127
128 static void qmimux_get_stats64(struct net_device *net,
129                                struct rtnl_link_stats64 *stats)
130 {
131         struct qmimux_priv *priv = netdev_priv(net);
132         unsigned int start;
133         int cpu;
134
135         netdev_stats_to_stats64(stats, &net->stats);
136
137         for_each_possible_cpu(cpu) {
138                 struct pcpu_sw_netstats *stats64;
139                 u64 rx_packets, rx_bytes;
140                 u64 tx_packets, tx_bytes;
141
142                 stats64 = per_cpu_ptr(priv->stats64, cpu);
143
144                 do {
145                         start = u64_stats_fetch_begin_irq(&stats64->syncp);
146                         rx_packets = stats64->rx_packets;
147                         rx_bytes = stats64->rx_bytes;
148                         tx_packets = stats64->tx_packets;
149                         tx_bytes = stats64->tx_bytes;
150                 } while (u64_stats_fetch_retry_irq(&stats64->syncp, start));
151
152                 stats->rx_packets += rx_packets;
153                 stats->rx_bytes += rx_bytes;
154                 stats->tx_packets += tx_packets;
155                 stats->tx_bytes += tx_bytes;
156         }
157 }
158
159 static const struct net_device_ops qmimux_netdev_ops = {
160         .ndo_open        = qmimux_open,
161         .ndo_stop        = qmimux_stop,
162         .ndo_start_xmit  = qmimux_start_xmit,
163         .ndo_get_stats64 = qmimux_get_stats64,
164 };
165
166 static void qmimux_setup(struct net_device *dev)
167 {
168         dev->header_ops      = NULL;  /* No header */
169         dev->type            = ARPHRD_NONE;
170         dev->hard_header_len = 0;
171         dev->addr_len        = 0;
172         dev->flags           = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
173         dev->netdev_ops      = &qmimux_netdev_ops;
174         dev->mtu             = 1500;
175         dev->needs_free_netdev = true;
176 }
177
178 static struct net_device *qmimux_find_dev(struct usbnet *dev, u8 mux_id)
179 {
180         struct qmimux_priv *priv;
181         struct list_head *iter;
182         struct net_device *ldev;
183
184         rcu_read_lock();
185         netdev_for_each_upper_dev_rcu(dev->net, ldev, iter) {
186                 priv = netdev_priv(ldev);
187                 if (priv->mux_id == mux_id) {
188                         rcu_read_unlock();
189                         return ldev;
190                 }
191         }
192         rcu_read_unlock();
193         return NULL;
194 }
195
196 static bool qmimux_has_slaves(struct usbnet *dev)
197 {
198         return !list_empty(&dev->net->adj_list.upper);
199 }
200
201 static int qmimux_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
202 {
203         unsigned int len, offset = 0, pad_len, pkt_len;
204         struct qmimux_hdr *hdr;
205         struct net_device *net;
206         struct sk_buff *skbn;
207         u8 qmimux_hdr_sz = sizeof(*hdr);
208
209         while (offset + qmimux_hdr_sz < skb->len) {
210                 hdr = (struct qmimux_hdr *)(skb->data + offset);
211                 len = be16_to_cpu(hdr->pkt_len);
212
213                 /* drop the packet, bogus length */
214                 if (offset + len + qmimux_hdr_sz > skb->len)
215                         return 0;
216
217                 /* control packet, we do not know what to do */
218                 if (hdr->pad & 0x80)
219                         goto skip;
220
221                 /* extract padding length and check for valid length info */
222                 pad_len = hdr->pad & 0x3f;
223                 if (len == 0 || pad_len >= len)
224                         goto skip;
225                 pkt_len = len - pad_len;
226
227                 net = qmimux_find_dev(dev, hdr->mux_id);
228                 if (!net)
229                         goto skip;
230                 skbn = netdev_alloc_skb(net, pkt_len);
231                 if (!skbn)
232                         return 0;
233                 skbn->dev = net;
234
235                 switch (skb->data[offset + qmimux_hdr_sz] & 0xf0) {
236                 case 0x40:
237                         skbn->protocol = htons(ETH_P_IP);
238                         break;
239                 case 0x60:
240                         skbn->protocol = htons(ETH_P_IPV6);
241                         break;
242                 default:
243                         /* not ip - do not know what to do */
244                         goto skip;
245                 }
246
247                 skb_put_data(skbn, skb->data + offset + qmimux_hdr_sz, pkt_len);
248                 if (netif_rx(skbn) != NET_RX_SUCCESS) {
249                         net->stats.rx_errors++;
250                         return 0;
251                 } else {
252                         struct pcpu_sw_netstats *stats64;
253                         struct qmimux_priv *priv = netdev_priv(net);
254
255                         stats64 = this_cpu_ptr(priv->stats64);
256                         u64_stats_update_begin(&stats64->syncp);
257                         stats64->rx_packets++;
258                         stats64->rx_bytes += pkt_len;
259                         u64_stats_update_end(&stats64->syncp);
260                 }
261
262 skip:
263                 offset += len + qmimux_hdr_sz;
264         }
265         return 1;
266 }
267
268 static int qmimux_register_device(struct net_device *real_dev, u8 mux_id)
269 {
270         struct net_device *new_dev;
271         struct qmimux_priv *priv;
272         int err;
273
274         new_dev = alloc_netdev(sizeof(struct qmimux_priv),
275                                "qmimux%d", NET_NAME_UNKNOWN, qmimux_setup);
276         if (!new_dev)
277                 return -ENOBUFS;
278
279         dev_net_set(new_dev, dev_net(real_dev));
280         priv = netdev_priv(new_dev);
281         priv->mux_id = mux_id;
282         priv->real_dev = real_dev;
283
284         priv->stats64 = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
285         if (!priv->stats64) {
286                 err = -ENOBUFS;
287                 goto out_free_newdev;
288         }
289
290         err = register_netdevice(new_dev);
291         if (err < 0)
292                 goto out_free_newdev;
293
294         /* Account for reference in struct qmimux_priv_priv */
295         dev_hold(real_dev);
296
297         err = netdev_upper_dev_link(real_dev, new_dev, NULL);
298         if (err)
299                 goto out_unregister_netdev;
300
301         netif_stacked_transfer_operstate(real_dev, new_dev);
302
303         return 0;
304
305 out_unregister_netdev:
306         unregister_netdevice(new_dev);
307         dev_put(real_dev);
308
309 out_free_newdev:
310         free_netdev(new_dev);
311         return err;
312 }
313
314 static void qmimux_unregister_device(struct net_device *dev,
315                                      struct list_head *head)
316 {
317         struct qmimux_priv *priv = netdev_priv(dev);
318         struct net_device *real_dev = priv->real_dev;
319
320         free_percpu(priv->stats64);
321         netdev_upper_dev_unlink(real_dev, dev);
322         unregister_netdevice_queue(dev, head);
323
324         /* Get rid of the reference to real_dev */
325         dev_put(real_dev);
326 }
327
328 static void qmi_wwan_netdev_setup(struct net_device *net)
329 {
330         struct usbnet *dev = netdev_priv(net);
331         struct qmi_wwan_state *info = (void *)&dev->data;
332
333         if (info->flags & QMI_WWAN_FLAG_RAWIP) {
334                 net->header_ops      = NULL;  /* No header */
335                 net->type            = ARPHRD_NONE;
336                 net->hard_header_len = 0;
337                 net->addr_len        = 0;
338                 net->flags           = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
339                 set_bit(EVENT_NO_IP_ALIGN, &dev->flags);
340                 netdev_dbg(net, "mode: raw IP\n");
341         } else if (!net->header_ops) { /* don't bother if already set */
342                 ether_setup(net);
343                 /* Restoring min/max mtu values set originally by usbnet */
344                 net->min_mtu = 0;
345                 net->max_mtu = ETH_MAX_MTU;
346                 clear_bit(EVENT_NO_IP_ALIGN, &dev->flags);
347                 netdev_dbg(net, "mode: Ethernet\n");
348         }
349
350         /* recalculate buffers after changing hard_header_len */
351         usbnet_change_mtu(net, net->mtu);
352 }
353
354 static ssize_t raw_ip_show(struct device *d, struct device_attribute *attr, char *buf)
355 {
356         struct usbnet *dev = netdev_priv(to_net_dev(d));
357         struct qmi_wwan_state *info = (void *)&dev->data;
358
359         return sprintf(buf, "%c\n", info->flags & QMI_WWAN_FLAG_RAWIP ? 'Y' : 'N');
360 }
361
362 static ssize_t raw_ip_store(struct device *d,  struct device_attribute *attr, const char *buf, size_t len)
363 {
364         struct usbnet *dev = netdev_priv(to_net_dev(d));
365         struct qmi_wwan_state *info = (void *)&dev->data;
366         bool enable;
367         int ret;
368
369         if (strtobool(buf, &enable))
370                 return -EINVAL;
371
372         /* no change? */
373         if (enable == (info->flags & QMI_WWAN_FLAG_RAWIP))
374                 return len;
375
376         if (!rtnl_trylock())
377                 return restart_syscall();
378
379         /* we don't want to modify a running netdev */
380         if (netif_running(dev->net)) {
381                 netdev_err(dev->net, "Cannot change a running device\n");
382                 ret = -EBUSY;
383                 goto err;
384         }
385
386         /* let other drivers deny the change */
387         ret = call_netdevice_notifiers(NETDEV_PRE_TYPE_CHANGE, dev->net);
388         ret = notifier_to_errno(ret);
389         if (ret) {
390                 netdev_err(dev->net, "Type change was refused\n");
391                 goto err;
392         }
393
394         if (enable)
395                 info->flags |= QMI_WWAN_FLAG_RAWIP;
396         else
397                 info->flags &= ~QMI_WWAN_FLAG_RAWIP;
398         qmi_wwan_netdev_setup(dev->net);
399         call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE, dev->net);
400         ret = len;
401 err:
402         rtnl_unlock();
403         return ret;
404 }
405
406 static ssize_t add_mux_show(struct device *d, struct device_attribute *attr, char *buf)
407 {
408         struct net_device *dev = to_net_dev(d);
409         struct qmimux_priv *priv;
410         struct list_head *iter;
411         struct net_device *ldev;
412         ssize_t count = 0;
413
414         rcu_read_lock();
415         netdev_for_each_upper_dev_rcu(dev, ldev, iter) {
416                 priv = netdev_priv(ldev);
417                 count += scnprintf(&buf[count], PAGE_SIZE - count,
418                                    "0x%02x\n", priv->mux_id);
419         }
420         rcu_read_unlock();
421         return count;
422 }
423
424 static ssize_t add_mux_store(struct device *d,  struct device_attribute *attr, const char *buf, size_t len)
425 {
426         struct usbnet *dev = netdev_priv(to_net_dev(d));
427         struct qmi_wwan_state *info = (void *)&dev->data;
428         u8 mux_id;
429         int ret;
430
431         if (kstrtou8(buf, 0, &mux_id))
432                 return -EINVAL;
433
434         /* mux_id [1 - 254] for compatibility with ip(8) and the rmnet driver */
435         if (mux_id < 1 || mux_id > 254)
436                 return -EINVAL;
437
438         if (!rtnl_trylock())
439                 return restart_syscall();
440
441         if (qmimux_find_dev(dev, mux_id)) {
442                 netdev_err(dev->net, "mux_id already present\n");
443                 ret = -EINVAL;
444                 goto err;
445         }
446
447         ret = qmimux_register_device(dev->net, mux_id);
448         if (!ret) {
449                 info->flags |= QMI_WWAN_FLAG_MUX;
450                 ret = len;
451         }
452 err:
453         rtnl_unlock();
454         return ret;
455 }
456
457 static ssize_t del_mux_show(struct device *d, struct device_attribute *attr, char *buf)
458 {
459         return add_mux_show(d, attr, buf);
460 }
461
462 static ssize_t del_mux_store(struct device *d,  struct device_attribute *attr, const char *buf, size_t len)
463 {
464         struct usbnet *dev = netdev_priv(to_net_dev(d));
465         struct qmi_wwan_state *info = (void *)&dev->data;
466         struct net_device *del_dev;
467         u8 mux_id;
468         int ret = 0;
469
470         if (kstrtou8(buf, 0, &mux_id))
471                 return -EINVAL;
472
473         if (!rtnl_trylock())
474                 return restart_syscall();
475
476         del_dev = qmimux_find_dev(dev, mux_id);
477         if (!del_dev) {
478                 netdev_err(dev->net, "mux_id not present\n");
479                 ret = -EINVAL;
480                 goto err;
481         }
482         qmimux_unregister_device(del_dev, NULL);
483
484         if (!qmimux_has_slaves(dev))
485                 info->flags &= ~QMI_WWAN_FLAG_MUX;
486         ret = len;
487 err:
488         rtnl_unlock();
489         return ret;
490 }
491
492 static DEVICE_ATTR_RW(raw_ip);
493 static DEVICE_ATTR_RW(add_mux);
494 static DEVICE_ATTR_RW(del_mux);
495
496 static struct attribute *qmi_wwan_sysfs_attrs[] = {
497         &dev_attr_raw_ip.attr,
498         &dev_attr_add_mux.attr,
499         &dev_attr_del_mux.attr,
500         NULL,
501 };
502
503 static struct attribute_group qmi_wwan_sysfs_attr_group = {
504         .name = "qmi",
505         .attrs = qmi_wwan_sysfs_attrs,
506 };
507
508 /* default ethernet address used by the modem */
509 static const u8 default_modem_addr[ETH_ALEN] = {0x02, 0x50, 0xf3};
510
511 static const u8 buggy_fw_addr[ETH_ALEN] = {0x00, 0xa0, 0xc6, 0x00, 0x00, 0x00};
512
513 /* Make up an ethernet header if the packet doesn't have one.
514  *
515  * A firmware bug common among several devices cause them to send raw
516  * IP packets under some circumstances.  There is no way for the
517  * driver/host to know when this will happen.  And even when the bug
518  * hits, some packets will still arrive with an intact header.
519  *
520  * The supported devices are only capably of sending IPv4, IPv6 and
521  * ARP packets on a point-to-point link. Any packet with an ethernet
522  * header will have either our address or a broadcast/multicast
523  * address as destination.  ARP packets will always have a header.
524  *
525  * This means that this function will reliably add the appropriate
526  * header iff necessary, provided our hardware address does not start
527  * with 4 or 6.
528  *
529  * Another common firmware bug results in all packets being addressed
530  * to 00:a0:c6:00:00:00 despite the host address being different.
531  * This function will also fixup such packets.
532  */
533 static int qmi_wwan_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
534 {
535         struct qmi_wwan_state *info = (void *)&dev->data;
536         bool rawip = info->flags & QMI_WWAN_FLAG_RAWIP;
537         __be16 proto;
538
539         /* This check is no longer done by usbnet */
540         if (skb->len < dev->net->hard_header_len)
541                 return 0;
542
543         if (info->flags & QMI_WWAN_FLAG_MUX)
544                 return qmimux_rx_fixup(dev, skb);
545
546         switch (skb->data[0] & 0xf0) {
547         case 0x40:
548                 proto = htons(ETH_P_IP);
549                 break;
550         case 0x60:
551                 proto = htons(ETH_P_IPV6);
552                 break;
553         case 0x00:
554                 if (rawip)
555                         return 0;
556                 if (is_multicast_ether_addr(skb->data))
557                         return 1;
558                 /* possibly bogus destination - rewrite just in case */
559                 skb_reset_mac_header(skb);
560                 goto fix_dest;
561         default:
562                 if (rawip)
563                         return 0;
564                 /* pass along other packets without modifications */
565                 return 1;
566         }
567         if (rawip) {
568                 skb_reset_mac_header(skb);
569                 skb->dev = dev->net; /* normally set by eth_type_trans */
570                 skb->protocol = proto;
571                 return 1;
572         }
573
574         if (skb_headroom(skb) < ETH_HLEN)
575                 return 0;
576         skb_push(skb, ETH_HLEN);
577         skb_reset_mac_header(skb);
578         eth_hdr(skb)->h_proto = proto;
579         eth_zero_addr(eth_hdr(skb)->h_source);
580 fix_dest:
581         memcpy(eth_hdr(skb)->h_dest, dev->net->dev_addr, ETH_ALEN);
582         return 1;
583 }
584
585 /* very simplistic detection of IPv4 or IPv6 headers */
586 static bool possibly_iphdr(const char *data)
587 {
588         return (data[0] & 0xd0) == 0x40;
589 }
590
591 /* disallow addresses which may be confused with IP headers */
592 static int qmi_wwan_mac_addr(struct net_device *dev, void *p)
593 {
594         int ret;
595         struct sockaddr *addr = p;
596
597         ret = eth_prepare_mac_addr_change(dev, p);
598         if (ret < 0)
599                 return ret;
600         if (possibly_iphdr(addr->sa_data))
601                 return -EADDRNOTAVAIL;
602         eth_commit_mac_addr_change(dev, p);
603         return 0;
604 }
605
606 static const struct net_device_ops qmi_wwan_netdev_ops = {
607         .ndo_open               = usbnet_open,
608         .ndo_stop               = usbnet_stop,
609         .ndo_start_xmit         = usbnet_start_xmit,
610         .ndo_tx_timeout         = usbnet_tx_timeout,
611         .ndo_change_mtu         = usbnet_change_mtu,
612         .ndo_get_stats64        = usbnet_get_stats64,
613         .ndo_set_mac_address    = qmi_wwan_mac_addr,
614         .ndo_validate_addr      = eth_validate_addr,
615 };
616
617 /* using a counter to merge subdriver requests with our own into a
618  * combined state
619  */
620 static int qmi_wwan_manage_power(struct usbnet *dev, int on)
621 {
622         struct qmi_wwan_state *info = (void *)&dev->data;
623         int rv;
624
625         dev_dbg(&dev->intf->dev, "%s() pmcount=%d, on=%d\n", __func__,
626                 atomic_read(&info->pmcount), on);
627
628         if ((on && atomic_add_return(1, &info->pmcount) == 1) ||
629             (!on && atomic_dec_and_test(&info->pmcount))) {
630                 /* need autopm_get/put here to ensure the usbcore sees
631                  * the new value
632                  */
633                 rv = usb_autopm_get_interface(dev->intf);
634                 dev->intf->needs_remote_wakeup = on;
635                 if (!rv)
636                         usb_autopm_put_interface(dev->intf);
637         }
638         return 0;
639 }
640
641 static int qmi_wwan_cdc_wdm_manage_power(struct usb_interface *intf, int on)
642 {
643         struct usbnet *dev = usb_get_intfdata(intf);
644
645         /* can be called while disconnecting */
646         if (!dev)
647                 return 0;
648         return qmi_wwan_manage_power(dev, on);
649 }
650
651 /* collect all three endpoints and register subdriver */
652 static int qmi_wwan_register_subdriver(struct usbnet *dev)
653 {
654         int rv;
655         struct usb_driver *subdriver = NULL;
656         struct qmi_wwan_state *info = (void *)&dev->data;
657
658         /* collect bulk endpoints */
659         rv = usbnet_get_endpoints(dev, info->data);
660         if (rv < 0)
661                 goto err;
662
663         /* update status endpoint if separate control interface */
664         if (info->control != info->data)
665                 dev->status = &info->control->cur_altsetting->endpoint[0];
666
667         /* require interrupt endpoint for subdriver */
668         if (!dev->status) {
669                 rv = -EINVAL;
670                 goto err;
671         }
672
673         /* for subdriver power management */
674         atomic_set(&info->pmcount, 0);
675
676         /* register subdriver */
677         subdriver = usb_cdc_wdm_register(info->control, &dev->status->desc,
678                                          4096, &qmi_wwan_cdc_wdm_manage_power);
679         if (IS_ERR(subdriver)) {
680                 dev_err(&info->control->dev, "subdriver registration failed\n");
681                 rv = PTR_ERR(subdriver);
682                 goto err;
683         }
684
685         /* prevent usbnet from using status endpoint */
686         dev->status = NULL;
687
688         /* save subdriver struct for suspend/resume wrappers */
689         info->subdriver = subdriver;
690
691 err:
692         return rv;
693 }
694
695 /* Send CDC SetControlLineState request, setting or clearing the DTR.
696  * "Required for Autoconnect and 9x30 to wake up" according to the
697  * GobiNet driver. The requirement has been verified on an MDM9230
698  * based Sierra Wireless MC7455
699  */
700 static int qmi_wwan_change_dtr(struct usbnet *dev, bool on)
701 {
702         u8 intf = dev->intf->cur_altsetting->desc.bInterfaceNumber;
703
704         return usbnet_write_cmd(dev, USB_CDC_REQ_SET_CONTROL_LINE_STATE,
705                                 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
706                                 on ? 0x01 : 0x00, intf, NULL, 0);
707 }
708
709 static int qmi_wwan_bind(struct usbnet *dev, struct usb_interface *intf)
710 {
711         int status = -1;
712         u8 *buf = intf->cur_altsetting->extra;
713         int len = intf->cur_altsetting->extralen;
714         struct usb_interface_descriptor *desc = &intf->cur_altsetting->desc;
715         struct usb_cdc_union_desc *cdc_union;
716         struct usb_cdc_ether_desc *cdc_ether;
717         struct usb_driver *driver = driver_of(intf);
718         struct qmi_wwan_state *info = (void *)&dev->data;
719         struct usb_cdc_parsed_header hdr;
720
721         BUILD_BUG_ON((sizeof(((struct usbnet *)0)->data) <
722                       sizeof(struct qmi_wwan_state)));
723
724         /* set up initial state */
725         info->control = intf;
726         info->data = intf;
727
728         /* and a number of CDC descriptors */
729         cdc_parse_cdc_header(&hdr, intf, buf, len);
730         cdc_union = hdr.usb_cdc_union_desc;
731         cdc_ether = hdr.usb_cdc_ether_desc;
732
733         /* Use separate control and data interfaces if we found a CDC Union */
734         if (cdc_union) {
735                 info->data = usb_ifnum_to_if(dev->udev,
736                                              cdc_union->bSlaveInterface0);
737                 if (desc->bInterfaceNumber != cdc_union->bMasterInterface0 ||
738                     !info->data) {
739                         dev_err(&intf->dev,
740                                 "bogus CDC Union: master=%u, slave=%u\n",
741                                 cdc_union->bMasterInterface0,
742                                 cdc_union->bSlaveInterface0);
743
744                         /* ignore and continue... */
745                         cdc_union = NULL;
746                         info->data = intf;
747                 }
748         }
749
750         /* errors aren't fatal - we can live with the dynamic address */
751         if (cdc_ether && cdc_ether->wMaxSegmentSize) {
752                 dev->hard_mtu = le16_to_cpu(cdc_ether->wMaxSegmentSize);
753                 usbnet_get_ethernet_addr(dev, cdc_ether->iMACAddress);
754         }
755
756         /* claim data interface and set it up */
757         if (info->control != info->data) {
758                 status = usb_driver_claim_interface(driver, info->data, dev);
759                 if (status < 0)
760                         goto err;
761         }
762
763         status = qmi_wwan_register_subdriver(dev);
764         if (status < 0 && info->control != info->data) {
765                 usb_set_intfdata(info->data, NULL);
766                 usb_driver_release_interface(driver, info->data);
767         }
768
769         /* disabling remote wakeup on MDM9x30 devices has the same
770          * effect as clearing DTR. The device will not respond to QMI
771          * requests until we set DTR again.  This is similar to a
772          * QMI_CTL SYNC request, clearing a lot of firmware state
773          * including the client ID allocations.
774          *
775          * Our usage model allows a session to span multiple
776          * open/close events, so we must prevent the firmware from
777          * clearing out state the clients might need.
778          *
779          * MDM9x30 is the first QMI chipset with USB3 support. Abuse
780          * this fact to enable the quirk for all USB3 devices.
781          *
782          * There are also chipsets with the same "set DTR" requirement
783          * but without USB3 support.  Devices based on these chips
784          * need a quirk flag in the device ID table.
785          */
786         if (dev->driver_info->data & QMI_WWAN_QUIRK_DTR ||
787             le16_to_cpu(dev->udev->descriptor.bcdUSB) >= 0x0201) {
788                 qmi_wwan_manage_power(dev, 1);
789                 qmi_wwan_change_dtr(dev, true);
790         }
791
792         /* Never use the same address on both ends of the link, even if the
793          * buggy firmware told us to. Or, if device is assigned the well-known
794          * buggy firmware MAC address, replace it with a random address,
795          */
796         if (ether_addr_equal(dev->net->dev_addr, default_modem_addr) ||
797             ether_addr_equal(dev->net->dev_addr, buggy_fw_addr))
798                 eth_hw_addr_random(dev->net);
799
800         /* make MAC addr easily distinguishable from an IP header */
801         if (possibly_iphdr(dev->net->dev_addr)) {
802                 dev->net->dev_addr[0] |= 0x02;  /* set local assignment bit */
803                 dev->net->dev_addr[0] &= 0xbf;  /* clear "IP" bit */
804         }
805         dev->net->netdev_ops = &qmi_wwan_netdev_ops;
806         dev->net->sysfs_groups[0] = &qmi_wwan_sysfs_attr_group;
807 err:
808         return status;
809 }
810
811 static void qmi_wwan_unbind(struct usbnet *dev, struct usb_interface *intf)
812 {
813         struct qmi_wwan_state *info = (void *)&dev->data;
814         struct usb_driver *driver = driver_of(intf);
815         struct usb_interface *other;
816
817         if (info->subdriver && info->subdriver->disconnect)
818                 info->subdriver->disconnect(info->control);
819
820         /* disable MDM9x30 quirk */
821         if (le16_to_cpu(dev->udev->descriptor.bcdUSB) >= 0x0201) {
822                 qmi_wwan_change_dtr(dev, false);
823                 qmi_wwan_manage_power(dev, 0);
824         }
825
826         /* allow user to unbind using either control or data */
827         if (intf == info->control)
828                 other = info->data;
829         else
830                 other = info->control;
831
832         /* only if not shared */
833         if (other && intf != other) {
834                 usb_set_intfdata(other, NULL);
835                 usb_driver_release_interface(driver, other);
836         }
837
838         info->subdriver = NULL;
839         info->data = NULL;
840         info->control = NULL;
841 }
842
843 /* suspend/resume wrappers calling both usbnet and the cdc-wdm
844  * subdriver if present.
845  *
846  * NOTE: cdc-wdm also supports pre/post_reset, but we cannot provide
847  * wrappers for those without adding usbnet reset support first.
848  */
849 static int qmi_wwan_suspend(struct usb_interface *intf, pm_message_t message)
850 {
851         struct usbnet *dev = usb_get_intfdata(intf);
852         struct qmi_wwan_state *info = (void *)&dev->data;
853         int ret;
854
855         /* Both usbnet_suspend() and subdriver->suspend() MUST return 0
856          * in system sleep context, otherwise, the resume callback has
857          * to recover device from previous suspend failure.
858          */
859         ret = usbnet_suspend(intf, message);
860         if (ret < 0)
861                 goto err;
862
863         if (intf == info->control && info->subdriver &&
864             info->subdriver->suspend)
865                 ret = info->subdriver->suspend(intf, message);
866         if (ret < 0)
867                 usbnet_resume(intf);
868 err:
869         return ret;
870 }
871
872 static int qmi_wwan_resume(struct usb_interface *intf)
873 {
874         struct usbnet *dev = usb_get_intfdata(intf);
875         struct qmi_wwan_state *info = (void *)&dev->data;
876         int ret = 0;
877         bool callsub = (intf == info->control && info->subdriver &&
878                         info->subdriver->resume);
879
880         if (callsub)
881                 ret = info->subdriver->resume(intf);
882         if (ret < 0)
883                 goto err;
884         ret = usbnet_resume(intf);
885         if (ret < 0 && callsub)
886                 info->subdriver->suspend(intf, PMSG_SUSPEND);
887 err:
888         return ret;
889 }
890
891 static const struct driver_info qmi_wwan_info = {
892         .description    = "WWAN/QMI device",
893         .flags          = FLAG_WWAN | FLAG_SEND_ZLP,
894         .bind           = qmi_wwan_bind,
895         .unbind         = qmi_wwan_unbind,
896         .manage_power   = qmi_wwan_manage_power,
897         .rx_fixup       = qmi_wwan_rx_fixup,
898 };
899
900 static const struct driver_info qmi_wwan_info_quirk_dtr = {
901         .description    = "WWAN/QMI device",
902         .flags          = FLAG_WWAN | FLAG_SEND_ZLP,
903         .bind           = qmi_wwan_bind,
904         .unbind         = qmi_wwan_unbind,
905         .manage_power   = qmi_wwan_manage_power,
906         .rx_fixup       = qmi_wwan_rx_fixup,
907         .data           = QMI_WWAN_QUIRK_DTR,
908 };
909
910 #define HUAWEI_VENDOR_ID        0x12D1
911
912 /* map QMI/wwan function by a fixed interface number */
913 #define QMI_FIXED_INTF(vend, prod, num) \
914         USB_DEVICE_INTERFACE_NUMBER(vend, prod, num), \
915         .driver_info = (unsigned long)&qmi_wwan_info
916
917 /* devices requiring "set DTR" quirk */
918 #define QMI_QUIRK_SET_DTR(vend, prod, num) \
919         USB_DEVICE_INTERFACE_NUMBER(vend, prod, num), \
920         .driver_info = (unsigned long)&qmi_wwan_info_quirk_dtr
921
922 /* Gobi 1000 QMI/wwan interface number is 3 according to qcserial */
923 #define QMI_GOBI1K_DEVICE(vend, prod) \
924         QMI_FIXED_INTF(vend, prod, 3)
925
926 /* Gobi 2000/3000 QMI/wwan interface number is 0 according to qcserial */
927 #define QMI_GOBI_DEVICE(vend, prod) \
928         QMI_FIXED_INTF(vend, prod, 0)
929
930 /* Many devices have QMI and DIAG functions which are distinguishable
931  * from other vendor specific functions by class, subclass and
932  * protocol all being 0xff. The DIAG function has exactly 2 endpoints
933  * and is silently rejected when probed.
934  *
935  * This makes it possible to match dynamically numbered QMI functions
936  * as seen on e.g. many Quectel modems.
937  */
938 #define QMI_MATCH_FF_FF_FF(vend, prod) \
939         USB_DEVICE_AND_INTERFACE_INFO(vend, prod, USB_CLASS_VENDOR_SPEC, \
940                                       USB_SUBCLASS_VENDOR_SPEC, 0xff), \
941         .driver_info = (unsigned long)&qmi_wwan_info_quirk_dtr
942
943 static const struct usb_device_id products[] = {
944         /* 1. CDC ECM like devices match on the control interface */
945         {       /* Huawei E392, E398 and possibly others sharing both device id and more... */
946                 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 9),
947                 .driver_info        = (unsigned long)&qmi_wwan_info,
948         },
949         {       /* Vodafone/Huawei K5005 (12d1:14c8) and similar modems */
950                 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 57),
951                 .driver_info        = (unsigned long)&qmi_wwan_info,
952         },
953         {       /* HUAWEI_INTERFACE_NDIS_CONTROL_QUALCOMM */
954                 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 0x01, 0x69),
955                 .driver_info        = (unsigned long)&qmi_wwan_info,
956         },
957         {       /* Motorola Mapphone devices with MDM6600 */
958                 USB_VENDOR_AND_INTERFACE_INFO(0x22b8, USB_CLASS_VENDOR_SPEC, 0xfb, 0xff),
959                 .driver_info        = (unsigned long)&qmi_wwan_info,
960         },
961
962         /* 2. Combined interface devices matching on class+protocol */
963         {       /* Huawei E367 and possibly others in "Windows mode" */
964                 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 7),
965                 .driver_info        = (unsigned long)&qmi_wwan_info,
966         },
967         {       /* Huawei E392, E398 and possibly others in "Windows mode" */
968                 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 1, 17),
969                 .driver_info        = (unsigned long)&qmi_wwan_info,
970         },
971         {       /* HUAWEI_NDIS_SINGLE_INTERFACE_VDF */
972                 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 0x01, 0x37),
973                 .driver_info        = (unsigned long)&qmi_wwan_info,
974         },
975         {       /* HUAWEI_INTERFACE_NDIS_HW_QUALCOMM */
976                 USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, USB_CLASS_VENDOR_SPEC, 0x01, 0x67),
977                 .driver_info        = (unsigned long)&qmi_wwan_info,
978         },
979         {       /* Pantech UML290, P4200 and more */
980                 USB_VENDOR_AND_INTERFACE_INFO(0x106c, USB_CLASS_VENDOR_SPEC, 0xf0, 0xff),
981                 .driver_info        = (unsigned long)&qmi_wwan_info,
982         },
983         {       /* Pantech UML290 - newer firmware */
984                 USB_VENDOR_AND_INTERFACE_INFO(0x106c, USB_CLASS_VENDOR_SPEC, 0xf1, 0xff),
985                 .driver_info        = (unsigned long)&qmi_wwan_info,
986         },
987         {       /* Novatel USB551L and MC551 */
988                 USB_DEVICE_AND_INTERFACE_INFO(0x1410, 0xb001,
989                                               USB_CLASS_COMM,
990                                               USB_CDC_SUBCLASS_ETHERNET,
991                                               USB_CDC_PROTO_NONE),
992                 .driver_info        = (unsigned long)&qmi_wwan_info,
993         },
994         {       /* Novatel E362 */
995                 USB_DEVICE_AND_INTERFACE_INFO(0x1410, 0x9010,
996                                               USB_CLASS_COMM,
997                                               USB_CDC_SUBCLASS_ETHERNET,
998                                               USB_CDC_PROTO_NONE),
999                 .driver_info        = (unsigned long)&qmi_wwan_info,
1000         },
1001         {       /* Novatel Expedite E371 */
1002                 USB_DEVICE_AND_INTERFACE_INFO(0x1410, 0x9011,
1003                                               USB_CLASS_COMM,
1004                                               USB_CDC_SUBCLASS_ETHERNET,
1005                                               USB_CDC_PROTO_NONE),
1006                 .driver_info        = (unsigned long)&qmi_wwan_info,
1007         },
1008         {       /* Dell Wireless 5800 (Novatel E362) */
1009                 USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x8195,
1010                                               USB_CLASS_COMM,
1011                                               USB_CDC_SUBCLASS_ETHERNET,
1012                                               USB_CDC_PROTO_NONE),
1013                 .driver_info        = (unsigned long)&qmi_wwan_info,
1014         },
1015         {       /* Dell Wireless 5800 V2 (Novatel E362) */
1016                 USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x8196,
1017                                               USB_CLASS_COMM,
1018                                               USB_CDC_SUBCLASS_ETHERNET,
1019                                               USB_CDC_PROTO_NONE),
1020                 .driver_info        = (unsigned long)&qmi_wwan_info,
1021         },
1022         {       /* Dell Wireless 5804 (Novatel E371) */
1023                 USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x819b,
1024                                               USB_CLASS_COMM,
1025                                               USB_CDC_SUBCLASS_ETHERNET,
1026                                               USB_CDC_PROTO_NONE),
1027                 .driver_info        = (unsigned long)&qmi_wwan_info,
1028         },
1029         {       /* ADU960S */
1030                 USB_DEVICE_AND_INTERFACE_INFO(0x16d5, 0x650a,
1031                                               USB_CLASS_COMM,
1032                                               USB_CDC_SUBCLASS_ETHERNET,
1033                                               USB_CDC_PROTO_NONE),
1034                 .driver_info        = (unsigned long)&qmi_wwan_info,
1035         },
1036         {       /* HP lt2523 (Novatel E371) */
1037                 USB_DEVICE_AND_INTERFACE_INFO(0x03f0, 0x421d,
1038                                               USB_CLASS_COMM,
1039                                               USB_CDC_SUBCLASS_ETHERNET,
1040                                               USB_CDC_PROTO_NONE),
1041                 .driver_info        = (unsigned long)&qmi_wwan_info,
1042         },
1043         {       /* HP lt4112 LTE/HSPA+ Gobi 4G Module (Huawei me906e) */
1044                 USB_DEVICE_AND_INTERFACE_INFO(0x03f0, 0x581d, USB_CLASS_VENDOR_SPEC, 1, 7),
1045                 .driver_info = (unsigned long)&qmi_wwan_info,
1046         },
1047         {QMI_MATCH_FF_FF_FF(0x2c7c, 0x0125)},   /* Quectel EC25, EC20 R2.0  Mini PCIe */
1048         {QMI_MATCH_FF_FF_FF(0x2c7c, 0x0306)},   /* Quectel EP06/EG06/EM06 */
1049         {QMI_MATCH_FF_FF_FF(0x2c7c, 0x0512)},   /* Quectel EG12/EM12 */
1050         {QMI_MATCH_FF_FF_FF(0x2c7c, 0x0620)},   /* Quectel EM160R-GL */
1051         {QMI_MATCH_FF_FF_FF(0x2c7c, 0x0800)},   /* Quectel RM500Q-GL */
1052
1053         /* 3. Combined interface devices matching on interface number */
1054         {QMI_FIXED_INTF(0x0408, 0xea42, 4)},    /* Yota / Megafon M100-1 */
1055         {QMI_FIXED_INTF(0x05c6, 0x6001, 3)},    /* 4G LTE usb-modem U901 */
1056         {QMI_FIXED_INTF(0x05c6, 0x7000, 0)},
1057         {QMI_FIXED_INTF(0x05c6, 0x7001, 1)},
1058         {QMI_FIXED_INTF(0x05c6, 0x7002, 1)},
1059         {QMI_FIXED_INTF(0x05c6, 0x7101, 1)},
1060         {QMI_FIXED_INTF(0x05c6, 0x7101, 2)},
1061         {QMI_FIXED_INTF(0x05c6, 0x7101, 3)},
1062         {QMI_FIXED_INTF(0x05c6, 0x7102, 1)},
1063         {QMI_FIXED_INTF(0x05c6, 0x7102, 2)},
1064         {QMI_FIXED_INTF(0x05c6, 0x7102, 3)},
1065         {QMI_FIXED_INTF(0x05c6, 0x8000, 7)},
1066         {QMI_FIXED_INTF(0x05c6, 0x8001, 6)},
1067         {QMI_FIXED_INTF(0x05c6, 0x9000, 4)},
1068         {QMI_FIXED_INTF(0x05c6, 0x9003, 4)},
1069         {QMI_FIXED_INTF(0x05c6, 0x9005, 2)},
1070         {QMI_FIXED_INTF(0x05c6, 0x900a, 4)},
1071         {QMI_FIXED_INTF(0x05c6, 0x900b, 2)},
1072         {QMI_FIXED_INTF(0x05c6, 0x900c, 4)},
1073         {QMI_FIXED_INTF(0x05c6, 0x900c, 5)},
1074         {QMI_FIXED_INTF(0x05c6, 0x900c, 6)},
1075         {QMI_FIXED_INTF(0x05c6, 0x900d, 5)},
1076         {QMI_FIXED_INTF(0x05c6, 0x900f, 3)},
1077         {QMI_FIXED_INTF(0x05c6, 0x900f, 4)},
1078         {QMI_FIXED_INTF(0x05c6, 0x900f, 5)},
1079         {QMI_FIXED_INTF(0x05c6, 0x9010, 4)},
1080         {QMI_FIXED_INTF(0x05c6, 0x9010, 5)},
1081         {QMI_FIXED_INTF(0x05c6, 0x9011, 3)},
1082         {QMI_FIXED_INTF(0x05c6, 0x9011, 4)},
1083         {QMI_FIXED_INTF(0x05c6, 0x9021, 1)},
1084         {QMI_FIXED_INTF(0x05c6, 0x9022, 2)},
1085         {QMI_QUIRK_SET_DTR(0x05c6, 0x9025, 4)}, /* Alcatel-sbell ASB TL131 TDD LTE (China Mobile) */
1086         {QMI_FIXED_INTF(0x05c6, 0x9026, 3)},
1087         {QMI_FIXED_INTF(0x05c6, 0x902e, 5)},
1088         {QMI_FIXED_INTF(0x05c6, 0x9031, 5)},
1089         {QMI_FIXED_INTF(0x05c6, 0x9032, 4)},
1090         {QMI_FIXED_INTF(0x05c6, 0x9033, 3)},
1091         {QMI_FIXED_INTF(0x05c6, 0x9033, 4)},
1092         {QMI_FIXED_INTF(0x05c6, 0x9033, 5)},
1093         {QMI_FIXED_INTF(0x05c6, 0x9033, 6)},
1094         {QMI_FIXED_INTF(0x05c6, 0x9034, 3)},
1095         {QMI_FIXED_INTF(0x05c6, 0x9034, 4)},
1096         {QMI_FIXED_INTF(0x05c6, 0x9034, 5)},
1097         {QMI_FIXED_INTF(0x05c6, 0x9034, 6)},
1098         {QMI_FIXED_INTF(0x05c6, 0x9034, 7)},
1099         {QMI_FIXED_INTF(0x05c6, 0x9035, 4)},
1100         {QMI_FIXED_INTF(0x05c6, 0x9036, 3)},
1101         {QMI_FIXED_INTF(0x05c6, 0x9037, 5)},
1102         {QMI_FIXED_INTF(0x05c6, 0x9038, 4)},
1103         {QMI_FIXED_INTF(0x05c6, 0x903b, 7)},
1104         {QMI_FIXED_INTF(0x05c6, 0x903c, 6)},
1105         {QMI_FIXED_INTF(0x05c6, 0x903d, 6)},
1106         {QMI_FIXED_INTF(0x05c6, 0x903e, 5)},
1107         {QMI_FIXED_INTF(0x05c6, 0x9043, 3)},
1108         {QMI_FIXED_INTF(0x05c6, 0x9046, 3)},
1109         {QMI_FIXED_INTF(0x05c6, 0x9046, 4)},
1110         {QMI_FIXED_INTF(0x05c6, 0x9046, 5)},
1111         {QMI_FIXED_INTF(0x05c6, 0x9047, 2)},
1112         {QMI_FIXED_INTF(0x05c6, 0x9047, 3)},
1113         {QMI_FIXED_INTF(0x05c6, 0x9047, 4)},
1114         {QMI_FIXED_INTF(0x05c6, 0x9048, 4)},
1115         {QMI_FIXED_INTF(0x05c6, 0x9048, 5)},
1116         {QMI_FIXED_INTF(0x05c6, 0x9048, 6)},
1117         {QMI_FIXED_INTF(0x05c6, 0x9048, 7)},
1118         {QMI_FIXED_INTF(0x05c6, 0x9048, 8)},
1119         {QMI_FIXED_INTF(0x05c6, 0x904c, 5)},
1120         {QMI_FIXED_INTF(0x05c6, 0x904c, 6)},
1121         {QMI_FIXED_INTF(0x05c6, 0x904c, 7)},
1122         {QMI_FIXED_INTF(0x05c6, 0x904c, 8)},
1123         {QMI_FIXED_INTF(0x05c6, 0x9050, 3)},
1124         {QMI_FIXED_INTF(0x05c6, 0x9052, 4)},
1125         {QMI_FIXED_INTF(0x05c6, 0x9053, 6)},
1126         {QMI_FIXED_INTF(0x05c6, 0x9053, 7)},
1127         {QMI_FIXED_INTF(0x05c6, 0x9054, 5)},
1128         {QMI_FIXED_INTF(0x05c6, 0x9054, 6)},
1129         {QMI_FIXED_INTF(0x05c6, 0x9055, 3)},
1130         {QMI_FIXED_INTF(0x05c6, 0x9055, 4)},
1131         {QMI_FIXED_INTF(0x05c6, 0x9055, 5)},
1132         {QMI_FIXED_INTF(0x05c6, 0x9055, 6)},
1133         {QMI_FIXED_INTF(0x05c6, 0x9055, 7)},
1134         {QMI_FIXED_INTF(0x05c6, 0x9056, 3)},
1135         {QMI_FIXED_INTF(0x05c6, 0x9062, 2)},
1136         {QMI_FIXED_INTF(0x05c6, 0x9062, 3)},
1137         {QMI_FIXED_INTF(0x05c6, 0x9062, 4)},
1138         {QMI_FIXED_INTF(0x05c6, 0x9062, 5)},
1139         {QMI_FIXED_INTF(0x05c6, 0x9062, 6)},
1140         {QMI_FIXED_INTF(0x05c6, 0x9062, 7)},
1141         {QMI_FIXED_INTF(0x05c6, 0x9062, 8)},
1142         {QMI_FIXED_INTF(0x05c6, 0x9062, 9)},
1143         {QMI_FIXED_INTF(0x05c6, 0x9064, 3)},
1144         {QMI_FIXED_INTF(0x05c6, 0x9065, 6)},
1145         {QMI_FIXED_INTF(0x05c6, 0x9065, 7)},
1146         {QMI_FIXED_INTF(0x05c6, 0x9066, 5)},
1147         {QMI_FIXED_INTF(0x05c6, 0x9066, 6)},
1148         {QMI_FIXED_INTF(0x05c6, 0x9067, 1)},
1149         {QMI_FIXED_INTF(0x05c6, 0x9068, 2)},
1150         {QMI_FIXED_INTF(0x05c6, 0x9068, 3)},
1151         {QMI_FIXED_INTF(0x05c6, 0x9068, 4)},
1152         {QMI_FIXED_INTF(0x05c6, 0x9068, 5)},
1153         {QMI_FIXED_INTF(0x05c6, 0x9068, 6)},
1154         {QMI_FIXED_INTF(0x05c6, 0x9068, 7)},
1155         {QMI_FIXED_INTF(0x05c6, 0x9069, 5)},
1156         {QMI_FIXED_INTF(0x05c6, 0x9069, 6)},
1157         {QMI_FIXED_INTF(0x05c6, 0x9069, 7)},
1158         {QMI_FIXED_INTF(0x05c6, 0x9069, 8)},
1159         {QMI_FIXED_INTF(0x05c6, 0x9070, 4)},
1160         {QMI_FIXED_INTF(0x05c6, 0x9070, 5)},
1161         {QMI_FIXED_INTF(0x05c6, 0x9075, 5)},
1162         {QMI_FIXED_INTF(0x05c6, 0x9076, 4)},
1163         {QMI_FIXED_INTF(0x05c6, 0x9076, 5)},
1164         {QMI_FIXED_INTF(0x05c6, 0x9076, 6)},
1165         {QMI_FIXED_INTF(0x05c6, 0x9076, 7)},
1166         {QMI_FIXED_INTF(0x05c6, 0x9076, 8)},
1167         {QMI_FIXED_INTF(0x05c6, 0x9077, 3)},
1168         {QMI_FIXED_INTF(0x05c6, 0x9077, 4)},
1169         {QMI_FIXED_INTF(0x05c6, 0x9077, 5)},
1170         {QMI_FIXED_INTF(0x05c6, 0x9077, 6)},
1171         {QMI_FIXED_INTF(0x05c6, 0x9078, 3)},
1172         {QMI_FIXED_INTF(0x05c6, 0x9079, 4)},
1173         {QMI_FIXED_INTF(0x05c6, 0x9079, 5)},
1174         {QMI_FIXED_INTF(0x05c6, 0x9079, 6)},
1175         {QMI_FIXED_INTF(0x05c6, 0x9079, 7)},
1176         {QMI_FIXED_INTF(0x05c6, 0x9079, 8)},
1177         {QMI_FIXED_INTF(0x05c6, 0x9080, 5)},
1178         {QMI_FIXED_INTF(0x05c6, 0x9080, 6)},
1179         {QMI_FIXED_INTF(0x05c6, 0x9080, 7)},
1180         {QMI_FIXED_INTF(0x05c6, 0x9080, 8)},
1181         {QMI_FIXED_INTF(0x05c6, 0x9083, 3)},
1182         {QMI_FIXED_INTF(0x05c6, 0x9084, 4)},
1183         {QMI_FIXED_INTF(0x05c6, 0x90b2, 3)},    /* ublox R410M */
1184         {QMI_FIXED_INTF(0x05c6, 0x920d, 0)},
1185         {QMI_FIXED_INTF(0x05c6, 0x920d, 5)},
1186         {QMI_QUIRK_SET_DTR(0x05c6, 0x9625, 4)}, /* YUGA CLM920-NC5 */
1187         {QMI_FIXED_INTF(0x0846, 0x68a2, 8)},
1188         {QMI_FIXED_INTF(0x0846, 0x68d3, 8)},    /* Netgear Aircard 779S */
1189         {QMI_FIXED_INTF(0x12d1, 0x140c, 1)},    /* Huawei E173 */
1190         {QMI_FIXED_INTF(0x12d1, 0x14ac, 1)},    /* Huawei E1820 */
1191         {QMI_FIXED_INTF(0x1435, 0x0918, 3)},    /* Wistron NeWeb D16Q1 */
1192         {QMI_FIXED_INTF(0x1435, 0x0918, 4)},    /* Wistron NeWeb D16Q1 */
1193         {QMI_FIXED_INTF(0x1435, 0x0918, 5)},    /* Wistron NeWeb D16Q1 */
1194         {QMI_FIXED_INTF(0x1435, 0x3185, 4)},    /* Wistron NeWeb M18Q5 */
1195         {QMI_FIXED_INTF(0x1435, 0xd111, 4)},    /* M9615A DM11-1 D51QC */
1196         {QMI_FIXED_INTF(0x1435, 0xd181, 3)},    /* Wistron NeWeb D18Q1 */
1197         {QMI_FIXED_INTF(0x1435, 0xd181, 4)},    /* Wistron NeWeb D18Q1 */
1198         {QMI_FIXED_INTF(0x1435, 0xd181, 5)},    /* Wistron NeWeb D18Q1 */
1199         {QMI_FIXED_INTF(0x1435, 0xd182, 4)},    /* Wistron NeWeb D18 */
1200         {QMI_FIXED_INTF(0x1435, 0xd182, 5)},    /* Wistron NeWeb D18 */
1201         {QMI_FIXED_INTF(0x1435, 0xd191, 4)},    /* Wistron NeWeb D19Q1 */
1202         {QMI_QUIRK_SET_DTR(0x1508, 0x1001, 4)}, /* Fibocom NL668 series */
1203         {QMI_FIXED_INTF(0x1690, 0x7588, 4)},    /* ASKEY WWHC050 */
1204         {QMI_FIXED_INTF(0x16d8, 0x6003, 0)},    /* CMOTech 6003 */
1205         {QMI_FIXED_INTF(0x16d8, 0x6007, 0)},    /* CMOTech CHE-628S */
1206         {QMI_FIXED_INTF(0x16d8, 0x6008, 0)},    /* CMOTech CMU-301 */
1207         {QMI_FIXED_INTF(0x16d8, 0x6280, 0)},    /* CMOTech CHU-628 */
1208         {QMI_FIXED_INTF(0x16d8, 0x7001, 0)},    /* CMOTech CHU-720S */
1209         {QMI_FIXED_INTF(0x16d8, 0x7002, 0)},    /* CMOTech 7002 */
1210         {QMI_FIXED_INTF(0x16d8, 0x7003, 4)},    /* CMOTech CHU-629K */
1211         {QMI_FIXED_INTF(0x16d8, 0x7004, 3)},    /* CMOTech 7004 */
1212         {QMI_FIXED_INTF(0x16d8, 0x7006, 5)},    /* CMOTech CGU-629 */
1213         {QMI_FIXED_INTF(0x16d8, 0x700a, 4)},    /* CMOTech CHU-629S */
1214         {QMI_FIXED_INTF(0x16d8, 0x7211, 0)},    /* CMOTech CHU-720I */
1215         {QMI_FIXED_INTF(0x16d8, 0x7212, 0)},    /* CMOTech 7212 */
1216         {QMI_FIXED_INTF(0x16d8, 0x7213, 0)},    /* CMOTech 7213 */
1217         {QMI_FIXED_INTF(0x16d8, 0x7251, 1)},    /* CMOTech 7251 */
1218         {QMI_FIXED_INTF(0x16d8, 0x7252, 1)},    /* CMOTech 7252 */
1219         {QMI_FIXED_INTF(0x16d8, 0x7253, 1)},    /* CMOTech 7253 */
1220         {QMI_FIXED_INTF(0x19d2, 0x0002, 1)},
1221         {QMI_FIXED_INTF(0x19d2, 0x0012, 1)},
1222         {QMI_FIXED_INTF(0x19d2, 0x0017, 3)},
1223         {QMI_FIXED_INTF(0x19d2, 0x0019, 3)},    /* ONDA MT689DC */
1224         {QMI_FIXED_INTF(0x19d2, 0x0021, 4)},
1225         {QMI_FIXED_INTF(0x19d2, 0x0025, 1)},
1226         {QMI_FIXED_INTF(0x19d2, 0x0031, 4)},
1227         {QMI_FIXED_INTF(0x19d2, 0x0042, 4)},
1228         {QMI_FIXED_INTF(0x19d2, 0x0049, 5)},
1229         {QMI_FIXED_INTF(0x19d2, 0x0052, 4)},
1230         {QMI_FIXED_INTF(0x19d2, 0x0055, 1)},    /* ZTE (Vodafone) K3520-Z */
1231         {QMI_FIXED_INTF(0x19d2, 0x0058, 4)},
1232         {QMI_FIXED_INTF(0x19d2, 0x0063, 4)},    /* ZTE (Vodafone) K3565-Z */
1233         {QMI_FIXED_INTF(0x19d2, 0x0104, 4)},    /* ZTE (Vodafone) K4505-Z */
1234         {QMI_FIXED_INTF(0x19d2, 0x0113, 5)},
1235         {QMI_FIXED_INTF(0x19d2, 0x0118, 5)},
1236         {QMI_FIXED_INTF(0x19d2, 0x0121, 5)},
1237         {QMI_FIXED_INTF(0x19d2, 0x0123, 4)},
1238         {QMI_FIXED_INTF(0x19d2, 0x0124, 5)},
1239         {QMI_FIXED_INTF(0x19d2, 0x0125, 6)},
1240         {QMI_FIXED_INTF(0x19d2, 0x0126, 5)},
1241         {QMI_FIXED_INTF(0x19d2, 0x0130, 1)},
1242         {QMI_FIXED_INTF(0x19d2, 0x0133, 3)},
1243         {QMI_FIXED_INTF(0x19d2, 0x0141, 5)},
1244         {QMI_FIXED_INTF(0x19d2, 0x0157, 5)},    /* ZTE MF683 */
1245         {QMI_FIXED_INTF(0x19d2, 0x0158, 3)},
1246         {QMI_FIXED_INTF(0x19d2, 0x0167, 4)},    /* ZTE MF820D */
1247         {QMI_FIXED_INTF(0x19d2, 0x0168, 4)},
1248         {QMI_FIXED_INTF(0x19d2, 0x0176, 3)},
1249         {QMI_FIXED_INTF(0x19d2, 0x0178, 3)},
1250         {QMI_FIXED_INTF(0x19d2, 0x0191, 4)},    /* ZTE EuFi890 */
1251         {QMI_FIXED_INTF(0x19d2, 0x0199, 1)},    /* ZTE MF820S */
1252         {QMI_FIXED_INTF(0x19d2, 0x0200, 1)},
1253         {QMI_FIXED_INTF(0x19d2, 0x0257, 3)},    /* ZTE MF821 */
1254         {QMI_FIXED_INTF(0x19d2, 0x0265, 4)},    /* ONDA MT8205 4G LTE */
1255         {QMI_FIXED_INTF(0x19d2, 0x0284, 4)},    /* ZTE MF880 */
1256         {QMI_FIXED_INTF(0x19d2, 0x0326, 4)},    /* ZTE MF821D */
1257         {QMI_FIXED_INTF(0x19d2, 0x0396, 3)},    /* ZTE ZM8620 */
1258         {QMI_FIXED_INTF(0x19d2, 0x0412, 4)},    /* Telewell TW-LTE 4G */
1259         {QMI_FIXED_INTF(0x19d2, 0x1008, 4)},    /* ZTE (Vodafone) K3570-Z */
1260         {QMI_FIXED_INTF(0x19d2, 0x1010, 4)},    /* ZTE (Vodafone) K3571-Z */
1261         {QMI_FIXED_INTF(0x19d2, 0x1012, 4)},
1262         {QMI_FIXED_INTF(0x19d2, 0x1018, 3)},    /* ZTE (Vodafone) K5006-Z */
1263         {QMI_FIXED_INTF(0x19d2, 0x1021, 2)},
1264         {QMI_FIXED_INTF(0x19d2, 0x1245, 4)},
1265         {QMI_FIXED_INTF(0x19d2, 0x1247, 4)},
1266         {QMI_FIXED_INTF(0x19d2, 0x1252, 4)},
1267         {QMI_FIXED_INTF(0x19d2, 0x1254, 4)},
1268         {QMI_FIXED_INTF(0x19d2, 0x1255, 3)},
1269         {QMI_FIXED_INTF(0x19d2, 0x1255, 4)},
1270         {QMI_FIXED_INTF(0x19d2, 0x1256, 4)},
1271         {QMI_FIXED_INTF(0x19d2, 0x1270, 5)},    /* ZTE MF667 */
1272         {QMI_FIXED_INTF(0x19d2, 0x1275, 3)},    /* ZTE P685M */
1273         {QMI_FIXED_INTF(0x19d2, 0x1401, 2)},
1274         {QMI_FIXED_INTF(0x19d2, 0x1402, 2)},    /* ZTE MF60 */
1275         {QMI_FIXED_INTF(0x19d2, 0x1424, 2)},
1276         {QMI_FIXED_INTF(0x19d2, 0x1425, 2)},
1277         {QMI_FIXED_INTF(0x19d2, 0x1426, 2)},    /* ZTE MF91 */
1278         {QMI_FIXED_INTF(0x19d2, 0x1428, 2)},    /* Telewell TW-LTE 4G v2 */
1279         {QMI_FIXED_INTF(0x19d2, 0x1432, 3)},    /* ZTE ME3620 */
1280         {QMI_FIXED_INTF(0x19d2, 0x2002, 4)},    /* ZTE (Vodafone) K3765-Z */
1281         {QMI_FIXED_INTF(0x2001, 0x7e16, 3)},    /* D-Link DWM-221 */
1282         {QMI_FIXED_INTF(0x2001, 0x7e19, 4)},    /* D-Link DWM-221 B1 */
1283         {QMI_FIXED_INTF(0x2001, 0x7e35, 4)},    /* D-Link DWM-222 */
1284         {QMI_FIXED_INTF(0x2001, 0x7e3d, 4)},    /* D-Link DWM-222 A2 */
1285         {QMI_FIXED_INTF(0x2020, 0x2031, 4)},    /* Olicard 600 */
1286         {QMI_FIXED_INTF(0x2020, 0x2033, 4)},    /* BroadMobi BM806U */
1287         {QMI_FIXED_INTF(0x2020, 0x2060, 4)},    /* BroadMobi BM818 */
1288         {QMI_FIXED_INTF(0x0f3d, 0x68a2, 8)},    /* Sierra Wireless MC7700 */
1289         {QMI_FIXED_INTF(0x114f, 0x68a2, 8)},    /* Sierra Wireless MC7750 */
1290         {QMI_FIXED_INTF(0x1199, 0x68a2, 8)},    /* Sierra Wireless MC7710 in QMI mode */
1291         {QMI_FIXED_INTF(0x1199, 0x68a2, 19)},   /* Sierra Wireless MC7710 in QMI mode */
1292         {QMI_QUIRK_SET_DTR(0x1199, 0x68c0, 8)}, /* Sierra Wireless MC7304/MC7354, WP76xx */
1293         {QMI_QUIRK_SET_DTR(0x1199, 0x68c0, 10)},/* Sierra Wireless MC7304/MC7354 */
1294         {QMI_FIXED_INTF(0x1199, 0x901c, 8)},    /* Sierra Wireless EM7700 */
1295         {QMI_FIXED_INTF(0x1199, 0x901f, 8)},    /* Sierra Wireless EM7355 */
1296         {QMI_FIXED_INTF(0x1199, 0x9041, 8)},    /* Sierra Wireless MC7305/MC7355 */
1297         {QMI_FIXED_INTF(0x1199, 0x9041, 10)},   /* Sierra Wireless MC7305/MC7355 */
1298         {QMI_FIXED_INTF(0x1199, 0x9051, 8)},    /* Netgear AirCard 340U */
1299         {QMI_FIXED_INTF(0x1199, 0x9053, 8)},    /* Sierra Wireless Modem */
1300         {QMI_FIXED_INTF(0x1199, 0x9054, 8)},    /* Sierra Wireless Modem */
1301         {QMI_FIXED_INTF(0x1199, 0x9055, 8)},    /* Netgear AirCard 341U */
1302         {QMI_FIXED_INTF(0x1199, 0x9056, 8)},    /* Sierra Wireless Modem */
1303         {QMI_FIXED_INTF(0x1199, 0x9057, 8)},
1304         {QMI_FIXED_INTF(0x1199, 0x9061, 8)},    /* Sierra Wireless Modem */
1305         {QMI_FIXED_INTF(0x1199, 0x9063, 8)},    /* Sierra Wireless EM7305 */
1306         {QMI_FIXED_INTF(0x1199, 0x9063, 10)},   /* Sierra Wireless EM7305 */
1307         {QMI_QUIRK_SET_DTR(0x1199, 0x9071, 8)}, /* Sierra Wireless MC74xx */
1308         {QMI_QUIRK_SET_DTR(0x1199, 0x9071, 10)},/* Sierra Wireless MC74xx */
1309         {QMI_QUIRK_SET_DTR(0x1199, 0x9079, 8)}, /* Sierra Wireless EM74xx */
1310         {QMI_QUIRK_SET_DTR(0x1199, 0x9079, 10)},/* Sierra Wireless EM74xx */
1311         {QMI_QUIRK_SET_DTR(0x1199, 0x907b, 8)}, /* Sierra Wireless EM74xx */
1312         {QMI_QUIRK_SET_DTR(0x1199, 0x907b, 10)},/* Sierra Wireless EM74xx */
1313         {QMI_QUIRK_SET_DTR(0x1199, 0x9091, 8)}, /* Sierra Wireless EM7565 */
1314         {QMI_FIXED_INTF(0x1bbb, 0x011e, 4)},    /* Telekom Speedstick LTE II (Alcatel One Touch L100V LTE) */
1315         {QMI_FIXED_INTF(0x1bbb, 0x0203, 2)},    /* Alcatel L800MA */
1316         {QMI_FIXED_INTF(0x2357, 0x0201, 4)},    /* TP-LINK HSUPA Modem MA180 */
1317         {QMI_FIXED_INTF(0x2357, 0x9000, 4)},    /* TP-LINK MA260 */
1318         {QMI_QUIRK_SET_DTR(0x1bc7, 0x1031, 3)}, /* Telit LE910C1-EUX */
1319         {QMI_QUIRK_SET_DTR(0x1bc7, 0x1040, 2)}, /* Telit LE922A */
1320         {QMI_QUIRK_SET_DTR(0x1bc7, 0x1050, 2)}, /* Telit FN980 */
1321         {QMI_FIXED_INTF(0x1bc7, 0x1100, 3)},    /* Telit ME910 */
1322         {QMI_FIXED_INTF(0x1bc7, 0x1101, 3)},    /* Telit ME910 dual modem */
1323         {QMI_FIXED_INTF(0x1bc7, 0x1200, 5)},    /* Telit LE920 */
1324         {QMI_QUIRK_SET_DTR(0x1bc7, 0x1201, 2)}, /* Telit LE920, LE920A4 */
1325         {QMI_QUIRK_SET_DTR(0x1bc7, 0x1230, 2)}, /* Telit LE910Cx */
1326         {QMI_QUIRK_SET_DTR(0x1bc7, 0x1260, 2)}, /* Telit LE910Cx */
1327         {QMI_QUIRK_SET_DTR(0x1bc7, 0x1261, 2)}, /* Telit LE910Cx */
1328         {QMI_QUIRK_SET_DTR(0x1bc7, 0x1900, 1)}, /* Telit LN940 series */
1329         {QMI_FIXED_INTF(0x1c9e, 0x9801, 3)},    /* Telewell TW-3G HSPA+ */
1330         {QMI_FIXED_INTF(0x1c9e, 0x9803, 4)},    /* Telewell TW-3G HSPA+ */
1331         {QMI_FIXED_INTF(0x1c9e, 0x9b01, 3)},    /* XS Stick W100-2 from 4G Systems */
1332         {QMI_FIXED_INTF(0x0b3c, 0xc000, 4)},    /* Olivetti Olicard 100 */
1333         {QMI_FIXED_INTF(0x0b3c, 0xc001, 4)},    /* Olivetti Olicard 120 */
1334         {QMI_FIXED_INTF(0x0b3c, 0xc002, 4)},    /* Olivetti Olicard 140 */
1335         {QMI_FIXED_INTF(0x0b3c, 0xc004, 6)},    /* Olivetti Olicard 155 */
1336         {QMI_FIXED_INTF(0x0b3c, 0xc005, 6)},    /* Olivetti Olicard 200 */
1337         {QMI_FIXED_INTF(0x0b3c, 0xc00a, 6)},    /* Olivetti Olicard 160 */
1338         {QMI_FIXED_INTF(0x0b3c, 0xc00b, 4)},    /* Olivetti Olicard 500 */
1339         {QMI_FIXED_INTF(0x1e2d, 0x0060, 4)},    /* Cinterion PLxx */
1340         {QMI_QUIRK_SET_DTR(0x1e2d, 0x006f, 8)}, /* Cinterion PLS83/PLS63 */
1341         {QMI_FIXED_INTF(0x1e2d, 0x0053, 4)},    /* Cinterion PHxx,PXxx */
1342         {QMI_FIXED_INTF(0x1e2d, 0x0063, 10)},   /* Cinterion ALASxx (1 RmNet) */
1343         {QMI_FIXED_INTF(0x1e2d, 0x0082, 4)},    /* Cinterion PHxx,PXxx (2 RmNet) */
1344         {QMI_FIXED_INTF(0x1e2d, 0x0082, 5)},    /* Cinterion PHxx,PXxx (2 RmNet) */
1345         {QMI_FIXED_INTF(0x1e2d, 0x0083, 4)},    /* Cinterion PHxx,PXxx (1 RmNet + USB Audio)*/
1346         {QMI_QUIRK_SET_DTR(0x1e2d, 0x00b0, 4)}, /* Cinterion CLS8 */
1347         {QMI_FIXED_INTF(0x1e2d, 0x00b7, 0)},    /* Cinterion MV31 RmNet */
1348         {QMI_FIXED_INTF(0x413c, 0x81a2, 8)},    /* Dell Wireless 5806 Gobi(TM) 4G LTE Mobile Broadband Card */
1349         {QMI_FIXED_INTF(0x413c, 0x81a3, 8)},    /* Dell Wireless 5570 HSPA+ (42Mbps) Mobile Broadband Card */
1350         {QMI_FIXED_INTF(0x413c, 0x81a4, 8)},    /* Dell Wireless 5570e HSPA+ (42Mbps) Mobile Broadband Card */
1351         {QMI_FIXED_INTF(0x413c, 0x81a8, 8)},    /* Dell Wireless 5808 Gobi(TM) 4G LTE Mobile Broadband Card */
1352         {QMI_FIXED_INTF(0x413c, 0x81a9, 8)},    /* Dell Wireless 5808e Gobi(TM) 4G LTE Mobile Broadband Card */
1353         {QMI_FIXED_INTF(0x413c, 0x81b1, 8)},    /* Dell Wireless 5809e Gobi(TM) 4G LTE Mobile Broadband Card */
1354         {QMI_FIXED_INTF(0x413c, 0x81b3, 8)},    /* Dell Wireless 5809e Gobi(TM) 4G LTE Mobile Broadband Card (rev3) */
1355         {QMI_FIXED_INTF(0x413c, 0x81b6, 8)},    /* Dell Wireless 5811e */
1356         {QMI_FIXED_INTF(0x413c, 0x81b6, 10)},   /* Dell Wireless 5811e */
1357         {QMI_FIXED_INTF(0x413c, 0x81cc, 8)},    /* Dell Wireless 5816e */
1358         {QMI_FIXED_INTF(0x413c, 0x81d7, 0)},    /* Dell Wireless 5821e */
1359         {QMI_FIXED_INTF(0x413c, 0x81d7, 1)},    /* Dell Wireless 5821e preproduction config */
1360         {QMI_FIXED_INTF(0x413c, 0x81e0, 0)},    /* Dell Wireless 5821e with eSIM support*/
1361         {QMI_FIXED_INTF(0x03f0, 0x4e1d, 8)},    /* HP lt4111 LTE/EV-DO/HSPA+ Gobi 4G Module */
1362         {QMI_FIXED_INTF(0x03f0, 0x9d1d, 1)},    /* HP lt4120 Snapdragon X5 LTE */
1363         {QMI_FIXED_INTF(0x22de, 0x9061, 3)},    /* WeTelecom WPD-600N */
1364         {QMI_QUIRK_SET_DTR(0x1e0e, 0x9001, 5)}, /* SIMCom 7100E, 7230E, 7600E ++ */
1365         {QMI_QUIRK_SET_DTR(0x2c7c, 0x0121, 4)}, /* Quectel EC21 Mini PCIe */
1366         {QMI_QUIRK_SET_DTR(0x2c7c, 0x0191, 4)}, /* Quectel EG91 */
1367         {QMI_QUIRK_SET_DTR(0x2c7c, 0x0195, 4)}, /* Quectel EG95 */
1368         {QMI_FIXED_INTF(0x2c7c, 0x0296, 4)},    /* Quectel BG96 */
1369         {QMI_QUIRK_SET_DTR(0x2cb7, 0x0104, 4)}, /* Fibocom NL678 series */
1370         {QMI_FIXED_INTF(0x0489, 0xe0b4, 0)},    /* Foxconn T77W968 LTE */
1371         {QMI_FIXED_INTF(0x0489, 0xe0b5, 0)},    /* Foxconn T77W968 LTE with eSIM support*/
1372         {QMI_FIXED_INTF(0x2692, 0x9025, 4)},    /* Cellient MPL200 (rebranded Qualcomm 05c6:9025) */
1373
1374         /* 4. Gobi 1000 devices */
1375         {QMI_GOBI1K_DEVICE(0x05c6, 0x9212)},    /* Acer Gobi Modem Device */
1376         {QMI_GOBI1K_DEVICE(0x03f0, 0x1f1d)},    /* HP un2400 Gobi Modem Device */
1377         {QMI_GOBI1K_DEVICE(0x04da, 0x250d)},    /* Panasonic Gobi Modem device */
1378         {QMI_GOBI1K_DEVICE(0x413c, 0x8172)},    /* Dell Gobi Modem device */
1379         {QMI_GOBI1K_DEVICE(0x1410, 0xa001)},    /* Novatel/Verizon USB-1000 */
1380         {QMI_GOBI1K_DEVICE(0x1410, 0xa002)},    /* Novatel Gobi Modem device */
1381         {QMI_GOBI1K_DEVICE(0x1410, 0xa003)},    /* Novatel Gobi Modem device */
1382         {QMI_GOBI1K_DEVICE(0x1410, 0xa004)},    /* Novatel Gobi Modem device */
1383         {QMI_GOBI1K_DEVICE(0x1410, 0xa005)},    /* Novatel Gobi Modem device */
1384         {QMI_GOBI1K_DEVICE(0x1410, 0xa006)},    /* Novatel Gobi Modem device */
1385         {QMI_GOBI1K_DEVICE(0x1410, 0xa007)},    /* Novatel Gobi Modem device */
1386         {QMI_GOBI1K_DEVICE(0x0b05, 0x1776)},    /* Asus Gobi Modem device */
1387         {QMI_GOBI1K_DEVICE(0x19d2, 0xfff3)},    /* ONDA Gobi Modem device */
1388         {QMI_GOBI1K_DEVICE(0x05c6, 0x9001)},    /* Generic Gobi Modem device */
1389         {QMI_GOBI1K_DEVICE(0x05c6, 0x9002)},    /* Generic Gobi Modem device */
1390         {QMI_GOBI1K_DEVICE(0x05c6, 0x9202)},    /* Generic Gobi Modem device */
1391         {QMI_GOBI1K_DEVICE(0x05c6, 0x9203)},    /* Generic Gobi Modem device */
1392         {QMI_GOBI1K_DEVICE(0x05c6, 0x9222)},    /* Generic Gobi Modem device */
1393         {QMI_GOBI1K_DEVICE(0x05c6, 0x9009)},    /* Generic Gobi Modem device */
1394
1395         /* 5. Gobi 2000 and 3000 devices */
1396         {QMI_GOBI_DEVICE(0x413c, 0x8186)},      /* Dell Gobi 2000 Modem device (N0218, VU936) */
1397         {QMI_GOBI_DEVICE(0x413c, 0x8194)},      /* Dell Gobi 3000 Composite */
1398         {QMI_GOBI_DEVICE(0x05c6, 0x920b)},      /* Generic Gobi 2000 Modem device */
1399         {QMI_GOBI_DEVICE(0x05c6, 0x9225)},      /* Sony Gobi 2000 Modem device (N0279, VU730) */
1400         {QMI_GOBI_DEVICE(0x05c6, 0x9245)},      /* Samsung Gobi 2000 Modem device (VL176) */
1401         {QMI_GOBI_DEVICE(0x03f0, 0x251d)},      /* HP Gobi 2000 Modem device (VP412) */
1402         {QMI_GOBI_DEVICE(0x05c6, 0x9215)},      /* Acer Gobi 2000 Modem device (VP413) */
1403         {QMI_FIXED_INTF(0x05c6, 0x9215, 4)},    /* Quectel EC20 Mini PCIe */
1404         {QMI_GOBI_DEVICE(0x05c6, 0x9265)},      /* Asus Gobi 2000 Modem device (VR305) */
1405         {QMI_GOBI_DEVICE(0x05c6, 0x9235)},      /* Top Global Gobi 2000 Modem device (VR306) */
1406         {QMI_GOBI_DEVICE(0x05c6, 0x9275)},      /* iRex Technologies Gobi 2000 Modem device (VR307) */
1407         {QMI_GOBI_DEVICE(0x0af0, 0x8120)},      /* Option GTM681W */
1408         {QMI_GOBI_DEVICE(0x1199, 0x68a5)},      /* Sierra Wireless Modem */
1409         {QMI_GOBI_DEVICE(0x1199, 0x68a9)},      /* Sierra Wireless Modem */
1410         {QMI_GOBI_DEVICE(0x1199, 0x9001)},      /* Sierra Wireless Gobi 2000 Modem device (VT773) */
1411         {QMI_GOBI_DEVICE(0x1199, 0x9002)},      /* Sierra Wireless Gobi 2000 Modem device (VT773) */
1412         {QMI_GOBI_DEVICE(0x1199, 0x9003)},      /* Sierra Wireless Gobi 2000 Modem device (VT773) */
1413         {QMI_GOBI_DEVICE(0x1199, 0x9004)},      /* Sierra Wireless Gobi 2000 Modem device (VT773) */
1414         {QMI_GOBI_DEVICE(0x1199, 0x9005)},      /* Sierra Wireless Gobi 2000 Modem device (VT773) */
1415         {QMI_GOBI_DEVICE(0x1199, 0x9006)},      /* Sierra Wireless Gobi 2000 Modem device (VT773) */
1416         {QMI_GOBI_DEVICE(0x1199, 0x9007)},      /* Sierra Wireless Gobi 2000 Modem device (VT773) */
1417         {QMI_GOBI_DEVICE(0x1199, 0x9008)},      /* Sierra Wireless Gobi 2000 Modem device (VT773) */
1418         {QMI_GOBI_DEVICE(0x1199, 0x9009)},      /* Sierra Wireless Gobi 2000 Modem device (VT773) */
1419         {QMI_GOBI_DEVICE(0x1199, 0x900a)},      /* Sierra Wireless Gobi 2000 Modem device (VT773) */
1420         {QMI_GOBI_DEVICE(0x1199, 0x9011)},      /* Sierra Wireless Gobi 2000 Modem device (MC8305) */
1421         {QMI_GOBI_DEVICE(0x16d8, 0x8002)},      /* CMDTech Gobi 2000 Modem device (VU922) */
1422         {QMI_GOBI_DEVICE(0x05c6, 0x9205)},      /* Gobi 2000 Modem device */
1423         {QMI_GOBI_DEVICE(0x1199, 0x9013)},      /* Sierra Wireless Gobi 3000 Modem device (MC8355) */
1424         {QMI_GOBI_DEVICE(0x03f0, 0x371d)},      /* HP un2430 Mobile Broadband Module */
1425         {QMI_GOBI_DEVICE(0x1199, 0x9015)},      /* Sierra Wireless Gobi 3000 Modem device */
1426         {QMI_GOBI_DEVICE(0x1199, 0x9019)},      /* Sierra Wireless Gobi 3000 Modem device */
1427         {QMI_GOBI_DEVICE(0x1199, 0x901b)},      /* Sierra Wireless MC7770 */
1428         {QMI_GOBI_DEVICE(0x12d1, 0x14f1)},      /* Sony Gobi 3000 Composite */
1429         {QMI_GOBI_DEVICE(0x1410, 0xa021)},      /* Foxconn Gobi 3000 Modem device (Novatel E396) */
1430
1431         { }                                     /* END */
1432 };
1433 MODULE_DEVICE_TABLE(usb, products);
1434
1435 static bool quectel_ec20_detected(struct usb_interface *intf)
1436 {
1437         struct usb_device *dev = interface_to_usbdev(intf);
1438
1439         if (dev->actconfig &&
1440             le16_to_cpu(dev->descriptor.idVendor) == 0x05c6 &&
1441             le16_to_cpu(dev->descriptor.idProduct) == 0x9215 &&
1442             dev->actconfig->desc.bNumInterfaces == 5)
1443                 return true;
1444
1445         return false;
1446 }
1447
1448 static int qmi_wwan_probe(struct usb_interface *intf,
1449                           const struct usb_device_id *prod)
1450 {
1451         struct usb_device_id *id = (struct usb_device_id *)prod;
1452         struct usb_interface_descriptor *desc = &intf->cur_altsetting->desc;
1453
1454         /* Workaround to enable dynamic IDs.  This disables usbnet
1455          * blacklisting functionality.  Which, if required, can be
1456          * reimplemented here by using a magic "blacklist" value
1457          * instead of 0 in the static device id table
1458          */
1459         if (!id->driver_info) {
1460                 dev_dbg(&intf->dev, "setting defaults for dynamic device id\n");
1461                 id->driver_info = (unsigned long)&qmi_wwan_info;
1462         }
1463
1464         /* There are devices where the same interface number can be
1465          * configured as different functions. We should only bind to
1466          * vendor specific functions when matching on interface number
1467          */
1468         if (id->match_flags & USB_DEVICE_ID_MATCH_INT_NUMBER &&
1469             desc->bInterfaceClass != USB_CLASS_VENDOR_SPEC) {
1470                 dev_dbg(&intf->dev,
1471                         "Rejecting interface number match for class %02x\n",
1472                         desc->bInterfaceClass);
1473                 return -ENODEV;
1474         }
1475
1476         /* Quectel EC20 quirk where we've QMI on interface 4 instead of 0 */
1477         if (quectel_ec20_detected(intf) && desc->bInterfaceNumber == 0) {
1478                 dev_dbg(&intf->dev, "Quectel EC20 quirk, skipping interface 0\n");
1479                 return -ENODEV;
1480         }
1481
1482         /* Several Quectel modems supports dynamic interface configuration, so
1483          * we need to match on class/subclass/protocol. These values are
1484          * identical for the diagnostic- and QMI-interface, but bNumEndpoints is
1485          * different. Ignore the current interface if the number of endpoints
1486          * equals the number for the diag interface (two).
1487          */
1488         if (desc->bNumEndpoints == 2)
1489                 return -ENODEV;
1490
1491         return usbnet_probe(intf, id);
1492 }
1493
1494 static void qmi_wwan_disconnect(struct usb_interface *intf)
1495 {
1496         struct usbnet *dev = usb_get_intfdata(intf);
1497         struct qmi_wwan_state *info;
1498         struct list_head *iter;
1499         struct net_device *ldev;
1500         LIST_HEAD(list);
1501
1502         /* called twice if separate control and data intf */
1503         if (!dev)
1504                 return;
1505         info = (void *)&dev->data;
1506         if (info->flags & QMI_WWAN_FLAG_MUX) {
1507                 if (!rtnl_trylock()) {
1508                         restart_syscall();
1509                         return;
1510                 }
1511                 rcu_read_lock();
1512                 netdev_for_each_upper_dev_rcu(dev->net, ldev, iter)
1513                         qmimux_unregister_device(ldev, &list);
1514                 rcu_read_unlock();
1515                 unregister_netdevice_many(&list);
1516                 rtnl_unlock();
1517                 info->flags &= ~QMI_WWAN_FLAG_MUX;
1518         }
1519         usbnet_disconnect(intf);
1520 }
1521
1522 static struct usb_driver qmi_wwan_driver = {
1523         .name                 = "qmi_wwan",
1524         .id_table             = products,
1525         .probe                = qmi_wwan_probe,
1526         .disconnect           = qmi_wwan_disconnect,
1527         .suspend              = qmi_wwan_suspend,
1528         .resume               = qmi_wwan_resume,
1529         .reset_resume         = qmi_wwan_resume,
1530         .supports_autosuspend = 1,
1531         .disable_hub_initiated_lpm = 1,
1532 };
1533
1534 module_usb_driver(qmi_wwan_driver);
1535
1536 MODULE_AUTHOR("Bjørn Mork <bjorn@mork.no>");
1537 MODULE_DESCRIPTION("Qualcomm MSM Interface (QMI) WWAN driver");
1538 MODULE_LICENSE("GPL");