diff options
Diffstat (limited to 'drivers/net/usb')
| -rw-r--r-- | drivers/net/usb/Kconfig | 29 | ||||
| -rw-r--r-- | drivers/net/usb/Makefile | 3 | ||||
| -rw-r--r-- | drivers/net/usb/asix.c | 1 | ||||
| -rw-r--r-- | drivers/net/usb/catc.c | 2 | ||||
| -rw-r--r-- | drivers/net/usb/cdc-phonet.c | 1 | ||||
| -rw-r--r-- | drivers/net/usb/cdc_eem.c | 1 | ||||
| -rw-r--r-- | drivers/net/usb/cdc_ether.c | 1 | ||||
| -rw-r--r-- | drivers/net/usb/dm9601.c | 3 | ||||
| -rw-r--r-- | drivers/net/usb/gl620a.c | 1 | ||||
| -rw-r--r-- | drivers/net/usb/hso.c | 3 | ||||
| -rw-r--r-- | drivers/net/usb/int51x1.c | 1 | ||||
| -rw-r--r-- | drivers/net/usb/ipheth.c | 569 | ||||
| -rw-r--r-- | drivers/net/usb/kaweth.c | 1 | ||||
| -rw-r--r-- | drivers/net/usb/mcs7830.c | 1 | ||||
| -rw-r--r-- | drivers/net/usb/net1080.c | 1 | ||||
| -rw-r--r-- | drivers/net/usb/rndis_host.c | 1 | ||||
| -rw-r--r-- | drivers/net/usb/sierra_net.c | 1004 | ||||
| -rw-r--r-- | drivers/net/usb/smsc75xx.c | 1289 | ||||
| -rw-r--r-- | drivers/net/usb/smsc75xx.h | 421 | ||||
| -rw-r--r-- | drivers/net/usb/smsc95xx.c | 34 | ||||
| -rw-r--r-- | drivers/net/usb/usbnet.c | 1 | 
21 files changed, 3360 insertions, 8 deletions
diff --git a/drivers/net/usb/Kconfig b/drivers/net/usb/Kconfig index 32d93564a74..d7b7018a1de 100644 --- a/drivers/net/usb/Kconfig +++ b/drivers/net/usb/Kconfig @@ -204,6 +204,14 @@ config USB_NET_DM9601  	  This option adds support for Davicom DM9601 based USB 1.1  	  10/100 Ethernet adapters. +config USB_NET_SMSC75XX +	tristate "SMSC LAN75XX based USB 2.0 gigabit ethernet devices" +	depends on USB_USBNET +	select CRC32 +	help +	  This option adds support for SMSC LAN95XX based USB 2.0 +	  Gigabit Ethernet adapters. +  config USB_NET_SMSC95XX  	tristate "SMSC LAN95XX based USB 2.0 10/100 ethernet devices"  	depends on USB_USBNET @@ -377,4 +385,25 @@ config USB_CDC_PHONET  	  cellular modem, as found on most Nokia handsets with the  	  "PC suite" USB profile. +config USB_IPHETH +	tristate "Apple iPhone USB Ethernet driver" +	default n +	---help--- +	  Module used to share Internet connection (tethering) from your +	  iPhone (Original, 3G and 3GS) to your system. +	  Note that you need userspace libraries and programs that are needed +	  to pair your device with your system and that understand the iPhone +	  protocol. + +	  For more information: http://giagio.com/wiki/moin.cgi/iPhoneEthernetDriver + +config USB_SIERRA_NET +	tristate "USB-to-WWAN Driver for Sierra Wireless modems" +	depends on USB_USBNET +	help +	  Choose this option if you have a Sierra Wireless USB-to-WWAN device. + +	  To compile this driver as a module, choose M here: the +	  module will be called sierra_net. +  endmenu diff --git a/drivers/net/usb/Makefile b/drivers/net/usb/Makefile index e17afb78f37..b13a279663b 100644 --- a/drivers/net/usb/Makefile +++ b/drivers/net/usb/Makefile @@ -11,6 +11,7 @@ obj-$(CONFIG_USB_NET_AX8817X)	+= asix.o  obj-$(CONFIG_USB_NET_CDCETHER)	+= cdc_ether.o  obj-$(CONFIG_USB_NET_CDC_EEM)	+= cdc_eem.o  obj-$(CONFIG_USB_NET_DM9601)	+= dm9601.o +obj-$(CONFIG_USB_NET_SMSC75XX)	+= smsc75xx.o  obj-$(CONFIG_USB_NET_SMSC95XX)	+= smsc95xx.o  obj-$(CONFIG_USB_NET_GL620A)	+= gl620a.o  obj-$(CONFIG_USB_NET_NET1080)	+= net1080.o @@ -22,4 +23,6 @@ obj-$(CONFIG_USB_NET_MCS7830)	+= mcs7830.o  obj-$(CONFIG_USB_USBNET)	+= usbnet.o  obj-$(CONFIG_USB_NET_INT51X1)	+= int51x1.o  obj-$(CONFIG_USB_CDC_PHONET)	+= cdc-phonet.o +obj-$(CONFIG_USB_IPHETH)	+= ipheth.o +obj-$(CONFIG_USB_SIERRA_NET)	+= sierra_net.o diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c index 9e05639435f..35f56fc8280 100644 --- a/drivers/net/usb/asix.c +++ b/drivers/net/usb/asix.c @@ -34,6 +34,7 @@  #include <linux/usb.h>  #include <linux/crc32.h>  #include <linux/usb/usbnet.h> +#include <linux/slab.h>  #define DRIVER_VERSION "14-Jun-2006"  static const char driver_name [] = "asix"; diff --git a/drivers/net/usb/catc.c b/drivers/net/usb/catc.c index 96f1ebe0d34..602e123b274 100644 --- a/drivers/net/usb/catc.c +++ b/drivers/net/usb/catc.c @@ -36,7 +36,6 @@  #include <linux/module.h>  #include <linux/kernel.h>  #include <linux/string.h> -#include <linux/slab.h>  #include <linux/netdevice.h>  #include <linux/etherdevice.h>  #include <linux/skbuff.h> @@ -44,6 +43,7 @@  #include <linux/ethtool.h>  #include <linux/crc32.h>  #include <linux/bitops.h> +#include <linux/gfp.h>  #include <asm/uaccess.h>  #undef DEBUG diff --git a/drivers/net/usb/cdc-phonet.c b/drivers/net/usb/cdc-phonet.c index 6491c9c00c8..dc9444525b4 100644 --- a/drivers/net/usb/cdc-phonet.c +++ b/drivers/net/usb/cdc-phonet.c @@ -22,6 +22,7 @@  #include <linux/kernel.h>  #include <linux/module.h> +#include <linux/gfp.h>  #include <linux/usb.h>  #include <linux/usb/cdc.h>  #include <linux/netdevice.h> diff --git a/drivers/net/usb/cdc_eem.c b/drivers/net/usb/cdc_eem.c index a4a85a6ed86..5f3b97668e6 100644 --- a/drivers/net/usb/cdc_eem.c +++ b/drivers/net/usb/cdc_eem.c @@ -30,6 +30,7 @@  #include <linux/crc32.h>  #include <linux/usb/cdc.h>  #include <linux/usb/usbnet.h> +#include <linux/gfp.h>  /* diff --git a/drivers/net/usb/cdc_ether.c b/drivers/net/usb/cdc_ether.c index c8cdb7f30ad..3547cf13d21 100644 --- a/drivers/net/usb/cdc_ether.c +++ b/drivers/net/usb/cdc_ether.c @@ -431,6 +431,7 @@ static const struct driver_info mbm_info = {  	.bind = 	cdc_bind,  	.unbind =	usbnet_cdc_unbind,  	.status =	cdc_status, +	.manage_power =	cdc_manage_power,  };  /*-------------------------------------------------------------------------*/ diff --git a/drivers/net/usb/dm9601.c b/drivers/net/usb/dm9601.c index 269339769f4..5dfed9297b2 100644 --- a/drivers/net/usb/dm9601.c +++ b/drivers/net/usb/dm9601.c @@ -21,6 +21,7 @@  #include <linux/usb.h>  #include <linux/crc32.h>  #include <linux/usb/usbnet.h> +#include <linux/slab.h>  /* datasheet:   http://ptm2.cc.utu.fi/ftp/network/cards/DM9601/From_NET/DM9601-DS-P01-930914.pdf @@ -239,7 +240,7 @@ static int dm_write_shared_word(struct usbnet *dev, int phy, u8 reg, __le16 valu  		goto out;  	dm_write_reg(dev, DM_SHARED_ADDR, phy ? (reg | 0x40) : reg); -	dm_write_reg(dev, DM_SHARED_CTRL, phy ? 0x1c : 0x14); +	dm_write_reg(dev, DM_SHARED_CTRL, phy ? 0x1a : 0x12);  	for (i = 0; i < DM_TIMEOUT; i++) {  		u8 tmp; diff --git a/drivers/net/usb/gl620a.c b/drivers/net/usb/gl620a.c index f7ccfad9384..dcd57c37ef7 100644 --- a/drivers/net/usb/gl620a.c +++ b/drivers/net/usb/gl620a.c @@ -30,6 +30,7 @@  #include <linux/mii.h>  #include <linux/usb.h>  #include <linux/usb/usbnet.h> +#include <linux/gfp.h>  /* diff --git a/drivers/net/usb/hso.c b/drivers/net/usb/hso.c index 6895f153123..be0cc99e881 100644 --- a/drivers/net/usb/hso.c +++ b/drivers/net/usb/hso.c @@ -1155,9 +1155,6 @@ static void _hso_serial_set_termios(struct tty_struct *tty,  static void hso_resubmit_rx_bulk_urb(struct hso_serial *serial, struct urb *urb)  {  	int result; -#ifdef CONFIG_HSO_AUTOPM -	usb_mark_last_busy(urb->dev); -#endif  	/* We are done with this URB, resubmit it. Prep the USB to wait for  	 * another frame */  	usb_fill_bulk_urb(urb, serial->parent->usb, diff --git a/drivers/net/usb/int51x1.c b/drivers/net/usb/int51x1.c index 3c228df5706..be02a25da71 100644 --- a/drivers/net/usb/int51x1.c +++ b/drivers/net/usb/int51x1.c @@ -29,6 +29,7 @@  #include <linux/netdevice.h>  #include <linux/etherdevice.h>  #include <linux/ethtool.h> +#include <linux/slab.h>  #include <linux/mii.h>  #include <linux/usb.h>  #include <linux/usb/usbnet.h> diff --git a/drivers/net/usb/ipheth.c b/drivers/net/usb/ipheth.c new file mode 100644 index 00000000000..418825d26f9 --- /dev/null +++ b/drivers/net/usb/ipheth.c @@ -0,0 +1,569 @@ +/* + * ipheth.c - Apple iPhone USB Ethernet driver + * + * Copyright (c) 2009 Diego Giagio <diego@giagio.com> + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + *    notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + *    notice, this list of conditions and the following disclaimer in the + *    documentation and/or other materials provided with the distribution. + * 3. Neither the name of GIAGIO.COM nor the names of its contributors + *    may be used to endorse or promote products derived from this software + *    without specific prior written permission. + * + * Alternatively, provided that this notice is retained in full, this + * software may be distributed under the terms of the GNU General + * Public License ("GPL") version 2, in which case the provisions of the + * GPL apply INSTEAD OF those given above. + * + * The provided data structures and external interfaces from this code + * are not restricted to be used by modules with a GPL compatible license. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * + * + * Attention: iPhone device must be paired, otherwise it won't respond to our + * driver. For more info: http://giagio.com/wiki/moin.cgi/iPhoneEthernetDriver + * + */ + +#include <linux/kernel.h> +#include <linux/errno.h> +#include <linux/init.h> +#include <linux/slab.h> +#include <linux/module.h> +#include <linux/netdevice.h> +#include <linux/etherdevice.h> +#include <linux/ethtool.h> +#include <linux/usb.h> +#include <linux/workqueue.h> + +#define USB_VENDOR_APPLE        0x05ac +#define USB_PRODUCT_IPHONE      0x1290 +#define USB_PRODUCT_IPHONE_3G   0x1292 +#define USB_PRODUCT_IPHONE_3GS  0x1294 + +#define IPHETH_USBINTF_CLASS    255 +#define IPHETH_USBINTF_SUBCLASS 253 +#define IPHETH_USBINTF_PROTO    1 + +#define IPHETH_BUF_SIZE         1516 +#define IPHETH_TX_TIMEOUT       (5 * HZ) + +#define IPHETH_INTFNUM          2 +#define IPHETH_ALT_INTFNUM      1 + +#define IPHETH_CTRL_ENDP        0x00 +#define IPHETH_CTRL_BUF_SIZE    0x40 +#define IPHETH_CTRL_TIMEOUT     (5 * HZ) + +#define IPHETH_CMD_GET_MACADDR   0x00 +#define IPHETH_CMD_CARRIER_CHECK 0x45 + +#define IPHETH_CARRIER_CHECK_TIMEOUT round_jiffies_relative(1 * HZ) +#define IPHETH_CARRIER_ON       0x04 + +static struct usb_device_id ipheth_table[] = { +	{ USB_DEVICE_AND_INTERFACE_INFO( +		USB_VENDOR_APPLE, USB_PRODUCT_IPHONE, +		IPHETH_USBINTF_CLASS, IPHETH_USBINTF_SUBCLASS, +		IPHETH_USBINTF_PROTO) }, +	{ USB_DEVICE_AND_INTERFACE_INFO( +		USB_VENDOR_APPLE, USB_PRODUCT_IPHONE_3G, +		IPHETH_USBINTF_CLASS, IPHETH_USBINTF_SUBCLASS, +		IPHETH_USBINTF_PROTO) }, +	{ USB_DEVICE_AND_INTERFACE_INFO( +		USB_VENDOR_APPLE, USB_PRODUCT_IPHONE_3GS, +		IPHETH_USBINTF_CLASS, IPHETH_USBINTF_SUBCLASS, +		IPHETH_USBINTF_PROTO) }, +	{ } +}; +MODULE_DEVICE_TABLE(usb, ipheth_table); + +struct ipheth_device { +	struct usb_device *udev; +	struct usb_interface *intf; +	struct net_device *net; +	struct sk_buff *tx_skb; +	struct urb *tx_urb; +	struct urb *rx_urb; +	unsigned char *tx_buf; +	unsigned char *rx_buf; +	unsigned char *ctrl_buf; +	u8 bulk_in; +	u8 bulk_out; +	struct delayed_work carrier_work; +}; + +static int ipheth_rx_submit(struct ipheth_device *dev, gfp_t mem_flags); + +static int ipheth_alloc_urbs(struct ipheth_device *iphone) +{ +	struct urb *tx_urb = NULL; +	struct urb *rx_urb = NULL; +	u8 *tx_buf = NULL; +	u8 *rx_buf = NULL; + +	tx_urb = usb_alloc_urb(0, GFP_KERNEL); +	if (tx_urb == NULL) +		goto error_nomem; + +	rx_urb = usb_alloc_urb(0, GFP_KERNEL); +	if (rx_urb == NULL) +		goto free_tx_urb; + +	tx_buf = usb_buffer_alloc(iphone->udev, +				  IPHETH_BUF_SIZE, +				  GFP_KERNEL, +				  &tx_urb->transfer_dma); +	if (tx_buf == NULL) +		goto free_rx_urb; + +	rx_buf = usb_buffer_alloc(iphone->udev, +				  IPHETH_BUF_SIZE, +				  GFP_KERNEL, +				  &rx_urb->transfer_dma); +	if (rx_buf == NULL) +		goto free_tx_buf; + + +	iphone->tx_urb = tx_urb; +	iphone->rx_urb = rx_urb; +	iphone->tx_buf = tx_buf; +	iphone->rx_buf = rx_buf; +	return 0; + +free_tx_buf: +	usb_buffer_free(iphone->udev, IPHETH_BUF_SIZE, tx_buf, +			tx_urb->transfer_dma); +free_rx_urb: +	usb_free_urb(rx_urb); +free_tx_urb: +	usb_free_urb(tx_urb); +error_nomem: +	return -ENOMEM; +} + +static void ipheth_free_urbs(struct ipheth_device *iphone) +{ +	usb_buffer_free(iphone->udev, IPHETH_BUF_SIZE, iphone->rx_buf, +			iphone->rx_urb->transfer_dma); +	usb_buffer_free(iphone->udev, IPHETH_BUF_SIZE, iphone->tx_buf, +			iphone->tx_urb->transfer_dma); +	usb_free_urb(iphone->rx_urb); +	usb_free_urb(iphone->tx_urb); +} + +static void ipheth_kill_urbs(struct ipheth_device *dev) +{ +	usb_kill_urb(dev->tx_urb); +	usb_kill_urb(dev->rx_urb); +} + +static void ipheth_rcvbulk_callback(struct urb *urb) +{ +	struct ipheth_device *dev; +	struct sk_buff *skb; +	int status; +	char *buf; +	int len; + +	dev = urb->context; +	if (dev == NULL) +		return; + +	status = urb->status; +	switch (status) { +	case -ENOENT: +	case -ECONNRESET: +	case -ESHUTDOWN: +		return; +	case 0: +		break; +	default: +		err("%s: urb status: %d", __func__, urb->status); +		return; +	} + +	len = urb->actual_length; +	buf = urb->transfer_buffer; + +	skb = dev_alloc_skb(NET_IP_ALIGN + len); +	if (!skb) { +		err("%s: dev_alloc_skb: -ENOMEM", __func__); +		dev->net->stats.rx_dropped++; +		return; +	} + +	skb_reserve(skb, NET_IP_ALIGN); +	memcpy(skb_put(skb, len), buf + NET_IP_ALIGN, len - NET_IP_ALIGN); +	skb->dev = dev->net; +	skb->protocol = eth_type_trans(skb, dev->net); + +	dev->net->stats.rx_packets++; +	dev->net->stats.rx_bytes += len; + +	netif_rx(skb); +	ipheth_rx_submit(dev, GFP_ATOMIC); +} + +static void ipheth_sndbulk_callback(struct urb *urb) +{ +	struct ipheth_device *dev; + +	dev = urb->context; +	if (dev == NULL) +		return; + +	if (urb->status != 0 && +	    urb->status != -ENOENT && +	    urb->status != -ECONNRESET && +	    urb->status != -ESHUTDOWN) +		err("%s: urb status: %d", __func__, urb->status); + +	dev_kfree_skb_irq(dev->tx_skb); +	netif_wake_queue(dev->net); +} + +static int ipheth_carrier_set(struct ipheth_device *dev) +{ +	struct usb_device *udev = dev->udev; +	int retval; + +	retval = usb_control_msg(udev, +			usb_rcvctrlpipe(udev, IPHETH_CTRL_ENDP), +			IPHETH_CMD_CARRIER_CHECK, /* request */ +			0xc0, /* request type */ +			0x00, /* value */ +			0x02, /* index */ +			dev->ctrl_buf, IPHETH_CTRL_BUF_SIZE, +			IPHETH_CTRL_TIMEOUT); +	if (retval < 0) { +		err("%s: usb_control_msg: %d", __func__, retval); +		return retval; +	} + +	if (dev->ctrl_buf[0] == IPHETH_CARRIER_ON) +		netif_carrier_on(dev->net); +	else +		netif_carrier_off(dev->net); + +	return 0; +} + +static void ipheth_carrier_check_work(struct work_struct *work) +{ +	struct ipheth_device *dev = container_of(work, struct ipheth_device, +						 carrier_work.work); + +	ipheth_carrier_set(dev); +	schedule_delayed_work(&dev->carrier_work, IPHETH_CARRIER_CHECK_TIMEOUT); +} + +static int ipheth_get_macaddr(struct ipheth_device *dev) +{ +	struct usb_device *udev = dev->udev; +	struct net_device *net = dev->net; +	int retval; + +	retval = usb_control_msg(udev, +				 usb_rcvctrlpipe(udev, IPHETH_CTRL_ENDP), +				 IPHETH_CMD_GET_MACADDR, /* request */ +				 0xc0, /* request type */ +				 0x00, /* value */ +				 0x02, /* index */ +				 dev->ctrl_buf, +				 IPHETH_CTRL_BUF_SIZE, +				 IPHETH_CTRL_TIMEOUT); +	if (retval < 0) { +		err("%s: usb_control_msg: %d", __func__, retval); +	} else if (retval < ETH_ALEN) { +		err("%s: usb_control_msg: short packet: %d bytes", +			__func__, retval); +		retval = -EINVAL; +	} else { +		memcpy(net->dev_addr, dev->ctrl_buf, ETH_ALEN); +		retval = 0; +	} + +	return retval; +} + +static int ipheth_rx_submit(struct ipheth_device *dev, gfp_t mem_flags) +{ +	struct usb_device *udev = dev->udev; +	int retval; + +	usb_fill_bulk_urb(dev->rx_urb, udev, +			  usb_rcvbulkpipe(udev, dev->bulk_in), +			  dev->rx_buf, IPHETH_BUF_SIZE, +			  ipheth_rcvbulk_callback, +			  dev); +	dev->rx_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; + +	retval = usb_submit_urb(dev->rx_urb, mem_flags); +	if (retval) +		err("%s: usb_submit_urb: %d", __func__, retval); +	return retval; +} + +static int ipheth_open(struct net_device *net) +{ +	struct ipheth_device *dev = netdev_priv(net); +	struct usb_device *udev = dev->udev; +	int retval = 0; + +	usb_set_interface(udev, IPHETH_INTFNUM, IPHETH_ALT_INTFNUM); + +	retval = ipheth_carrier_set(dev); +	if (retval) +		return retval; + +	retval = ipheth_rx_submit(dev, GFP_KERNEL); +	if (retval) +		return retval; + +	schedule_delayed_work(&dev->carrier_work, IPHETH_CARRIER_CHECK_TIMEOUT); +	netif_start_queue(net); +	return retval; +} + +static int ipheth_close(struct net_device *net) +{ +	struct ipheth_device *dev = netdev_priv(net); + +	cancel_delayed_work_sync(&dev->carrier_work); +	netif_stop_queue(net); +	return 0; +} + +static int ipheth_tx(struct sk_buff *skb, struct net_device *net) +{ +	struct ipheth_device *dev = netdev_priv(net); +	struct usb_device *udev = dev->udev; +	int retval; + +	/* Paranoid */ +	if (skb->len > IPHETH_BUF_SIZE) { +		WARN(1, "%s: skb too large: %d bytes", __func__, skb->len); +		dev->net->stats.tx_dropped++; +		dev_kfree_skb_irq(skb); +		return NETDEV_TX_OK; +	} + +	memcpy(dev->tx_buf, skb->data, skb->len); +	if (skb->len < IPHETH_BUF_SIZE) +		memset(dev->tx_buf + skb->len, 0, IPHETH_BUF_SIZE - skb->len); + +	usb_fill_bulk_urb(dev->tx_urb, udev, +			  usb_sndbulkpipe(udev, dev->bulk_out), +			  dev->tx_buf, IPHETH_BUF_SIZE, +			  ipheth_sndbulk_callback, +			  dev); +	dev->tx_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; + +	retval = usb_submit_urb(dev->tx_urb, GFP_ATOMIC); +	if (retval) { +		err("%s: usb_submit_urb: %d", __func__, retval); +		dev->net->stats.tx_errors++; +		dev_kfree_skb_irq(skb); +	} else { +		dev->tx_skb = skb; + +		dev->net->stats.tx_packets++; +		dev->net->stats.tx_bytes += skb->len; +		netif_stop_queue(net); +	} + +	return NETDEV_TX_OK; +} + +static void ipheth_tx_timeout(struct net_device *net) +{ +	struct ipheth_device *dev = netdev_priv(net); + +	err("%s: TX timeout", __func__); +	dev->net->stats.tx_errors++; +	usb_unlink_urb(dev->tx_urb); +} + +static struct net_device_stats *ipheth_stats(struct net_device *net) +{ +	struct ipheth_device *dev = netdev_priv(net); +	return &dev->net->stats; +} + +static u32 ipheth_ethtool_op_get_link(struct net_device *net) +{ +	struct ipheth_device *dev = netdev_priv(net); +	return netif_carrier_ok(dev->net); +} + +static struct ethtool_ops ops = { +	.get_link = ipheth_ethtool_op_get_link +}; + +static const struct net_device_ops ipheth_netdev_ops = { +	.ndo_open = &ipheth_open, +	.ndo_stop = &ipheth_close, +	.ndo_start_xmit = &ipheth_tx, +	.ndo_tx_timeout = &ipheth_tx_timeout, +	.ndo_get_stats = &ipheth_stats, +}; + +static struct device_type ipheth_type = { +	.name	= "wwan", +}; + +static int ipheth_probe(struct usb_interface *intf, +			const struct usb_device_id *id) +{ +	struct usb_device *udev = interface_to_usbdev(intf); +	struct usb_host_interface *hintf; +	struct usb_endpoint_descriptor *endp; +	struct ipheth_device *dev; +	struct net_device *netdev; +	int i; +	int retval; + +	netdev = alloc_etherdev(sizeof(struct ipheth_device)); +	if (!netdev) +		return -ENOMEM; + +	netdev->netdev_ops = &ipheth_netdev_ops; +	netdev->watchdog_timeo = IPHETH_TX_TIMEOUT; +	strcpy(netdev->name, "wwan%d"); + +	dev = netdev_priv(netdev); +	dev->udev = udev; +	dev->net = netdev; +	dev->intf = intf; + +	/* Set up endpoints */ +	hintf = usb_altnum_to_altsetting(intf, IPHETH_ALT_INTFNUM); +	if (hintf == NULL) { +		retval = -ENODEV; +		err("Unable to find alternate settings interface"); +		goto err_endpoints; +	} + +	for (i = 0; i < hintf->desc.bNumEndpoints; i++) { +		endp = &hintf->endpoint[i].desc; +		if (usb_endpoint_is_bulk_in(endp)) +			dev->bulk_in = endp->bEndpointAddress; +		else if (usb_endpoint_is_bulk_out(endp)) +			dev->bulk_out = endp->bEndpointAddress; +	} +	if (!(dev->bulk_in && dev->bulk_out)) { +		retval = -ENODEV; +		err("Unable to find endpoints"); +		goto err_endpoints; +	} + +	dev->ctrl_buf = kmalloc(IPHETH_CTRL_BUF_SIZE, GFP_KERNEL); +	if (dev->ctrl_buf == NULL) { +		retval = -ENOMEM; +		goto err_alloc_ctrl_buf; +	} + +	retval = ipheth_get_macaddr(dev); +	if (retval) +		goto err_get_macaddr; + +	INIT_DELAYED_WORK(&dev->carrier_work, ipheth_carrier_check_work); + +	retval = ipheth_alloc_urbs(dev); +	if (retval) { +		err("error allocating urbs: %d", retval); +		goto err_alloc_urbs; +	} + +	usb_set_intfdata(intf, dev); + +	SET_NETDEV_DEV(netdev, &intf->dev); +	SET_ETHTOOL_OPS(netdev, &ops); +	SET_NETDEV_DEVTYPE(netdev, &ipheth_type); + +	retval = register_netdev(netdev); +	if (retval) { +		err("error registering netdev: %d", retval); +		retval = -EIO; +		goto err_register_netdev; +	} + +	dev_info(&intf->dev, "Apple iPhone USB Ethernet device attached\n"); +	return 0; + +err_register_netdev: +	ipheth_free_urbs(dev); +err_alloc_urbs: +err_get_macaddr: +err_alloc_ctrl_buf: +	kfree(dev->ctrl_buf); +err_endpoints: +	free_netdev(netdev); +	return retval; +} + +static void ipheth_disconnect(struct usb_interface *intf) +{ +	struct ipheth_device *dev; + +	dev = usb_get_intfdata(intf); +	if (dev != NULL) { +		unregister_netdev(dev->net); +		ipheth_kill_urbs(dev); +		ipheth_free_urbs(dev); +		kfree(dev->ctrl_buf); +		free_netdev(dev->net); +	} +	usb_set_intfdata(intf, NULL); +	dev_info(&intf->dev, "Apple iPhone USB Ethernet now disconnected\n"); +} + +static struct usb_driver ipheth_driver = { +	.name =		"ipheth", +	.probe =	ipheth_probe, +	.disconnect =	ipheth_disconnect, +	.id_table =	ipheth_table, +}; + +static int __init ipheth_init(void) +{ +	int retval; + +	retval = usb_register(&ipheth_driver); +	if (retval) { +		err("usb_register failed: %d", retval); +		return retval; +	} +	return 0; +} + +static void __exit ipheth_exit(void) +{ +	usb_deregister(&ipheth_driver); +} + +module_init(ipheth_init); +module_exit(ipheth_exit); + +MODULE_AUTHOR("Diego Giagio <diego@giagio.com>"); +MODULE_DESCRIPTION("Apple iPhone USB Ethernet driver"); +MODULE_LICENSE("Dual BSD/GPL"); diff --git a/drivers/net/usb/kaweth.c b/drivers/net/usb/kaweth.c index 52671ea043a..c4c334d9770 100644 --- a/drivers/net/usb/kaweth.c +++ b/drivers/net/usb/kaweth.c @@ -145,6 +145,7 @@ static struct usb_device_id usb_klsi_table[] = {  	{ USB_DEVICE(0x0707, 0x0100) }, /* SMC 2202USB */  	{ USB_DEVICE(0x07aa, 0x0001) }, /* Correga K.K. */  	{ USB_DEVICE(0x07b8, 0x4000) }, /* D-Link DU-E10 */ +	{ USB_DEVICE(0x07c9, 0xb010) }, /* Allied Telesyn AT-USB10 USB Ethernet Adapter */  	{ USB_DEVICE(0x0846, 0x1001) }, /* NetGear EA-101 */  	{ USB_DEVICE(0x0846, 0x1002) }, /* NetGear EA-101 */  	{ USB_DEVICE(0x085a, 0x0008) }, /* PortGear Ethernet Adapter */ diff --git a/drivers/net/usb/mcs7830.c b/drivers/net/usb/mcs7830.c index 70978219e98..9f24e3f871e 100644 --- a/drivers/net/usb/mcs7830.c +++ b/drivers/net/usb/mcs7830.c @@ -44,6 +44,7 @@  #include <linux/mii.h>  #include <linux/module.h>  #include <linux/netdevice.h> +#include <linux/slab.h>  #include <linux/usb.h>  #include <linux/usb/usbnet.h> diff --git a/drivers/net/usb/net1080.c b/drivers/net/usb/net1080.c index bdcad45954a..961a8ed38d8 100644 --- a/drivers/net/usb/net1080.c +++ b/drivers/net/usb/net1080.c @@ -29,6 +29,7 @@  #include <linux/mii.h>  #include <linux/usb.h>  #include <linux/usb/usbnet.h> +#include <linux/slab.h>  #include <asm/unaligned.h> diff --git a/drivers/net/usb/rndis_host.c b/drivers/net/usb/rndis_host.c index 4ce331fb1e1..dd8a4adf48c 100644 --- a/drivers/net/usb/rndis_host.c +++ b/drivers/net/usb/rndis_host.c @@ -22,6 +22,7 @@  #include <linux/etherdevice.h>  #include <linux/ethtool.h>  #include <linux/workqueue.h> +#include <linux/slab.h>  #include <linux/mii.h>  #include <linux/usb.h>  #include <linux/usb/cdc.h> diff --git a/drivers/net/usb/sierra_net.c b/drivers/net/usb/sierra_net.c new file mode 100644 index 00000000000..f1942d69a0d --- /dev/null +++ b/drivers/net/usb/sierra_net.c @@ -0,0 +1,1004 @@ +/* + * USB-to-WWAN Driver for Sierra Wireless modems + * + * Copyright (C) 2008, 2009, 2010 Paxton Smith, Matthew Safar, Rory Filer + *                          <linux@sierrawireless.com> + * + * Portions of this based on the cdc_ether driver by David Brownell (2003-2005) + * and Ole Andre Vadla Ravnas (ActiveSync) (2006). + * + * IMPORTANT DISCLAIMER: This driver is not commercially supported by + * Sierra Wireless. Use at your own risk. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA + */ + +#define DRIVER_VERSION "v.2.0" +#define DRIVER_AUTHOR "Paxton Smith, Matthew Safar, Rory Filer" +#define DRIVER_DESC "USB-to-WWAN Driver for Sierra Wireless modems" +static const char driver_name[] = "sierra_net"; + +/* if defined debug messages enabled */ +/*#define	DEBUG*/ + +#include <linux/module.h> +#include <linux/etherdevice.h> +#include <linux/ethtool.h> +#include <linux/mii.h> +#include <linux/sched.h> +#include <linux/timer.h> +#include <linux/usb.h> +#include <linux/usb/cdc.h> +#include <net/ip.h> +#include <net/udp.h> +#include <asm/unaligned.h> +#include <linux/usb/usbnet.h> + +#define SWI_USB_REQUEST_GET_FW_ATTR	0x06 +#define SWI_GET_FW_ATTR_MASK		0x08 + +/* atomic counter partially included in MAC address to make sure 2 devices + * do not end up with the same MAC - concept breaks in case of > 255 ifaces + */ +static	atomic_t iface_counter = ATOMIC_INIT(0); + +/* + * SYNC Timer Delay definition used to set the expiry time + */ +#define SIERRA_NET_SYNCDELAY (2*HZ) + +/* Max. MTU supported. The modem buffers are limited to 1500 */ +#define SIERRA_NET_MAX_SUPPORTED_MTU	1500 + +/* The SIERRA_NET_USBCTL_BUF_LEN defines a buffer size allocated for control + * message reception ... and thus the max. received packet. + * (May be the cause for parse_hip returning -EINVAL) + */ +#define SIERRA_NET_USBCTL_BUF_LEN	1024 + +/* list of interface numbers - used for constructing interface lists */ +struct sierra_net_iface_info { +	const u32 infolen;	/* number of interface numbers on list */ +	const u8  *ifaceinfo;	/* pointer to the array holding the numbers */ +}; + +struct sierra_net_info_data { +	u16 rx_urb_size; +	struct sierra_net_iface_info whitelist; +}; + +/* Private data structure */ +struct sierra_net_data { + +	u8 ethr_hdr_tmpl[ETH_HLEN]; /* ethernet header template for rx'd pkts */ + +	u16 link_up;		/* air link up or down */ +	u8 tx_hdr_template[4];	/* part of HIP hdr for tx'd packets */ + +	u8 sync_msg[4];		/* SYNC message */ +	u8 shdwn_msg[4];	/* Shutdown message */ + +	/* Backpointer to the container */ +	struct usbnet *usbnet; + +	u8 ifnum;	/* interface number */ + +/* Bit masks, must be a power of 2 */ +#define SIERRA_NET_EVENT_RESP_AVAIL    0x01 +#define SIERRA_NET_TIMER_EXPIRY        0x02 +	unsigned long kevent_flags; +	struct work_struct sierra_net_kevent; +	struct timer_list sync_timer; /* For retrying SYNC sequence */ +}; + +struct param { +	int is_present; +	union { +		void  *ptr; +		u32    dword; +		u16    word; +		u8     byte; +	}; +}; + +/* HIP message type */ +#define SIERRA_NET_HIP_EXTENDEDID	0x7F +#define SIERRA_NET_HIP_HSYNC_ID		0x60	/* Modem -> host */ +#define SIERRA_NET_HIP_RESTART_ID	0x62	/* Modem -> host */ +#define SIERRA_NET_HIP_MSYNC_ID		0x20	/* Host -> modem */ +#define SIERRA_NET_HIP_SHUTD_ID		0x26	/* Host -> modem */ + +#define SIERRA_NET_HIP_EXT_IP_IN_ID   0x0202 +#define SIERRA_NET_HIP_EXT_IP_OUT_ID  0x0002 + +/* 3G UMTS Link Sense Indication definitions */ +#define SIERRA_NET_HIP_LSI_UMTSID	0x78 + +/* Reverse Channel Grant Indication HIP message */ +#define SIERRA_NET_HIP_RCGI		0x64 + +/* LSI Protocol types */ +#define SIERRA_NET_PROTOCOL_UMTS      0x01 +/* LSI Coverage */ +#define SIERRA_NET_COVERAGE_NONE      0x00 +#define SIERRA_NET_COVERAGE_NOPACKET  0x01 + +/* LSI Session */ +#define SIERRA_NET_SESSION_IDLE       0x00 +/* LSI Link types */ +#define SIERRA_NET_AS_LINK_TYPE_IPv4  0x00 + +struct lsi_umts { +	u8 protocol; +	u8 unused1; +	__be16 length; +	/* eventually use a union for the rest - assume umts for now */ +	u8 coverage; +	u8 unused2[41]; +	u8 session_state; +	u8 unused3[33]; +	u8 link_type; +	u8 pdp_addr_len; /* NW-supplied PDP address len */ +	u8 pdp_addr[16]; /* NW-supplied PDP address (bigendian)) */ +	u8 unused4[23]; +	u8 dns1_addr_len; /* NW-supplied 1st DNS address len (bigendian) */ +	u8 dns1_addr[16]; /* NW-supplied 1st DNS address */ +	u8 dns2_addr_len; /* NW-supplied 2nd DNS address len */ +	u8 dns2_addr[16]; /* NW-supplied 2nd DNS address (bigendian)*/ +	u8 wins1_addr_len; /* NW-supplied 1st Wins address len */ +	u8 wins1_addr[16]; /* NW-supplied 1st Wins address (bigendian)*/ +	u8 wins2_addr_len; /* NW-supplied 2nd Wins address len */ +	u8 wins2_addr[16]; /* NW-supplied 2nd Wins address (bigendian) */ +	u8 unused5[4]; +	u8 gw_addr_len; /* NW-supplied GW address len */ +	u8 gw_addr[16]; /* NW-supplied GW address (bigendian) */ +	u8 reserved[8]; +} __attribute__ ((packed)); + +#define SIERRA_NET_LSI_COMMON_LEN      4 +#define SIERRA_NET_LSI_UMTS_LEN        (sizeof(struct lsi_umts)) +#define SIERRA_NET_LSI_UMTS_STATUS_LEN \ +	(SIERRA_NET_LSI_UMTS_LEN - SIERRA_NET_LSI_COMMON_LEN) + +/* Forward definitions */ +static void sierra_sync_timer(unsigned long syncdata); +static int sierra_net_change_mtu(struct net_device *net, int new_mtu); + +/* Our own net device operations structure */ +static const struct net_device_ops sierra_net_device_ops = { +	.ndo_open               = usbnet_open, +	.ndo_stop               = usbnet_stop, +	.ndo_start_xmit         = usbnet_start_xmit, +	.ndo_tx_timeout         = usbnet_tx_timeout, +	.ndo_change_mtu         = sierra_net_change_mtu, +	.ndo_set_mac_address    = eth_mac_addr, +	.ndo_validate_addr      = eth_validate_addr, +}; + +/* get private data associated with passed in usbnet device */ +static inline struct sierra_net_data *sierra_net_get_private(struct usbnet *dev) +{ +	return (struct sierra_net_data *)dev->data[0]; +} + +/* set private data associated with passed in usbnet device */ +static inline void sierra_net_set_private(struct usbnet *dev, +			struct sierra_net_data *priv) +{ +	dev->data[0] = (unsigned long)priv; +} + +/* is packet IPv4 */ +static inline int is_ip(struct sk_buff *skb) +{ +	return (skb->protocol == cpu_to_be16(ETH_P_IP)); +} + +/* + * check passed in packet and make sure that: + *  - it is linear (no scatter/gather) + *  - it is ethernet (mac_header properly set) + */ +static int check_ethip_packet(struct sk_buff *skb, struct usbnet *dev) +{ +	skb_reset_mac_header(skb); /* ethernet header */ + +	if (skb_is_nonlinear(skb)) { +		netdev_err(dev->net, "Non linear buffer-dropping\n"); +		return 0; +	} + +	if (!pskb_may_pull(skb, ETH_HLEN)) +		return 0; +	skb->protocol = eth_hdr(skb)->h_proto; + +	return 1; +} + +static const u8 *save16bit(struct param *p, const u8 *datap) +{ +	p->is_present = 1; +	p->word = get_unaligned_be16(datap); +	return datap + sizeof(p->word); +} + +static const u8 *save8bit(struct param *p, const u8 *datap) +{ +	p->is_present = 1; +	p->byte = *datap; +	return datap + sizeof(p->byte); +} + +/*----------------------------------------------------------------------------* + *                              BEGIN HIP                                     * + *----------------------------------------------------------------------------*/ +/* HIP header */ +#define SIERRA_NET_HIP_HDR_LEN 4 +/* Extended HIP header */ +#define SIERRA_NET_HIP_EXT_HDR_LEN 6 + +struct hip_hdr { +	int    hdrlen; +	struct param payload_len; +	struct param msgid; +	struct param msgspecific; +	struct param extmsgid; +}; + +static int parse_hip(const u8 *buf, const u32 buflen, struct hip_hdr *hh) +{ +	const u8 *curp = buf; +	int    padded; + +	if (buflen < SIERRA_NET_HIP_HDR_LEN) +		return -EPROTO; + +	curp = save16bit(&hh->payload_len, curp); +	curp = save8bit(&hh->msgid, curp); +	curp = save8bit(&hh->msgspecific, curp); + +	padded = hh->msgid.byte & 0x80; +	hh->msgid.byte &= 0x7F;			/* 7 bits */ + +	hh->extmsgid.is_present = (hh->msgid.byte == SIERRA_NET_HIP_EXTENDEDID); +	if (hh->extmsgid.is_present) { +		if (buflen < SIERRA_NET_HIP_EXT_HDR_LEN) +			return -EPROTO; + +		hh->payload_len.word &= 0x3FFF; /* 14 bits */ + +		curp = save16bit(&hh->extmsgid, curp); +		hh->extmsgid.word &= 0x03FF;	/* 10 bits */ + +		hh->hdrlen = SIERRA_NET_HIP_EXT_HDR_LEN; +	} else { +		hh->payload_len.word &= 0x07FF;	/* 11 bits */ +		hh->hdrlen = SIERRA_NET_HIP_HDR_LEN; +	} + +	if (padded) { +		hh->hdrlen++; +		hh->payload_len.word--; +	} + +	/* if real packet shorter than the claimed length */ +	if (buflen < (hh->hdrlen + hh->payload_len.word)) +		return -EINVAL; + +	return 0; +} + +static void build_hip(u8 *buf, const u16 payloadlen, +		struct sierra_net_data *priv) +{ +	/* the following doesn't have the full functionality. We +	 * currently build only one kind of header, so it is faster this way +	 */ +	put_unaligned_be16(payloadlen, buf); +	memcpy(buf+2, priv->tx_hdr_template, sizeof(priv->tx_hdr_template)); +} +/*----------------------------------------------------------------------------* + *                              END HIP                                       * + *----------------------------------------------------------------------------*/ + +static int sierra_net_send_cmd(struct usbnet *dev, +		u8 *cmd, int cmdlen, const char * cmd_name) +{ +	struct sierra_net_data *priv = sierra_net_get_private(dev); +	int  status; + +	status = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0), +			USB_CDC_SEND_ENCAPSULATED_COMMAND, +			USB_DIR_OUT|USB_TYPE_CLASS|USB_RECIP_INTERFACE,	0, +			priv->ifnum, cmd, cmdlen, USB_CTRL_SET_TIMEOUT); + +	if (status != cmdlen && status != -ENODEV) +		netdev_err(dev->net, "Submit %s failed %d\n", cmd_name, status); + +	return status; +} + +static int sierra_net_send_sync(struct usbnet *dev) +{ +	int  status; +	struct sierra_net_data *priv = sierra_net_get_private(dev); + +	dev_dbg(&dev->udev->dev, "%s", __func__); + +	status = sierra_net_send_cmd(dev, priv->sync_msg, +			sizeof(priv->sync_msg), "SYNC"); + +	return status; +} + +static void sierra_net_set_ctx_index(struct sierra_net_data *priv, u8 ctx_ix) +{ +	dev_dbg(&(priv->usbnet->udev->dev), "%s %d", __func__, ctx_ix); +	priv->tx_hdr_template[0] = 0x3F; +	priv->tx_hdr_template[1] = ctx_ix; +	*((u16 *)&priv->tx_hdr_template[2]) = +		cpu_to_be16(SIERRA_NET_HIP_EXT_IP_OUT_ID); +} + +static inline int sierra_net_is_valid_addrlen(u8 len) +{ +	return (len == sizeof(struct in_addr)); +} + +static int sierra_net_parse_lsi(struct usbnet *dev, char *data, int datalen) +{ +	struct lsi_umts *lsi = (struct lsi_umts *)data; + +	if (datalen < sizeof(struct lsi_umts)) { +		netdev_err(dev->net, "%s: Data length %d, exp %Zu\n", +				__func__, datalen, +				sizeof(struct lsi_umts)); +		return -1; +	} + +	if (lsi->length != cpu_to_be16(SIERRA_NET_LSI_UMTS_STATUS_LEN)) { +		netdev_err(dev->net, "%s: LSI_UMTS_STATUS_LEN %d, exp %u\n", +				__func__, be16_to_cpu(lsi->length), +				(u32)SIERRA_NET_LSI_UMTS_STATUS_LEN); +		return -1; +	} + +	/* Validate the protocol  - only support UMTS for now */ +	if (lsi->protocol != SIERRA_NET_PROTOCOL_UMTS) { +		netdev_err(dev->net, "Protocol unsupported, 0x%02x\n", +			lsi->protocol); +		return -1; +	} + +	/* Validate the link type */ +	if (lsi->link_type != SIERRA_NET_AS_LINK_TYPE_IPv4) { +		netdev_err(dev->net, "Link type unsupported: 0x%02x\n", +			lsi->link_type); +		return -1; +	} + +	/* Validate the coverage */ +	if (lsi->coverage == SIERRA_NET_COVERAGE_NONE +	   || lsi->coverage == SIERRA_NET_COVERAGE_NOPACKET) { +		netdev_err(dev->net, "No coverage, 0x%02x\n", lsi->coverage); +		return 0; +	} + +	/* Validate the session state */ +	if (lsi->session_state == SIERRA_NET_SESSION_IDLE) { +		netdev_err(dev->net, "Session idle, 0x%02x\n", +			lsi->session_state); +		return 0; +	} + +	/* Set link_sense true */ +	return 1; +} + +static void sierra_net_handle_lsi(struct usbnet *dev, char *data, +		struct hip_hdr	*hh) +{ +	struct sierra_net_data *priv = sierra_net_get_private(dev); +	int link_up; + +	link_up = sierra_net_parse_lsi(dev, data + hh->hdrlen, +					hh->payload_len.word); +	if (link_up < 0) { +		netdev_err(dev->net, "Invalid LSI\n"); +		return; +	} +	if (link_up) { +		sierra_net_set_ctx_index(priv, hh->msgspecific.byte); +		priv->link_up = 1; +		netif_carrier_on(dev->net); +	} else { +		priv->link_up = 0; +		netif_carrier_off(dev->net); +	} +} + +static void sierra_net_dosync(struct usbnet *dev) +{ +	int status; +	struct sierra_net_data *priv = sierra_net_get_private(dev); + +	dev_dbg(&dev->udev->dev, "%s", __func__); + +	/* tell modem we are ready */ +	status = sierra_net_send_sync(dev); +	if (status < 0) +		netdev_err(dev->net, +			"Send SYNC failed, status %d\n", status); +	status = sierra_net_send_sync(dev); +	if (status < 0) +		netdev_err(dev->net, +			"Send SYNC failed, status %d\n", status); + +	/* Now, start a timer and make sure we get the Restart Indication */ +	priv->sync_timer.function = sierra_sync_timer; +	priv->sync_timer.data = (unsigned long) dev; +	priv->sync_timer.expires = jiffies + SIERRA_NET_SYNCDELAY; +	add_timer(&priv->sync_timer); +} + +static void sierra_net_kevent(struct work_struct *work) +{ +	struct sierra_net_data *priv = +		container_of(work, struct sierra_net_data, sierra_net_kevent); +	struct usbnet *dev = priv->usbnet; +	int  len; +	int  err; +	u8  *buf; +	u8   ifnum; + +	if (test_bit(SIERRA_NET_EVENT_RESP_AVAIL, &priv->kevent_flags)) { +		clear_bit(SIERRA_NET_EVENT_RESP_AVAIL, &priv->kevent_flags); + +		/* Query the modem for the LSI message */ +		buf = kzalloc(SIERRA_NET_USBCTL_BUF_LEN, GFP_KERNEL); +		if (!buf) { +			netdev_err(dev->net, +				"failed to allocate buf for LS msg\n"); +			return; +		} +		ifnum = priv->ifnum; +		len = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0), +				USB_CDC_GET_ENCAPSULATED_RESPONSE, +				USB_DIR_IN|USB_TYPE_CLASS|USB_RECIP_INTERFACE, +				0, ifnum, buf, SIERRA_NET_USBCTL_BUF_LEN, +				USB_CTRL_SET_TIMEOUT); + +		if (len < 0) { +			netdev_err(dev->net, +				"usb_control_msg failed, status %d\n", len); +		} else { +			struct hip_hdr	hh; + +			dev_dbg(&dev->udev->dev, "%s: Received status message," +				" %04x bytes", __func__, len); + +			err = parse_hip(buf, len, &hh); +			if (err) { +				netdev_err(dev->net, "%s: Bad packet," +					" parse result %d\n", __func__, err); +				kfree(buf); +				return; +			} + +			/* Validate packet length */ +			if (len != hh.hdrlen + hh.payload_len.word) { +				netdev_err(dev->net, "%s: Bad packet, received" +					" %d, expected %d\n",	__func__, len, +					hh.hdrlen + hh.payload_len.word); +				kfree(buf); +				return; +			} + +			/* Switch on received message types */ +			switch (hh.msgid.byte) { +			case SIERRA_NET_HIP_LSI_UMTSID: +				dev_dbg(&dev->udev->dev, "LSI for ctx:%d", +					hh.msgspecific.byte); +				sierra_net_handle_lsi(dev, buf, &hh); +				break; +			case SIERRA_NET_HIP_RESTART_ID: +				dev_dbg(&dev->udev->dev, "Restart reported: %d," +						" stopping sync timer", +						hh.msgspecific.byte); +				/* Got sync resp - stop timer & clear mask */ +				del_timer_sync(&priv->sync_timer); +				clear_bit(SIERRA_NET_TIMER_EXPIRY, +					  &priv->kevent_flags); +				break; +			case SIERRA_NET_HIP_HSYNC_ID: +				dev_dbg(&dev->udev->dev, "SYNC received"); +				err = sierra_net_send_sync(dev); +				if (err < 0) +					netdev_err(dev->net, +						"Send SYNC failed %d\n", err); +				break; +			case SIERRA_NET_HIP_EXTENDEDID: +				netdev_err(dev->net, "Unrecognized HIP msg, " +					"extmsgid 0x%04x\n", hh.extmsgid.word); +				break; +			case SIERRA_NET_HIP_RCGI: +				/* Ignored */ +				break; +			default: +				netdev_err(dev->net, "Unrecognized HIP msg, " +					"msgid 0x%02x\n", hh.msgid.byte); +				break; +			} +		} +		kfree(buf); +	} +	/* The sync timer bit might be set */ +	if (test_bit(SIERRA_NET_TIMER_EXPIRY, &priv->kevent_flags)) { +		clear_bit(SIERRA_NET_TIMER_EXPIRY, &priv->kevent_flags); +		dev_dbg(&dev->udev->dev, "Deferred sync timer expiry"); +		sierra_net_dosync(priv->usbnet); +	} + +	if (priv->kevent_flags) +		dev_dbg(&dev->udev->dev, "sierra_net_kevent done, " +			"kevent_flags = 0x%lx", priv->kevent_flags); +} + +static void sierra_net_defer_kevent(struct usbnet *dev, int work) +{ +	struct sierra_net_data *priv = sierra_net_get_private(dev); + +	set_bit(work, &priv->kevent_flags); +	schedule_work(&priv->sierra_net_kevent); +} + +/* + * Sync Retransmit Timer Handler. On expiry, kick the work queue + */ +void sierra_sync_timer(unsigned long syncdata) +{ +	struct usbnet *dev = (struct usbnet *)syncdata; + +	dev_dbg(&dev->udev->dev, "%s", __func__); +	/* Kick the tasklet */ +	sierra_net_defer_kevent(dev, SIERRA_NET_TIMER_EXPIRY); +} + +static void sierra_net_status(struct usbnet *dev, struct urb *urb) +{ +	struct usb_cdc_notification *event; + +	dev_dbg(&dev->udev->dev, "%s", __func__); + +	if (urb->actual_length < sizeof *event) +		return; + +	/* Add cases to handle other standard notifications. */ +	event = urb->transfer_buffer; +	switch (event->bNotificationType) { +	case USB_CDC_NOTIFY_NETWORK_CONNECTION: +	case USB_CDC_NOTIFY_SPEED_CHANGE: +		/* USB 305 sends those */ +		break; +	case USB_CDC_NOTIFY_RESPONSE_AVAILABLE: +		sierra_net_defer_kevent(dev, SIERRA_NET_EVENT_RESP_AVAIL); +		break; +	default: +		netdev_err(dev->net, ": unexpected notification %02x!\n", +				event->bNotificationType); +		break; +	} +} + +static void sierra_net_get_drvinfo(struct net_device *net, +		struct ethtool_drvinfo *info) +{ +	/* Inherit standard device info */ +	usbnet_get_drvinfo(net, info); +	strncpy(info->driver, driver_name, sizeof info->driver); +	strncpy(info->version, DRIVER_VERSION, sizeof info->version); +} + +static u32 sierra_net_get_link(struct net_device *net) +{ +	struct usbnet *dev = netdev_priv(net); +	/* Report link is down whenever the interface is down */ +	return sierra_net_get_private(dev)->link_up && netif_running(net); +} + +static struct ethtool_ops sierra_net_ethtool_ops = { +	.get_drvinfo = sierra_net_get_drvinfo, +	.get_link = sierra_net_get_link, +	.get_msglevel = usbnet_get_msglevel, +	.set_msglevel = usbnet_set_msglevel, +	.get_settings = usbnet_get_settings, +	.set_settings = usbnet_set_settings, +	.nway_reset = usbnet_nway_reset, +}; + +/* MTU can not be more than 1500 bytes, enforce it. */ +static int sierra_net_change_mtu(struct net_device *net, int new_mtu) +{ +	if (new_mtu > SIERRA_NET_MAX_SUPPORTED_MTU) +		return -EINVAL; + +	return usbnet_change_mtu(net, new_mtu); +} + +static int is_whitelisted(const u8 ifnum, +			const struct sierra_net_iface_info *whitelist) +{ +	if (whitelist) { +		const u8 *list = whitelist->ifaceinfo; +		int i; + +		for (i = 0; i < whitelist->infolen; i++) { +			if (list[i] == ifnum) +				return 1; +		} +	} +	return 0; +} + +static int sierra_net_get_fw_attr(struct usbnet *dev, u16 *datap) +{ +	int result = 0; +	u16 *attrdata; + +	attrdata = kmalloc(sizeof(*attrdata), GFP_KERNEL); +	if (!attrdata) +		return -ENOMEM; + +	result = usb_control_msg( +			dev->udev, +			usb_rcvctrlpipe(dev->udev, 0), +			/* _u8 vendor specific request */ +			SWI_USB_REQUEST_GET_FW_ATTR, +			USB_DIR_IN | USB_TYPE_VENDOR,	/* __u8 request type */ +			0x0000,		/* __u16 value not used */ +			0x0000,		/* __u16 index  not used */ +			attrdata,	/* char *data */ +			sizeof(*attrdata),		/* __u16 size */ +			USB_CTRL_SET_TIMEOUT);	/* int timeout */ + +	if (result < 0) { +		kfree(attrdata); +		return -EIO; +	} + +	*datap = *attrdata; + +	kfree(attrdata); +	return result; +} + +/* + * collects the bulk endpoints, the status endpoint. + */ +static int sierra_net_bind(struct usbnet *dev, struct usb_interface *intf) +{ +	u8	ifacenum; +	u8	numendpoints; +	u16	fwattr = 0; +	int	status; +	struct ethhdr *eth; +	struct sierra_net_data *priv; +	static const u8 sync_tmplate[sizeof(priv->sync_msg)] = { +		0x00, 0x00, SIERRA_NET_HIP_MSYNC_ID, 0x00}; +	static const u8 shdwn_tmplate[sizeof(priv->shdwn_msg)] = { +		0x00, 0x00, SIERRA_NET_HIP_SHUTD_ID, 0x00}; + +	struct sierra_net_info_data *data = +			(struct sierra_net_info_data *)dev->driver_info->data; + +	dev_dbg(&dev->udev->dev, "%s", __func__); + +	ifacenum = intf->cur_altsetting->desc.bInterfaceNumber; +	/* We only accept certain interfaces */ +	if (!is_whitelisted(ifacenum, &data->whitelist)) { +		dev_dbg(&dev->udev->dev, "Ignoring interface: %d", ifacenum); +		return -ENODEV; +	} +	numendpoints = intf->cur_altsetting->desc.bNumEndpoints; +	/* We have three endpoints, bulk in and out, and a status */ +	if (numendpoints != 3) { +		dev_err(&dev->udev->dev, "Expected 3 endpoints, found: %d", +			numendpoints); +		return -ENODEV; +	} +	/* Status endpoint set in usbnet_get_endpoints() */ +	dev->status = NULL; +	status = usbnet_get_endpoints(dev, intf); +	if (status < 0) { +		dev_err(&dev->udev->dev, "Error in usbnet_get_endpoints (%d)", +			status); +		return -ENODEV; +	} +	/* Initialize sierra private data */ +	priv = kzalloc(sizeof *priv, GFP_KERNEL); +	if (!priv) { +		dev_err(&dev->udev->dev, "No memory"); +		return -ENOMEM; +	} + +	priv->usbnet = dev; +	priv->ifnum = ifacenum; +	dev->net->netdev_ops = &sierra_net_device_ops; + +	/* change MAC addr to include, ifacenum, and to be unique */ +	dev->net->dev_addr[ETH_ALEN-2] = atomic_inc_return(&iface_counter); +	dev->net->dev_addr[ETH_ALEN-1] = ifacenum; + +	/* we will have to manufacture ethernet headers, prepare template */ +	eth = (struct ethhdr *)priv->ethr_hdr_tmpl; +	memcpy(ð->h_dest, dev->net->dev_addr, ETH_ALEN); +	eth->h_proto = cpu_to_be16(ETH_P_IP); + +	/* prepare shutdown message template */ +	memcpy(priv->shdwn_msg, shdwn_tmplate, sizeof(priv->shdwn_msg)); +	/* set context index initially to 0 - prepares tx hdr template */ +	sierra_net_set_ctx_index(priv, 0); + +	/* decrease the rx_urb_size and max_tx_size to 4k on USB 1.1 */ +	dev->rx_urb_size  = data->rx_urb_size; +	if (dev->udev->speed != USB_SPEED_HIGH) +		dev->rx_urb_size  = min_t(size_t, 4096, data->rx_urb_size); + +	dev->net->hard_header_len += SIERRA_NET_HIP_EXT_HDR_LEN; +	dev->hard_mtu = dev->net->mtu + dev->net->hard_header_len; + +	/* Set up the netdev */ +	dev->net->flags |= IFF_NOARP; +	dev->net->ethtool_ops = &sierra_net_ethtool_ops; +	netif_carrier_off(dev->net); + +	sierra_net_set_private(dev, priv); + +	priv->kevent_flags = 0; + +	/* Use the shared workqueue */ +	INIT_WORK(&priv->sierra_net_kevent, sierra_net_kevent); + +	/* Only need to do this once */ +	init_timer(&priv->sync_timer); + +	/* verify fw attributes */ +	status = sierra_net_get_fw_attr(dev, &fwattr); +	dev_dbg(&dev->udev->dev, "Fw attr: %x\n", fwattr); + +	/* test whether firmware supports DHCP */ +	if (!(status == sizeof(fwattr) && (fwattr & SWI_GET_FW_ATTR_MASK))) { +		/* found incompatible firmware version */ +		dev_err(&dev->udev->dev, "Incompatible driver and firmware" +			" versions\n"); +		kfree(priv); +		return -ENODEV; +	} +	/* prepare sync message from template */ +	memcpy(priv->sync_msg, sync_tmplate, sizeof(priv->sync_msg)); + +	/* initiate the sync sequence */ +	sierra_net_dosync(dev); + +	return 0; +} + +static void sierra_net_unbind(struct usbnet *dev, struct usb_interface *intf) +{ +	int status; +	struct sierra_net_data *priv = sierra_net_get_private(dev); + +	dev_dbg(&dev->udev->dev, "%s", __func__); + +	/* Kill the timer then flush the work queue */ +	del_timer_sync(&priv->sync_timer); + +	flush_scheduled_work(); + +	/* tell modem we are going away */ +	status = sierra_net_send_cmd(dev, priv->shdwn_msg, +			sizeof(priv->shdwn_msg), "Shutdown"); +	if (status < 0) +		netdev_err(dev->net, +			"usb_control_msg failed, status %d\n", status); + +	sierra_net_set_private(dev, NULL); + +	kfree(priv); +} + +static struct sk_buff *sierra_net_skb_clone(struct usbnet *dev, +		struct sk_buff *skb, int len) +{ +	struct sk_buff *new_skb; + +	/* clone skb */ +	new_skb = skb_clone(skb, GFP_ATOMIC); + +	/* remove len bytes from original */ +	skb_pull(skb, len); + +	/* trim next packet to it's length */ +	if (new_skb) { +		skb_trim(new_skb, len); +	} else { +		if (netif_msg_rx_err(dev)) +			netdev_err(dev->net, "failed to get skb\n"); +		dev->net->stats.rx_dropped++; +	} + +	return new_skb; +} + +/* ---------------------------- Receive data path ----------------------*/ +static int sierra_net_rx_fixup(struct usbnet *dev, struct sk_buff *skb) +{ +	int err; +	struct hip_hdr  hh; +	struct sk_buff *new_skb; + +	dev_dbg(&dev->udev->dev, "%s", __func__); + +	/* could contain multiple packets */ +	while (likely(skb->len)) { +		err = parse_hip(skb->data, skb->len, &hh); +		if (err) { +			if (netif_msg_rx_err(dev)) +				netdev_err(dev->net, "Invalid HIP header %d\n", +					err); +			/* dev->net->stats.rx_errors incremented by caller */ +			dev->net->stats.rx_length_errors++; +			return 0; +		} + +		/* Validate Extended HIP header */ +		if (!hh.extmsgid.is_present +		    || hh.extmsgid.word != SIERRA_NET_HIP_EXT_IP_IN_ID) { +			if (netif_msg_rx_err(dev)) +				netdev_err(dev->net, "HIP/ETH: Invalid pkt\n"); + +			dev->net->stats.rx_frame_errors++; +			/* dev->net->stats.rx_errors incremented by caller */; +			return 0; +		} + +		skb_pull(skb, hh.hdrlen); + +		/* We are going to accept this packet, prepare it */ +		memcpy(skb->data, sierra_net_get_private(dev)->ethr_hdr_tmpl, +			ETH_HLEN); + +		/* Last packet in batch handled by usbnet */ +		if (hh.payload_len.word == skb->len) +			return 1; + +		new_skb = sierra_net_skb_clone(dev, skb, hh.payload_len.word); +		if (new_skb) +			usbnet_skb_return(dev, new_skb); + +	} /* while */ + +	return 0; +} + +/* ---------------------------- Transmit data path ----------------------*/ +struct sk_buff *sierra_net_tx_fixup(struct usbnet *dev, struct sk_buff *skb, +		gfp_t flags) +{ +	struct sierra_net_data *priv = sierra_net_get_private(dev); +	u16 len; +	bool need_tail; + +	dev_dbg(&dev->udev->dev, "%s", __func__); +	if (priv->link_up && check_ethip_packet(skb, dev) && is_ip(skb)) { +		/* enough head room as is? */ +		if (SIERRA_NET_HIP_EXT_HDR_LEN <= skb_headroom(skb)) { +			/* Save the Eth/IP length and set up HIP hdr */ +			len = skb->len; +			skb_push(skb, SIERRA_NET_HIP_EXT_HDR_LEN); +			/* Handle ZLP issue */ +			need_tail = ((len + SIERRA_NET_HIP_EXT_HDR_LEN) +				% dev->maxpacket == 0); +			if (need_tail) { +				if (unlikely(skb_tailroom(skb) == 0)) { +					netdev_err(dev->net, "tx_fixup:" +						"no room for packet\n"); +					dev_kfree_skb_any(skb); +					return NULL; +				} else { +					skb->data[skb->len] = 0; +					__skb_put(skb, 1); +					len = len + 1; +				} +			} +			build_hip(skb->data, len, priv); +			return skb; +		} else { +			/* +			 * compensate in the future if necessary +			 */ +			netdev_err(dev->net, "tx_fixup: no room for HIP\n"); +		} /* headroom */ +	} + +	if (!priv->link_up) +		dev->net->stats.tx_carrier_errors++; + +	/* tx_dropped incremented by usbnet */ + +	/* filter the packet out, release it  */ +	dev_kfree_skb_any(skb); +	return NULL; +} + +static const u8 sierra_net_ifnum_list[] = { 7, 10, 11 }; +static const struct sierra_net_info_data sierra_net_info_data_68A3 = { +	.rx_urb_size = 8 * 1024, +	.whitelist = { +		.infolen = ARRAY_SIZE(sierra_net_ifnum_list), +		.ifaceinfo = sierra_net_ifnum_list +	} +}; + +static const struct driver_info sierra_net_info_68A3 = { +	.description = "Sierra Wireless USB-to-WWAN Modem", +	.flags = FLAG_WWAN | FLAG_SEND_ZLP, +	.bind = sierra_net_bind, +	.unbind = sierra_net_unbind, +	.status = sierra_net_status, +	.rx_fixup = sierra_net_rx_fixup, +	.tx_fixup = sierra_net_tx_fixup, +	.data = (unsigned long)&sierra_net_info_data_68A3, +}; + +static const struct usb_device_id products[] = { +	{USB_DEVICE(0x1199, 0x68A3), /* Sierra Wireless USB-to-WWAN modem */ +	.driver_info = (unsigned long) &sierra_net_info_68A3}, + +	{}, /* last item */ +}; +MODULE_DEVICE_TABLE(usb, products); + +/* We are based on usbnet, so let it handle the USB driver specifics */ +static struct usb_driver sierra_net_driver = { +	.name = "sierra_net", +	.id_table = products, +	.probe = usbnet_probe, +	.disconnect = usbnet_disconnect, +	.suspend = usbnet_suspend, +	.resume = usbnet_resume, +	.no_dynamic_id = 1, +}; + +static int __init sierra_net_init(void) +{ +	BUILD_BUG_ON(FIELD_SIZEOF(struct usbnet, data) +				< sizeof(struct cdc_state)); + +	return usb_register(&sierra_net_driver); +} + +static void __exit sierra_net_exit(void) +{ +	usb_deregister(&sierra_net_driver); +} + +module_exit(sierra_net_exit); +module_init(sierra_net_init); + +MODULE_AUTHOR(DRIVER_AUTHOR); +MODULE_DESCRIPTION(DRIVER_DESC); +MODULE_VERSION(DRIVER_VERSION); +MODULE_LICENSE("GPL"); diff --git a/drivers/net/usb/smsc75xx.c b/drivers/net/usb/smsc75xx.c new file mode 100644 index 00000000000..35b98b1b79e --- /dev/null +++ b/drivers/net/usb/smsc75xx.c @@ -0,0 +1,1289 @@ + /*************************************************************************** + * + * Copyright (C) 2007-2010 SMSC + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. + * + *****************************************************************************/ + +#include <linux/module.h> +#include <linux/kmod.h> +#include <linux/init.h> +#include <linux/netdevice.h> +#include <linux/etherdevice.h> +#include <linux/ethtool.h> +#include <linux/mii.h> +#include <linux/usb.h> +#include <linux/crc32.h> +#include <linux/usb/usbnet.h> +#include <linux/slab.h> +#include "smsc75xx.h" + +#define SMSC_CHIPNAME			"smsc75xx" +#define SMSC_DRIVER_VERSION		"1.0.0" +#define HS_USB_PKT_SIZE			(512) +#define FS_USB_PKT_SIZE			(64) +#define DEFAULT_HS_BURST_CAP_SIZE	(16 * 1024 + 5 * HS_USB_PKT_SIZE) +#define DEFAULT_FS_BURST_CAP_SIZE	(6 * 1024 + 33 * FS_USB_PKT_SIZE) +#define DEFAULT_BULK_IN_DELAY		(0x00002000) +#define MAX_SINGLE_PACKET_SIZE		(9000) +#define LAN75XX_EEPROM_MAGIC		(0x7500) +#define EEPROM_MAC_OFFSET		(0x01) +#define DEFAULT_TX_CSUM_ENABLE		(true) +#define DEFAULT_RX_CSUM_ENABLE		(true) +#define DEFAULT_TSO_ENABLE		(true) +#define SMSC75XX_INTERNAL_PHY_ID	(1) +#define SMSC75XX_TX_OVERHEAD		(8) +#define MAX_RX_FIFO_SIZE		(20 * 1024) +#define MAX_TX_FIFO_SIZE		(12 * 1024) +#define USB_VENDOR_ID_SMSC		(0x0424) +#define USB_PRODUCT_ID_LAN7500		(0x7500) +#define USB_PRODUCT_ID_LAN7505		(0x7505) + +#define check_warn(ret, fmt, args...) \ +	({ if (ret < 0) netdev_warn(dev->net, fmt, ##args); }) + +#define check_warn_return(ret, fmt, args...) \ +	({ if (ret < 0) { netdev_warn(dev->net, fmt, ##args); return ret; } }) + +#define check_warn_goto_done(ret, fmt, args...) \ +	({ if (ret < 0) { netdev_warn(dev->net, fmt, ##args); goto done; } }) + +struct smsc75xx_priv { +	struct usbnet *dev; +	u32 rfe_ctl; +	u32 multicast_hash_table[DP_SEL_VHF_HASH_LEN]; +	bool use_rx_csum; +	struct mutex dataport_mutex; +	spinlock_t rfe_ctl_lock; +	struct work_struct set_multicast; +}; + +struct usb_context { +	struct usb_ctrlrequest req; +	struct usbnet *dev; +}; + +static int turbo_mode = true; +module_param(turbo_mode, bool, 0644); +MODULE_PARM_DESC(turbo_mode, "Enable multiple frames per Rx transaction"); + +static int __must_check smsc75xx_read_reg(struct usbnet *dev, u32 index, +					  u32 *data) +{ +	u32 *buf = kmalloc(4, GFP_KERNEL); +	int ret; + +	BUG_ON(!dev); + +	if (!buf) +		return -ENOMEM; + +	ret = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0), +		USB_VENDOR_REQUEST_READ_REGISTER, +		USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, +		00, index, buf, 4, USB_CTRL_GET_TIMEOUT); + +	if (unlikely(ret < 0)) +		netdev_warn(dev->net, +			"Failed to read register index 0x%08x", index); + +	le32_to_cpus(buf); +	*data = *buf; +	kfree(buf); + +	return ret; +} + +static int __must_check smsc75xx_write_reg(struct usbnet *dev, u32 index, +					   u32 data) +{ +	u32 *buf = kmalloc(4, GFP_KERNEL); +	int ret; + +	BUG_ON(!dev); + +	if (!buf) +		return -ENOMEM; + +	*buf = data; +	cpu_to_le32s(buf); + +	ret = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0), +		USB_VENDOR_REQUEST_WRITE_REGISTER, +		USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, +		00, index, buf, 4, USB_CTRL_SET_TIMEOUT); + +	if (unlikely(ret < 0)) +		netdev_warn(dev->net, +			"Failed to write register index 0x%08x", index); + +	kfree(buf); + +	return ret; +} + +/* Loop until the read is completed with timeout + * called with phy_mutex held */ +static int smsc75xx_phy_wait_not_busy(struct usbnet *dev) +{ +	unsigned long start_time = jiffies; +	u32 val; +	int ret; + +	do { +		ret = smsc75xx_read_reg(dev, MII_ACCESS, &val); +		check_warn_return(ret, "Error reading MII_ACCESS"); + +		if (!(val & MII_ACCESS_BUSY)) +			return 0; +	} while (!time_after(jiffies, start_time + HZ)); + +	return -EIO; +} + +static int smsc75xx_mdio_read(struct net_device *netdev, int phy_id, int idx) +{ +	struct usbnet *dev = netdev_priv(netdev); +	u32 val, addr; +	int ret; + +	mutex_lock(&dev->phy_mutex); + +	/* confirm MII not busy */ +	ret = smsc75xx_phy_wait_not_busy(dev); +	check_warn_goto_done(ret, "MII is busy in smsc75xx_mdio_read"); + +	/* set the address, index & direction (read from PHY) */ +	phy_id &= dev->mii.phy_id_mask; +	idx &= dev->mii.reg_num_mask; +	addr = ((phy_id << MII_ACCESS_PHY_ADDR_SHIFT) & MII_ACCESS_PHY_ADDR) +		| ((idx << MII_ACCESS_REG_ADDR_SHIFT) & MII_ACCESS_REG_ADDR) +		| MII_ACCESS_READ; +	ret = smsc75xx_write_reg(dev, MII_ACCESS, addr); +	check_warn_goto_done(ret, "Error writing MII_ACCESS"); + +	ret = smsc75xx_phy_wait_not_busy(dev); +	check_warn_goto_done(ret, "Timed out reading MII reg %02X", idx); + +	ret = smsc75xx_read_reg(dev, MII_DATA, &val); +	check_warn_goto_done(ret, "Error reading MII_DATA"); + +	ret = (u16)(val & 0xFFFF); + +done: +	mutex_unlock(&dev->phy_mutex); +	return ret; +} + +static void smsc75xx_mdio_write(struct net_device *netdev, int phy_id, int idx, +				int regval) +{ +	struct usbnet *dev = netdev_priv(netdev); +	u32 val, addr; +	int ret; + +	mutex_lock(&dev->phy_mutex); + +	/* confirm MII not busy */ +	ret = smsc75xx_phy_wait_not_busy(dev); +	check_warn_goto_done(ret, "MII is busy in smsc75xx_mdio_write"); + +	val = regval; +	ret = smsc75xx_write_reg(dev, MII_DATA, val); +	check_warn_goto_done(ret, "Error writing MII_DATA"); + +	/* set the address, index & direction (write to PHY) */ +	phy_id &= dev->mii.phy_id_mask; +	idx &= dev->mii.reg_num_mask; +	addr = ((phy_id << MII_ACCESS_PHY_ADDR_SHIFT) & MII_ACCESS_PHY_ADDR) +		| ((idx << MII_ACCESS_REG_ADDR_SHIFT) & MII_ACCESS_REG_ADDR) +		| MII_ACCESS_WRITE; +	ret = smsc75xx_write_reg(dev, MII_ACCESS, addr); +	check_warn_goto_done(ret, "Error writing MII_ACCESS"); + +	ret = smsc75xx_phy_wait_not_busy(dev); +	check_warn_goto_done(ret, "Timed out writing MII reg %02X", idx); + +done: +	mutex_unlock(&dev->phy_mutex); +} + +static int smsc75xx_wait_eeprom(struct usbnet *dev) +{ +	unsigned long start_time = jiffies; +	u32 val; +	int ret; + +	do { +		ret = smsc75xx_read_reg(dev, E2P_CMD, &val); +		check_warn_return(ret, "Error reading E2P_CMD"); + +		if (!(val & E2P_CMD_BUSY) || (val & E2P_CMD_TIMEOUT)) +			break; +		udelay(40); +	} while (!time_after(jiffies, start_time + HZ)); + +	if (val & (E2P_CMD_TIMEOUT | E2P_CMD_BUSY)) { +		netdev_warn(dev->net, "EEPROM read operation timeout"); +		return -EIO; +	} + +	return 0; +} + +static int smsc75xx_eeprom_confirm_not_busy(struct usbnet *dev) +{ +	unsigned long start_time = jiffies; +	u32 val; +	int ret; + +	do { +		ret = smsc75xx_read_reg(dev, E2P_CMD, &val); +		check_warn_return(ret, "Error reading E2P_CMD"); + +		if (!(val & E2P_CMD_BUSY)) +			return 0; + +		udelay(40); +	} while (!time_after(jiffies, start_time + HZ)); + +	netdev_warn(dev->net, "EEPROM is busy"); +	return -EIO; +} + +static int smsc75xx_read_eeprom(struct usbnet *dev, u32 offset, u32 length, +				u8 *data) +{ +	u32 val; +	int i, ret; + +	BUG_ON(!dev); +	BUG_ON(!data); + +	ret = smsc75xx_eeprom_confirm_not_busy(dev); +	if (ret) +		return ret; + +	for (i = 0; i < length; i++) { +		val = E2P_CMD_BUSY | E2P_CMD_READ | (offset & E2P_CMD_ADDR); +		ret = smsc75xx_write_reg(dev, E2P_CMD, val); +		check_warn_return(ret, "Error writing E2P_CMD"); + +		ret = smsc75xx_wait_eeprom(dev); +		if (ret < 0) +			return ret; + +		ret = smsc75xx_read_reg(dev, E2P_DATA, &val); +		check_warn_return(ret, "Error reading E2P_DATA"); + +		data[i] = val & 0xFF; +		offset++; +	} + +	return 0; +} + +static int smsc75xx_write_eeprom(struct usbnet *dev, u32 offset, u32 length, +				 u8 *data) +{ +	u32 val; +	int i, ret; + +	BUG_ON(!dev); +	BUG_ON(!data); + +	ret = smsc75xx_eeprom_confirm_not_busy(dev); +	if (ret) +		return ret; + +	/* Issue write/erase enable command */ +	val = E2P_CMD_BUSY | E2P_CMD_EWEN; +	ret = smsc75xx_write_reg(dev, E2P_CMD, val); +	check_warn_return(ret, "Error writing E2P_CMD"); + +	ret = smsc75xx_wait_eeprom(dev); +	if (ret < 0) +		return ret; + +	for (i = 0; i < length; i++) { + +		/* Fill data register */ +		val = data[i]; +		ret = smsc75xx_write_reg(dev, E2P_DATA, val); +		check_warn_return(ret, "Error writing E2P_DATA"); + +		/* Send "write" command */ +		val = E2P_CMD_BUSY | E2P_CMD_WRITE | (offset & E2P_CMD_ADDR); +		ret = smsc75xx_write_reg(dev, E2P_CMD, val); +		check_warn_return(ret, "Error writing E2P_CMD"); + +		ret = smsc75xx_wait_eeprom(dev); +		if (ret < 0) +			return ret; + +		offset++; +	} + +	return 0; +} + +static int smsc75xx_dataport_wait_not_busy(struct usbnet *dev) +{ +	int i, ret; + +	for (i = 0; i < 100; i++) { +		u32 dp_sel; +		ret = smsc75xx_read_reg(dev, DP_SEL, &dp_sel); +		check_warn_return(ret, "Error reading DP_SEL"); + +		if (dp_sel & DP_SEL_DPRDY) +			return 0; + +		udelay(40); +	} + +	netdev_warn(dev->net, "smsc75xx_dataport_wait_not_busy timed out"); + +	return -EIO; +} + +static int smsc75xx_dataport_write(struct usbnet *dev, u32 ram_select, u32 addr, +				   u32 length, u32 *buf) +{ +	struct smsc75xx_priv *pdata = (struct smsc75xx_priv *)(dev->data[0]); +	u32 dp_sel; +	int i, ret; + +	mutex_lock(&pdata->dataport_mutex); + +	ret = smsc75xx_dataport_wait_not_busy(dev); +	check_warn_goto_done(ret, "smsc75xx_dataport_write busy on entry"); + +	ret = smsc75xx_read_reg(dev, DP_SEL, &dp_sel); +	check_warn_goto_done(ret, "Error reading DP_SEL"); + +	dp_sel &= ~DP_SEL_RSEL; +	dp_sel |= ram_select; +	ret = smsc75xx_write_reg(dev, DP_SEL, dp_sel); +	check_warn_goto_done(ret, "Error writing DP_SEL"); + +	for (i = 0; i < length; i++) { +		ret = smsc75xx_write_reg(dev, DP_ADDR, addr + i); +		check_warn_goto_done(ret, "Error writing DP_ADDR"); + +		ret = smsc75xx_write_reg(dev, DP_DATA, buf[i]); +		check_warn_goto_done(ret, "Error writing DP_DATA"); + +		ret = smsc75xx_write_reg(dev, DP_CMD, DP_CMD_WRITE); +		check_warn_goto_done(ret, "Error writing DP_CMD"); + +		ret = smsc75xx_dataport_wait_not_busy(dev); +		check_warn_goto_done(ret, "smsc75xx_dataport_write timeout"); +	} + +done: +	mutex_unlock(&pdata->dataport_mutex); +	return ret; +} + +/* returns hash bit number for given MAC address */ +static u32 smsc75xx_hash(char addr[ETH_ALEN]) +{ +	return (ether_crc(ETH_ALEN, addr) >> 23) & 0x1ff; +} + +static void smsc75xx_deferred_multicast_write(struct work_struct *param) +{ +	struct smsc75xx_priv *pdata = +		container_of(param, struct smsc75xx_priv, set_multicast); +	struct usbnet *dev = pdata->dev; +	int ret; + +	netif_dbg(dev, drv, dev->net, "deferred multicast write 0x%08x", +		pdata->rfe_ctl); + +	smsc75xx_dataport_write(dev, DP_SEL_VHF, DP_SEL_VHF_VLAN_LEN, +		DP_SEL_VHF_HASH_LEN, pdata->multicast_hash_table); + +	ret = smsc75xx_write_reg(dev, RFE_CTL, pdata->rfe_ctl); +	check_warn(ret, "Error writing RFE_CRL"); +} + +static void smsc75xx_set_multicast(struct net_device *netdev) +{ +	struct usbnet *dev = netdev_priv(netdev); +	struct smsc75xx_priv *pdata = (struct smsc75xx_priv *)(dev->data[0]); +	unsigned long flags; +	int i; + +	spin_lock_irqsave(&pdata->rfe_ctl_lock, flags); + +	pdata->rfe_ctl &= +		~(RFE_CTL_AU | RFE_CTL_AM | RFE_CTL_DPF | RFE_CTL_MHF); +	pdata->rfe_ctl |= RFE_CTL_AB; + +	for (i = 0; i < DP_SEL_VHF_HASH_LEN; i++) +		pdata->multicast_hash_table[i] = 0; + +	if (dev->net->flags & IFF_PROMISC) { +		netif_dbg(dev, drv, dev->net, "promiscuous mode enabled"); +		pdata->rfe_ctl |= RFE_CTL_AM | RFE_CTL_AU; +	} else if (dev->net->flags & IFF_ALLMULTI) { +		netif_dbg(dev, drv, dev->net, "receive all multicast enabled"); +		pdata->rfe_ctl |= RFE_CTL_AM | RFE_CTL_DPF; +	} else if (!netdev_mc_empty(dev->net)) { +		struct dev_mc_list *mc_list; + +		netif_dbg(dev, drv, dev->net, "receive multicast hash filter"); + +		pdata->rfe_ctl |= RFE_CTL_MHF | RFE_CTL_DPF; + +		netdev_for_each_mc_addr(mc_list, netdev) { +			u32 bitnum = smsc75xx_hash(mc_list->dmi_addr); +			pdata->multicast_hash_table[bitnum / 32] |= +				(1 << (bitnum % 32)); +		} +	} else { +		netif_dbg(dev, drv, dev->net, "receive own packets only"); +		pdata->rfe_ctl |= RFE_CTL_DPF; +	} + +	spin_unlock_irqrestore(&pdata->rfe_ctl_lock, flags); + +	/* defer register writes to a sleepable context */ +	schedule_work(&pdata->set_multicast); +} + +static int smsc75xx_update_flowcontrol(struct usbnet *dev, u8 duplex, +					    u16 lcladv, u16 rmtadv) +{ +	u32 flow = 0, fct_flow = 0; +	int ret; + +	if (duplex == DUPLEX_FULL) { +		u8 cap = mii_resolve_flowctrl_fdx(lcladv, rmtadv); + +		if (cap & FLOW_CTRL_TX) { +			flow = (FLOW_TX_FCEN | 0xFFFF); +			/* set fct_flow thresholds to 20% and 80% */ +			fct_flow = (8 << 8) | 32; +		} + +		if (cap & FLOW_CTRL_RX) +			flow |= FLOW_RX_FCEN; + +		netif_dbg(dev, link, dev->net, "rx pause %s, tx pause %s", +			(cap & FLOW_CTRL_RX ? "enabled" : "disabled"), +			(cap & FLOW_CTRL_TX ? "enabled" : "disabled")); +	} else { +		netif_dbg(dev, link, dev->net, "half duplex"); +	} + +	ret = smsc75xx_write_reg(dev, FLOW, flow); +	check_warn_return(ret, "Error writing FLOW"); + +	ret = smsc75xx_write_reg(dev, FCT_FLOW, fct_flow); +	check_warn_return(ret, "Error writing FCT_FLOW"); + +	return 0; +} + +static int smsc75xx_link_reset(struct usbnet *dev) +{ +	struct mii_if_info *mii = &dev->mii; +	struct ethtool_cmd ecmd; +	u16 lcladv, rmtadv; +	int ret; + +	/* clear interrupt status */ +	ret = smsc75xx_mdio_read(dev->net, mii->phy_id, PHY_INT_SRC); +	check_warn_return(ret, "Error reading PHY_INT_SRC"); + +	ret = smsc75xx_write_reg(dev, INT_STS, INT_STS_CLEAR_ALL); +	check_warn_return(ret, "Error writing INT_STS"); + +	mii_check_media(mii, 1, 1); +	mii_ethtool_gset(&dev->mii, &ecmd); +	lcladv = smsc75xx_mdio_read(dev->net, mii->phy_id, MII_ADVERTISE); +	rmtadv = smsc75xx_mdio_read(dev->net, mii->phy_id, MII_LPA); + +	netif_dbg(dev, link, dev->net, "speed: %d duplex: %d lcladv: %04x" +		" rmtadv: %04x", ecmd.speed, ecmd.duplex, lcladv, rmtadv); + +	return smsc75xx_update_flowcontrol(dev, ecmd.duplex, lcladv, rmtadv); +} + +static void smsc75xx_status(struct usbnet *dev, struct urb *urb) +{ +	u32 intdata; + +	if (urb->actual_length != 4) { +		netdev_warn(dev->net, +			"unexpected urb length %d", urb->actual_length); +		return; +	} + +	memcpy(&intdata, urb->transfer_buffer, 4); +	le32_to_cpus(&intdata); + +	netif_dbg(dev, link, dev->net, "intdata: 0x%08X", intdata); + +	if (intdata & INT_ENP_PHY_INT) +		usbnet_defer_kevent(dev, EVENT_LINK_RESET); +	else +		netdev_warn(dev->net, +			"unexpected interrupt, intdata=0x%08X", intdata); +} + +/* Enable or disable Rx checksum offload engine */ +static int smsc75xx_set_rx_csum_offload(struct usbnet *dev) +{ +	struct smsc75xx_priv *pdata = (struct smsc75xx_priv *)(dev->data[0]); +	unsigned long flags; +	int ret; + +	spin_lock_irqsave(&pdata->rfe_ctl_lock, flags); + +	if (pdata->use_rx_csum) +		pdata->rfe_ctl |= RFE_CTL_TCPUDP_CKM | RFE_CTL_IP_CKM; +	else +		pdata->rfe_ctl &= ~(RFE_CTL_TCPUDP_CKM | RFE_CTL_IP_CKM); + +	spin_unlock_irqrestore(&pdata->rfe_ctl_lock, flags); + +	ret = smsc75xx_write_reg(dev, RFE_CTL, pdata->rfe_ctl); +	check_warn_return(ret, "Error writing RFE_CTL"); + +	return 0; +} + +static int smsc75xx_ethtool_get_eeprom_len(struct net_device *net) +{ +	return MAX_EEPROM_SIZE; +} + +static int smsc75xx_ethtool_get_eeprom(struct net_device *netdev, +				       struct ethtool_eeprom *ee, u8 *data) +{ +	struct usbnet *dev = netdev_priv(netdev); + +	ee->magic = LAN75XX_EEPROM_MAGIC; + +	return smsc75xx_read_eeprom(dev, ee->offset, ee->len, data); +} + +static int smsc75xx_ethtool_set_eeprom(struct net_device *netdev, +				       struct ethtool_eeprom *ee, u8 *data) +{ +	struct usbnet *dev = netdev_priv(netdev); + +	if (ee->magic != LAN75XX_EEPROM_MAGIC) { +		netdev_warn(dev->net, +			"EEPROM: magic value mismatch: 0x%x", ee->magic); +		return -EINVAL; +	} + +	return smsc75xx_write_eeprom(dev, ee->offset, ee->len, data); +} + +static u32 smsc75xx_ethtool_get_rx_csum(struct net_device *netdev) +{ +	struct usbnet *dev = netdev_priv(netdev); +	struct smsc75xx_priv *pdata = (struct smsc75xx_priv *)(dev->data[0]); + +	return pdata->use_rx_csum; +} + +static int smsc75xx_ethtool_set_rx_csum(struct net_device *netdev, u32 val) +{ +	struct usbnet *dev = netdev_priv(netdev); +	struct smsc75xx_priv *pdata = (struct smsc75xx_priv *)(dev->data[0]); + +	pdata->use_rx_csum = !!val; + +	return smsc75xx_set_rx_csum_offload(dev); +} + +static int smsc75xx_ethtool_set_tso(struct net_device *netdev, u32 data) +{ +	if (data) +		netdev->features |= NETIF_F_TSO | NETIF_F_TSO6; +	else +		netdev->features &= ~(NETIF_F_TSO | NETIF_F_TSO6); + +	return 0; +} + +static const struct ethtool_ops smsc75xx_ethtool_ops = { +	.get_link	= usbnet_get_link, +	.nway_reset	= usbnet_nway_reset, +	.get_drvinfo	= usbnet_get_drvinfo, +	.get_msglevel	= usbnet_get_msglevel, +	.set_msglevel	= usbnet_set_msglevel, +	.get_settings	= usbnet_get_settings, +	.set_settings	= usbnet_set_settings, +	.get_eeprom_len	= smsc75xx_ethtool_get_eeprom_len, +	.get_eeprom	= smsc75xx_ethtool_get_eeprom, +	.set_eeprom	= smsc75xx_ethtool_set_eeprom, +	.get_tx_csum	= ethtool_op_get_tx_csum, +	.set_tx_csum	= ethtool_op_set_tx_hw_csum, +	.get_rx_csum	= smsc75xx_ethtool_get_rx_csum, +	.set_rx_csum	= smsc75xx_ethtool_set_rx_csum, +	.get_tso	= ethtool_op_get_tso, +	.set_tso	= smsc75xx_ethtool_set_tso, +}; + +static int smsc75xx_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd) +{ +	struct usbnet *dev = netdev_priv(netdev); + +	if (!netif_running(netdev)) +		return -EINVAL; + +	return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL); +} + +static void smsc75xx_init_mac_address(struct usbnet *dev) +{ +	/* try reading mac address from EEPROM */ +	if (smsc75xx_read_eeprom(dev, EEPROM_MAC_OFFSET, ETH_ALEN, +			dev->net->dev_addr) == 0) { +		if (is_valid_ether_addr(dev->net->dev_addr)) { +			/* eeprom values are valid so use them */ +			netif_dbg(dev, ifup, dev->net, +				"MAC address read from EEPROM"); +			return; +		} +	} + +	/* no eeprom, or eeprom values are invalid. generate random MAC */ +	random_ether_addr(dev->net->dev_addr); +	netif_dbg(dev, ifup, dev->net, "MAC address set to random_ether_addr"); +} + +static int smsc75xx_set_mac_address(struct usbnet *dev) +{ +	u32 addr_lo = dev->net->dev_addr[0] | dev->net->dev_addr[1] << 8 | +		dev->net->dev_addr[2] << 16 | dev->net->dev_addr[3] << 24; +	u32 addr_hi = dev->net->dev_addr[4] | dev->net->dev_addr[5] << 8; + +	int ret = smsc75xx_write_reg(dev, RX_ADDRH, addr_hi); +	check_warn_return(ret, "Failed to write RX_ADDRH: %d", ret); + +	ret = smsc75xx_write_reg(dev, RX_ADDRL, addr_lo); +	check_warn_return(ret, "Failed to write RX_ADDRL: %d", ret); + +	addr_hi |= ADDR_FILTX_FB_VALID; +	ret = smsc75xx_write_reg(dev, ADDR_FILTX, addr_hi); +	check_warn_return(ret, "Failed to write ADDR_FILTX: %d", ret); + +	ret = smsc75xx_write_reg(dev, ADDR_FILTX + 4, addr_lo); +	check_warn_return(ret, "Failed to write ADDR_FILTX+4: %d", ret); + +	return 0; +} + +static int smsc75xx_phy_initialize(struct usbnet *dev) +{ +	int bmcr, timeout = 0; + +	/* Initialize MII structure */ +	dev->mii.dev = dev->net; +	dev->mii.mdio_read = smsc75xx_mdio_read; +	dev->mii.mdio_write = smsc75xx_mdio_write; +	dev->mii.phy_id_mask = 0x1f; +	dev->mii.reg_num_mask = 0x1f; +	dev->mii.phy_id = SMSC75XX_INTERNAL_PHY_ID; + +	/* reset phy and wait for reset to complete */ +	smsc75xx_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET); + +	do { +		msleep(10); +		bmcr = smsc75xx_mdio_read(dev->net, dev->mii.phy_id, MII_BMCR); +		check_warn_return(bmcr, "Error reading MII_BMCR"); +		timeout++; +	} while ((bmcr & MII_BMCR) && (timeout < 100)); + +	if (timeout >= 100) { +		netdev_warn(dev->net, "timeout on PHY Reset"); +		return -EIO; +	} + +	smsc75xx_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE, +		ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP | +		ADVERTISE_PAUSE_ASYM); + +	/* read to clear */ +	smsc75xx_mdio_read(dev->net, dev->mii.phy_id, PHY_INT_SRC); +	check_warn_return(bmcr, "Error reading PHY_INT_SRC"); + +	smsc75xx_mdio_write(dev->net, dev->mii.phy_id, PHY_INT_MASK, +		PHY_INT_MASK_DEFAULT); +	mii_nway_restart(&dev->mii); + +	netif_dbg(dev, ifup, dev->net, "phy initialised successfully"); +	return 0; +} + +static int smsc75xx_set_rx_max_frame_length(struct usbnet *dev, int size) +{ +	int ret = 0; +	u32 buf; +	bool rxenabled; + +	ret = smsc75xx_read_reg(dev, MAC_RX, &buf); +	check_warn_return(ret, "Failed to read MAC_RX: %d", ret); + +	rxenabled = ((buf & MAC_RX_RXEN) != 0); + +	if (rxenabled) { +		buf &= ~MAC_RX_RXEN; +		ret = smsc75xx_write_reg(dev, MAC_RX, buf); +		check_warn_return(ret, "Failed to write MAC_RX: %d", ret); +	} + +	/* add 4 to size for FCS */ +	buf &= ~MAC_RX_MAX_SIZE; +	buf |= (((size + 4) << MAC_RX_MAX_SIZE_SHIFT) & MAC_RX_MAX_SIZE); + +	ret = smsc75xx_write_reg(dev, MAC_RX, buf); +	check_warn_return(ret, "Failed to write MAC_RX: %d", ret); + +	if (rxenabled) { +		buf |= MAC_RX_RXEN; +		ret = smsc75xx_write_reg(dev, MAC_RX, buf); +		check_warn_return(ret, "Failed to write MAC_RX: %d", ret); +	} + +	return 0; +} + +static int smsc75xx_change_mtu(struct net_device *netdev, int new_mtu) +{ +	struct usbnet *dev = netdev_priv(netdev); + +	int ret = smsc75xx_set_rx_max_frame_length(dev, new_mtu); +	check_warn_return(ret, "Failed to set mac rx frame length"); + +	return usbnet_change_mtu(netdev, new_mtu); +} + +static int smsc75xx_reset(struct usbnet *dev) +{ +	struct smsc75xx_priv *pdata = (struct smsc75xx_priv *)(dev->data[0]); +	u32 buf; +	int ret = 0, timeout; + +	netif_dbg(dev, ifup, dev->net, "entering smsc75xx_reset"); + +	ret = smsc75xx_read_reg(dev, HW_CFG, &buf); +	check_warn_return(ret, "Failed to read HW_CFG: %d", ret); + +	buf |= HW_CFG_LRST; + +	ret = smsc75xx_write_reg(dev, HW_CFG, buf); +	check_warn_return(ret, "Failed to write HW_CFG: %d", ret); + +	timeout = 0; +	do { +		msleep(10); +		ret = smsc75xx_read_reg(dev, HW_CFG, &buf); +		check_warn_return(ret, "Failed to read HW_CFG: %d", ret); +		timeout++; +	} while ((buf & HW_CFG_LRST) && (timeout < 100)); + +	if (timeout >= 100) { +		netdev_warn(dev->net, "timeout on completion of Lite Reset"); +		return -EIO; +	} + +	netif_dbg(dev, ifup, dev->net, "Lite reset complete, resetting PHY"); + +	ret = smsc75xx_read_reg(dev, PMT_CTL, &buf); +	check_warn_return(ret, "Failed to read PMT_CTL: %d", ret); + +	buf |= PMT_CTL_PHY_RST; + +	ret = smsc75xx_write_reg(dev, PMT_CTL, buf); +	check_warn_return(ret, "Failed to write PMT_CTL: %d", ret); + +	timeout = 0; +	do { +		msleep(10); +		ret = smsc75xx_read_reg(dev, PMT_CTL, &buf); +		check_warn_return(ret, "Failed to read PMT_CTL: %d", ret); +		timeout++; +	} while ((buf & PMT_CTL_PHY_RST) && (timeout < 100)); + +	if (timeout >= 100) { +		netdev_warn(dev->net, "timeout waiting for PHY Reset"); +		return -EIO; +	} + +	netif_dbg(dev, ifup, dev->net, "PHY reset complete"); + +	smsc75xx_init_mac_address(dev); + +	ret = smsc75xx_set_mac_address(dev); +	check_warn_return(ret, "Failed to set mac address"); + +	netif_dbg(dev, ifup, dev->net, "MAC Address: %pM", dev->net->dev_addr); + +	ret = smsc75xx_read_reg(dev, HW_CFG, &buf); +	check_warn_return(ret, "Failed to read HW_CFG: %d", ret); + +	netif_dbg(dev, ifup, dev->net, "Read Value from HW_CFG : 0x%08x", buf); + +	buf |= HW_CFG_BIR; + +	ret = smsc75xx_write_reg(dev, HW_CFG, buf); +	check_warn_return(ret, "Failed to write HW_CFG: %d", ret); + +	ret = smsc75xx_read_reg(dev, HW_CFG, &buf); +	check_warn_return(ret, "Failed to read HW_CFG: %d", ret); + +	netif_dbg(dev, ifup, dev->net, "Read Value from HW_CFG after " +			"writing HW_CFG_BIR: 0x%08x", buf); + +	if (!turbo_mode) { +		buf = 0; +		dev->rx_urb_size = MAX_SINGLE_PACKET_SIZE; +	} else if (dev->udev->speed == USB_SPEED_HIGH) { +		buf = DEFAULT_HS_BURST_CAP_SIZE / HS_USB_PKT_SIZE; +		dev->rx_urb_size = DEFAULT_HS_BURST_CAP_SIZE; +	} else { +		buf = DEFAULT_FS_BURST_CAP_SIZE / FS_USB_PKT_SIZE; +		dev->rx_urb_size = DEFAULT_FS_BURST_CAP_SIZE; +	} + +	netif_dbg(dev, ifup, dev->net, "rx_urb_size=%ld", +		(ulong)dev->rx_urb_size); + +	ret = smsc75xx_write_reg(dev, BURST_CAP, buf); +	check_warn_return(ret, "Failed to write BURST_CAP: %d", ret); + +	ret = smsc75xx_read_reg(dev, BURST_CAP, &buf); +	check_warn_return(ret, "Failed to read BURST_CAP: %d", ret); + +	netif_dbg(dev, ifup, dev->net, +		"Read Value from BURST_CAP after writing: 0x%08x", buf); + +	ret = smsc75xx_write_reg(dev, BULK_IN_DLY, DEFAULT_BULK_IN_DELAY); +	check_warn_return(ret, "Failed to write BULK_IN_DLY: %d", ret); + +	ret = smsc75xx_read_reg(dev, BULK_IN_DLY, &buf); +	check_warn_return(ret, "Failed to read BULK_IN_DLY: %d", ret); + +	netif_dbg(dev, ifup, dev->net, +		"Read Value from BULK_IN_DLY after writing: 0x%08x", buf); + +	if (turbo_mode) { +		ret = smsc75xx_read_reg(dev, HW_CFG, &buf); +		check_warn_return(ret, "Failed to read HW_CFG: %d", ret); + +		netif_dbg(dev, ifup, dev->net, "HW_CFG: 0x%08x", buf); + +		buf |= (HW_CFG_MEF | HW_CFG_BCE); + +		ret = smsc75xx_write_reg(dev, HW_CFG, buf); +		check_warn_return(ret, "Failed to write HW_CFG: %d", ret); + +		ret = smsc75xx_read_reg(dev, HW_CFG, &buf); +		check_warn_return(ret, "Failed to read HW_CFG: %d", ret); + +		netif_dbg(dev, ifup, dev->net, "HW_CFG: 0x%08x", buf); +	} + +	/* set FIFO sizes */ +	buf = (MAX_RX_FIFO_SIZE - 512) / 512; +	ret = smsc75xx_write_reg(dev, FCT_RX_FIFO_END, buf); +	check_warn_return(ret, "Failed to write FCT_RX_FIFO_END: %d", ret); + +	netif_dbg(dev, ifup, dev->net, "FCT_RX_FIFO_END set to 0x%08x", buf); + +	buf = (MAX_TX_FIFO_SIZE - 512) / 512; +	ret = smsc75xx_write_reg(dev, FCT_TX_FIFO_END, buf); +	check_warn_return(ret, "Failed to write FCT_TX_FIFO_END: %d", ret); + +	netif_dbg(dev, ifup, dev->net, "FCT_TX_FIFO_END set to 0x%08x", buf); + +	ret = smsc75xx_write_reg(dev, INT_STS, INT_STS_CLEAR_ALL); +	check_warn_return(ret, "Failed to write INT_STS: %d", ret); + +	ret = smsc75xx_read_reg(dev, ID_REV, &buf); +	check_warn_return(ret, "Failed to read ID_REV: %d", ret); + +	netif_dbg(dev, ifup, dev->net, "ID_REV = 0x%08x", buf); + +	/* Configure GPIO pins as LED outputs */ +	ret = smsc75xx_read_reg(dev, LED_GPIO_CFG, &buf); +	check_warn_return(ret, "Failed to read LED_GPIO_CFG: %d", ret); + +	buf &= ~(LED_GPIO_CFG_LED2_FUN_SEL | LED_GPIO_CFG_LED10_FUN_SEL); +	buf |= LED_GPIO_CFG_LEDGPIO_EN | LED_GPIO_CFG_LED2_FUN_SEL; + +	ret = smsc75xx_write_reg(dev, LED_GPIO_CFG, buf); +	check_warn_return(ret, "Failed to write LED_GPIO_CFG: %d", ret); + +	ret = smsc75xx_write_reg(dev, FLOW, 0); +	check_warn_return(ret, "Failed to write FLOW: %d", ret); + +	ret = smsc75xx_write_reg(dev, FCT_FLOW, 0); +	check_warn_return(ret, "Failed to write FCT_FLOW: %d", ret); + +	/* Don't need rfe_ctl_lock during initialisation */ +	ret = smsc75xx_read_reg(dev, RFE_CTL, &pdata->rfe_ctl); +	check_warn_return(ret, "Failed to read RFE_CTL: %d", ret); + +	pdata->rfe_ctl |= RFE_CTL_AB | RFE_CTL_DPF; + +	ret = smsc75xx_write_reg(dev, RFE_CTL, pdata->rfe_ctl); +	check_warn_return(ret, "Failed to write RFE_CTL: %d", ret); + +	ret = smsc75xx_read_reg(dev, RFE_CTL, &pdata->rfe_ctl); +	check_warn_return(ret, "Failed to read RFE_CTL: %d", ret); + +	netif_dbg(dev, ifup, dev->net, "RFE_CTL set to 0x%08x", pdata->rfe_ctl); + +	/* Enable or disable checksum offload engines */ +	ethtool_op_set_tx_hw_csum(dev->net, DEFAULT_TX_CSUM_ENABLE); +	ret = smsc75xx_set_rx_csum_offload(dev); +	check_warn_return(ret, "Failed to set rx csum offload: %d", ret); + +	smsc75xx_ethtool_set_tso(dev->net, DEFAULT_TSO_ENABLE); + +	smsc75xx_set_multicast(dev->net); + +	ret = smsc75xx_phy_initialize(dev); +	check_warn_return(ret, "Failed to initialize PHY: %d", ret); + +	ret = smsc75xx_read_reg(dev, INT_EP_CTL, &buf); +	check_warn_return(ret, "Failed to read INT_EP_CTL: %d", ret); + +	/* enable PHY interrupts */ +	buf |= INT_ENP_PHY_INT; + +	ret = smsc75xx_write_reg(dev, INT_EP_CTL, buf); +	check_warn_return(ret, "Failed to write INT_EP_CTL: %d", ret); + +	ret = smsc75xx_read_reg(dev, MAC_TX, &buf); +	check_warn_return(ret, "Failed to read MAC_TX: %d", ret); + +	buf |= MAC_TX_TXEN; + +	ret = smsc75xx_write_reg(dev, MAC_TX, buf); +	check_warn_return(ret, "Failed to write MAC_TX: %d", ret); + +	netif_dbg(dev, ifup, dev->net, "MAC_TX set to 0x%08x", buf); + +	ret = smsc75xx_read_reg(dev, FCT_TX_CTL, &buf); +	check_warn_return(ret, "Failed to read FCT_TX_CTL: %d", ret); + +	buf |= FCT_TX_CTL_EN; + +	ret = smsc75xx_write_reg(dev, FCT_TX_CTL, buf); +	check_warn_return(ret, "Failed to write FCT_TX_CTL: %d", ret); + +	netif_dbg(dev, ifup, dev->net, "FCT_TX_CTL set to 0x%08x", buf); + +	ret = smsc75xx_set_rx_max_frame_length(dev, 1514); +	check_warn_return(ret, "Failed to set max rx frame length"); + +	ret = smsc75xx_read_reg(dev, MAC_RX, &buf); +	check_warn_return(ret, "Failed to read MAC_RX: %d", ret); + +	buf |= MAC_RX_RXEN; + +	ret = smsc75xx_write_reg(dev, MAC_RX, buf); +	check_warn_return(ret, "Failed to write MAC_RX: %d", ret); + +	netif_dbg(dev, ifup, dev->net, "MAC_RX set to 0x%08x", buf); + +	ret = smsc75xx_read_reg(dev, FCT_RX_CTL, &buf); +	check_warn_return(ret, "Failed to read FCT_RX_CTL: %d", ret); + +	buf |= FCT_RX_CTL_EN; + +	ret = smsc75xx_write_reg(dev, FCT_RX_CTL, buf); +	check_warn_return(ret, "Failed to write FCT_RX_CTL: %d", ret); + +	netif_dbg(dev, ifup, dev->net, "FCT_RX_CTL set to 0x%08x", buf); + +	netif_dbg(dev, ifup, dev->net, "smsc75xx_reset, return 0"); +	return 0; +} + +static const struct net_device_ops smsc75xx_netdev_ops = { +	.ndo_open		= usbnet_open, +	.ndo_stop		= usbnet_stop, +	.ndo_start_xmit		= usbnet_start_xmit, +	.ndo_tx_timeout		= usbnet_tx_timeout, +	.ndo_change_mtu		= smsc75xx_change_mtu, +	.ndo_set_mac_address 	= eth_mac_addr, +	.ndo_validate_addr	= eth_validate_addr, +	.ndo_do_ioctl 		= smsc75xx_ioctl, +	.ndo_set_multicast_list = smsc75xx_set_multicast, +}; + +static int smsc75xx_bind(struct usbnet *dev, struct usb_interface *intf) +{ +	struct smsc75xx_priv *pdata = NULL; +	int ret; + +	printk(KERN_INFO SMSC_CHIPNAME " v" SMSC_DRIVER_VERSION "\n"); + +	ret = usbnet_get_endpoints(dev, intf); +	check_warn_return(ret, "usbnet_get_endpoints failed: %d", ret); + +	dev->data[0] = (unsigned long)kzalloc(sizeof(struct smsc75xx_priv), +		GFP_KERNEL); + +	pdata = (struct smsc75xx_priv *)(dev->data[0]); +	if (!pdata) { +		netdev_warn(dev->net, "Unable to allocate smsc75xx_priv"); +		return -ENOMEM; +	} + +	pdata->dev = dev; + +	spin_lock_init(&pdata->rfe_ctl_lock); +	mutex_init(&pdata->dataport_mutex); + +	INIT_WORK(&pdata->set_multicast, smsc75xx_deferred_multicast_write); + +	pdata->use_rx_csum = DEFAULT_RX_CSUM_ENABLE; + +	/* We have to advertise SG otherwise TSO cannot be enabled */ +	dev->net->features |= NETIF_F_SG; + +	/* Init all registers */ +	ret = smsc75xx_reset(dev); + +	dev->net->netdev_ops = &smsc75xx_netdev_ops; +	dev->net->ethtool_ops = &smsc75xx_ethtool_ops; +	dev->net->flags |= IFF_MULTICAST; +	dev->net->hard_header_len += SMSC75XX_TX_OVERHEAD; +	return 0; +} + +static void smsc75xx_unbind(struct usbnet *dev, struct usb_interface *intf) +{ +	struct smsc75xx_priv *pdata = (struct smsc75xx_priv *)(dev->data[0]); +	if (pdata) { +		netif_dbg(dev, ifdown, dev->net, "free pdata"); +		kfree(pdata); +		pdata = NULL; +		dev->data[0] = 0; +	} +} + +static void smsc75xx_rx_csum_offload(struct sk_buff *skb, u32 rx_cmd_a, +				     u32 rx_cmd_b) +{ +	if (unlikely(rx_cmd_a & RX_CMD_A_LCSM)) { +		skb->ip_summed = CHECKSUM_NONE; +	} else { +		skb->csum = ntohs((u16)(rx_cmd_b >> RX_CMD_B_CSUM_SHIFT)); +		skb->ip_summed = CHECKSUM_COMPLETE; +	} +} + +static int smsc75xx_rx_fixup(struct usbnet *dev, struct sk_buff *skb) +{ +	struct smsc75xx_priv *pdata = (struct smsc75xx_priv *)(dev->data[0]); + +	while (skb->len > 0) { +		u32 rx_cmd_a, rx_cmd_b, align_count, size; +		struct sk_buff *ax_skb; +		unsigned char *packet; + +		memcpy(&rx_cmd_a, skb->data, sizeof(rx_cmd_a)); +		le32_to_cpus(&rx_cmd_a); +		skb_pull(skb, 4); + +		memcpy(&rx_cmd_b, skb->data, sizeof(rx_cmd_b)); +		le32_to_cpus(&rx_cmd_b); +		skb_pull(skb, 4 + NET_IP_ALIGN); + +		packet = skb->data; + +		/* get the packet length */ +		size = (rx_cmd_a & RX_CMD_A_LEN) - NET_IP_ALIGN; +		align_count = (4 - ((size + NET_IP_ALIGN) % 4)) % 4; + +		if (unlikely(rx_cmd_a & RX_CMD_A_RED)) { +			netif_dbg(dev, rx_err, dev->net, +				"Error rx_cmd_a=0x%08x", rx_cmd_a); +			dev->net->stats.rx_errors++; +			dev->net->stats.rx_dropped++; + +			if (rx_cmd_a & RX_CMD_A_FCS) +				dev->net->stats.rx_crc_errors++; +			else if (rx_cmd_a & (RX_CMD_A_LONG | RX_CMD_A_RUNT)) +				dev->net->stats.rx_frame_errors++; +		} else { +			/* ETH_FRAME_LEN + 4(CRC) + 2(COE) + 4(Vlan) */ +			if (unlikely(size > (ETH_FRAME_LEN + 12))) { +				netif_dbg(dev, rx_err, dev->net, +					"size err rx_cmd_a=0x%08x", rx_cmd_a); +				return 0; +			} + +			/* last frame in this batch */ +			if (skb->len == size) { +				if (pdata->use_rx_csum) +					smsc75xx_rx_csum_offload(skb, rx_cmd_a, +						rx_cmd_b); +				else +					skb->ip_summed = CHECKSUM_NONE; + +				skb_trim(skb, skb->len - 4); /* remove fcs */ +				skb->truesize = size + sizeof(struct sk_buff); + +				return 1; +			} + +			ax_skb = skb_clone(skb, GFP_ATOMIC); +			if (unlikely(!ax_skb)) { +				netdev_warn(dev->net, "Error allocating skb"); +				return 0; +			} + +			ax_skb->len = size; +			ax_skb->data = packet; +			skb_set_tail_pointer(ax_skb, size); + +			if (pdata->use_rx_csum) +				smsc75xx_rx_csum_offload(ax_skb, rx_cmd_a, +					rx_cmd_b); +			else +				ax_skb->ip_summed = CHECKSUM_NONE; + +			skb_trim(ax_skb, ax_skb->len - 4); /* remove fcs */ +			ax_skb->truesize = size + sizeof(struct sk_buff); + +			usbnet_skb_return(dev, ax_skb); +		} + +		skb_pull(skb, size); + +		/* padding bytes before the next frame starts */ +		if (skb->len) +			skb_pull(skb, align_count); +	} + +	if (unlikely(skb->len < 0)) { +		netdev_warn(dev->net, "invalid rx length<0 %d", skb->len); +		return 0; +	} + +	return 1; +} + +static struct sk_buff *smsc75xx_tx_fixup(struct usbnet *dev, +					 struct sk_buff *skb, gfp_t flags) +{ +	u32 tx_cmd_a, tx_cmd_b; + +	skb_linearize(skb); + +	if (skb_headroom(skb) < SMSC75XX_TX_OVERHEAD) { +		struct sk_buff *skb2 = +			skb_copy_expand(skb, SMSC75XX_TX_OVERHEAD, 0, flags); +		dev_kfree_skb_any(skb); +		skb = skb2; +		if (!skb) +			return NULL; +	} + +	tx_cmd_a = (u32)(skb->len & TX_CMD_A_LEN) | TX_CMD_A_FCS; + +	if (skb->ip_summed == CHECKSUM_PARTIAL) +		tx_cmd_a |= TX_CMD_A_IPE | TX_CMD_A_TPE; + +	if (skb_is_gso(skb)) { +		u16 mss = max(skb_shinfo(skb)->gso_size, TX_MSS_MIN); +		tx_cmd_b = (mss << TX_CMD_B_MSS_SHIFT) & TX_CMD_B_MSS; + +		tx_cmd_a |= TX_CMD_A_LSO; +	} else { +		tx_cmd_b = 0; +	} + +	skb_push(skb, 4); +	cpu_to_le32s(&tx_cmd_b); +	memcpy(skb->data, &tx_cmd_b, 4); + +	skb_push(skb, 4); +	cpu_to_le32s(&tx_cmd_a); +	memcpy(skb->data, &tx_cmd_a, 4); + +	return skb; +} + +static const struct driver_info smsc75xx_info = { +	.description	= "smsc75xx USB 2.0 Gigabit Ethernet", +	.bind		= smsc75xx_bind, +	.unbind		= smsc75xx_unbind, +	.link_reset	= smsc75xx_link_reset, +	.reset		= smsc75xx_reset, +	.rx_fixup	= smsc75xx_rx_fixup, +	.tx_fixup	= smsc75xx_tx_fixup, +	.status		= smsc75xx_status, +	.flags		= FLAG_ETHER | FLAG_SEND_ZLP, +}; + +static const struct usb_device_id products[] = { +	{ +		/* SMSC7500 USB Gigabit Ethernet Device */ +		USB_DEVICE(USB_VENDOR_ID_SMSC, USB_PRODUCT_ID_LAN7500), +		.driver_info = (unsigned long) &smsc75xx_info, +	}, +	{ +		/* SMSC7500 USB Gigabit Ethernet Device */ +		USB_DEVICE(USB_VENDOR_ID_SMSC, USB_PRODUCT_ID_LAN7505), +		.driver_info = (unsigned long) &smsc75xx_info, +	}, +	{ },		/* END */ +}; +MODULE_DEVICE_TABLE(usb, products); + +static struct usb_driver smsc75xx_driver = { +	.name		= SMSC_CHIPNAME, +	.id_table	= products, +	.probe		= usbnet_probe, +	.suspend	= usbnet_suspend, +	.resume		= usbnet_resume, +	.disconnect	= usbnet_disconnect, +}; + +static int __init smsc75xx_init(void) +{ +	return usb_register(&smsc75xx_driver); +} +module_init(smsc75xx_init); + +static void __exit smsc75xx_exit(void) +{ +	usb_deregister(&smsc75xx_driver); +} +module_exit(smsc75xx_exit); + +MODULE_AUTHOR("Nancy Lin"); +MODULE_AUTHOR("Steve Glendinning <steve.glendinning@smsc.com>"); +MODULE_DESCRIPTION("SMSC75XX USB 2.0 Gigabit Ethernet Devices"); +MODULE_LICENSE("GPL"); diff --git a/drivers/net/usb/smsc75xx.h b/drivers/net/usb/smsc75xx.h new file mode 100644 index 00000000000..16e98c77834 --- /dev/null +++ b/drivers/net/usb/smsc75xx.h @@ -0,0 +1,421 @@ + /*************************************************************************** + * + * Copyright (C) 2007-2010 SMSC + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. + * + *****************************************************************************/ + +#ifndef _SMSC75XX_H +#define _SMSC75XX_H + +/* Tx command words */ +#define TX_CMD_A_LSO			(0x08000000) +#define TX_CMD_A_IPE			(0x04000000) +#define TX_CMD_A_TPE			(0x02000000) +#define TX_CMD_A_IVTG			(0x01000000) +#define TX_CMD_A_RVTG			(0x00800000) +#define TX_CMD_A_FCS			(0x00400000) +#define TX_CMD_A_LEN			(0x000FFFFF) + +#define TX_CMD_B_MSS			(0x3FFF0000) +#define TX_CMD_B_MSS_SHIFT		(16) +#define TX_MSS_MIN			((u16)8) +#define TX_CMD_B_VTAG			(0x0000FFFF) + +/* Rx command words */ +#define RX_CMD_A_ICE			(0x80000000) +#define RX_CMD_A_TCE			(0x40000000) +#define RX_CMD_A_IPV			(0x20000000) +#define RX_CMD_A_PID			(0x18000000) +#define RX_CMD_A_PID_NIP		(0x00000000) +#define RX_CMD_A_PID_TCP		(0x08000000) +#define RX_CMD_A_PID_UDP		(0x10000000) +#define RX_CMD_A_PID_PP			(0x18000000) +#define RX_CMD_A_PFF			(0x04000000) +#define RX_CMD_A_BAM			(0x02000000) +#define RX_CMD_A_MAM			(0x01000000) +#define RX_CMD_A_FVTG			(0x00800000) +#define RX_CMD_A_RED			(0x00400000) +#define RX_CMD_A_RWT			(0x00200000) +#define RX_CMD_A_RUNT			(0x00100000) +#define RX_CMD_A_LONG			(0x00080000) +#define RX_CMD_A_RXE			(0x00040000) +#define RX_CMD_A_DRB			(0x00020000) +#define RX_CMD_A_FCS			(0x00010000) +#define RX_CMD_A_UAM			(0x00008000) +#define RX_CMD_A_LCSM			(0x00004000) +#define RX_CMD_A_LEN			(0x00003FFF) + +#define RX_CMD_B_CSUM			(0xFFFF0000) +#define RX_CMD_B_CSUM_SHIFT		(16) +#define RX_CMD_B_VTAG			(0x0000FFFF) + +/* SCSRs */ +#define ID_REV				(0x0000) + +#define FPGA_REV			(0x0004) + +#define BOND_CTL			(0x0008) + +#define INT_STS				(0x000C) +#define INT_STS_RDFO_INT		(0x00400000) +#define INT_STS_TXE_INT			(0x00200000) +#define INT_STS_MACRTO_INT		(0x00100000) +#define INT_STS_TX_DIS_INT		(0x00080000) +#define INT_STS_RX_DIS_INT		(0x00040000) +#define INT_STS_PHY_INT_		(0x00020000) +#define INT_STS_MAC_ERR_INT		(0x00008000) +#define INT_STS_TDFU			(0x00004000) +#define INT_STS_TDFO			(0x00002000) +#define INT_STS_GPIOS			(0x00000FFF) +#define INT_STS_CLEAR_ALL		(0xFFFFFFFF) + +#define HW_CFG				(0x0010) +#define HW_CFG_SMDET_STS		(0x00008000) +#define HW_CFG_SMDET_EN			(0x00004000) +#define HW_CFG_EEM			(0x00002000) +#define HW_CFG_RST_PROTECT		(0x00001000) +#define HW_CFG_PORT_SWAP		(0x00000800) +#define HW_CFG_PHY_BOOST		(0x00000600) +#define HW_CFG_PHY_BOOST_NORMAL		(0x00000000) +#define HW_CFG_PHY_BOOST_4		(0x00002000) +#define HW_CFG_PHY_BOOST_8		(0x00004000) +#define HW_CFG_PHY_BOOST_12		(0x00006000) +#define HW_CFG_LEDB			(0x00000100) +#define HW_CFG_BIR			(0x00000080) +#define HW_CFG_SBP			(0x00000040) +#define HW_CFG_IME			(0x00000020) +#define HW_CFG_MEF			(0x00000010) +#define HW_CFG_ETC			(0x00000008) +#define HW_CFG_BCE			(0x00000004) +#define HW_CFG_LRST			(0x00000002) +#define HW_CFG_SRST			(0x00000001) + +#define PMT_CTL				(0x0014) +#define PMT_CTL_PHY_PWRUP		(0x00000400) +#define PMT_CTL_RES_CLR_WKP_EN		(0x00000100) +#define PMT_CTL_DEV_RDY			(0x00000080) +#define PMT_CTL_SUS_MODE		(0x00000060) +#define PMT_CTL_SUS_MODE_0		(0x00000000) +#define PMT_CTL_SUS_MODE_1		(0x00000020) +#define PMT_CTL_SUS_MODE_2		(0x00000040) +#define PMT_CTL_SUS_MODE_3		(0x00000060) +#define PMT_CTL_PHY_RST			(0x00000010) +#define PMT_CTL_WOL_EN			(0x00000008) +#define PMT_CTL_ED_EN			(0x00000004) +#define PMT_CTL_WUPS			(0x00000003) +#define PMT_CTL_WUPS_NO			(0x00000000) +#define PMT_CTL_WUPS_ED			(0x00000001) +#define PMT_CTL_WUPS_WOL		(0x00000002) +#define PMT_CTL_WUPS_MULTI		(0x00000003) + +#define LED_GPIO_CFG			(0x0018) +#define LED_GPIO_CFG_LED2_FUN_SEL	(0x80000000) +#define LED_GPIO_CFG_LED10_FUN_SEL	(0x40000000) +#define LED_GPIO_CFG_LEDGPIO_EN		(0x0000F000) +#define LED_GPIO_CFG_LEDGPIO_EN_0	(0x00001000) +#define LED_GPIO_CFG_LEDGPIO_EN_1	(0x00002000) +#define LED_GPIO_CFG_LEDGPIO_EN_2	(0x00004000) +#define LED_GPIO_CFG_LEDGPIO_EN_3	(0x00008000) +#define LED_GPIO_CFG_GPBUF		(0x00000F00) +#define LED_GPIO_CFG_GPBUF_0		(0x00000100) +#define LED_GPIO_CFG_GPBUF_1		(0x00000200) +#define LED_GPIO_CFG_GPBUF_2		(0x00000400) +#define LED_GPIO_CFG_GPBUF_3		(0x00000800) +#define LED_GPIO_CFG_GPDIR		(0x000000F0) +#define LED_GPIO_CFG_GPDIR_0		(0x00000010) +#define LED_GPIO_CFG_GPDIR_1		(0x00000020) +#define LED_GPIO_CFG_GPDIR_2		(0x00000040) +#define LED_GPIO_CFG_GPDIR_3		(0x00000080) +#define LED_GPIO_CFG_GPDATA		(0x0000000F) +#define LED_GPIO_CFG_GPDATA_0		(0x00000001) +#define LED_GPIO_CFG_GPDATA_1		(0x00000002) +#define LED_GPIO_CFG_GPDATA_2		(0x00000004) +#define LED_GPIO_CFG_GPDATA_3		(0x00000008) + +#define GPIO_CFG			(0x001C) +#define GPIO_CFG_SHIFT			(24) +#define GPIO_CFG_GPEN			(0xFF000000) +#define GPIO_CFG_GPBUF			(0x00FF0000) +#define GPIO_CFG_GPDIR			(0x0000FF00) +#define GPIO_CFG_GPDATA			(0x000000FF) + +#define GPIO_WAKE			(0x0020) +#define GPIO_WAKE_PHY_LINKUP_EN		(0x80000000) +#define GPIO_WAKE_POL			(0x0FFF0000) +#define GPIO_WAKE_POL_SHIFT		(16) +#define GPIO_WAKE_WK			(0x00000FFF) + +#define DP_SEL				(0x0024) +#define DP_SEL_DPRDY			(0x80000000) +#define DP_SEL_RSEL			(0x0000000F) +#define DP_SEL_URX			(0x00000000) +#define DP_SEL_VHF			(0x00000001) +#define DP_SEL_VHF_HASH_LEN		(16) +#define DP_SEL_VHF_VLAN_LEN		(128) +#define DP_SEL_LSO_HEAD			(0x00000002) +#define DP_SEL_FCT_RX			(0x00000003) +#define DP_SEL_FCT_TX			(0x00000004) +#define DP_SEL_DESCRIPTOR		(0x00000005) +#define DP_SEL_WOL			(0x00000006) + +#define DP_CMD				(0x0028) +#define DP_CMD_WRITE			(0x01) +#define DP_CMD_READ			(0x00) + +#define DP_ADDR				(0x002C) + +#define DP_DATA				(0x0030) + +#define BURST_CAP			(0x0034) +#define BURST_CAP_MASK			(0x0000000F) + +#define INT_EP_CTL			(0x0038) +#define INT_EP_CTL_INTEP_ON		(0x80000000) +#define INT_EP_CTL_RDFO_EN		(0x00400000) +#define INT_EP_CTL_TXE_EN		(0x00200000) +#define INT_EP_CTL_MACROTO_EN		(0x00100000) +#define INT_EP_CTL_TX_DIS_EN		(0x00080000) +#define INT_EP_CTL_RX_DIS_EN		(0x00040000) +#define INT_EP_CTL_PHY_EN_		(0x00020000) +#define INT_EP_CTL_MAC_ERR_EN		(0x00008000) +#define INT_EP_CTL_TDFU_EN		(0x00004000) +#define INT_EP_CTL_TDFO_EN		(0x00002000) +#define INT_EP_CTL_RX_FIFO_EN		(0x00001000) +#define INT_EP_CTL_GPIOX_EN		(0x00000FFF) + +#define BULK_IN_DLY			(0x003C) +#define BULK_IN_DLY_MASK		(0xFFFF) + +#define E2P_CMD				(0x0040) +#define E2P_CMD_BUSY			(0x80000000) +#define E2P_CMD_MASK			(0x70000000) +#define E2P_CMD_READ			(0x00000000) +#define E2P_CMD_EWDS			(0x10000000) +#define E2P_CMD_EWEN			(0x20000000) +#define E2P_CMD_WRITE			(0x30000000) +#define E2P_CMD_WRAL			(0x40000000) +#define E2P_CMD_ERASE			(0x50000000) +#define E2P_CMD_ERAL			(0x60000000) +#define E2P_CMD_RELOAD			(0x70000000) +#define E2P_CMD_TIMEOUT			(0x00000400) +#define E2P_CMD_LOADED			(0x00000200) +#define E2P_CMD_ADDR			(0x000001FF) + +#define MAX_EEPROM_SIZE			(512) + +#define E2P_DATA			(0x0044) +#define E2P_DATA_MASK_			(0x000000FF) + +#define RFE_CTL				(0x0060) +#define RFE_CTL_TCPUDP_CKM		(0x00001000) +#define RFE_CTL_IP_CKM			(0x00000800) +#define RFE_CTL_AB			(0x00000400) +#define RFE_CTL_AM			(0x00000200) +#define RFE_CTL_AU			(0x00000100) +#define RFE_CTL_VS			(0x00000080) +#define RFE_CTL_UF			(0x00000040) +#define RFE_CTL_VF			(0x00000020) +#define RFE_CTL_SPF			(0x00000010) +#define RFE_CTL_MHF			(0x00000008) +#define RFE_CTL_DHF			(0x00000004) +#define RFE_CTL_DPF			(0x00000002) +#define RFE_CTL_RST_RF			(0x00000001) + +#define VLAN_TYPE			(0x0064) +#define VLAN_TYPE_MASK			(0x0000FFFF) + +#define FCT_RX_CTL			(0x0090) +#define FCT_RX_CTL_EN			(0x80000000) +#define FCT_RX_CTL_RST			(0x40000000) +#define FCT_RX_CTL_SBF			(0x02000000) +#define FCT_RX_CTL_OVERFLOW		(0x01000000) +#define FCT_RX_CTL_FRM_DROP		(0x00800000) +#define FCT_RX_CTL_RX_NOT_EMPTY		(0x00400000) +#define FCT_RX_CTL_RX_EMPTY		(0x00200000) +#define FCT_RX_CTL_RX_DISABLED		(0x00100000) +#define FCT_RX_CTL_RXUSED		(0x0000FFFF) + +#define FCT_TX_CTL			(0x0094) +#define FCT_TX_CTL_EN			(0x80000000) +#define FCT_TX_CTL_RST			(0x40000000) +#define FCT_TX_CTL_TX_NOT_EMPTY		(0x00400000) +#define FCT_TX_CTL_TX_EMPTY		(0x00200000) +#define FCT_TX_CTL_TX_DISABLED		(0x00100000) +#define FCT_TX_CTL_TXUSED		(0x0000FFFF) + +#define FCT_RX_FIFO_END			(0x0098) +#define FCT_RX_FIFO_END_MASK		(0x0000007F) + +#define FCT_TX_FIFO_END			(0x009C) +#define FCT_TX_FIFO_END_MASK		(0x0000003F) + +#define FCT_FLOW			(0x00A0) +#define FCT_FLOW_THRESHOLD_OFF		(0x00007F00) +#define FCT_FLOW_THRESHOLD_OFF_SHIFT	(8) +#define FCT_FLOW_THRESHOLD_ON		(0x0000007F) + +/* MAC CSRs */ +#define MAC_CR				(0x100) +#define MAC_CR_ADP			(0x00002000) +#define MAC_CR_ADD			(0x00001000) +#define MAC_CR_ASD			(0x00000800) +#define MAC_CR_INT_LOOP			(0x00000400) +#define MAC_CR_BOLMT			(0x000000C0) +#define MAC_CR_FDPX			(0x00000008) +#define MAC_CR_CFG			(0x00000006) +#define MAC_CR_CFG_10			(0x00000000) +#define MAC_CR_CFG_100			(0x00000002) +#define MAC_CR_CFG_1000			(0x00000004) +#define MAC_CR_RST			(0x00000001) + +#define MAC_RX				(0x104) +#define MAC_RX_MAX_SIZE			(0x3FFF0000) +#define MAC_RX_MAX_SIZE_SHIFT		(16) +#define MAC_RX_FCS_STRIP		(0x00000010) +#define MAC_RX_FSE			(0x00000004) +#define MAC_RX_RXD			(0x00000002) +#define MAC_RX_RXEN			(0x00000001) + +#define MAC_TX				(0x108) +#define MAC_TX_BFCS			(0x00000004) +#define MAC_TX_TXD			(0x00000002) +#define MAC_TX_TXEN			(0x00000001) + +#define FLOW				(0x10C) +#define FLOW_FORCE_FC			(0x80000000) +#define FLOW_TX_FCEN			(0x40000000) +#define FLOW_RX_FCEN			(0x20000000) +#define FLOW_FPF			(0x10000000) +#define FLOW_PAUSE_TIME			(0x0000FFFF) + +#define RAND_SEED			(0x110) +#define RAND_SEED_MASK			(0x0000FFFF) + +#define ERR_STS				(0x114) +#define ERR_STS_FCS_ERR			(0x00000100) +#define ERR_STS_LFRM_ERR		(0x00000080) +#define ERR_STS_RUNT_ERR		(0x00000040) +#define ERR_STS_COLLISION_ERR		(0x00000010) +#define ERR_STS_ALIGN_ERR		(0x00000008) +#define ERR_STS_URUN_ERR		(0x00000004) + +#define RX_ADDRH			(0x118) +#define RX_ADDRH_MASK			(0x0000FFFF) + +#define RX_ADDRL			(0x11C) + +#define MII_ACCESS			(0x120) +#define MII_ACCESS_PHY_ADDR		(0x0000F800) +#define MII_ACCESS_PHY_ADDR_SHIFT	(11) +#define MII_ACCESS_REG_ADDR		(0x000007C0) +#define MII_ACCESS_REG_ADDR_SHIFT	(6) +#define MII_ACCESS_READ			(0x00000000) +#define MII_ACCESS_WRITE		(0x00000002) +#define MII_ACCESS_BUSY			(0x00000001) + +#define MII_DATA			(0x124) +#define MII_DATA_MASK			(0x0000FFFF) + +#define WUCSR				(0x140) +#define WUCSR_PFDA_FR			(0x00000080) +#define WUCSR_WUFR			(0x00000040) +#define WUCSR_MPR			(0x00000020) +#define WUCSR_BCAST_FR			(0x00000010) +#define WUCSR_PFDA_EN			(0x00000008) +#define WUCSR_WUEN			(0x00000004) +#define WUCSR_MPEN			(0x00000002) +#define WUCSR_BCST_EN			(0x00000001) + +#define WUF_CFGX			(0x144) +#define WUF_CFGX_EN			(0x80000000) +#define WUF_CFGX_ATYPE			(0x03000000) +#define WUF_CFGX_ATYPE_UNICAST		(0x00000000) +#define WUF_CFGX_ATYPE_MULTICAST	(0x02000000) +#define WUF_CFGX_ATYPE_ALL		(0x03000000) +#define WUF_CFGX_PATTERN_OFFSET		(0x007F0000) +#define WUF_CFGX_PATTERN_OFFSET_SHIFT	(16) +#define WUF_CFGX_CRC16			(0x0000FFFF) +#define WUF_NUM				(8) + +#define WUF_MASKX			(0x170) +#define WUF_MASKX_AVALID		(0x80000000) +#define WUF_MASKX_ATYPE			(0x40000000) + +#define ADDR_FILTX			(0x300) +#define ADDR_FILTX_FB_VALID		(0x80000000) +#define ADDR_FILTX_FB_TYPE		(0x40000000) +#define ADDR_FILTX_FB_ADDRHI		(0x0000FFFF) +#define ADDR_FILTX_SB_ADDRLO		(0xFFFFFFFF) + +#define WUCSR2				(0x500) +#define WUCSR2_NS_RCD			(0x00000040) +#define WUCSR2_ARP_RCD			(0x00000020) +#define WUCSR2_TCPSYN_RCD		(0x00000010) +#define WUCSR2_NS_OFFLOAD		(0x00000004) +#define WUCSR2_ARP_OFFLOAD		(0x00000002) +#define WUCSR2_TCPSYN_OFFLOAD		(0x00000001) + +#define WOL_FIFO_STS			(0x504) + +#define IPV6_ADDRX			(0x510) + +#define IPV4_ADDRX			(0x590) + + +/* Vendor-specific PHY Definitions */ + +/* Mode Control/Status Register */ +#define PHY_MODE_CTRL_STS		(17) +#define MODE_CTRL_STS_EDPWRDOWN		((u16)0x2000) +#define MODE_CTRL_STS_ENERGYON		((u16)0x0002) + +#define PHY_INT_SRC			(29) +#define PHY_INT_SRC_ENERGY_ON		((u16)0x0080) +#define PHY_INT_SRC_ANEG_COMP		((u16)0x0040) +#define PHY_INT_SRC_REMOTE_FAULT	((u16)0x0020) +#define PHY_INT_SRC_LINK_DOWN		((u16)0x0010) + +#define PHY_INT_MASK			(30) +#define PHY_INT_MASK_ENERGY_ON		((u16)0x0080) +#define PHY_INT_MASK_ANEG_COMP		((u16)0x0040) +#define PHY_INT_MASK_REMOTE_FAULT	((u16)0x0020) +#define PHY_INT_MASK_LINK_DOWN		((u16)0x0010) +#define PHY_INT_MASK_DEFAULT		(PHY_INT_MASK_ANEG_COMP | \ +					 PHY_INT_MASK_LINK_DOWN) + +#define PHY_SPECIAL			(31) +#define PHY_SPECIAL_SPD			((u16)0x001C) +#define PHY_SPECIAL_SPD_10HALF		((u16)0x0004) +#define PHY_SPECIAL_SPD_10FULL		((u16)0x0014) +#define PHY_SPECIAL_SPD_100HALF		((u16)0x0008) +#define PHY_SPECIAL_SPD_100FULL		((u16)0x0018) + +/* USB Vendor Requests */ +#define USB_VENDOR_REQUEST_WRITE_REGISTER	0xA0 +#define USB_VENDOR_REQUEST_READ_REGISTER	0xA1 +#define USB_VENDOR_REQUEST_GET_STATS		0xA2 + +/* Interrupt Endpoint status word bitfields */ +#define INT_ENP_RDFO_INT		((u32)BIT(22)) +#define INT_ENP_TXE_INT			((u32)BIT(21)) +#define INT_ENP_TX_DIS_INT		((u32)BIT(19)) +#define INT_ENP_RX_DIS_INT		((u32)BIT(18)) +#define INT_ENP_PHY_INT			((u32)BIT(17)) +#define INT_ENP_MAC_ERR_INT		((u32)BIT(15)) +#define INT_ENP_RX_FIFO_DATA_INT	((u32)BIT(12)) + +#endif /* _SMSC75XX_H */ diff --git a/drivers/net/usb/smsc95xx.c b/drivers/net/usb/smsc95xx.c index df9179a1c93..3135af63d37 100644 --- a/drivers/net/usb/smsc95xx.c +++ b/drivers/net/usb/smsc95xx.c @@ -28,6 +28,7 @@  #include <linux/usb.h>  #include <linux/crc32.h>  #include <linux/usb/usbnet.h> +#include <linux/slab.h>  #include "smsc95xx.h"  #define SMSC_CHIPNAME			"smsc95xx" @@ -709,6 +710,8 @@ static void smsc95xx_start_rx_path(struct usbnet *dev)  static int smsc95xx_phy_initialize(struct usbnet *dev)  { +	int bmcr, timeout = 0; +  	/* Initialize MII structure */  	dev->mii.dev = dev->net;  	dev->mii.mdio_read = smsc95xx_mdio_read; @@ -717,7 +720,20 @@ static int smsc95xx_phy_initialize(struct usbnet *dev)  	dev->mii.reg_num_mask = 0x1f;  	dev->mii.phy_id = SMSC95XX_INTERNAL_PHY_ID; +	/* reset phy and wait for reset to complete */  	smsc95xx_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET); + +	do { +		msleep(10); +		bmcr = smsc95xx_mdio_read(dev->net, dev->mii.phy_id, MII_BMCR); +		timeout++; +	} while ((bmcr & MII_BMCR) && (timeout < 100)); + +	if (timeout >= 100) { +		netdev_warn(dev->net, "timeout on PHY Reset"); +		return -EIO; +	} +  	smsc95xx_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,  		ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP |  		ADVERTISE_PAUSE_ASYM); @@ -1174,9 +1190,21 @@ static struct sk_buff *smsc95xx_tx_fixup(struct usbnet *dev,  	}  	if (csum) { -		u32 csum_preamble = smsc95xx_calc_csum_preamble(skb); -		skb_push(skb, 4); -		memcpy(skb->data, &csum_preamble, 4); +		if (skb->len <= 45) { +			/* workaround - hardware tx checksum does not work +			 * properly with extremely small packets */ +			long csstart = skb->csum_start - skb_headroom(skb); +			__wsum calc = csum_partial(skb->data + csstart, +				skb->len - csstart, 0); +			*((__sum16 *)(skb->data + csstart +				+ skb->csum_offset)) = csum_fold(calc); + +			csum = false; +		} else { +			u32 csum_preamble = smsc95xx_calc_csum_preamble(skb); +			skb_push(skb, 4); +			memcpy(skb->data, &csum_preamble, 4); +		}  	}  	skb_push(skb, 4); diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c index 17b6a62d206..7177abc78dc 100644 --- a/drivers/net/usb/usbnet.c +++ b/drivers/net/usb/usbnet.c @@ -43,6 +43,7 @@  #include <linux/mii.h>  #include <linux/usb.h>  #include <linux/usb/usbnet.h> +#include <linux/slab.h>  #define DRIVER_VERSION		"22-Aug-2005"  |