1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * USB-to-WWAN Driver for Sierra Wireless modems
5 * Copyright (C) 2008, 2009, 2010 Paxton Smith, Matthew Safar, Rory Filer
6 * <linux@sierrawireless.com>
8 * Portions of this based on the cdc_ether driver by David Brownell (2003-2005)
9 * and Ole Andre Vadla Ravnas (ActiveSync) (2006).
11 * IMPORTANT DISCLAIMER: This driver is not commercially supported by
12 * Sierra Wireless. Use at your own risk.
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"
18 static const char driver_name[] = "sierra_net";
20 /* if defined debug messages enabled */
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>
33 #include <asm/unaligned.h>
34 #include <linux/usb/usbnet.h>
36 #define SWI_USB_REQUEST_GET_FW_ATTR 0x06
37 #define SWI_GET_FW_ATTR_MASK 0x08
39 /* atomic counter partially included in MAC address to make sure 2 devices
40 * do not end up with the same MAC - concept breaks in case of > 255 ifaces
42 static atomic_t iface_counter = ATOMIC_INIT(0);
45 * SYNC Timer Delay definition used to set the expiry time
47 #define SIERRA_NET_SYNCDELAY (2*HZ)
49 /* Max. MTU supported. The modem buffers are limited to 1500 */
50 #define SIERRA_NET_MAX_SUPPORTED_MTU 1500
52 /* The SIERRA_NET_USBCTL_BUF_LEN defines a buffer size allocated for control
53 * message reception ... and thus the max. received packet.
54 * (May be the cause for parse_hip returning -EINVAL)
56 #define SIERRA_NET_USBCTL_BUF_LEN 1024
58 /* Overriding the default usbnet rx_urb_size */
59 #define SIERRA_NET_RX_URB_SIZE (8 * 1024)
61 /* Private data structure */
62 struct sierra_net_data {
64 u16 link_up; /* air link up or down */
65 u8 tx_hdr_template[4]; /* part of HIP hdr for tx'd packets */
67 u8 sync_msg[4]; /* SYNC message */
68 u8 shdwn_msg[4]; /* Shutdown message */
70 /* Backpointer to the container */
71 struct usbnet *usbnet;
73 u8 ifnum; /* interface number */
75 /* Bit masks, must be a power of 2 */
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; /* For retrying SYNC sequence */
93 /* HIP message type */
94 #define SIERRA_NET_HIP_EXTENDEDID 0x7F
95 #define SIERRA_NET_HIP_HSYNC_ID 0x60 /* Modem -> host */
96 #define SIERRA_NET_HIP_RESTART_ID 0x62 /* Modem -> host */
97 #define SIERRA_NET_HIP_MSYNC_ID 0x20 /* Host -> modem */
98 #define SIERRA_NET_HIP_SHUTD_ID 0x26 /* Host -> modem */
100 #define SIERRA_NET_HIP_EXT_IP_IN_ID 0x0202
101 #define SIERRA_NET_HIP_EXT_IP_OUT_ID 0x0002
103 /* 3G UMTS Link Sense Indication definitions */
104 #define SIERRA_NET_HIP_LSI_UMTSID 0x78
106 /* Reverse Channel Grant Indication HIP message */
107 #define SIERRA_NET_HIP_RCGI 0x64
109 /* LSI Protocol types */
110 #define SIERRA_NET_PROTOCOL_UMTS 0x01
111 #define SIERRA_NET_PROTOCOL_UMTS_DS 0x04
113 #define SIERRA_NET_COVERAGE_NONE 0x00
114 #define SIERRA_NET_COVERAGE_NOPACKET 0x01
117 #define SIERRA_NET_SESSION_IDLE 0x00
119 #define SIERRA_NET_AS_LINK_TYPE_IPV4 0x00
120 #define SIERRA_NET_AS_LINK_TYPE_IPV6 0x02
126 /* eventually use a union for the rest - assume umts for now */
128 u8 network_len; /* network name len */
129 u8 network[40]; /* network name (UCS2, bigendian) */
134 struct lsi_umts_single {
137 u8 pdp_addr_len; /* NW-supplied PDP address len */
138 u8 pdp_addr[16]; /* NW-supplied PDP address (bigendian)) */
140 u8 dns1_addr_len; /* NW-supplied 1st DNS address len (bigendian) */
141 u8 dns1_addr[16]; /* NW-supplied 1st DNS address */
142 u8 dns2_addr_len; /* NW-supplied 2nd DNS address len */
143 u8 dns2_addr[16]; /* NW-supplied 2nd DNS address (bigendian)*/
144 u8 wins1_addr_len; /* NW-supplied 1st Wins address len */
145 u8 wins1_addr[16]; /* NW-supplied 1st Wins address (bigendian)*/
146 u8 wins2_addr_len; /* NW-supplied 2nd Wins address len */
147 u8 wins2_addr[16]; /* NW-supplied 2nd Wins address (bigendian) */
149 u8 gw_addr_len; /* NW-supplied GW address len */
150 u8 gw_addr[16]; /* NW-supplied GW address (bigendian) */
154 struct lsi_umts_dual {
156 u8 pdp_addr4_len; /* NW-supplied PDP IPv4 address len */
157 u8 pdp_addr4[4]; /* NW-supplied PDP IPv4 address (bigendian)) */
158 u8 pdp_addr6_len; /* NW-supplied PDP IPv6 address len */
159 u8 pdp_addr6[16]; /* NW-supplied PDP IPv6 address (bigendian)) */
161 u8 dns1_addr4_len; /* NW-supplied 1st DNS v4 address len (bigendian) */
162 u8 dns1_addr4[4]; /* NW-supplied 1st DNS v4 address */
163 u8 dns1_addr6_len; /* NW-supplied 1st DNS v6 address len */
164 u8 dns1_addr6[16]; /* NW-supplied 1st DNS v6 address (bigendian)*/
165 u8 dns2_addr4_len; /* NW-supplied 2nd DNS v4 address len (bigendian) */
166 u8 dns2_addr4[4]; /* NW-supplied 2nd DNS v4 address */
167 u8 dns2_addr6_len; /* NW-supplied 2nd DNS v6 address len */
168 u8 dns2_addr6[16]; /* NW-supplied 2nd DNS v6 address (bigendian)*/
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)
180 /* Our own net device operations structure */
181 static 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,
192 /* get private data associated with passed in usbnet device */
193 static inline struct sierra_net_data *sierra_net_get_private(struct usbnet *dev)
195 return (struct sierra_net_data *)dev->data[0];
198 /* set private data associated with passed in usbnet device */
199 static inline void sierra_net_set_private(struct usbnet *dev,
200 struct sierra_net_data *priv)
202 dev->data[0] = (unsigned long)priv;
205 /* is packet IPv4/IPv6 */
206 static inline int is_ip(struct sk_buff *skb)
208 return skb->protocol == cpu_to_be16(ETH_P_IP) ||
209 skb->protocol == cpu_to_be16(ETH_P_IPV6);
213 * check passed in packet and make sure that:
214 * - it is linear (no scatter/gather)
215 * - it is ethernet (mac_header properly set)
217 static int check_ethip_packet(struct sk_buff *skb, struct usbnet *dev)
219 skb_reset_mac_header(skb); /* ethernet header */
221 if (skb_is_nonlinear(skb)) {
222 netdev_err(dev->net, "Non linear buffer-dropping\n");
226 if (!pskb_may_pull(skb, ETH_HLEN))
228 skb->protocol = eth_hdr(skb)->h_proto;
233 static const u8 *save16bit(struct param *p, const u8 *datap)
236 p->word = get_unaligned_be16(datap);
237 return datap + sizeof(p->word);
240 static const u8 *save8bit(struct param *p, const u8 *datap)
244 return datap + sizeof(p->byte);
247 /*----------------------------------------------------------------------------*
249 *----------------------------------------------------------------------------*/
251 #define SIERRA_NET_HIP_HDR_LEN 4
252 /* Extended HIP header */
253 #define SIERRA_NET_HIP_EXT_HDR_LEN 6
257 struct param payload_len;
259 struct param msgspecific;
260 struct param extmsgid;
263 static int parse_hip(const u8 *buf, const u32 buflen, struct hip_hdr *hh)
265 const u8 *curp = buf;
268 if (buflen < SIERRA_NET_HIP_HDR_LEN)
271 curp = save16bit(&hh->payload_len, curp);
272 curp = save8bit(&hh->msgid, curp);
273 curp = save8bit(&hh->msgspecific, curp);
275 padded = hh->msgid.byte & 0x80;
276 hh->msgid.byte &= 0x7F; /* 7 bits */
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)
283 hh->payload_len.word &= 0x3FFF; /* 14 bits */
285 curp = save16bit(&hh->extmsgid, curp);
286 hh->extmsgid.word &= 0x03FF; /* 10 bits */
288 hh->hdrlen = SIERRA_NET_HIP_EXT_HDR_LEN;
290 hh->payload_len.word &= 0x07FF; /* 11 bits */
291 hh->hdrlen = SIERRA_NET_HIP_HDR_LEN;
296 hh->payload_len.word--;
299 /* if real packet shorter than the claimed length */
300 if (buflen < (hh->hdrlen + hh->payload_len.word))
306 static void build_hip(u8 *buf, const u16 payloadlen,
307 struct sierra_net_data *priv)
309 /* the following doesn't have the full functionality. We
310 * currently build only one kind of header, so it is faster this way
312 put_unaligned_be16(payloadlen, buf);
313 memcpy(buf+2, priv->tx_hdr_template, sizeof(priv->tx_hdr_template));
315 /*----------------------------------------------------------------------------*
317 *----------------------------------------------------------------------------*/
319 static int sierra_net_send_cmd(struct usbnet *dev,
320 u8 *cmd, int cmdlen, const char * cmd_name)
322 struct sierra_net_data *priv = sierra_net_get_private(dev);
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);
329 if (status != cmdlen && status != -ENODEV)
330 netdev_err(dev->net, "Submit %s failed %d\n", cmd_name, status);
335 static int sierra_net_send_sync(struct usbnet *dev)
338 struct sierra_net_data *priv = sierra_net_get_private(dev);
340 dev_dbg(&dev->udev->dev, "%s", __func__);
342 status = sierra_net_send_cmd(dev, priv->sync_msg,
343 sizeof(priv->sync_msg), "SYNC");
348 static void sierra_net_set_ctx_index(struct sierra_net_data *priv, u8 ctx_ix)
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);
357 static int sierra_net_parse_lsi(struct usbnet *dev, char *data, int datalen)
359 struct lsi_umts *lsi = (struct lsi_umts *)data;
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));
368 /* Validate the session state */
369 if (lsi->session_state == SIERRA_NET_SESSION_IDLE) {
370 netdev_err(dev->net, "Session idle, 0x%02x\n",
375 /* Validate the protocol - only support UMTS for now */
376 if (lsi->protocol == SIERRA_NET_PROTOCOL_UMTS) {
377 struct lsi_umts_single *single = (struct lsi_umts_single *)lsi;
379 /* Validate the link type */
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",
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;
390 netdev_err(dev->net, "Protocol unsupported, 0x%02x\n",
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);
401 /* Validate the coverage */
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);
408 /* Set link_sense true */
412 static void sierra_net_handle_lsi(struct usbnet *dev, char *data,
415 struct sierra_net_data *priv = sierra_net_get_private(dev);
418 link_up = sierra_net_parse_lsi(dev, data + hh->hdrlen,
419 hh->payload_len.word);
421 netdev_err(dev->net, "Invalid LSI\n");
425 sierra_net_set_ctx_index(priv, hh->msgspecific.byte);
430 usbnet_link_change(dev, link_up, 0);
433 static void sierra_net_dosync(struct usbnet *dev)
436 struct sierra_net_data *priv = sierra_net_get_private(dev);
438 dev_dbg(&dev->udev->dev, "%s", __func__);
440 /* The SIERRA_NET_HIP_MSYNC_ID command appears to request that the
441 * firmware restart itself. After restarting, the modem will respond
442 * with the SIERRA_NET_HIP_RESTART_ID indication. The driver continues
443 * sending MSYNC commands every few seconds until it receives the
444 * RESTART event from the firmware
447 /* tell modem we are ready */
448 status = sierra_net_send_sync(dev);
451 "Send SYNC failed, status %d\n", status);
452 status = sierra_net_send_sync(dev);
455 "Send SYNC failed, status %d\n", status);
457 /* Now, start a timer and make sure we get the Restart Indication */
458 priv->sync_timer.expires = jiffies + SIERRA_NET_SYNCDELAY;
459 add_timer(&priv->sync_timer);
462 static void sierra_net_kevent(struct work_struct *work)
464 struct sierra_net_data *priv =
465 container_of(work, struct sierra_net_data, sierra_net_kevent);
466 struct usbnet *dev = priv->usbnet;
472 if (test_bit(SIERRA_NET_EVENT_RESP_AVAIL, &priv->kevent_flags)) {
473 clear_bit(SIERRA_NET_EVENT_RESP_AVAIL, &priv->kevent_flags);
475 /* Query the modem for the LSI message */
476 buf = kzalloc(SIERRA_NET_USBCTL_BUF_LEN, GFP_KERNEL);
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);
489 "usb_control_msg failed, status %d\n", len);
493 dev_dbg(&dev->udev->dev, "%s: Received status message,"
494 " %04x bytes", __func__, len);
496 err = parse_hip(buf, len, &hh);
498 netdev_err(dev->net, "%s: Bad packet,"
499 " parse result %d\n", __func__, err);
504 /* Validate packet length */
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);
513 /* Switch on received message types */
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);
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 /* Got sync resp - stop timer & clear mask */
525 del_timer_sync(&priv->sync_timer);
526 clear_bit(SIERRA_NET_TIMER_EXPIRY,
527 &priv->kevent_flags);
529 case SIERRA_NET_HIP_HSYNC_ID:
530 dev_dbg(&dev->udev->dev, "SYNC received");
531 err = sierra_net_send_sync(dev);
534 "Send SYNC failed %d\n", err);
536 case SIERRA_NET_HIP_EXTENDEDID:
537 netdev_err(dev->net, "Unrecognized HIP msg, "
538 "extmsgid 0x%04x\n", hh.extmsgid.word);
540 case SIERRA_NET_HIP_RCGI:
544 netdev_err(dev->net, "Unrecognized HIP msg, "
545 "msgid 0x%02x\n", hh.msgid.byte);
551 /* The sync timer bit might be set */
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);
558 if (priv->kevent_flags)
559 dev_dbg(&dev->udev->dev, "sierra_net_kevent done, "
560 "kevent_flags = 0x%lx", priv->kevent_flags);
563 static void sierra_net_defer_kevent(struct usbnet *dev, int work)
565 struct sierra_net_data *priv = sierra_net_get_private(dev);
567 set_bit(work, &priv->kevent_flags);
568 schedule_work(&priv->sierra_net_kevent);
572 * Sync Retransmit Timer Handler. On expiry, kick the work queue
574 static void sierra_sync_timer(struct timer_list *t)
576 struct sierra_net_data *priv = from_timer(priv, t, sync_timer);
577 struct usbnet *dev = priv->usbnet;
579 dev_dbg(&dev->udev->dev, "%s", __func__);
580 /* Kick the tasklet */
581 sierra_net_defer_kevent(dev, SIERRA_NET_TIMER_EXPIRY);
584 static void sierra_net_status(struct usbnet *dev, struct urb *urb)
586 struct usb_cdc_notification *event;
588 dev_dbg(&dev->udev->dev, "%s", __func__);
590 if (urb->actual_length < sizeof *event)
593 /* Add cases to handle other standard notifications. */
594 event = urb->transfer_buffer;
595 switch (event->bNotificationType) {
596 case USB_CDC_NOTIFY_NETWORK_CONNECTION:
597 case USB_CDC_NOTIFY_SPEED_CHANGE:
598 /* USB 305 sends those */
600 case USB_CDC_NOTIFY_RESPONSE_AVAILABLE:
601 sierra_net_defer_kevent(dev, SIERRA_NET_EVENT_RESP_AVAIL);
604 netdev_err(dev->net, ": unexpected notification %02x!\n",
605 event->bNotificationType);
610 static void sierra_net_get_drvinfo(struct net_device *net,
611 struct ethtool_drvinfo *info)
613 /* Inherit standard device info */
614 usbnet_get_drvinfo(net, info);
615 strlcpy(info->driver, driver_name, sizeof(info->driver));
616 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
619 static u32 sierra_net_get_link(struct net_device *net)
621 struct usbnet *dev = netdev_priv(net);
622 /* Report link is down whenever the interface is down */
623 return sierra_net_get_private(dev)->link_up && netif_running(net);
626 static 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,
636 static int sierra_net_get_fw_attr(struct usbnet *dev, u16 *datap)
641 result = usbnet_read_cmd(dev,
642 /* _u8 vendor specific request */
643 SWI_USB_REQUEST_GET_FW_ATTR,
644 USB_DIR_IN | USB_TYPE_VENDOR, /* __u8 request type */
645 0x0000, /* __u16 value not used */
646 0x0000, /* __u16 index not used */
647 &attrdata, /* char *data */
648 sizeof(attrdata) /* __u16 size */
654 *datap = le16_to_cpu(attrdata);
659 * collects the bulk endpoints, the status endpoint.
661 static int sierra_net_bind(struct usbnet *dev, struct usb_interface *intf)
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};
673 dev_dbg(&dev->udev->dev, "%s", __func__);
675 ifacenum = intf->cur_altsetting->desc.bInterfaceNumber;
676 numendpoints = intf->cur_altsetting->desc.bNumEndpoints;
677 /* We have three endpoints, bulk in and out, and a status */
678 if (numendpoints != 3) {
679 dev_err(&dev->udev->dev, "Expected 3 endpoints, found: %d",
683 /* Status endpoint set in usbnet_get_endpoints() */
685 status = usbnet_get_endpoints(dev, intf);
687 dev_err(&dev->udev->dev, "Error in usbnet_get_endpoints (%d)",
691 /* Initialize sierra private data */
692 priv = kzalloc(sizeof *priv, GFP_KERNEL);
697 priv->ifnum = ifacenum;
698 dev->net->netdev_ops = &sierra_net_device_ops;
700 /* change MAC addr to include, ifacenum, and to be unique */
701 dev->net->dev_addr[ETH_ALEN-2] = atomic_inc_return(&iface_counter);
702 dev->net->dev_addr[ETH_ALEN-1] = ifacenum;
704 /* prepare shutdown message template */
705 memcpy(priv->shdwn_msg, shdwn_tmplate, sizeof(priv->shdwn_msg));
706 /* set context index initially to 0 - prepares tx hdr template */
707 sierra_net_set_ctx_index(priv, 0);
709 /* prepare sync message template */
710 memcpy(priv->sync_msg, sync_tmplate, sizeof(priv->sync_msg));
712 /* decrease the rx_urb_size and max_tx_size to 4k on USB 1.1 */
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);
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;
721 /* Set up the netdev */
722 dev->net->flags |= IFF_NOARP;
723 dev->net->ethtool_ops = &sierra_net_ethtool_ops;
724 netif_carrier_off(dev->net);
726 sierra_net_set_private(dev, priv);
728 priv->kevent_flags = 0;
730 /* Use the shared workqueue */
731 INIT_WORK(&priv->sierra_net_kevent, sierra_net_kevent);
733 /* Only need to do this once */
734 timer_setup(&priv->sync_timer, sierra_sync_timer, 0);
736 /* verify fw attributes */
737 status = sierra_net_get_fw_attr(dev, &fwattr);
738 dev_dbg(&dev->udev->dev, "Fw attr: %x\n", fwattr);
740 /* test whether firmware supports DHCP */
741 if (!(status == sizeof(fwattr) && (fwattr & SWI_GET_FW_ATTR_MASK))) {
742 /* found incompatible firmware version */
743 dev_err(&dev->udev->dev, "Incompatible driver and firmware"
752 static void sierra_net_unbind(struct usbnet *dev, struct usb_interface *intf)
755 struct sierra_net_data *priv = sierra_net_get_private(dev);
757 dev_dbg(&dev->udev->dev, "%s", __func__);
759 /* kill the timer and work */
760 del_timer_sync(&priv->sync_timer);
761 cancel_work_sync(&priv->sierra_net_kevent);
763 /* tell modem we are going away */
764 status = sierra_net_send_cmd(dev, priv->shdwn_msg,
765 sizeof(priv->shdwn_msg), "Shutdown");
768 "usb_control_msg failed, status %d\n", status);
770 usbnet_status_stop(dev);
772 sierra_net_set_private(dev, NULL);
776 static struct sk_buff *sierra_net_skb_clone(struct usbnet *dev,
777 struct sk_buff *skb, int len)
779 struct sk_buff *new_skb;
782 new_skb = skb_clone(skb, GFP_ATOMIC);
784 /* remove len bytes from original */
787 /* trim next packet to it's length */
789 skb_trim(new_skb, len);
791 if (netif_msg_rx_err(dev))
792 netdev_err(dev->net, "failed to get skb\n");
793 dev->net->stats.rx_dropped++;
799 /* ---------------------------- Receive data path ----------------------*/
800 static int sierra_net_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
804 struct sk_buff *new_skb;
806 dev_dbg(&dev->udev->dev, "%s", __func__);
808 /* could contain multiple packets */
809 while (likely(skb->len)) {
810 err = parse_hip(skb->data, skb->len, &hh);
812 if (netif_msg_rx_err(dev))
813 netdev_err(dev->net, "Invalid HIP header %d\n",
815 /* dev->net->stats.rx_errors incremented by caller */
816 dev->net->stats.rx_length_errors++;
820 /* Validate Extended HIP header */
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");
826 dev->net->stats.rx_frame_errors++;
827 /* dev->net->stats.rx_errors incremented by caller */
831 skb_pull(skb, hh.hdrlen);
833 /* We are going to accept this packet, prepare it.
834 * In case protocol is IPv6, keep it, otherwise force IPv4.
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);
842 /* Last packet in batch handled by usbnet */
843 if (hh.payload_len.word == skb->len)
846 new_skb = sierra_net_skb_clone(dev, skb, hh.payload_len.word);
848 usbnet_skb_return(dev, new_skb);
855 /* ---------------------------- Transmit data path ----------------------*/
856 static struct sk_buff *sierra_net_tx_fixup(struct usbnet *dev,
857 struct sk_buff *skb, gfp_t flags)
859 struct sierra_net_data *priv = sierra_net_get_private(dev);
863 BUILD_BUG_ON(sizeof_field(struct usbnet, data)
864 < sizeof(struct cdc_state));
866 dev_dbg(&dev->udev->dev, "%s", __func__);
867 if (priv->link_up && check_ethip_packet(skb, dev) && is_ip(skb)) {
868 /* enough head room as is? */
869 if (SIERRA_NET_HIP_EXT_HDR_LEN <= skb_headroom(skb)) {
870 /* Save the Eth/IP length and set up HIP hdr */
872 skb_push(skb, SIERRA_NET_HIP_EXT_HDR_LEN);
873 /* Handle ZLP issue */
874 need_tail = ((len + SIERRA_NET_HIP_EXT_HDR_LEN)
875 % dev->maxpacket == 0);
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);
883 skb->data[skb->len] = 0;
888 build_hip(skb->data, len, priv);
892 * compensate in the future if necessary
894 netdev_err(dev->net, "tx_fixup: no room for HIP\n");
899 dev->net->stats.tx_carrier_errors++;
901 /* tx_dropped incremented by usbnet */
903 /* filter the packet out, release it */
904 dev_kfree_skb_any(skb);
908 static 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,
919 sierra_net_probe(struct usb_interface *udev, const struct usb_device_id *prod)
923 ret = usbnet_probe(udev, prod);
925 struct usbnet *dev = usb_get_intfdata(udev);
927 ret = usbnet_status_start(dev, GFP_KERNEL);
929 /* Interrupt URB now set up; initiate sync sequence */
930 sierra_net_dosync(dev);
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}
944 static const struct usb_device_id products[] = {
945 DIRECT_IP_DEVICE(0x1199, 0x68A3), /* Sierra Wireless USB-to-WWAN modem */
946 DIRECT_IP_DEVICE(0x0F3D, 0x68A3), /* AT&T Direct IP modem */
947 DIRECT_IP_DEVICE(0x1199, 0x68AA), /* Sierra Wireless Direct IP LTE modem */
948 DIRECT_IP_DEVICE(0x0F3D, 0x68AA), /* AT&T Direct IP LTE modem */
952 MODULE_DEVICE_TABLE(usb, products);
954 /* We are based on usbnet, so let it handle the USB driver specifics */
955 static 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,
963 .disable_hub_initiated_lpm = 1,
966 module_usb_driver(sierra_net_driver);
968 MODULE_AUTHOR(DRIVER_AUTHOR);
969 MODULE_DESCRIPTION(DRIVER_DESC);
970 MODULE_VERSION(DRIVER_VERSION);
971 MODULE_LICENSE("GPL");