1
2
3
4
5
6
7
8
9
10
11
12
13
14
15#define DRIVER_VERSION "v.2.0"
16#define DRIVER_AUTHOR "Paxton Smith, Matthew Safar, Rory Filer"
17#define DRIVER_DESC "USB-to-WWAN Driver for Sierra Wireless modems"
18static const char driver_name[] = "sierra_net";
19
20
21
22
23#include <linux/module.h>
24#include <linux/etherdevice.h>
25#include <linux/ethtool.h>
26#include <linux/mii.h>
27#include <linux/sched.h>
28#include <linux/timer.h>
29#include <linux/usb.h>
30#include <linux/usb/cdc.h>
31#include <net/ip.h>
32#include <net/udp.h>
33#include <asm/unaligned.h>
34#include <linux/usb/usbnet.h>
35
36#define SWI_USB_REQUEST_GET_FW_ATTR 0x06
37#define SWI_GET_FW_ATTR_MASK 0x08
38
39
40
41
42static atomic_t iface_counter = ATOMIC_INIT(0);
43
44
45
46
47#define SIERRA_NET_SYNCDELAY (2*HZ)
48
49
50#define SIERRA_NET_MAX_SUPPORTED_MTU 1500
51
52
53
54
55
56#define SIERRA_NET_USBCTL_BUF_LEN 1024
57
58
59#define SIERRA_NET_RX_URB_SIZE (8 * 1024)
60
61
62struct sierra_net_data {
63
64 u16 link_up;
65 u8 tx_hdr_template[4];
66
67 u8 sync_msg[4];
68 u8 shdwn_msg[4];
69
70
71 struct usbnet *usbnet;
72
73 u8 ifnum;
74
75
76#define SIERRA_NET_EVENT_RESP_AVAIL 0x01
77#define SIERRA_NET_TIMER_EXPIRY 0x02
78 unsigned long kevent_flags;
79 struct work_struct sierra_net_kevent;
80 struct timer_list sync_timer;
81};
82
83struct param {
84 int is_present;
85 union {
86 void *ptr;
87 u32 dword;
88 u16 word;
89 u8 byte;
90 };
91};
92
93
94#define SIERRA_NET_HIP_EXTENDEDID 0x7F
95#define SIERRA_NET_HIP_HSYNC_ID 0x60
96#define SIERRA_NET_HIP_RESTART_ID 0x62
97#define SIERRA_NET_HIP_MSYNC_ID 0x20
98#define SIERRA_NET_HIP_SHUTD_ID 0x26
99
100#define SIERRA_NET_HIP_EXT_IP_IN_ID 0x0202
101#define SIERRA_NET_HIP_EXT_IP_OUT_ID 0x0002
102
103
104#define SIERRA_NET_HIP_LSI_UMTSID 0x78
105
106
107#define SIERRA_NET_HIP_RCGI 0x64
108
109
110#define SIERRA_NET_PROTOCOL_UMTS 0x01
111#define SIERRA_NET_PROTOCOL_UMTS_DS 0x04
112
113#define SIERRA_NET_COVERAGE_NONE 0x00
114#define SIERRA_NET_COVERAGE_NOPACKET 0x01
115
116
117#define SIERRA_NET_SESSION_IDLE 0x00
118
119#define SIERRA_NET_AS_LINK_TYPE_IPV4 0x00
120#define SIERRA_NET_AS_LINK_TYPE_IPV6 0x02
121
122struct lsi_umts {
123 u8 protocol;
124 u8 unused1;
125 __be16 length;
126
127 u8 coverage;
128 u8 network_len;
129 u8 network[40];
130 u8 session_state;
131 u8 unused3[33];
132} __packed;
133
134struct lsi_umts_single {
135 struct lsi_umts lsi;
136 u8 link_type;
137 u8 pdp_addr_len;
138 u8 pdp_addr[16];
139 u8 unused4[23];
140 u8 dns1_addr_len;
141 u8 dns1_addr[16];
142 u8 dns2_addr_len;
143 u8 dns2_addr[16];
144 u8 wins1_addr_len;
145 u8 wins1_addr[16];
146 u8 wins2_addr_len;
147 u8 wins2_addr[16];
148 u8 unused5[4];
149 u8 gw_addr_len;
150 u8 gw_addr[16];
151 u8 reserved[8];
152} __packed;
153
154struct lsi_umts_dual {
155 struct lsi_umts lsi;
156 u8 pdp_addr4_len;
157 u8 pdp_addr4[4];
158 u8 pdp_addr6_len;
159 u8 pdp_addr6[16];
160 u8 unused4[23];
161 u8 dns1_addr4_len;
162 u8 dns1_addr4[4];
163 u8 dns1_addr6_len;
164 u8 dns1_addr6[16];
165 u8 dns2_addr4_len;
166 u8 dns2_addr4[4];
167 u8 dns2_addr6_len;
168 u8 dns2_addr6[16];
169 u8 unused5[68];
170} __packed;
171
172#define SIERRA_NET_LSI_COMMON_LEN 4
173#define SIERRA_NET_LSI_UMTS_LEN (sizeof(struct lsi_umts_single))
174#define SIERRA_NET_LSI_UMTS_STATUS_LEN \
175 (SIERRA_NET_LSI_UMTS_LEN - SIERRA_NET_LSI_COMMON_LEN)
176#define SIERRA_NET_LSI_UMTS_DS_LEN (sizeof(struct lsi_umts_dual))
177#define SIERRA_NET_LSI_UMTS_DS_STATUS_LEN \
178 (SIERRA_NET_LSI_UMTS_DS_LEN - SIERRA_NET_LSI_COMMON_LEN)
179
180
181static const struct net_device_ops sierra_net_device_ops = {
182 .ndo_open = usbnet_open,
183 .ndo_stop = usbnet_stop,
184 .ndo_start_xmit = usbnet_start_xmit,
185 .ndo_tx_timeout = usbnet_tx_timeout,
186 .ndo_change_mtu = usbnet_change_mtu,
187 .ndo_get_stats64 = usbnet_get_stats64,
188 .ndo_set_mac_address = eth_mac_addr,
189 .ndo_validate_addr = eth_validate_addr,
190};
191
192
193static inline struct sierra_net_data *sierra_net_get_private(struct usbnet *dev)
194{
195 return (struct sierra_net_data *)dev->data[0];
196}
197
198
199static inline void sierra_net_set_private(struct usbnet *dev,
200 struct sierra_net_data *priv)
201{
202 dev->data[0] = (unsigned long)priv;
203}
204
205
206static inline int is_ip(struct sk_buff *skb)
207{
208 return skb->protocol == cpu_to_be16(ETH_P_IP) ||
209 skb->protocol == cpu_to_be16(ETH_P_IPV6);
210}
211
212
213
214
215
216
217static int check_ethip_packet(struct sk_buff *skb, struct usbnet *dev)
218{
219 skb_reset_mac_header(skb);
220
221 if (skb_is_nonlinear(skb)) {
222 netdev_err(dev->net, "Non linear buffer-dropping\n");
223 return 0;
224 }
225
226 if (!pskb_may_pull(skb, ETH_HLEN))
227 return 0;
228 skb->protocol = eth_hdr(skb)->h_proto;
229
230 return 1;
231}
232
233static const u8 *save16bit(struct param *p, const u8 *datap)
234{
235 p->is_present = 1;
236 p->word = get_unaligned_be16(datap);
237 return datap + sizeof(p->word);
238}
239
240static const u8 *save8bit(struct param *p, const u8 *datap)
241{
242 p->is_present = 1;
243 p->byte = *datap;
244 return datap + sizeof(p->byte);
245}
246
247
248
249
250
251#define SIERRA_NET_HIP_HDR_LEN 4
252
253#define SIERRA_NET_HIP_EXT_HDR_LEN 6
254
255struct hip_hdr {
256 int hdrlen;
257 struct param payload_len;
258 struct param msgid;
259 struct param msgspecific;
260 struct param extmsgid;
261};
262
263static int parse_hip(const u8 *buf, const u32 buflen, struct hip_hdr *hh)
264{
265 const u8 *curp = buf;
266 int padded;
267
268 if (buflen < SIERRA_NET_HIP_HDR_LEN)
269 return -EPROTO;
270
271 curp = save16bit(&hh->payload_len, curp);
272 curp = save8bit(&hh->msgid, curp);
273 curp = save8bit(&hh->msgspecific, curp);
274
275 padded = hh->msgid.byte & 0x80;
276 hh->msgid.byte &= 0x7F;
277
278 hh->extmsgid.is_present = (hh->msgid.byte == SIERRA_NET_HIP_EXTENDEDID);
279 if (hh->extmsgid.is_present) {
280 if (buflen < SIERRA_NET_HIP_EXT_HDR_LEN)
281 return -EPROTO;
282
283 hh->payload_len.word &= 0x3FFF;
284
285 curp = save16bit(&hh->extmsgid, curp);
286 hh->extmsgid.word &= 0x03FF;
287
288 hh->hdrlen = SIERRA_NET_HIP_EXT_HDR_LEN;
289 } else {
290 hh->payload_len.word &= 0x07FF;
291 hh->hdrlen = SIERRA_NET_HIP_HDR_LEN;
292 }
293
294 if (padded) {
295 hh->hdrlen++;
296 hh->payload_len.word--;
297 }
298
299
300 if (buflen < (hh->hdrlen + hh->payload_len.word))
301 return -EINVAL;
302
303 return 0;
304}
305
306static void build_hip(u8 *buf, const u16 payloadlen,
307 struct sierra_net_data *priv)
308{
309
310
311
312 put_unaligned_be16(payloadlen, buf);
313 memcpy(buf+2, priv->tx_hdr_template, sizeof(priv->tx_hdr_template));
314}
315
316
317
318
319static int sierra_net_send_cmd(struct usbnet *dev,
320 u8 *cmd, int cmdlen, const char * cmd_name)
321{
322 struct sierra_net_data *priv = sierra_net_get_private(dev);
323 int status;
324
325 status = usbnet_write_cmd(dev, USB_CDC_SEND_ENCAPSULATED_COMMAND,
326 USB_DIR_OUT|USB_TYPE_CLASS|USB_RECIP_INTERFACE,
327 0, priv->ifnum, cmd, cmdlen);
328
329 if (status != cmdlen && status != -ENODEV)
330 netdev_err(dev->net, "Submit %s failed %d\n", cmd_name, status);
331
332 return status;
333}
334
335static int sierra_net_send_sync(struct usbnet *dev)
336{
337 int status;
338 struct sierra_net_data *priv = sierra_net_get_private(dev);
339
340 dev_dbg(&dev->udev->dev, "%s", __func__);
341
342 status = sierra_net_send_cmd(dev, priv->sync_msg,
343 sizeof(priv->sync_msg), "SYNC");
344
345 return status;
346}
347
348static void sierra_net_set_ctx_index(struct sierra_net_data *priv, u8 ctx_ix)
349{
350 dev_dbg(&(priv->usbnet->udev->dev), "%s %d", __func__, ctx_ix);
351 priv->tx_hdr_template[0] = 0x3F;
352 priv->tx_hdr_template[1] = ctx_ix;
353 *((__be16 *)&priv->tx_hdr_template[2]) =
354 cpu_to_be16(SIERRA_NET_HIP_EXT_IP_OUT_ID);
355}
356
357static int sierra_net_parse_lsi(struct usbnet *dev, char *data, int datalen)
358{
359 struct lsi_umts *lsi = (struct lsi_umts *)data;
360 u32 expected_length;
361
362 if (datalen < sizeof(struct lsi_umts_single)) {
363 netdev_err(dev->net, "%s: Data length %d, exp >= %zu\n",
364 __func__, datalen, sizeof(struct lsi_umts_single));
365 return -1;
366 }
367
368
369 if (lsi->session_state == SIERRA_NET_SESSION_IDLE) {
370 netdev_err(dev->net, "Session idle, 0x%02x\n",
371 lsi->session_state);
372 return 0;
373 }
374
375
376 if (lsi->protocol == SIERRA_NET_PROTOCOL_UMTS) {
377 struct lsi_umts_single *single = (struct lsi_umts_single *)lsi;
378
379
380 if (single->link_type != SIERRA_NET_AS_LINK_TYPE_IPV4 &&
381 single->link_type != SIERRA_NET_AS_LINK_TYPE_IPV6) {
382 netdev_err(dev->net, "Link type unsupported: 0x%02x\n",
383 single->link_type);
384 return -1;
385 }
386 expected_length = SIERRA_NET_LSI_UMTS_STATUS_LEN;
387 } else if (lsi->protocol == SIERRA_NET_PROTOCOL_UMTS_DS) {
388 expected_length = SIERRA_NET_LSI_UMTS_DS_STATUS_LEN;
389 } else {
390 netdev_err(dev->net, "Protocol unsupported, 0x%02x\n",
391 lsi->protocol);
392 return -1;
393 }
394
395 if (be16_to_cpu(lsi->length) != expected_length) {
396 netdev_err(dev->net, "%s: LSI_UMTS_STATUS_LEN %d, exp %u\n",
397 __func__, be16_to_cpu(lsi->length), expected_length);
398 return -1;
399 }
400
401
402 if (lsi->coverage == SIERRA_NET_COVERAGE_NONE ||
403 lsi->coverage == SIERRA_NET_COVERAGE_NOPACKET) {
404 netdev_err(dev->net, "No coverage, 0x%02x\n", lsi->coverage);
405 return 0;
406 }
407
408
409 return 1;
410}
411
412static void sierra_net_handle_lsi(struct usbnet *dev, char *data,
413 struct hip_hdr *hh)
414{
415 struct sierra_net_data *priv = sierra_net_get_private(dev);
416 int link_up;
417
418 link_up = sierra_net_parse_lsi(dev, data + hh->hdrlen,
419 hh->payload_len.word);
420 if (link_up < 0) {
421 netdev_err(dev->net, "Invalid LSI\n");
422 return;
423 }
424 if (link_up) {
425 sierra_net_set_ctx_index(priv, hh->msgspecific.byte);
426 priv->link_up = 1;
427 } else {
428 priv->link_up = 0;
429 }
430 usbnet_link_change(dev, link_up, 0);
431}
432
433static void sierra_net_dosync(struct usbnet *dev)
434{
435 int status;
436 struct sierra_net_data *priv = sierra_net_get_private(dev);
437
438 dev_dbg(&dev->udev->dev, "%s", __func__);
439
440
441
442
443
444
445
446
447
448 status = sierra_net_send_sync(dev);
449 if (status < 0)
450 netdev_err(dev->net,
451 "Send SYNC failed, status %d\n", status);
452 status = sierra_net_send_sync(dev);
453 if (status < 0)
454 netdev_err(dev->net,
455 "Send SYNC failed, status %d\n", status);
456
457
458 priv->sync_timer.expires = jiffies + SIERRA_NET_SYNCDELAY;
459 add_timer(&priv->sync_timer);
460}
461
462static void sierra_net_kevent(struct work_struct *work)
463{
464 struct sierra_net_data *priv =
465 container_of(work, struct sierra_net_data, sierra_net_kevent);
466 struct usbnet *dev = priv->usbnet;
467 int len;
468 int err;
469 u8 *buf;
470 u8 ifnum;
471
472 if (test_bit(SIERRA_NET_EVENT_RESP_AVAIL, &priv->kevent_flags)) {
473 clear_bit(SIERRA_NET_EVENT_RESP_AVAIL, &priv->kevent_flags);
474
475
476 buf = kzalloc(SIERRA_NET_USBCTL_BUF_LEN, GFP_KERNEL);
477 if (!buf)
478 return;
479
480 ifnum = priv->ifnum;
481 len = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0),
482 USB_CDC_GET_ENCAPSULATED_RESPONSE,
483 USB_DIR_IN|USB_TYPE_CLASS|USB_RECIP_INTERFACE,
484 0, ifnum, buf, SIERRA_NET_USBCTL_BUF_LEN,
485 USB_CTRL_SET_TIMEOUT);
486
487 if (len < 0) {
488 netdev_err(dev->net,
489 "usb_control_msg failed, status %d\n", len);
490 } else {
491 struct hip_hdr hh;
492
493 dev_dbg(&dev->udev->dev, "%s: Received status message,"
494 " %04x bytes", __func__, len);
495
496 err = parse_hip(buf, len, &hh);
497 if (err) {
498 netdev_err(dev->net, "%s: Bad packet,"
499 " parse result %d\n", __func__, err);
500 kfree(buf);
501 return;
502 }
503
504
505 if (len != hh.hdrlen + hh.payload_len.word) {
506 netdev_err(dev->net, "%s: Bad packet, received"
507 " %d, expected %d\n", __func__, len,
508 hh.hdrlen + hh.payload_len.word);
509 kfree(buf);
510 return;
511 }
512
513
514 switch (hh.msgid.byte) {
515 case SIERRA_NET_HIP_LSI_UMTSID:
516 dev_dbg(&dev->udev->dev, "LSI for ctx:%d",
517 hh.msgspecific.byte);
518 sierra_net_handle_lsi(dev, buf, &hh);
519 break;
520 case SIERRA_NET_HIP_RESTART_ID:
521 dev_dbg(&dev->udev->dev, "Restart reported: %d,"
522 " stopping sync timer",
523 hh.msgspecific.byte);
524
525 del_timer_sync(&priv->sync_timer);
526 clear_bit(SIERRA_NET_TIMER_EXPIRY,
527 &priv->kevent_flags);
528 break;
529 case SIERRA_NET_HIP_HSYNC_ID:
530 dev_dbg(&dev->udev->dev, "SYNC received");
531 err = sierra_net_send_sync(dev);
532 if (err < 0)
533 netdev_err(dev->net,
534 "Send SYNC failed %d\n", err);
535 break;
536 case SIERRA_NET_HIP_EXTENDEDID:
537 netdev_err(dev->net, "Unrecognized HIP msg, "
538 "extmsgid 0x%04x\n", hh.extmsgid.word);
539 break;
540 case SIERRA_NET_HIP_RCGI:
541
542 break;
543 default:
544 netdev_err(dev->net, "Unrecognized HIP msg, "
545 "msgid 0x%02x\n", hh.msgid.byte);
546 break;
547 }
548 }
549 kfree(buf);
550 }
551
552 if (test_bit(SIERRA_NET_TIMER_EXPIRY, &priv->kevent_flags)) {
553 clear_bit(SIERRA_NET_TIMER_EXPIRY, &priv->kevent_flags);
554 dev_dbg(&dev->udev->dev, "Deferred sync timer expiry");
555 sierra_net_dosync(priv->usbnet);
556 }
557
558 if (priv->kevent_flags)
559 dev_dbg(&dev->udev->dev, "sierra_net_kevent done, "
560 "kevent_flags = 0x%lx", priv->kevent_flags);
561}
562
563static void sierra_net_defer_kevent(struct usbnet *dev, int work)
564{
565 struct sierra_net_data *priv = sierra_net_get_private(dev);
566
567 set_bit(work, &priv->kevent_flags);
568 schedule_work(&priv->sierra_net_kevent);
569}
570
571
572
573
574static void sierra_sync_timer(struct timer_list *t)
575{
576 struct sierra_net_data *priv = from_timer(priv, t, sync_timer);
577 struct usbnet *dev = priv->usbnet;
578
579 dev_dbg(&dev->udev->dev, "%s", __func__);
580
581 sierra_net_defer_kevent(dev, SIERRA_NET_TIMER_EXPIRY);
582}
583
584static void sierra_net_status(struct usbnet *dev, struct urb *urb)
585{
586 struct usb_cdc_notification *event;
587
588 dev_dbg(&dev->udev->dev, "%s", __func__);
589
590 if (urb->actual_length < sizeof *event)
591 return;
592
593
594 event = urb->transfer_buffer;
595 switch (event->bNotificationType) {
596 case USB_CDC_NOTIFY_NETWORK_CONNECTION:
597 case USB_CDC_NOTIFY_SPEED_CHANGE:
598
599 break;
600 case USB_CDC_NOTIFY_RESPONSE_AVAILABLE:
601 sierra_net_defer_kevent(dev, SIERRA_NET_EVENT_RESP_AVAIL);
602 break;
603 default:
604 netdev_err(dev->net, ": unexpected notification %02x!\n",
605 event->bNotificationType);
606 break;
607 }
608}
609
610static void sierra_net_get_drvinfo(struct net_device *net,
611 struct ethtool_drvinfo *info)
612{
613
614 usbnet_get_drvinfo(net, info);
615 strlcpy(info->driver, driver_name, sizeof(info->driver));
616 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
617}
618
619static u32 sierra_net_get_link(struct net_device *net)
620{
621 struct usbnet *dev = netdev_priv(net);
622
623 return sierra_net_get_private(dev)->link_up && netif_running(net);
624}
625
626static const struct ethtool_ops sierra_net_ethtool_ops = {
627 .get_drvinfo = sierra_net_get_drvinfo,
628 .get_link = sierra_net_get_link,
629 .get_msglevel = usbnet_get_msglevel,
630 .set_msglevel = usbnet_set_msglevel,
631 .nway_reset = usbnet_nway_reset,
632 .get_link_ksettings = usbnet_get_link_ksettings,
633 .set_link_ksettings = usbnet_set_link_ksettings,
634};
635
636static int sierra_net_get_fw_attr(struct usbnet *dev, u16 *datap)
637{
638 int result = 0;
639 __le16 attrdata;
640
641 result = usbnet_read_cmd(dev,
642
643 SWI_USB_REQUEST_GET_FW_ATTR,
644 USB_DIR_IN | USB_TYPE_VENDOR,
645 0x0000,
646 0x0000,
647 &attrdata,
648 sizeof(attrdata)
649 );
650
651 if (result < 0)
652 return -EIO;
653
654 *datap = le16_to_cpu(attrdata);
655 return result;
656}
657
658
659
660
661static int sierra_net_bind(struct usbnet *dev, struct usb_interface *intf)
662{
663 u8 ifacenum;
664 u8 numendpoints;
665 u16 fwattr = 0;
666 int status;
667 struct sierra_net_data *priv;
668 static const u8 sync_tmplate[sizeof(priv->sync_msg)] = {
669 0x00, 0x00, SIERRA_NET_HIP_MSYNC_ID, 0x00};
670 static const u8 shdwn_tmplate[sizeof(priv->shdwn_msg)] = {
671 0x00, 0x00, SIERRA_NET_HIP_SHUTD_ID, 0x00};
672
673 dev_dbg(&dev->udev->dev, "%s", __func__);
674
675 ifacenum = intf->cur_altsetting->desc.bInterfaceNumber;
676 numendpoints = intf->cur_altsetting->desc.bNumEndpoints;
677
678 if (numendpoints != 3) {
679 dev_err(&dev->udev->dev, "Expected 3 endpoints, found: %d",
680 numendpoints);
681 return -ENODEV;
682 }
683
684 dev->status = NULL;
685 status = usbnet_get_endpoints(dev, intf);
686 if (status < 0) {
687 dev_err(&dev->udev->dev, "Error in usbnet_get_endpoints (%d)",
688 status);
689 return -ENODEV;
690 }
691
692 priv = kzalloc(sizeof *priv, GFP_KERNEL);
693 if (!priv)
694 return -ENOMEM;
695
696 priv->usbnet = dev;
697 priv->ifnum = ifacenum;
698 dev->net->netdev_ops = &sierra_net_device_ops;
699
700
701 dev->net->dev_addr[ETH_ALEN-2] = atomic_inc_return(&iface_counter);
702 dev->net->dev_addr[ETH_ALEN-1] = ifacenum;
703
704
705 memcpy(priv->shdwn_msg, shdwn_tmplate, sizeof(priv->shdwn_msg));
706
707 sierra_net_set_ctx_index(priv, 0);
708
709
710 memcpy(priv->sync_msg, sync_tmplate, sizeof(priv->sync_msg));
711
712
713 dev->rx_urb_size = SIERRA_NET_RX_URB_SIZE;
714 if (dev->udev->speed != USB_SPEED_HIGH)
715 dev->rx_urb_size = min_t(size_t, 4096, SIERRA_NET_RX_URB_SIZE);
716
717 dev->net->hard_header_len += SIERRA_NET_HIP_EXT_HDR_LEN;
718 dev->hard_mtu = dev->net->mtu + dev->net->hard_header_len;
719 dev->net->max_mtu = SIERRA_NET_MAX_SUPPORTED_MTU;
720
721
722 dev->net->flags |= IFF_NOARP;
723 dev->net->ethtool_ops = &sierra_net_ethtool_ops;
724 netif_carrier_off(dev->net);
725
726 sierra_net_set_private(dev, priv);
727
728 priv->kevent_flags = 0;
729
730
731 INIT_WORK(&priv->sierra_net_kevent, sierra_net_kevent);
732
733
734 timer_setup(&priv->sync_timer, sierra_sync_timer, 0);
735
736
737 status = sierra_net_get_fw_attr(dev, &fwattr);
738 dev_dbg(&dev->udev->dev, "Fw attr: %x\n", fwattr);
739
740
741 if (!(status == sizeof(fwattr) && (fwattr & SWI_GET_FW_ATTR_MASK))) {
742
743 dev_err(&dev->udev->dev, "Incompatible driver and firmware"
744 " versions\n");
745 kfree(priv);
746 return -ENODEV;
747 }
748
749 return 0;
750}
751
752static void sierra_net_unbind(struct usbnet *dev, struct usb_interface *intf)
753{
754 int status;
755 struct sierra_net_data *priv = sierra_net_get_private(dev);
756
757 dev_dbg(&dev->udev->dev, "%s", __func__);
758
759
760 del_timer_sync(&priv->sync_timer);
761 cancel_work_sync(&priv->sierra_net_kevent);
762
763
764 status = sierra_net_send_cmd(dev, priv->shdwn_msg,
765 sizeof(priv->shdwn_msg), "Shutdown");
766 if (status < 0)
767 netdev_err(dev->net,
768 "usb_control_msg failed, status %d\n", status);
769
770 usbnet_status_stop(dev);
771
772 sierra_net_set_private(dev, NULL);
773 kfree(priv);
774}
775
776static struct sk_buff *sierra_net_skb_clone(struct usbnet *dev,
777 struct sk_buff *skb, int len)
778{
779 struct sk_buff *new_skb;
780
781
782 new_skb = skb_clone(skb, GFP_ATOMIC);
783
784
785 skb_pull(skb, len);
786
787
788 if (new_skb) {
789 skb_trim(new_skb, len);
790 } else {
791 if (netif_msg_rx_err(dev))
792 netdev_err(dev->net, "failed to get skb\n");
793 dev->net->stats.rx_dropped++;
794 }
795
796 return new_skb;
797}
798
799
800static int sierra_net_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
801{
802 int err;
803 struct hip_hdr hh;
804 struct sk_buff *new_skb;
805
806 dev_dbg(&dev->udev->dev, "%s", __func__);
807
808
809 while (likely(skb->len)) {
810 err = parse_hip(skb->data, skb->len, &hh);
811 if (err) {
812 if (netif_msg_rx_err(dev))
813 netdev_err(dev->net, "Invalid HIP header %d\n",
814 err);
815
816 dev->net->stats.rx_length_errors++;
817 return 0;
818 }
819
820
821 if (!hh.extmsgid.is_present
822 || hh.extmsgid.word != SIERRA_NET_HIP_EXT_IP_IN_ID) {
823 if (netif_msg_rx_err(dev))
824 netdev_err(dev->net, "HIP/ETH: Invalid pkt\n");
825
826 dev->net->stats.rx_frame_errors++;
827
828 return 0;
829 }
830
831 skb_pull(skb, hh.hdrlen);
832
833
834
835
836 skb_reset_mac_header(skb);
837 if (eth_hdr(skb)->h_proto != cpu_to_be16(ETH_P_IPV6))
838 eth_hdr(skb)->h_proto = cpu_to_be16(ETH_P_IP);
839 eth_zero_addr(eth_hdr(skb)->h_source);
840 memcpy(eth_hdr(skb)->h_dest, dev->net->dev_addr, ETH_ALEN);
841
842
843 if (hh.payload_len.word == skb->len)
844 return 1;
845
846 new_skb = sierra_net_skb_clone(dev, skb, hh.payload_len.word);
847 if (new_skb)
848 usbnet_skb_return(dev, new_skb);
849
850 }
851
852 return 0;
853}
854
855
856static struct sk_buff *sierra_net_tx_fixup(struct usbnet *dev,
857 struct sk_buff *skb, gfp_t flags)
858{
859 struct sierra_net_data *priv = sierra_net_get_private(dev);
860 u16 len;
861 bool need_tail;
862
863 BUILD_BUG_ON(sizeof_field(struct usbnet, data)
864 < sizeof(struct cdc_state));
865
866 dev_dbg(&dev->udev->dev, "%s", __func__);
867 if (priv->link_up && check_ethip_packet(skb, dev) && is_ip(skb)) {
868
869 if (SIERRA_NET_HIP_EXT_HDR_LEN <= skb_headroom(skb)) {
870
871 len = skb->len;
872 skb_push(skb, SIERRA_NET_HIP_EXT_HDR_LEN);
873
874 need_tail = ((len + SIERRA_NET_HIP_EXT_HDR_LEN)
875 % dev->maxpacket == 0);
876 if (need_tail) {
877 if (unlikely(skb_tailroom(skb) == 0)) {
878 netdev_err(dev->net, "tx_fixup:"
879 "no room for packet\n");
880 dev_kfree_skb_any(skb);
881 return NULL;
882 } else {
883 skb->data[skb->len] = 0;
884 __skb_put(skb, 1);
885 len = len + 1;
886 }
887 }
888 build_hip(skb->data, len, priv);
889 return skb;
890 } else {
891
892
893
894 netdev_err(dev->net, "tx_fixup: no room for HIP\n");
895 }
896 }
897
898 if (!priv->link_up)
899 dev->net->stats.tx_carrier_errors++;
900
901
902
903
904 dev_kfree_skb_any(skb);
905 return NULL;
906}
907
908static const struct driver_info sierra_net_info_direct_ip = {
909 .description = "Sierra Wireless USB-to-WWAN Modem",
910 .flags = FLAG_WWAN | FLAG_SEND_ZLP,
911 .bind = sierra_net_bind,
912 .unbind = sierra_net_unbind,
913 .status = sierra_net_status,
914 .rx_fixup = sierra_net_rx_fixup,
915 .tx_fixup = sierra_net_tx_fixup,
916};
917
918static int
919sierra_net_probe(struct usb_interface *udev, const struct usb_device_id *prod)
920{
921 int ret;
922
923 ret = usbnet_probe(udev, prod);
924 if (ret == 0) {
925 struct usbnet *dev = usb_get_intfdata(udev);
926
927 ret = usbnet_status_start(dev, GFP_KERNEL);
928 if (ret == 0) {
929
930 sierra_net_dosync(dev);
931 }
932 }
933 return ret;
934}
935
936#define DIRECT_IP_DEVICE(vend, prod) \
937 {USB_DEVICE_INTERFACE_NUMBER(vend, prod, 7), \
938 .driver_info = (unsigned long)&sierra_net_info_direct_ip}, \
939 {USB_DEVICE_INTERFACE_NUMBER(vend, prod, 10), \
940 .driver_info = (unsigned long)&sierra_net_info_direct_ip}, \
941 {USB_DEVICE_INTERFACE_NUMBER(vend, prod, 11), \
942 .driver_info = (unsigned long)&sierra_net_info_direct_ip}
943
944static const struct usb_device_id products[] = {
945 DIRECT_IP_DEVICE(0x1199, 0x68A3),
946 DIRECT_IP_DEVICE(0x0F3D, 0x68A3),
947 DIRECT_IP_DEVICE(0x1199, 0x68AA),
948 DIRECT_IP_DEVICE(0x0F3D, 0x68AA),
949
950 {},
951};
952MODULE_DEVICE_TABLE(usb, products);
953
954
955static struct usb_driver sierra_net_driver = {
956 .name = "sierra_net",
957 .id_table = products,
958 .probe = sierra_net_probe,
959 .disconnect = usbnet_disconnect,
960 .suspend = usbnet_suspend,
961 .resume = usbnet_resume,
962 .no_dynamic_id = 1,
963 .disable_hub_initiated_lpm = 1,
964};
965
966module_usb_driver(sierra_net_driver);
967
968MODULE_AUTHOR(DRIVER_AUTHOR);
969MODULE_DESCRIPTION(DRIVER_DESC);
970MODULE_VERSION(DRIVER_VERSION);
971MODULE_LICENSE("GPL");
972