xref: /openbmc/linux/drivers/net/usb/smsc95xx.c (revision d632eb1bf22e11def74e4e53cc47d790fbdba105)
12f7ca802SSteve Glendinning  /***************************************************************************
22f7ca802SSteve Glendinning  *
32f7ca802SSteve Glendinning  * Copyright (C) 2007-2008 SMSC
42f7ca802SSteve Glendinning  *
52f7ca802SSteve Glendinning  * This program is free software; you can redistribute it and/or
62f7ca802SSteve Glendinning  * modify it under the terms of the GNU General Public License
72f7ca802SSteve Glendinning  * as published by the Free Software Foundation; either version 2
82f7ca802SSteve Glendinning  * of the License, or (at your option) any later version.
92f7ca802SSteve Glendinning  *
102f7ca802SSteve Glendinning  * This program is distributed in the hope that it will be useful,
112f7ca802SSteve Glendinning  * but WITHOUT ANY WARRANTY; without even the implied warranty of
122f7ca802SSteve Glendinning  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
132f7ca802SSteve Glendinning  * GNU General Public License for more details.
142f7ca802SSteve Glendinning  *
152f7ca802SSteve Glendinning  * You should have received a copy of the GNU General Public License
162f7ca802SSteve Glendinning  * along with this program; if not, write to the Free Software
172f7ca802SSteve Glendinning  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
182f7ca802SSteve Glendinning  *
192f7ca802SSteve Glendinning  *****************************************************************************/
202f7ca802SSteve Glendinning 
212f7ca802SSteve Glendinning #include <linux/module.h>
222f7ca802SSteve Glendinning #include <linux/kmod.h>
232f7ca802SSteve Glendinning #include <linux/init.h>
242f7ca802SSteve Glendinning #include <linux/netdevice.h>
252f7ca802SSteve Glendinning #include <linux/etherdevice.h>
262f7ca802SSteve Glendinning #include <linux/ethtool.h>
272f7ca802SSteve Glendinning #include <linux/mii.h>
282f7ca802SSteve Glendinning #include <linux/usb.h>
292f7ca802SSteve Glendinning #include <linux/crc32.h>
302f7ca802SSteve Glendinning #include <linux/usb/usbnet.h>
315a0e3ad6STejun Heo #include <linux/slab.h>
322f7ca802SSteve Glendinning #include "smsc95xx.h"
332f7ca802SSteve Glendinning 
342f7ca802SSteve Glendinning #define SMSC_CHIPNAME			"smsc95xx"
35f7b29271SSteve Glendinning #define SMSC_DRIVER_VERSION		"1.0.4"
362f7ca802SSteve Glendinning #define HS_USB_PKT_SIZE			(512)
372f7ca802SSteve Glendinning #define FS_USB_PKT_SIZE			(64)
382f7ca802SSteve Glendinning #define DEFAULT_HS_BURST_CAP_SIZE	(16 * 1024 + 5 * HS_USB_PKT_SIZE)
392f7ca802SSteve Glendinning #define DEFAULT_FS_BURST_CAP_SIZE	(6 * 1024 + 33 * FS_USB_PKT_SIZE)
402f7ca802SSteve Glendinning #define DEFAULT_BULK_IN_DELAY		(0x00002000)
412f7ca802SSteve Glendinning #define MAX_SINGLE_PACKET_SIZE		(2048)
422f7ca802SSteve Glendinning #define LAN95XX_EEPROM_MAGIC		(0x9500)
432f7ca802SSteve Glendinning #define EEPROM_MAC_OFFSET		(0x01)
44f7b29271SSteve Glendinning #define DEFAULT_TX_CSUM_ENABLE		(true)
452f7ca802SSteve Glendinning #define DEFAULT_RX_CSUM_ENABLE		(true)
462f7ca802SSteve Glendinning #define SMSC95XX_INTERNAL_PHY_ID	(1)
472f7ca802SSteve Glendinning #define SMSC95XX_TX_OVERHEAD		(8)
48f7b29271SSteve Glendinning #define SMSC95XX_TX_OVERHEAD_CSUM	(12)
492f7ca802SSteve Glendinning 
502f7ca802SSteve Glendinning struct smsc95xx_priv {
512f7ca802SSteve Glendinning 	u32 mac_cr;
523c0f3c60SMarc Zyngier 	u32 hash_hi;
533c0f3c60SMarc Zyngier 	u32 hash_lo;
542f7ca802SSteve Glendinning 	spinlock_t mac_cr_lock;
552f7ca802SSteve Glendinning };
562f7ca802SSteve Glendinning 
572f7ca802SSteve Glendinning struct usb_context {
582f7ca802SSteve Glendinning 	struct usb_ctrlrequest req;
592f7ca802SSteve Glendinning 	struct usbnet *dev;
602f7ca802SSteve Glendinning };
612f7ca802SSteve Glendinning 
620227abc9SHannes Eder static int turbo_mode = true;
632f7ca802SSteve Glendinning module_param(turbo_mode, bool, 0644);
642f7ca802SSteve Glendinning MODULE_PARM_DESC(turbo_mode, "Enable multiple frames per Rx transaction");
652f7ca802SSteve Glendinning 
662f7ca802SSteve Glendinning static int smsc95xx_read_reg(struct usbnet *dev, u32 index, u32 *data)
672f7ca802SSteve Glendinning {
682f7ca802SSteve Glendinning 	u32 *buf = kmalloc(4, GFP_KERNEL);
692f7ca802SSteve Glendinning 	int ret;
702f7ca802SSteve Glendinning 
712f7ca802SSteve Glendinning 	BUG_ON(!dev);
722f7ca802SSteve Glendinning 
732f7ca802SSteve Glendinning 	if (!buf)
742f7ca802SSteve Glendinning 		return -ENOMEM;
752f7ca802SSteve Glendinning 
762f7ca802SSteve Glendinning 	ret = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0),
772f7ca802SSteve Glendinning 		USB_VENDOR_REQUEST_READ_REGISTER,
782f7ca802SSteve Glendinning 		USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
792f7ca802SSteve Glendinning 		00, index, buf, 4, USB_CTRL_GET_TIMEOUT);
802f7ca802SSteve Glendinning 
812f7ca802SSteve Glendinning 	if (unlikely(ret < 0))
8260b86755SJoe Perches 		netdev_warn(dev->net, "Failed to read register index 0x%08x\n", index);
832f7ca802SSteve Glendinning 
842f7ca802SSteve Glendinning 	le32_to_cpus(buf);
852f7ca802SSteve Glendinning 	*data = *buf;
862f7ca802SSteve Glendinning 	kfree(buf);
872f7ca802SSteve Glendinning 
882f7ca802SSteve Glendinning 	return ret;
892f7ca802SSteve Glendinning }
902f7ca802SSteve Glendinning 
912f7ca802SSteve Glendinning static int smsc95xx_write_reg(struct usbnet *dev, u32 index, u32 data)
922f7ca802SSteve Glendinning {
932f7ca802SSteve Glendinning 	u32 *buf = kmalloc(4, GFP_KERNEL);
942f7ca802SSteve Glendinning 	int ret;
952f7ca802SSteve Glendinning 
962f7ca802SSteve Glendinning 	BUG_ON(!dev);
972f7ca802SSteve Glendinning 
982f7ca802SSteve Glendinning 	if (!buf)
992f7ca802SSteve Glendinning 		return -ENOMEM;
1002f7ca802SSteve Glendinning 
1012f7ca802SSteve Glendinning 	*buf = data;
1022f7ca802SSteve Glendinning 	cpu_to_le32s(buf);
1032f7ca802SSteve Glendinning 
1042f7ca802SSteve Glendinning 	ret = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0),
1052f7ca802SSteve Glendinning 		USB_VENDOR_REQUEST_WRITE_REGISTER,
1062f7ca802SSteve Glendinning 		USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
1072f7ca802SSteve Glendinning 		00, index, buf, 4, USB_CTRL_SET_TIMEOUT);
1082f7ca802SSteve Glendinning 
1092f7ca802SSteve Glendinning 	if (unlikely(ret < 0))
11060b86755SJoe Perches 		netdev_warn(dev->net, "Failed to write register index 0x%08x\n", index);
1112f7ca802SSteve Glendinning 
1122f7ca802SSteve Glendinning 	kfree(buf);
1132f7ca802SSteve Glendinning 
1142f7ca802SSteve Glendinning 	return ret;
1152f7ca802SSteve Glendinning }
1162f7ca802SSteve Glendinning 
1172f7ca802SSteve Glendinning /* Loop until the read is completed with timeout
1182f7ca802SSteve Glendinning  * called with phy_mutex held */
1192f7ca802SSteve Glendinning static int smsc95xx_phy_wait_not_busy(struct usbnet *dev)
1202f7ca802SSteve Glendinning {
1212f7ca802SSteve Glendinning 	unsigned long start_time = jiffies;
1222f7ca802SSteve Glendinning 	u32 val;
1232f7ca802SSteve Glendinning 
1242f7ca802SSteve Glendinning 	do {
1252f7ca802SSteve Glendinning 		smsc95xx_read_reg(dev, MII_ADDR, &val);
1262f7ca802SSteve Glendinning 		if (!(val & MII_BUSY_))
1272f7ca802SSteve Glendinning 			return 0;
1282f7ca802SSteve Glendinning 	} while (!time_after(jiffies, start_time + HZ));
1292f7ca802SSteve Glendinning 
1302f7ca802SSteve Glendinning 	return -EIO;
1312f7ca802SSteve Glendinning }
1322f7ca802SSteve Glendinning 
1332f7ca802SSteve Glendinning static int smsc95xx_mdio_read(struct net_device *netdev, int phy_id, int idx)
1342f7ca802SSteve Glendinning {
1352f7ca802SSteve Glendinning 	struct usbnet *dev = netdev_priv(netdev);
1362f7ca802SSteve Glendinning 	u32 val, addr;
1372f7ca802SSteve Glendinning 
1382f7ca802SSteve Glendinning 	mutex_lock(&dev->phy_mutex);
1392f7ca802SSteve Glendinning 
1402f7ca802SSteve Glendinning 	/* confirm MII not busy */
1412f7ca802SSteve Glendinning 	if (smsc95xx_phy_wait_not_busy(dev)) {
14260b86755SJoe Perches 		netdev_warn(dev->net, "MII is busy in smsc95xx_mdio_read\n");
1432f7ca802SSteve Glendinning 		mutex_unlock(&dev->phy_mutex);
1442f7ca802SSteve Glendinning 		return -EIO;
1452f7ca802SSteve Glendinning 	}
1462f7ca802SSteve Glendinning 
1472f7ca802SSteve Glendinning 	/* set the address, index & direction (read from PHY) */
1482f7ca802SSteve Glendinning 	phy_id &= dev->mii.phy_id_mask;
1492f7ca802SSteve Glendinning 	idx &= dev->mii.reg_num_mask;
1502f7ca802SSteve Glendinning 	addr = (phy_id << 11) | (idx << 6) | MII_READ_;
1512f7ca802SSteve Glendinning 	smsc95xx_write_reg(dev, MII_ADDR, addr);
1522f7ca802SSteve Glendinning 
1532f7ca802SSteve Glendinning 	if (smsc95xx_phy_wait_not_busy(dev)) {
15460b86755SJoe Perches 		netdev_warn(dev->net, "Timed out reading MII reg %02X\n", idx);
1552f7ca802SSteve Glendinning 		mutex_unlock(&dev->phy_mutex);
1562f7ca802SSteve Glendinning 		return -EIO;
1572f7ca802SSteve Glendinning 	}
1582f7ca802SSteve Glendinning 
1592f7ca802SSteve Glendinning 	smsc95xx_read_reg(dev, MII_DATA, &val);
1602f7ca802SSteve Glendinning 
1612f7ca802SSteve Glendinning 	mutex_unlock(&dev->phy_mutex);
1622f7ca802SSteve Glendinning 
1632f7ca802SSteve Glendinning 	return (u16)(val & 0xFFFF);
1642f7ca802SSteve Glendinning }
1652f7ca802SSteve Glendinning 
1662f7ca802SSteve Glendinning static void smsc95xx_mdio_write(struct net_device *netdev, int phy_id, int idx,
1672f7ca802SSteve Glendinning 				int regval)
1682f7ca802SSteve Glendinning {
1692f7ca802SSteve Glendinning 	struct usbnet *dev = netdev_priv(netdev);
1702f7ca802SSteve Glendinning 	u32 val, addr;
1712f7ca802SSteve Glendinning 
1722f7ca802SSteve Glendinning 	mutex_lock(&dev->phy_mutex);
1732f7ca802SSteve Glendinning 
1742f7ca802SSteve Glendinning 	/* confirm MII not busy */
1752f7ca802SSteve Glendinning 	if (smsc95xx_phy_wait_not_busy(dev)) {
17660b86755SJoe Perches 		netdev_warn(dev->net, "MII is busy in smsc95xx_mdio_write\n");
1772f7ca802SSteve Glendinning 		mutex_unlock(&dev->phy_mutex);
1782f7ca802SSteve Glendinning 		return;
1792f7ca802SSteve Glendinning 	}
1802f7ca802SSteve Glendinning 
1812f7ca802SSteve Glendinning 	val = regval;
1822f7ca802SSteve Glendinning 	smsc95xx_write_reg(dev, MII_DATA, val);
1832f7ca802SSteve Glendinning 
1842f7ca802SSteve Glendinning 	/* set the address, index & direction (write to PHY) */
1852f7ca802SSteve Glendinning 	phy_id &= dev->mii.phy_id_mask;
1862f7ca802SSteve Glendinning 	idx &= dev->mii.reg_num_mask;
1872f7ca802SSteve Glendinning 	addr = (phy_id << 11) | (idx << 6) | MII_WRITE_;
1882f7ca802SSteve Glendinning 	smsc95xx_write_reg(dev, MII_ADDR, addr);
1892f7ca802SSteve Glendinning 
1902f7ca802SSteve Glendinning 	if (smsc95xx_phy_wait_not_busy(dev))
19160b86755SJoe Perches 		netdev_warn(dev->net, "Timed out writing MII reg %02X\n", idx);
1922f7ca802SSteve Glendinning 
1932f7ca802SSteve Glendinning 	mutex_unlock(&dev->phy_mutex);
1942f7ca802SSteve Glendinning }
1952f7ca802SSteve Glendinning 
1962f7ca802SSteve Glendinning static int smsc95xx_wait_eeprom(struct usbnet *dev)
1972f7ca802SSteve Glendinning {
1982f7ca802SSteve Glendinning 	unsigned long start_time = jiffies;
1992f7ca802SSteve Glendinning 	u32 val;
2002f7ca802SSteve Glendinning 
2012f7ca802SSteve Glendinning 	do {
2022f7ca802SSteve Glendinning 		smsc95xx_read_reg(dev, E2P_CMD, &val);
2032f7ca802SSteve Glendinning 		if (!(val & E2P_CMD_BUSY_) || (val & E2P_CMD_TIMEOUT_))
2042f7ca802SSteve Glendinning 			break;
2052f7ca802SSteve Glendinning 		udelay(40);
2062f7ca802SSteve Glendinning 	} while (!time_after(jiffies, start_time + HZ));
2072f7ca802SSteve Glendinning 
2082f7ca802SSteve Glendinning 	if (val & (E2P_CMD_TIMEOUT_ | E2P_CMD_BUSY_)) {
20960b86755SJoe Perches 		netdev_warn(dev->net, "EEPROM read operation timeout\n");
2102f7ca802SSteve Glendinning 		return -EIO;
2112f7ca802SSteve Glendinning 	}
2122f7ca802SSteve Glendinning 
2132f7ca802SSteve Glendinning 	return 0;
2142f7ca802SSteve Glendinning }
2152f7ca802SSteve Glendinning 
2162f7ca802SSteve Glendinning static int smsc95xx_eeprom_confirm_not_busy(struct usbnet *dev)
2172f7ca802SSteve Glendinning {
2182f7ca802SSteve Glendinning 	unsigned long start_time = jiffies;
2192f7ca802SSteve Glendinning 	u32 val;
2202f7ca802SSteve Glendinning 
2212f7ca802SSteve Glendinning 	do {
2222f7ca802SSteve Glendinning 		smsc95xx_read_reg(dev, E2P_CMD, &val);
2232f7ca802SSteve Glendinning 
2242f7ca802SSteve Glendinning 		if (!(val & E2P_CMD_BUSY_))
2252f7ca802SSteve Glendinning 			return 0;
2262f7ca802SSteve Glendinning 
2272f7ca802SSteve Glendinning 		udelay(40);
2282f7ca802SSteve Glendinning 	} while (!time_after(jiffies, start_time + HZ));
2292f7ca802SSteve Glendinning 
23060b86755SJoe Perches 	netdev_warn(dev->net, "EEPROM is busy\n");
2312f7ca802SSteve Glendinning 	return -EIO;
2322f7ca802SSteve Glendinning }
2332f7ca802SSteve Glendinning 
2342f7ca802SSteve Glendinning static int smsc95xx_read_eeprom(struct usbnet *dev, u32 offset, u32 length,
2352f7ca802SSteve Glendinning 				u8 *data)
2362f7ca802SSteve Glendinning {
2372f7ca802SSteve Glendinning 	u32 val;
2382f7ca802SSteve Glendinning 	int i, ret;
2392f7ca802SSteve Glendinning 
2402f7ca802SSteve Glendinning 	BUG_ON(!dev);
2412f7ca802SSteve Glendinning 	BUG_ON(!data);
2422f7ca802SSteve Glendinning 
2432f7ca802SSteve Glendinning 	ret = smsc95xx_eeprom_confirm_not_busy(dev);
2442f7ca802SSteve Glendinning 	if (ret)
2452f7ca802SSteve Glendinning 		return ret;
2462f7ca802SSteve Glendinning 
2472f7ca802SSteve Glendinning 	for (i = 0; i < length; i++) {
2482f7ca802SSteve Glendinning 		val = E2P_CMD_BUSY_ | E2P_CMD_READ_ | (offset & E2P_CMD_ADDR_);
2492f7ca802SSteve Glendinning 		smsc95xx_write_reg(dev, E2P_CMD, val);
2502f7ca802SSteve Glendinning 
2512f7ca802SSteve Glendinning 		ret = smsc95xx_wait_eeprom(dev);
2522f7ca802SSteve Glendinning 		if (ret < 0)
2532f7ca802SSteve Glendinning 			return ret;
2542f7ca802SSteve Glendinning 
2552f7ca802SSteve Glendinning 		smsc95xx_read_reg(dev, E2P_DATA, &val);
2562f7ca802SSteve Glendinning 
2572f7ca802SSteve Glendinning 		data[i] = val & 0xFF;
2582f7ca802SSteve Glendinning 		offset++;
2592f7ca802SSteve Glendinning 	}
2602f7ca802SSteve Glendinning 
2612f7ca802SSteve Glendinning 	return 0;
2622f7ca802SSteve Glendinning }
2632f7ca802SSteve Glendinning 
2642f7ca802SSteve Glendinning static int smsc95xx_write_eeprom(struct usbnet *dev, u32 offset, u32 length,
2652f7ca802SSteve Glendinning 				 u8 *data)
2662f7ca802SSteve Glendinning {
2672f7ca802SSteve Glendinning 	u32 val;
2682f7ca802SSteve Glendinning 	int i, ret;
2692f7ca802SSteve Glendinning 
2702f7ca802SSteve Glendinning 	BUG_ON(!dev);
2712f7ca802SSteve Glendinning 	BUG_ON(!data);
2722f7ca802SSteve Glendinning 
2732f7ca802SSteve Glendinning 	ret = smsc95xx_eeprom_confirm_not_busy(dev);
2742f7ca802SSteve Glendinning 	if (ret)
2752f7ca802SSteve Glendinning 		return ret;
2762f7ca802SSteve Glendinning 
2772f7ca802SSteve Glendinning 	/* Issue write/erase enable command */
2782f7ca802SSteve Glendinning 	val = E2P_CMD_BUSY_ | E2P_CMD_EWEN_;
2792f7ca802SSteve Glendinning 	smsc95xx_write_reg(dev, E2P_CMD, val);
2802f7ca802SSteve Glendinning 
2812f7ca802SSteve Glendinning 	ret = smsc95xx_wait_eeprom(dev);
2822f7ca802SSteve Glendinning 	if (ret < 0)
2832f7ca802SSteve Glendinning 		return ret;
2842f7ca802SSteve Glendinning 
2852f7ca802SSteve Glendinning 	for (i = 0; i < length; i++) {
2862f7ca802SSteve Glendinning 
2872f7ca802SSteve Glendinning 		/* Fill data register */
2882f7ca802SSteve Glendinning 		val = data[i];
2892f7ca802SSteve Glendinning 		smsc95xx_write_reg(dev, E2P_DATA, val);
2902f7ca802SSteve Glendinning 
2912f7ca802SSteve Glendinning 		/* Send "write" command */
2922f7ca802SSteve Glendinning 		val = E2P_CMD_BUSY_ | E2P_CMD_WRITE_ | (offset & E2P_CMD_ADDR_);
2932f7ca802SSteve Glendinning 		smsc95xx_write_reg(dev, E2P_CMD, val);
2942f7ca802SSteve Glendinning 
2952f7ca802SSteve Glendinning 		ret = smsc95xx_wait_eeprom(dev);
2962f7ca802SSteve Glendinning 		if (ret < 0)
2972f7ca802SSteve Glendinning 			return ret;
2982f7ca802SSteve Glendinning 
2992f7ca802SSteve Glendinning 		offset++;
3002f7ca802SSteve Glendinning 	}
3012f7ca802SSteve Glendinning 
3022f7ca802SSteve Glendinning 	return 0;
3032f7ca802SSteve Glendinning }
3042f7ca802SSteve Glendinning 
305150a7fccSSteve Glendinning static void smsc95xx_async_cmd_callback(struct urb *urb)
3062f7ca802SSteve Glendinning {
3072f7ca802SSteve Glendinning 	struct usb_context *usb_context = urb->context;
3082f7ca802SSteve Glendinning 	struct usbnet *dev = usb_context->dev;
309c94cb314SOliver Neukum 	int status = urb->status;
3102f7ca802SSteve Glendinning 
311c94cb314SOliver Neukum 	if (status < 0)
31260b86755SJoe Perches 		netdev_warn(dev->net, "async callback failed with %d\n", status);
3132f7ca802SSteve Glendinning 
3142f7ca802SSteve Glendinning 	kfree(usb_context);
3152f7ca802SSteve Glendinning 	usb_free_urb(urb);
3162f7ca802SSteve Glendinning }
3172f7ca802SSteve Glendinning 
3181d74a6bdSSteve Glendinning static int smsc95xx_write_reg_async(struct usbnet *dev, u16 index, u32 *data)
3192f7ca802SSteve Glendinning {
3202f7ca802SSteve Glendinning 	struct usb_context *usb_context;
3212f7ca802SSteve Glendinning 	int status;
3222f7ca802SSteve Glendinning 	struct urb *urb;
3231d74a6bdSSteve Glendinning 	const u16 size = 4;
3242f7ca802SSteve Glendinning 
3252f7ca802SSteve Glendinning 	urb = usb_alloc_urb(0, GFP_ATOMIC);
3262f7ca802SSteve Glendinning 	if (!urb) {
32760b86755SJoe Perches 		netdev_warn(dev->net, "Error allocating URB\n");
3282f7ca802SSteve Glendinning 		return -ENOMEM;
3292f7ca802SSteve Glendinning 	}
3302f7ca802SSteve Glendinning 
3312f7ca802SSteve Glendinning 	usb_context = kmalloc(sizeof(struct usb_context), GFP_ATOMIC);
3322f7ca802SSteve Glendinning 	if (usb_context == NULL) {
33360b86755SJoe Perches 		netdev_warn(dev->net, "Error allocating control msg\n");
3342f7ca802SSteve Glendinning 		usb_free_urb(urb);
3352f7ca802SSteve Glendinning 		return -ENOMEM;
3362f7ca802SSteve Glendinning 	}
3372f7ca802SSteve Glendinning 
3382f7ca802SSteve Glendinning 	usb_context->req.bRequestType =
3392f7ca802SSteve Glendinning 		USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE;
3402f7ca802SSteve Glendinning 	usb_context->req.bRequest = USB_VENDOR_REQUEST_WRITE_REGISTER;
3412f7ca802SSteve Glendinning 	usb_context->req.wValue = 00;
3421d74a6bdSSteve Glendinning 	usb_context->req.wIndex = cpu_to_le16(index);
3431d74a6bdSSteve Glendinning 	usb_context->req.wLength = cpu_to_le16(size);
3442f7ca802SSteve Glendinning 
3452f7ca802SSteve Glendinning 	usb_fill_control_urb(urb, dev->udev, usb_sndctrlpipe(dev->udev, 0),
3462f7ca802SSteve Glendinning 		(void *)&usb_context->req, data, size,
347150a7fccSSteve Glendinning 		smsc95xx_async_cmd_callback,
3482f7ca802SSteve Glendinning 		(void *)usb_context);
3492f7ca802SSteve Glendinning 
3502f7ca802SSteve Glendinning 	status = usb_submit_urb(urb, GFP_ATOMIC);
3512f7ca802SSteve Glendinning 	if (status < 0) {
35260b86755SJoe Perches 		netdev_warn(dev->net, "Error submitting control msg, sts=%d\n",
35360b86755SJoe Perches 			    status);
3542f7ca802SSteve Glendinning 		kfree(usb_context);
3552f7ca802SSteve Glendinning 		usb_free_urb(urb);
3562f7ca802SSteve Glendinning 	}
3572f7ca802SSteve Glendinning 
3582f7ca802SSteve Glendinning 	return status;
3592f7ca802SSteve Glendinning }
3602f7ca802SSteve Glendinning 
3612f7ca802SSteve Glendinning /* returns hash bit number for given MAC address
3622f7ca802SSteve Glendinning  * example:
3632f7ca802SSteve Glendinning  * 01 00 5E 00 00 01 -> returns bit number 31 */
3642f7ca802SSteve Glendinning static unsigned int smsc95xx_hash(char addr[ETH_ALEN])
3652f7ca802SSteve Glendinning {
3662f7ca802SSteve Glendinning 	return (ether_crc(ETH_ALEN, addr) >> 26) & 0x3f;
3672f7ca802SSteve Glendinning }
3682f7ca802SSteve Glendinning 
3692f7ca802SSteve Glendinning static void smsc95xx_set_multicast(struct net_device *netdev)
3702f7ca802SSteve Glendinning {
3712f7ca802SSteve Glendinning 	struct usbnet *dev = netdev_priv(netdev);
3722f7ca802SSteve Glendinning 	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
3732f7ca802SSteve Glendinning 	unsigned long flags;
3742f7ca802SSteve Glendinning 
3753c0f3c60SMarc Zyngier 	pdata->hash_hi = 0;
3763c0f3c60SMarc Zyngier 	pdata->hash_lo = 0;
3773c0f3c60SMarc Zyngier 
3782f7ca802SSteve Glendinning 	spin_lock_irqsave(&pdata->mac_cr_lock, flags);
3792f7ca802SSteve Glendinning 
3802f7ca802SSteve Glendinning 	if (dev->net->flags & IFF_PROMISC) {
381a475f603SJoe Perches 		netif_dbg(dev, drv, dev->net, "promiscuous mode enabled\n");
3822f7ca802SSteve Glendinning 		pdata->mac_cr |= MAC_CR_PRMS_;
3832f7ca802SSteve Glendinning 		pdata->mac_cr &= ~(MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
3842f7ca802SSteve Glendinning 	} else if (dev->net->flags & IFF_ALLMULTI) {
385a475f603SJoe Perches 		netif_dbg(dev, drv, dev->net, "receive all multicast enabled\n");
3862f7ca802SSteve Glendinning 		pdata->mac_cr |= MAC_CR_MCPAS_;
3872f7ca802SSteve Glendinning 		pdata->mac_cr &= ~(MAC_CR_PRMS_ | MAC_CR_HPFILT_);
3884cd24eafSJiri Pirko 	} else if (!netdev_mc_empty(dev->net)) {
38922bedad3SJiri Pirko 		struct netdev_hw_addr *ha;
3902f7ca802SSteve Glendinning 
3912f7ca802SSteve Glendinning 		pdata->mac_cr |= MAC_CR_HPFILT_;
3922f7ca802SSteve Glendinning 		pdata->mac_cr &= ~(MAC_CR_PRMS_ | MAC_CR_MCPAS_);
3932f7ca802SSteve Glendinning 
39422bedad3SJiri Pirko 		netdev_for_each_mc_addr(ha, netdev) {
39522bedad3SJiri Pirko 			u32 bitnum = smsc95xx_hash(ha->addr);
3962f7ca802SSteve Glendinning 			u32 mask = 0x01 << (bitnum & 0x1F);
3972f7ca802SSteve Glendinning 			if (bitnum & 0x20)
3983c0f3c60SMarc Zyngier 				pdata->hash_hi |= mask;
3992f7ca802SSteve Glendinning 			else
4003c0f3c60SMarc Zyngier 				pdata->hash_lo |= mask;
4012f7ca802SSteve Glendinning 		}
4022f7ca802SSteve Glendinning 
403a475f603SJoe Perches 		netif_dbg(dev, drv, dev->net, "HASHH=0x%08X, HASHL=0x%08X\n",
4043c0f3c60SMarc Zyngier 				   pdata->hash_hi, pdata->hash_lo);
4052f7ca802SSteve Glendinning 	} else {
406a475f603SJoe Perches 		netif_dbg(dev, drv, dev->net, "receive own packets only\n");
4072f7ca802SSteve Glendinning 		pdata->mac_cr &=
4082f7ca802SSteve Glendinning 			~(MAC_CR_PRMS_ | MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
4092f7ca802SSteve Glendinning 	}
4102f7ca802SSteve Glendinning 
4112f7ca802SSteve Glendinning 	spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
4122f7ca802SSteve Glendinning 
4132f7ca802SSteve Glendinning 	/* Initiate async writes, as we can't wait for completion here */
4143c0f3c60SMarc Zyngier 	smsc95xx_write_reg_async(dev, HASHH, &pdata->hash_hi);
4153c0f3c60SMarc Zyngier 	smsc95xx_write_reg_async(dev, HASHL, &pdata->hash_lo);
4162f7ca802SSteve Glendinning 	smsc95xx_write_reg_async(dev, MAC_CR, &pdata->mac_cr);
4172f7ca802SSteve Glendinning }
4182f7ca802SSteve Glendinning 
4192f7ca802SSteve Glendinning static void smsc95xx_phy_update_flowcontrol(struct usbnet *dev, u8 duplex,
4202f7ca802SSteve Glendinning 					    u16 lcladv, u16 rmtadv)
4212f7ca802SSteve Glendinning {
4222f7ca802SSteve Glendinning 	u32 flow, afc_cfg = 0;
4232f7ca802SSteve Glendinning 
4242f7ca802SSteve Glendinning 	int ret = smsc95xx_read_reg(dev, AFC_CFG, &afc_cfg);
4252f7ca802SSteve Glendinning 	if (ret < 0) {
42660b86755SJoe Perches 		netdev_warn(dev->net, "error reading AFC_CFG\n");
4272f7ca802SSteve Glendinning 		return;
4282f7ca802SSteve Glendinning 	}
4292f7ca802SSteve Glendinning 
4302f7ca802SSteve Glendinning 	if (duplex == DUPLEX_FULL) {
431bc02ff95SSteve Glendinning 		u8 cap = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
4322f7ca802SSteve Glendinning 
4332f7ca802SSteve Glendinning 		if (cap & FLOW_CTRL_RX)
4342f7ca802SSteve Glendinning 			flow = 0xFFFF0002;
4352f7ca802SSteve Glendinning 		else
4362f7ca802SSteve Glendinning 			flow = 0;
4372f7ca802SSteve Glendinning 
4382f7ca802SSteve Glendinning 		if (cap & FLOW_CTRL_TX)
4392f7ca802SSteve Glendinning 			afc_cfg |= 0xF;
4402f7ca802SSteve Glendinning 		else
4412f7ca802SSteve Glendinning 			afc_cfg &= ~0xF;
4422f7ca802SSteve Glendinning 
443a475f603SJoe Perches 		netif_dbg(dev, link, dev->net, "rx pause %s, tx pause %s\n",
44460b86755SJoe Perches 				   cap & FLOW_CTRL_RX ? "enabled" : "disabled",
44560b86755SJoe Perches 				   cap & FLOW_CTRL_TX ? "enabled" : "disabled");
4462f7ca802SSteve Glendinning 	} else {
447a475f603SJoe Perches 		netif_dbg(dev, link, dev->net, "half duplex\n");
4482f7ca802SSteve Glendinning 		flow = 0;
4492f7ca802SSteve Glendinning 		afc_cfg |= 0xF;
4502f7ca802SSteve Glendinning 	}
4512f7ca802SSteve Glendinning 
4522f7ca802SSteve Glendinning 	smsc95xx_write_reg(dev, FLOW, flow);
4532f7ca802SSteve Glendinning 	smsc95xx_write_reg(dev,	AFC_CFG, afc_cfg);
4542f7ca802SSteve Glendinning }
4552f7ca802SSteve Glendinning 
4562f7ca802SSteve Glendinning static int smsc95xx_link_reset(struct usbnet *dev)
4572f7ca802SSteve Glendinning {
4582f7ca802SSteve Glendinning 	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
4592f7ca802SSteve Glendinning 	struct mii_if_info *mii = &dev->mii;
4608ae6dacaSDavid Decotigny 	struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
4612f7ca802SSteve Glendinning 	unsigned long flags;
4622f7ca802SSteve Glendinning 	u16 lcladv, rmtadv;
4632f7ca802SSteve Glendinning 	u32 intdata;
4642f7ca802SSteve Glendinning 
4652f7ca802SSteve Glendinning 	/* clear interrupt status */
4662f7ca802SSteve Glendinning 	smsc95xx_mdio_read(dev->net, mii->phy_id, PHY_INT_SRC);
4672f7ca802SSteve Glendinning 	intdata = 0xFFFFFFFF;
4682f7ca802SSteve Glendinning 	smsc95xx_write_reg(dev, INT_STS, intdata);
4692f7ca802SSteve Glendinning 
4702f7ca802SSteve Glendinning 	mii_check_media(mii, 1, 1);
4712f7ca802SSteve Glendinning 	mii_ethtool_gset(&dev->mii, &ecmd);
4722f7ca802SSteve Glendinning 	lcladv = smsc95xx_mdio_read(dev->net, mii->phy_id, MII_ADVERTISE);
4732f7ca802SSteve Glendinning 	rmtadv = smsc95xx_mdio_read(dev->net, mii->phy_id, MII_LPA);
4742f7ca802SSteve Glendinning 
4758ae6dacaSDavid Decotigny 	netif_dbg(dev, link, dev->net,
4768ae6dacaSDavid Decotigny 		  "speed: %u duplex: %d lcladv: %04x rmtadv: %04x\n",
4778ae6dacaSDavid Decotigny 		  ethtool_cmd_speed(&ecmd), ecmd.duplex, lcladv, rmtadv);
4782f7ca802SSteve Glendinning 
4792f7ca802SSteve Glendinning 	spin_lock_irqsave(&pdata->mac_cr_lock, flags);
4802f7ca802SSteve Glendinning 	if (ecmd.duplex != DUPLEX_FULL) {
4812f7ca802SSteve Glendinning 		pdata->mac_cr &= ~MAC_CR_FDPX_;
4822f7ca802SSteve Glendinning 		pdata->mac_cr |= MAC_CR_RCVOWN_;
4832f7ca802SSteve Glendinning 	} else {
4842f7ca802SSteve Glendinning 		pdata->mac_cr &= ~MAC_CR_RCVOWN_;
4852f7ca802SSteve Glendinning 		pdata->mac_cr |= MAC_CR_FDPX_;
4862f7ca802SSteve Glendinning 	}
4872f7ca802SSteve Glendinning 	spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
4882f7ca802SSteve Glendinning 
4892f7ca802SSteve Glendinning 	smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
4902f7ca802SSteve Glendinning 
4912f7ca802SSteve Glendinning 	smsc95xx_phy_update_flowcontrol(dev, ecmd.duplex, lcladv, rmtadv);
4922f7ca802SSteve Glendinning 
4932f7ca802SSteve Glendinning 	return 0;
4942f7ca802SSteve Glendinning }
4952f7ca802SSteve Glendinning 
4962f7ca802SSteve Glendinning static void smsc95xx_status(struct usbnet *dev, struct urb *urb)
4972f7ca802SSteve Glendinning {
4982f7ca802SSteve Glendinning 	u32 intdata;
4992f7ca802SSteve Glendinning 
5002f7ca802SSteve Glendinning 	if (urb->actual_length != 4) {
50160b86755SJoe Perches 		netdev_warn(dev->net, "unexpected urb length %d\n",
50260b86755SJoe Perches 			    urb->actual_length);
5032f7ca802SSteve Glendinning 		return;
5042f7ca802SSteve Glendinning 	}
5052f7ca802SSteve Glendinning 
5062f7ca802SSteve Glendinning 	memcpy(&intdata, urb->transfer_buffer, 4);
5071d74a6bdSSteve Glendinning 	le32_to_cpus(&intdata);
5082f7ca802SSteve Glendinning 
509a475f603SJoe Perches 	netif_dbg(dev, link, dev->net, "intdata: 0x%08X\n", intdata);
5102f7ca802SSteve Glendinning 
5112f7ca802SSteve Glendinning 	if (intdata & INT_ENP_PHY_INT_)
5122f7ca802SSteve Glendinning 		usbnet_defer_kevent(dev, EVENT_LINK_RESET);
5132f7ca802SSteve Glendinning 	else
51460b86755SJoe Perches 		netdev_warn(dev->net, "unexpected interrupt, intdata=0x%08X\n",
51560b86755SJoe Perches 			    intdata);
5162f7ca802SSteve Glendinning }
5172f7ca802SSteve Glendinning 
518f7b29271SSteve Glendinning /* Enable or disable Tx & Rx checksum offload engines */
51978e47fe4SMichał Mirosław static int smsc95xx_set_features(struct net_device *netdev, u32 features)
5202f7ca802SSteve Glendinning {
52178e47fe4SMichał Mirosław 	struct usbnet *dev = netdev_priv(netdev);
5222f7ca802SSteve Glendinning 	u32 read_buf;
52378e47fe4SMichał Mirosław 	int ret;
52478e47fe4SMichał Mirosław 
52578e47fe4SMichał Mirosław 	ret = smsc95xx_read_reg(dev, COE_CR, &read_buf);
5262f7ca802SSteve Glendinning 	if (ret < 0) {
52760b86755SJoe Perches 		netdev_warn(dev->net, "Failed to read COE_CR: %d\n", ret);
5282f7ca802SSteve Glendinning 		return ret;
5292f7ca802SSteve Glendinning 	}
5302f7ca802SSteve Glendinning 
53178e47fe4SMichał Mirosław 	if (features & NETIF_F_HW_CSUM)
532f7b29271SSteve Glendinning 		read_buf |= Tx_COE_EN_;
533f7b29271SSteve Glendinning 	else
534f7b29271SSteve Glendinning 		read_buf &= ~Tx_COE_EN_;
535f7b29271SSteve Glendinning 
53678e47fe4SMichał Mirosław 	if (features & NETIF_F_RXCSUM)
5372f7ca802SSteve Glendinning 		read_buf |= Rx_COE_EN_;
5382f7ca802SSteve Glendinning 	else
5392f7ca802SSteve Glendinning 		read_buf &= ~Rx_COE_EN_;
5402f7ca802SSteve Glendinning 
5412f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, COE_CR, read_buf);
5422f7ca802SSteve Glendinning 	if (ret < 0) {
54360b86755SJoe Perches 		netdev_warn(dev->net, "Failed to write COE_CR: %d\n", ret);
5442f7ca802SSteve Glendinning 		return ret;
5452f7ca802SSteve Glendinning 	}
5462f7ca802SSteve Glendinning 
547a475f603SJoe Perches 	netif_dbg(dev, hw, dev->net, "COE_CR = 0x%08x\n", read_buf);
5482f7ca802SSteve Glendinning 	return 0;
5492f7ca802SSteve Glendinning }
5502f7ca802SSteve Glendinning 
5512f7ca802SSteve Glendinning static int smsc95xx_ethtool_get_eeprom_len(struct net_device *net)
5522f7ca802SSteve Glendinning {
5532f7ca802SSteve Glendinning 	return MAX_EEPROM_SIZE;
5542f7ca802SSteve Glendinning }
5552f7ca802SSteve Glendinning 
5562f7ca802SSteve Glendinning static int smsc95xx_ethtool_get_eeprom(struct net_device *netdev,
5572f7ca802SSteve Glendinning 				       struct ethtool_eeprom *ee, u8 *data)
5582f7ca802SSteve Glendinning {
5592f7ca802SSteve Glendinning 	struct usbnet *dev = netdev_priv(netdev);
5602f7ca802SSteve Glendinning 
5612f7ca802SSteve Glendinning 	ee->magic = LAN95XX_EEPROM_MAGIC;
5622f7ca802SSteve Glendinning 
5632f7ca802SSteve Glendinning 	return smsc95xx_read_eeprom(dev, ee->offset, ee->len, data);
5642f7ca802SSteve Glendinning }
5652f7ca802SSteve Glendinning 
5662f7ca802SSteve Glendinning static int smsc95xx_ethtool_set_eeprom(struct net_device *netdev,
5672f7ca802SSteve Glendinning 				       struct ethtool_eeprom *ee, u8 *data)
5682f7ca802SSteve Glendinning {
5692f7ca802SSteve Glendinning 	struct usbnet *dev = netdev_priv(netdev);
5702f7ca802SSteve Glendinning 
5712f7ca802SSteve Glendinning 	if (ee->magic != LAN95XX_EEPROM_MAGIC) {
57260b86755SJoe Perches 		netdev_warn(dev->net, "EEPROM: magic value mismatch, magic = 0x%x\n",
5732f7ca802SSteve Glendinning 			    ee->magic);
5742f7ca802SSteve Glendinning 		return -EINVAL;
5752f7ca802SSteve Glendinning 	}
5762f7ca802SSteve Glendinning 
5772f7ca802SSteve Glendinning 	return smsc95xx_write_eeprom(dev, ee->offset, ee->len, data);
5782f7ca802SSteve Glendinning }
5792f7ca802SSteve Glendinning 
5800fc0b732SStephen Hemminger static const struct ethtool_ops smsc95xx_ethtool_ops = {
5812f7ca802SSteve Glendinning 	.get_link	= usbnet_get_link,
5822f7ca802SSteve Glendinning 	.nway_reset	= usbnet_nway_reset,
5832f7ca802SSteve Glendinning 	.get_drvinfo	= usbnet_get_drvinfo,
5842f7ca802SSteve Glendinning 	.get_msglevel	= usbnet_get_msglevel,
5852f7ca802SSteve Glendinning 	.set_msglevel	= usbnet_set_msglevel,
5862f7ca802SSteve Glendinning 	.get_settings	= usbnet_get_settings,
5872f7ca802SSteve Glendinning 	.set_settings	= usbnet_set_settings,
5882f7ca802SSteve Glendinning 	.get_eeprom_len	= smsc95xx_ethtool_get_eeprom_len,
5892f7ca802SSteve Glendinning 	.get_eeprom	= smsc95xx_ethtool_get_eeprom,
5902f7ca802SSteve Glendinning 	.set_eeprom	= smsc95xx_ethtool_set_eeprom,
5912f7ca802SSteve Glendinning };
5922f7ca802SSteve Glendinning 
5932f7ca802SSteve Glendinning static int smsc95xx_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
5942f7ca802SSteve Glendinning {
5952f7ca802SSteve Glendinning 	struct usbnet *dev = netdev_priv(netdev);
5962f7ca802SSteve Glendinning 
5972f7ca802SSteve Glendinning 	if (!netif_running(netdev))
5982f7ca802SSteve Glendinning 		return -EINVAL;
5992f7ca802SSteve Glendinning 
6002f7ca802SSteve Glendinning 	return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
6012f7ca802SSteve Glendinning }
6022f7ca802SSteve Glendinning 
6032f7ca802SSteve Glendinning static void smsc95xx_init_mac_address(struct usbnet *dev)
6042f7ca802SSteve Glendinning {
6052f7ca802SSteve Glendinning 	/* try reading mac address from EEPROM */
6062f7ca802SSteve Glendinning 	if (smsc95xx_read_eeprom(dev, EEPROM_MAC_OFFSET, ETH_ALEN,
6072f7ca802SSteve Glendinning 			dev->net->dev_addr) == 0) {
6082f7ca802SSteve Glendinning 		if (is_valid_ether_addr(dev->net->dev_addr)) {
6092f7ca802SSteve Glendinning 			/* eeprom values are valid so use them */
610a475f603SJoe Perches 			netif_dbg(dev, ifup, dev->net, "MAC address read from EEPROM\n");
6112f7ca802SSteve Glendinning 			return;
6122f7ca802SSteve Glendinning 		}
6132f7ca802SSteve Glendinning 	}
6142f7ca802SSteve Glendinning 
6152f7ca802SSteve Glendinning 	/* no eeprom, or eeprom values are invalid. generate random MAC */
6162f7ca802SSteve Glendinning 	random_ether_addr(dev->net->dev_addr);
617a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net, "MAC address set to random_ether_addr\n");
6182f7ca802SSteve Glendinning }
6192f7ca802SSteve Glendinning 
6202f7ca802SSteve Glendinning static int smsc95xx_set_mac_address(struct usbnet *dev)
6212f7ca802SSteve Glendinning {
6222f7ca802SSteve Glendinning 	u32 addr_lo = dev->net->dev_addr[0] | dev->net->dev_addr[1] << 8 |
6232f7ca802SSteve Glendinning 		dev->net->dev_addr[2] << 16 | dev->net->dev_addr[3] << 24;
6242f7ca802SSteve Glendinning 	u32 addr_hi = dev->net->dev_addr[4] | dev->net->dev_addr[5] << 8;
6252f7ca802SSteve Glendinning 	int ret;
6262f7ca802SSteve Glendinning 
6272f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, ADDRL, addr_lo);
6282f7ca802SSteve Glendinning 	if (ret < 0) {
62960b86755SJoe Perches 		netdev_warn(dev->net, "Failed to write ADDRL: %d\n", ret);
6302f7ca802SSteve Glendinning 		return ret;
6312f7ca802SSteve Glendinning 	}
6322f7ca802SSteve Glendinning 
6332f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, ADDRH, addr_hi);
6342f7ca802SSteve Glendinning 	if (ret < 0) {
63560b86755SJoe Perches 		netdev_warn(dev->net, "Failed to write ADDRH: %d\n", ret);
6362f7ca802SSteve Glendinning 		return ret;
6372f7ca802SSteve Glendinning 	}
6382f7ca802SSteve Glendinning 
6392f7ca802SSteve Glendinning 	return 0;
6402f7ca802SSteve Glendinning }
6412f7ca802SSteve Glendinning 
6422f7ca802SSteve Glendinning /* starts the TX path */
6432f7ca802SSteve Glendinning static void smsc95xx_start_tx_path(struct usbnet *dev)
6442f7ca802SSteve Glendinning {
6452f7ca802SSteve Glendinning 	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
6462f7ca802SSteve Glendinning 	unsigned long flags;
6472f7ca802SSteve Glendinning 	u32 reg_val;
6482f7ca802SSteve Glendinning 
6492f7ca802SSteve Glendinning 	/* Enable Tx at MAC */
6502f7ca802SSteve Glendinning 	spin_lock_irqsave(&pdata->mac_cr_lock, flags);
6512f7ca802SSteve Glendinning 	pdata->mac_cr |= MAC_CR_TXEN_;
6522f7ca802SSteve Glendinning 	spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
6532f7ca802SSteve Glendinning 
6542f7ca802SSteve Glendinning 	smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
6552f7ca802SSteve Glendinning 
6562f7ca802SSteve Glendinning 	/* Enable Tx at SCSRs */
6572f7ca802SSteve Glendinning 	reg_val = TX_CFG_ON_;
6582f7ca802SSteve Glendinning 	smsc95xx_write_reg(dev, TX_CFG, reg_val);
6592f7ca802SSteve Glendinning }
6602f7ca802SSteve Glendinning 
6612f7ca802SSteve Glendinning /* Starts the Receive path */
6622f7ca802SSteve Glendinning static void smsc95xx_start_rx_path(struct usbnet *dev)
6632f7ca802SSteve Glendinning {
6642f7ca802SSteve Glendinning 	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
6652f7ca802SSteve Glendinning 	unsigned long flags;
6662f7ca802SSteve Glendinning 
6672f7ca802SSteve Glendinning 	spin_lock_irqsave(&pdata->mac_cr_lock, flags);
6682f7ca802SSteve Glendinning 	pdata->mac_cr |= MAC_CR_RXEN_;
6692f7ca802SSteve Glendinning 	spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
6702f7ca802SSteve Glendinning 
6712f7ca802SSteve Glendinning 	smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
6722f7ca802SSteve Glendinning }
6732f7ca802SSteve Glendinning 
6742f7ca802SSteve Glendinning static int smsc95xx_phy_initialize(struct usbnet *dev)
6752f7ca802SSteve Glendinning {
676db443c44SSteve Glendinning 	int bmcr, timeout = 0;
677db443c44SSteve Glendinning 
6782f7ca802SSteve Glendinning 	/* Initialize MII structure */
6792f7ca802SSteve Glendinning 	dev->mii.dev = dev->net;
6802f7ca802SSteve Glendinning 	dev->mii.mdio_read = smsc95xx_mdio_read;
6812f7ca802SSteve Glendinning 	dev->mii.mdio_write = smsc95xx_mdio_write;
6822f7ca802SSteve Glendinning 	dev->mii.phy_id_mask = 0x1f;
6832f7ca802SSteve Glendinning 	dev->mii.reg_num_mask = 0x1f;
6842f7ca802SSteve Glendinning 	dev->mii.phy_id = SMSC95XX_INTERNAL_PHY_ID;
6852f7ca802SSteve Glendinning 
686db443c44SSteve Glendinning 	/* reset phy and wait for reset to complete */
6872f7ca802SSteve Glendinning 	smsc95xx_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
688db443c44SSteve Glendinning 
689db443c44SSteve Glendinning 	do {
690db443c44SSteve Glendinning 		msleep(10);
691db443c44SSteve Glendinning 		bmcr = smsc95xx_mdio_read(dev->net, dev->mii.phy_id, MII_BMCR);
692db443c44SSteve Glendinning 		timeout++;
693d9460920SRabin Vincent 	} while ((bmcr & BMCR_RESET) && (timeout < 100));
694db443c44SSteve Glendinning 
695db443c44SSteve Glendinning 	if (timeout >= 100) {
696db443c44SSteve Glendinning 		netdev_warn(dev->net, "timeout on PHY Reset");
697db443c44SSteve Glendinning 		return -EIO;
698db443c44SSteve Glendinning 	}
699db443c44SSteve Glendinning 
7002f7ca802SSteve Glendinning 	smsc95xx_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
7012f7ca802SSteve Glendinning 		ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP |
7022f7ca802SSteve Glendinning 		ADVERTISE_PAUSE_ASYM);
7032f7ca802SSteve Glendinning 
7042f7ca802SSteve Glendinning 	/* read to clear */
7052f7ca802SSteve Glendinning 	smsc95xx_mdio_read(dev->net, dev->mii.phy_id, PHY_INT_SRC);
7062f7ca802SSteve Glendinning 
7072f7ca802SSteve Glendinning 	smsc95xx_mdio_write(dev->net, dev->mii.phy_id, PHY_INT_MASK,
7082f7ca802SSteve Glendinning 		PHY_INT_MASK_DEFAULT_);
7092f7ca802SSteve Glendinning 	mii_nway_restart(&dev->mii);
7102f7ca802SSteve Glendinning 
711a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net, "phy initialised successfully\n");
7122f7ca802SSteve Glendinning 	return 0;
7132f7ca802SSteve Glendinning }
7142f7ca802SSteve Glendinning 
7152f7ca802SSteve Glendinning static int smsc95xx_reset(struct usbnet *dev)
7162f7ca802SSteve Glendinning {
7172f7ca802SSteve Glendinning 	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
7182f7ca802SSteve Glendinning 	u32 read_buf, write_buf, burst_cap;
7192f7ca802SSteve Glendinning 	int ret = 0, timeout;
7202f7ca802SSteve Glendinning 
721a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net, "entering smsc95xx_reset\n");
7222f7ca802SSteve Glendinning 
7232f7ca802SSteve Glendinning 	write_buf = HW_CFG_LRST_;
7242f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, HW_CFG, write_buf);
7252f7ca802SSteve Glendinning 	if (ret < 0) {
72660b86755SJoe Perches 		netdev_warn(dev->net, "Failed to write HW_CFG_LRST_ bit in HW_CFG register, ret = %d\n",
72760b86755SJoe Perches 			    ret);
7282f7ca802SSteve Glendinning 		return ret;
7292f7ca802SSteve Glendinning 	}
7302f7ca802SSteve Glendinning 
7312f7ca802SSteve Glendinning 	timeout = 0;
7322f7ca802SSteve Glendinning 	do {
7332f7ca802SSteve Glendinning 		ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
7342f7ca802SSteve Glendinning 		if (ret < 0) {
73560b86755SJoe Perches 			netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
7362f7ca802SSteve Glendinning 			return ret;
7372f7ca802SSteve Glendinning 		}
7382f7ca802SSteve Glendinning 		msleep(10);
7392f7ca802SSteve Glendinning 		timeout++;
7402f7ca802SSteve Glendinning 	} while ((read_buf & HW_CFG_LRST_) && (timeout < 100));
7412f7ca802SSteve Glendinning 
7422f7ca802SSteve Glendinning 	if (timeout >= 100) {
74360b86755SJoe Perches 		netdev_warn(dev->net, "timeout waiting for completion of Lite Reset\n");
7442f7ca802SSteve Glendinning 		return ret;
7452f7ca802SSteve Glendinning 	}
7462f7ca802SSteve Glendinning 
7472f7ca802SSteve Glendinning 	write_buf = PM_CTL_PHY_RST_;
7482f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, PM_CTRL, write_buf);
7492f7ca802SSteve Glendinning 	if (ret < 0) {
75060b86755SJoe Perches 		netdev_warn(dev->net, "Failed to write PM_CTRL: %d\n", ret);
7512f7ca802SSteve Glendinning 		return ret;
7522f7ca802SSteve Glendinning 	}
7532f7ca802SSteve Glendinning 
7542f7ca802SSteve Glendinning 	timeout = 0;
7552f7ca802SSteve Glendinning 	do {
7562f7ca802SSteve Glendinning 		ret = smsc95xx_read_reg(dev, PM_CTRL, &read_buf);
7572f7ca802SSteve Glendinning 		if (ret < 0) {
75860b86755SJoe Perches 			netdev_warn(dev->net, "Failed to read PM_CTRL: %d\n", ret);
7592f7ca802SSteve Glendinning 			return ret;
7602f7ca802SSteve Glendinning 		}
7612f7ca802SSteve Glendinning 		msleep(10);
7622f7ca802SSteve Glendinning 		timeout++;
7632f7ca802SSteve Glendinning 	} while ((read_buf & PM_CTL_PHY_RST_) && (timeout < 100));
7642f7ca802SSteve Glendinning 
7652f7ca802SSteve Glendinning 	if (timeout >= 100) {
76660b86755SJoe Perches 		netdev_warn(dev->net, "timeout waiting for PHY Reset\n");
7672f7ca802SSteve Glendinning 		return ret;
7682f7ca802SSteve Glendinning 	}
7692f7ca802SSteve Glendinning 
7702f7ca802SSteve Glendinning 	ret = smsc95xx_set_mac_address(dev);
7712f7ca802SSteve Glendinning 	if (ret < 0)
7722f7ca802SSteve Glendinning 		return ret;
7732f7ca802SSteve Glendinning 
774a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net,
775a475f603SJoe Perches 		  "MAC Address: %pM\n", dev->net->dev_addr);
7762f7ca802SSteve Glendinning 
7772f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
7782f7ca802SSteve Glendinning 	if (ret < 0) {
77960b86755SJoe Perches 		netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
7802f7ca802SSteve Glendinning 		return ret;
7812f7ca802SSteve Glendinning 	}
7822f7ca802SSteve Glendinning 
783a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net,
784a475f603SJoe Perches 		  "Read Value from HW_CFG : 0x%08x\n", read_buf);
7852f7ca802SSteve Glendinning 
7862f7ca802SSteve Glendinning 	read_buf |= HW_CFG_BIR_;
7872f7ca802SSteve Glendinning 
7882f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
7892f7ca802SSteve Glendinning 	if (ret < 0) {
79060b86755SJoe Perches 		netdev_warn(dev->net, "Failed to write HW_CFG_BIR_ bit in HW_CFG register, ret = %d\n",
79160b86755SJoe Perches 			    ret);
7922f7ca802SSteve Glendinning 		return ret;
7932f7ca802SSteve Glendinning 	}
7942f7ca802SSteve Glendinning 
7952f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
7962f7ca802SSteve Glendinning 	if (ret < 0) {
79760b86755SJoe Perches 		netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
7982f7ca802SSteve Glendinning 		return ret;
7992f7ca802SSteve Glendinning 	}
800a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net,
801a475f603SJoe Perches 		  "Read Value from HW_CFG after writing HW_CFG_BIR_: 0x%08x\n",
80260b86755SJoe Perches 		  read_buf);
8032f7ca802SSteve Glendinning 
8042f7ca802SSteve Glendinning 	if (!turbo_mode) {
8052f7ca802SSteve Glendinning 		burst_cap = 0;
8062f7ca802SSteve Glendinning 		dev->rx_urb_size = MAX_SINGLE_PACKET_SIZE;
8072f7ca802SSteve Glendinning 	} else if (dev->udev->speed == USB_SPEED_HIGH) {
8082f7ca802SSteve Glendinning 		burst_cap = DEFAULT_HS_BURST_CAP_SIZE / HS_USB_PKT_SIZE;
8092f7ca802SSteve Glendinning 		dev->rx_urb_size = DEFAULT_HS_BURST_CAP_SIZE;
8102f7ca802SSteve Glendinning 	} else {
8112f7ca802SSteve Glendinning 		burst_cap = DEFAULT_FS_BURST_CAP_SIZE / FS_USB_PKT_SIZE;
8122f7ca802SSteve Glendinning 		dev->rx_urb_size = DEFAULT_FS_BURST_CAP_SIZE;
8132f7ca802SSteve Glendinning 	}
8142f7ca802SSteve Glendinning 
815a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net,
816a475f603SJoe Perches 		  "rx_urb_size=%ld\n", (ulong)dev->rx_urb_size);
8172f7ca802SSteve Glendinning 
8182f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, BURST_CAP, burst_cap);
8192f7ca802SSteve Glendinning 	if (ret < 0) {
82060b86755SJoe Perches 		netdev_warn(dev->net, "Failed to write BURST_CAP: %d\n", ret);
8212f7ca802SSteve Glendinning 		return ret;
8222f7ca802SSteve Glendinning 	}
8232f7ca802SSteve Glendinning 
8242f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, BURST_CAP, &read_buf);
8252f7ca802SSteve Glendinning 	if (ret < 0) {
82660b86755SJoe Perches 		netdev_warn(dev->net, "Failed to read BURST_CAP: %d\n", ret);
8272f7ca802SSteve Glendinning 		return ret;
8282f7ca802SSteve Glendinning 	}
829a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net,
830a475f603SJoe Perches 		  "Read Value from BURST_CAP after writing: 0x%08x\n",
8312f7ca802SSteve Glendinning 		  read_buf);
8322f7ca802SSteve Glendinning 
8332f7ca802SSteve Glendinning 	read_buf = DEFAULT_BULK_IN_DELAY;
8342f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, BULK_IN_DLY, read_buf);
8352f7ca802SSteve Glendinning 	if (ret < 0) {
83660b86755SJoe Perches 		netdev_warn(dev->net, "ret = %d\n", ret);
8372f7ca802SSteve Glendinning 		return ret;
8382f7ca802SSteve Glendinning 	}
8392f7ca802SSteve Glendinning 
8402f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, BULK_IN_DLY, &read_buf);
8412f7ca802SSteve Glendinning 	if (ret < 0) {
84260b86755SJoe Perches 		netdev_warn(dev->net, "Failed to read BULK_IN_DLY: %d\n", ret);
8432f7ca802SSteve Glendinning 		return ret;
8442f7ca802SSteve Glendinning 	}
845a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net,
846a475f603SJoe Perches 		  "Read Value from BULK_IN_DLY after writing: 0x%08x\n",
84760b86755SJoe Perches 		  read_buf);
8482f7ca802SSteve Glendinning 
8492f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
8502f7ca802SSteve Glendinning 	if (ret < 0) {
85160b86755SJoe Perches 		netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
8522f7ca802SSteve Glendinning 		return ret;
8532f7ca802SSteve Glendinning 	}
854a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net,
855a475f603SJoe Perches 		  "Read Value from HW_CFG: 0x%08x\n", read_buf);
8562f7ca802SSteve Glendinning 
8572f7ca802SSteve Glendinning 	if (turbo_mode)
8582f7ca802SSteve Glendinning 		read_buf |= (HW_CFG_MEF_ | HW_CFG_BCE_);
8592f7ca802SSteve Glendinning 
8602f7ca802SSteve Glendinning 	read_buf &= ~HW_CFG_RXDOFF_;
8612f7ca802SSteve Glendinning 
8622f7ca802SSteve Glendinning 	/* set Rx data offset=2, Make IP header aligns on word boundary. */
8632f7ca802SSteve Glendinning 	read_buf |= NET_IP_ALIGN << 9;
8642f7ca802SSteve Glendinning 
8652f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
8662f7ca802SSteve Glendinning 	if (ret < 0) {
86760b86755SJoe Perches 		netdev_warn(dev->net, "Failed to write HW_CFG register, ret=%d\n",
86860b86755SJoe Perches 			    ret);
8692f7ca802SSteve Glendinning 		return ret;
8702f7ca802SSteve Glendinning 	}
8712f7ca802SSteve Glendinning 
8722f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
8732f7ca802SSteve Glendinning 	if (ret < 0) {
87460b86755SJoe Perches 		netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
8752f7ca802SSteve Glendinning 		return ret;
8762f7ca802SSteve Glendinning 	}
877a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net,
878a475f603SJoe Perches 		  "Read Value from HW_CFG after writing: 0x%08x\n", read_buf);
8792f7ca802SSteve Glendinning 
8802f7ca802SSteve Glendinning 	write_buf = 0xFFFFFFFF;
8812f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, INT_STS, write_buf);
8822f7ca802SSteve Glendinning 	if (ret < 0) {
88360b86755SJoe Perches 		netdev_warn(dev->net, "Failed to write INT_STS register, ret=%d\n",
88460b86755SJoe Perches 			    ret);
8852f7ca802SSteve Glendinning 		return ret;
8862f7ca802SSteve Glendinning 	}
8872f7ca802SSteve Glendinning 
8882f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, ID_REV, &read_buf);
8892f7ca802SSteve Glendinning 	if (ret < 0) {
89060b86755SJoe Perches 		netdev_warn(dev->net, "Failed to read ID_REV: %d\n", ret);
8912f7ca802SSteve Glendinning 		return ret;
8922f7ca802SSteve Glendinning 	}
893a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net, "ID_REV = 0x%08x\n", read_buf);
8942f7ca802SSteve Glendinning 
895f293501cSSteve Glendinning 	/* Configure GPIO pins as LED outputs */
896f293501cSSteve Glendinning 	write_buf = LED_GPIO_CFG_SPD_LED | LED_GPIO_CFG_LNK_LED |
897f293501cSSteve Glendinning 		LED_GPIO_CFG_FDX_LED;
898f293501cSSteve Glendinning 	ret = smsc95xx_write_reg(dev, LED_GPIO_CFG, write_buf);
899f293501cSSteve Glendinning 	if (ret < 0) {
90060b86755SJoe Perches 		netdev_warn(dev->net, "Failed to write LED_GPIO_CFG register, ret=%d\n",
901f293501cSSteve Glendinning 			    ret);
902f293501cSSteve Glendinning 		return ret;
903f293501cSSteve Glendinning 	}
904f293501cSSteve Glendinning 
9052f7ca802SSteve Glendinning 	/* Init Tx */
9062f7ca802SSteve Glendinning 	write_buf = 0;
9072f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, FLOW, write_buf);
9082f7ca802SSteve Glendinning 	if (ret < 0) {
90960b86755SJoe Perches 		netdev_warn(dev->net, "Failed to write FLOW: %d\n", ret);
9102f7ca802SSteve Glendinning 		return ret;
9112f7ca802SSteve Glendinning 	}
9122f7ca802SSteve Glendinning 
9132f7ca802SSteve Glendinning 	read_buf = AFC_CFG_DEFAULT;
9142f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, AFC_CFG, read_buf);
9152f7ca802SSteve Glendinning 	if (ret < 0) {
91660b86755SJoe Perches 		netdev_warn(dev->net, "Failed to write AFC_CFG: %d\n", ret);
9172f7ca802SSteve Glendinning 		return ret;
9182f7ca802SSteve Glendinning 	}
9192f7ca802SSteve Glendinning 
9202f7ca802SSteve Glendinning 	/* Don't need mac_cr_lock during initialisation */
9212f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, MAC_CR, &pdata->mac_cr);
9222f7ca802SSteve Glendinning 	if (ret < 0) {
92360b86755SJoe Perches 		netdev_warn(dev->net, "Failed to read MAC_CR: %d\n", ret);
9242f7ca802SSteve Glendinning 		return ret;
9252f7ca802SSteve Glendinning 	}
9262f7ca802SSteve Glendinning 
9272f7ca802SSteve Glendinning 	/* Init Rx */
9282f7ca802SSteve Glendinning 	/* Set Vlan */
9292f7ca802SSteve Glendinning 	write_buf = (u32)ETH_P_8021Q;
9302f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, VLAN1, write_buf);
9312f7ca802SSteve Glendinning 	if (ret < 0) {
93260b86755SJoe Perches 		netdev_warn(dev->net, "Failed to write VAN1: %d\n", ret);
9332f7ca802SSteve Glendinning 		return ret;
9342f7ca802SSteve Glendinning 	}
9352f7ca802SSteve Glendinning 
936f7b29271SSteve Glendinning 	/* Enable or disable checksum offload engines */
93778e47fe4SMichał Mirosław 	smsc95xx_set_features(dev->net, dev->net->features);
9382f7ca802SSteve Glendinning 
9392f7ca802SSteve Glendinning 	smsc95xx_set_multicast(dev->net);
9402f7ca802SSteve Glendinning 
9412f7ca802SSteve Glendinning 	if (smsc95xx_phy_initialize(dev) < 0)
9422f7ca802SSteve Glendinning 		return -EIO;
9432f7ca802SSteve Glendinning 
9442f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, INT_EP_CTL, &read_buf);
9452f7ca802SSteve Glendinning 	if (ret < 0) {
94660b86755SJoe Perches 		netdev_warn(dev->net, "Failed to read INT_EP_CTL: %d\n", ret);
9472f7ca802SSteve Glendinning 		return ret;
9482f7ca802SSteve Glendinning 	}
9492f7ca802SSteve Glendinning 
9502f7ca802SSteve Glendinning 	/* enable PHY interrupts */
9512f7ca802SSteve Glendinning 	read_buf |= INT_EP_CTL_PHY_INT_;
9522f7ca802SSteve Glendinning 
9532f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, INT_EP_CTL, read_buf);
9542f7ca802SSteve Glendinning 	if (ret < 0) {
95560b86755SJoe Perches 		netdev_warn(dev->net, "Failed to write INT_EP_CTL: %d\n", ret);
9562f7ca802SSteve Glendinning 		return ret;
9572f7ca802SSteve Glendinning 	}
9582f7ca802SSteve Glendinning 
9592f7ca802SSteve Glendinning 	smsc95xx_start_tx_path(dev);
9602f7ca802SSteve Glendinning 	smsc95xx_start_rx_path(dev);
9612f7ca802SSteve Glendinning 
962a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net, "smsc95xx_reset, return 0\n");
9632f7ca802SSteve Glendinning 	return 0;
9642f7ca802SSteve Glendinning }
9652f7ca802SSteve Glendinning 
96663e77b39SStephen Hemminger static const struct net_device_ops smsc95xx_netdev_ops = {
96763e77b39SStephen Hemminger 	.ndo_open		= usbnet_open,
96863e77b39SStephen Hemminger 	.ndo_stop		= usbnet_stop,
96963e77b39SStephen Hemminger 	.ndo_start_xmit		= usbnet_start_xmit,
97063e77b39SStephen Hemminger 	.ndo_tx_timeout		= usbnet_tx_timeout,
97163e77b39SStephen Hemminger 	.ndo_change_mtu		= usbnet_change_mtu,
97263e77b39SStephen Hemminger 	.ndo_set_mac_address 	= eth_mac_addr,
97363e77b39SStephen Hemminger 	.ndo_validate_addr	= eth_validate_addr,
97463e77b39SStephen Hemminger 	.ndo_do_ioctl 		= smsc95xx_ioctl,
975afc4b13dSJiri Pirko 	.ndo_set_rx_mode	= smsc95xx_set_multicast,
97678e47fe4SMichał Mirosław 	.ndo_set_features	= smsc95xx_set_features,
97763e77b39SStephen Hemminger };
97863e77b39SStephen Hemminger 
9792f7ca802SSteve Glendinning static int smsc95xx_bind(struct usbnet *dev, struct usb_interface *intf)
9802f7ca802SSteve Glendinning {
9812f7ca802SSteve Glendinning 	struct smsc95xx_priv *pdata = NULL;
9822f7ca802SSteve Glendinning 	int ret;
9832f7ca802SSteve Glendinning 
9842f7ca802SSteve Glendinning 	printk(KERN_INFO SMSC_CHIPNAME " v" SMSC_DRIVER_VERSION "\n");
9852f7ca802SSteve Glendinning 
9862f7ca802SSteve Glendinning 	ret = usbnet_get_endpoints(dev, intf);
9872f7ca802SSteve Glendinning 	if (ret < 0) {
98860b86755SJoe Perches 		netdev_warn(dev->net, "usbnet_get_endpoints failed: %d\n", ret);
9892f7ca802SSteve Glendinning 		return ret;
9902f7ca802SSteve Glendinning 	}
9912f7ca802SSteve Glendinning 
9922f7ca802SSteve Glendinning 	dev->data[0] = (unsigned long)kzalloc(sizeof(struct smsc95xx_priv),
9932f7ca802SSteve Glendinning 		GFP_KERNEL);
9942f7ca802SSteve Glendinning 
9952f7ca802SSteve Glendinning 	pdata = (struct smsc95xx_priv *)(dev->data[0]);
9962f7ca802SSteve Glendinning 	if (!pdata) {
99760b86755SJoe Perches 		netdev_warn(dev->net, "Unable to allocate struct smsc95xx_priv\n");
9982f7ca802SSteve Glendinning 		return -ENOMEM;
9992f7ca802SSteve Glendinning 	}
10002f7ca802SSteve Glendinning 
10012f7ca802SSteve Glendinning 	spin_lock_init(&pdata->mac_cr_lock);
10022f7ca802SSteve Glendinning 
100378e47fe4SMichał Mirosław 	if (DEFAULT_TX_CSUM_ENABLE)
100478e47fe4SMichał Mirosław 		dev->net->features |= NETIF_F_HW_CSUM;
100578e47fe4SMichał Mirosław 	if (DEFAULT_RX_CSUM_ENABLE)
100678e47fe4SMichał Mirosław 		dev->net->features |= NETIF_F_RXCSUM;
100778e47fe4SMichał Mirosław 
100878e47fe4SMichał Mirosław 	dev->net->hw_features = NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
10092f7ca802SSteve Glendinning 
1010f4e8ab7cSBernard Blackham 	smsc95xx_init_mac_address(dev);
1011f4e8ab7cSBernard Blackham 
10122f7ca802SSteve Glendinning 	/* Init all registers */
10132f7ca802SSteve Glendinning 	ret = smsc95xx_reset(dev);
10142f7ca802SSteve Glendinning 
101563e77b39SStephen Hemminger 	dev->net->netdev_ops = &smsc95xx_netdev_ops;
10162f7ca802SSteve Glendinning 	dev->net->ethtool_ops = &smsc95xx_ethtool_ops;
10172f7ca802SSteve Glendinning 	dev->net->flags |= IFF_MULTICAST;
101878e47fe4SMichał Mirosław 	dev->net->hard_header_len += SMSC95XX_TX_OVERHEAD_CSUM;
10192f7ca802SSteve Glendinning 	return 0;
10202f7ca802SSteve Glendinning }
10212f7ca802SSteve Glendinning 
10222f7ca802SSteve Glendinning static void smsc95xx_unbind(struct usbnet *dev, struct usb_interface *intf)
10232f7ca802SSteve Glendinning {
10242f7ca802SSteve Glendinning 	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
10252f7ca802SSteve Glendinning 	if (pdata) {
1026a475f603SJoe Perches 		netif_dbg(dev, ifdown, dev->net, "free pdata\n");
10272f7ca802SSteve Glendinning 		kfree(pdata);
10282f7ca802SSteve Glendinning 		pdata = NULL;
10292f7ca802SSteve Glendinning 		dev->data[0] = 0;
10302f7ca802SSteve Glendinning 	}
10312f7ca802SSteve Glendinning }
10322f7ca802SSteve Glendinning 
10332f7ca802SSteve Glendinning static void smsc95xx_rx_csum_offload(struct sk_buff *skb)
10342f7ca802SSteve Glendinning {
10352f7ca802SSteve Glendinning 	skb->csum = *(u16 *)(skb_tail_pointer(skb) - 2);
10362f7ca802SSteve Glendinning 	skb->ip_summed = CHECKSUM_COMPLETE;
10372f7ca802SSteve Glendinning 	skb_trim(skb, skb->len - 2);
10382f7ca802SSteve Glendinning }
10392f7ca802SSteve Glendinning 
10402f7ca802SSteve Glendinning static int smsc95xx_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
10412f7ca802SSteve Glendinning {
10422f7ca802SSteve Glendinning 	while (skb->len > 0) {
10432f7ca802SSteve Glendinning 		u32 header, align_count;
10442f7ca802SSteve Glendinning 		struct sk_buff *ax_skb;
10452f7ca802SSteve Glendinning 		unsigned char *packet;
10462f7ca802SSteve Glendinning 		u16 size;
10472f7ca802SSteve Glendinning 
10482f7ca802SSteve Glendinning 		memcpy(&header, skb->data, sizeof(header));
10492f7ca802SSteve Glendinning 		le32_to_cpus(&header);
10502f7ca802SSteve Glendinning 		skb_pull(skb, 4 + NET_IP_ALIGN);
10512f7ca802SSteve Glendinning 		packet = skb->data;
10522f7ca802SSteve Glendinning 
10532f7ca802SSteve Glendinning 		/* get the packet length */
10542f7ca802SSteve Glendinning 		size = (u16)((header & RX_STS_FL_) >> 16);
10552f7ca802SSteve Glendinning 		align_count = (4 - ((size + NET_IP_ALIGN) % 4)) % 4;
10562f7ca802SSteve Glendinning 
10572f7ca802SSteve Glendinning 		if (unlikely(header & RX_STS_ES_)) {
1058a475f603SJoe Perches 			netif_dbg(dev, rx_err, dev->net,
1059a475f603SJoe Perches 				  "Error header=0x%08x\n", header);
106080667ac1SHerbert Xu 			dev->net->stats.rx_errors++;
106180667ac1SHerbert Xu 			dev->net->stats.rx_dropped++;
10622f7ca802SSteve Glendinning 
10632f7ca802SSteve Glendinning 			if (header & RX_STS_CRC_) {
106480667ac1SHerbert Xu 				dev->net->stats.rx_crc_errors++;
10652f7ca802SSteve Glendinning 			} else {
10662f7ca802SSteve Glendinning 				if (header & (RX_STS_TL_ | RX_STS_RF_))
106780667ac1SHerbert Xu 					dev->net->stats.rx_frame_errors++;
10682f7ca802SSteve Glendinning 
10692f7ca802SSteve Glendinning 				if ((header & RX_STS_LE_) &&
10702f7ca802SSteve Glendinning 					(!(header & RX_STS_FT_)))
107180667ac1SHerbert Xu 					dev->net->stats.rx_length_errors++;
10722f7ca802SSteve Glendinning 			}
10732f7ca802SSteve Glendinning 		} else {
10742f7ca802SSteve Glendinning 			/* ETH_FRAME_LEN + 4(CRC) + 2(COE) + 4(Vlan) */
10752f7ca802SSteve Glendinning 			if (unlikely(size > (ETH_FRAME_LEN + 12))) {
1076a475f603SJoe Perches 				netif_dbg(dev, rx_err, dev->net,
1077a475f603SJoe Perches 					  "size err header=0x%08x\n", header);
10782f7ca802SSteve Glendinning 				return 0;
10792f7ca802SSteve Glendinning 			}
10802f7ca802SSteve Glendinning 
10812f7ca802SSteve Glendinning 			/* last frame in this batch */
10822f7ca802SSteve Glendinning 			if (skb->len == size) {
108378e47fe4SMichał Mirosław 				if (dev->net->features & NETIF_F_RXCSUM)
10842f7ca802SSteve Glendinning 					smsc95xx_rx_csum_offload(skb);
1085df18accaSPeter Korsgaard 				skb_trim(skb, skb->len - 4); /* remove fcs */
10862f7ca802SSteve Glendinning 				skb->truesize = size + sizeof(struct sk_buff);
10872f7ca802SSteve Glendinning 
10882f7ca802SSteve Glendinning 				return 1;
10892f7ca802SSteve Glendinning 			}
10902f7ca802SSteve Glendinning 
10912f7ca802SSteve Glendinning 			ax_skb = skb_clone(skb, GFP_ATOMIC);
10922f7ca802SSteve Glendinning 			if (unlikely(!ax_skb)) {
109360b86755SJoe Perches 				netdev_warn(dev->net, "Error allocating skb\n");
10942f7ca802SSteve Glendinning 				return 0;
10952f7ca802SSteve Glendinning 			}
10962f7ca802SSteve Glendinning 
10972f7ca802SSteve Glendinning 			ax_skb->len = size;
10982f7ca802SSteve Glendinning 			ax_skb->data = packet;
10992f7ca802SSteve Glendinning 			skb_set_tail_pointer(ax_skb, size);
11002f7ca802SSteve Glendinning 
110178e47fe4SMichał Mirosław 			if (dev->net->features & NETIF_F_RXCSUM)
11022f7ca802SSteve Glendinning 				smsc95xx_rx_csum_offload(ax_skb);
1103df18accaSPeter Korsgaard 			skb_trim(ax_skb, ax_skb->len - 4); /* remove fcs */
11042f7ca802SSteve Glendinning 			ax_skb->truesize = size + sizeof(struct sk_buff);
11052f7ca802SSteve Glendinning 
11062f7ca802SSteve Glendinning 			usbnet_skb_return(dev, ax_skb);
11072f7ca802SSteve Glendinning 		}
11082f7ca802SSteve Glendinning 
11092f7ca802SSteve Glendinning 		skb_pull(skb, size);
11102f7ca802SSteve Glendinning 
11112f7ca802SSteve Glendinning 		/* padding bytes before the next frame starts */
11122f7ca802SSteve Glendinning 		if (skb->len)
11132f7ca802SSteve Glendinning 			skb_pull(skb, align_count);
11142f7ca802SSteve Glendinning 	}
11152f7ca802SSteve Glendinning 
11162f7ca802SSteve Glendinning 	if (unlikely(skb->len < 0)) {
111760b86755SJoe Perches 		netdev_warn(dev->net, "invalid rx length<0 %d\n", skb->len);
11182f7ca802SSteve Glendinning 		return 0;
11192f7ca802SSteve Glendinning 	}
11202f7ca802SSteve Glendinning 
11212f7ca802SSteve Glendinning 	return 1;
11222f7ca802SSteve Glendinning }
11232f7ca802SSteve Glendinning 
1124f7b29271SSteve Glendinning static u32 smsc95xx_calc_csum_preamble(struct sk_buff *skb)
1125f7b29271SSteve Glendinning {
112655508d60SMichał Mirosław 	u16 low_16 = (u16)skb_checksum_start_offset(skb);
112755508d60SMichał Mirosław 	u16 high_16 = low_16 + skb->csum_offset;
1128f7b29271SSteve Glendinning 	return (high_16 << 16) | low_16;
1129f7b29271SSteve Glendinning }
1130f7b29271SSteve Glendinning 
11312f7ca802SSteve Glendinning static struct sk_buff *smsc95xx_tx_fixup(struct usbnet *dev,
11322f7ca802SSteve Glendinning 					 struct sk_buff *skb, gfp_t flags)
11332f7ca802SSteve Glendinning {
113478e47fe4SMichał Mirosław 	bool csum = skb->ip_summed == CHECKSUM_PARTIAL;
1135f7b29271SSteve Glendinning 	int overhead = csum ? SMSC95XX_TX_OVERHEAD_CSUM : SMSC95XX_TX_OVERHEAD;
11362f7ca802SSteve Glendinning 	u32 tx_cmd_a, tx_cmd_b;
11372f7ca802SSteve Glendinning 
1138f7b29271SSteve Glendinning 	/* We do not advertise SG, so skbs should be already linearized */
1139f7b29271SSteve Glendinning 	BUG_ON(skb_shinfo(skb)->nr_frags);
1140f7b29271SSteve Glendinning 
1141f7b29271SSteve Glendinning 	if (skb_headroom(skb) < overhead) {
11422f7ca802SSteve Glendinning 		struct sk_buff *skb2 = skb_copy_expand(skb,
1143f7b29271SSteve Glendinning 			overhead, 0, flags);
11442f7ca802SSteve Glendinning 		dev_kfree_skb_any(skb);
11452f7ca802SSteve Glendinning 		skb = skb2;
11462f7ca802SSteve Glendinning 		if (!skb)
11472f7ca802SSteve Glendinning 			return NULL;
11482f7ca802SSteve Glendinning 	}
11492f7ca802SSteve Glendinning 
1150f7b29271SSteve Glendinning 	if (csum) {
115111bc3088SSteve Glendinning 		if (skb->len <= 45) {
115211bc3088SSteve Glendinning 			/* workaround - hardware tx checksum does not work
115311bc3088SSteve Glendinning 			 * properly with extremely small packets */
115455508d60SMichał Mirosław 			long csstart = skb_checksum_start_offset(skb);
115511bc3088SSteve Glendinning 			__wsum calc = csum_partial(skb->data + csstart,
115611bc3088SSteve Glendinning 				skb->len - csstart, 0);
115711bc3088SSteve Glendinning 			*((__sum16 *)(skb->data + csstart
115811bc3088SSteve Glendinning 				+ skb->csum_offset)) = csum_fold(calc);
115911bc3088SSteve Glendinning 
116011bc3088SSteve Glendinning 			csum = false;
116111bc3088SSteve Glendinning 		} else {
1162f7b29271SSteve Glendinning 			u32 csum_preamble = smsc95xx_calc_csum_preamble(skb);
1163f7b29271SSteve Glendinning 			skb_push(skb, 4);
1164f7b29271SSteve Glendinning 			memcpy(skb->data, &csum_preamble, 4);
1165f7b29271SSteve Glendinning 		}
116611bc3088SSteve Glendinning 	}
1167f7b29271SSteve Glendinning 
11682f7ca802SSteve Glendinning 	skb_push(skb, 4);
11692f7ca802SSteve Glendinning 	tx_cmd_b = (u32)(skb->len - 4);
1170f7b29271SSteve Glendinning 	if (csum)
1171f7b29271SSteve Glendinning 		tx_cmd_b |= TX_CMD_B_CSUM_ENABLE;
11722f7ca802SSteve Glendinning 	cpu_to_le32s(&tx_cmd_b);
11732f7ca802SSteve Glendinning 	memcpy(skb->data, &tx_cmd_b, 4);
11742f7ca802SSteve Glendinning 
11752f7ca802SSteve Glendinning 	skb_push(skb, 4);
11762f7ca802SSteve Glendinning 	tx_cmd_a = (u32)(skb->len - 8) | TX_CMD_A_FIRST_SEG_ |
11772f7ca802SSteve Glendinning 		TX_CMD_A_LAST_SEG_;
11782f7ca802SSteve Glendinning 	cpu_to_le32s(&tx_cmd_a);
11792f7ca802SSteve Glendinning 	memcpy(skb->data, &tx_cmd_a, 4);
11802f7ca802SSteve Glendinning 
11812f7ca802SSteve Glendinning 	return skb;
11822f7ca802SSteve Glendinning }
11832f7ca802SSteve Glendinning 
11842f7ca802SSteve Glendinning static const struct driver_info smsc95xx_info = {
11852f7ca802SSteve Glendinning 	.description	= "smsc95xx USB 2.0 Ethernet",
11862f7ca802SSteve Glendinning 	.bind		= smsc95xx_bind,
11872f7ca802SSteve Glendinning 	.unbind		= smsc95xx_unbind,
11882f7ca802SSteve Glendinning 	.link_reset	= smsc95xx_link_reset,
11892f7ca802SSteve Glendinning 	.reset		= smsc95xx_reset,
11902f7ca802SSteve Glendinning 	.rx_fixup	= smsc95xx_rx_fixup,
11912f7ca802SSteve Glendinning 	.tx_fixup	= smsc95xx_tx_fixup,
11922f7ca802SSteve Glendinning 	.status		= smsc95xx_status,
1193ec475623SSteve Glendinning 	.flags		= FLAG_ETHER | FLAG_SEND_ZLP,
11942f7ca802SSteve Glendinning };
11952f7ca802SSteve Glendinning 
11962f7ca802SSteve Glendinning static const struct usb_device_id products[] = {
11972f7ca802SSteve Glendinning 	{
11982f7ca802SSteve Glendinning 		/* SMSC9500 USB Ethernet Device */
11992f7ca802SSteve Glendinning 		USB_DEVICE(0x0424, 0x9500),
12002f7ca802SSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
12012f7ca802SSteve Glendinning 	},
1202726474b8SSteve Glendinning 	{
12036f41d12bSSteve Glendinning 		/* SMSC9505 USB Ethernet Device */
12046f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9505),
12056f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
12066f41d12bSSteve Glendinning 	},
12076f41d12bSSteve Glendinning 	{
12086f41d12bSSteve Glendinning 		/* SMSC9500A USB Ethernet Device */
12096f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9E00),
12106f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
12116f41d12bSSteve Glendinning 	},
12126f41d12bSSteve Glendinning 	{
12136f41d12bSSteve Glendinning 		/* SMSC9505A USB Ethernet Device */
12146f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9E01),
12156f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
12166f41d12bSSteve Glendinning 	},
12176f41d12bSSteve Glendinning 	{
1218726474b8SSteve Glendinning 		/* SMSC9512/9514 USB Hub & Ethernet Device */
1219726474b8SSteve Glendinning 		USB_DEVICE(0x0424, 0xec00),
1220726474b8SSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
1221726474b8SSteve Glendinning 	},
12226f41d12bSSteve Glendinning 	{
12236f41d12bSSteve Glendinning 		/* SMSC9500 USB Ethernet Device (SAL10) */
12246f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9900),
12256f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
12266f41d12bSSteve Glendinning 	},
12276f41d12bSSteve Glendinning 	{
12286f41d12bSSteve Glendinning 		/* SMSC9505 USB Ethernet Device (SAL10) */
12296f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9901),
12306f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
12316f41d12bSSteve Glendinning 	},
12326f41d12bSSteve Glendinning 	{
12336f41d12bSSteve Glendinning 		/* SMSC9500A USB Ethernet Device (SAL10) */
12346f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9902),
12356f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
12366f41d12bSSteve Glendinning 	},
12376f41d12bSSteve Glendinning 	{
12386f41d12bSSteve Glendinning 		/* SMSC9505A USB Ethernet Device (SAL10) */
12396f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9903),
12406f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
12416f41d12bSSteve Glendinning 	},
12426f41d12bSSteve Glendinning 	{
12436f41d12bSSteve Glendinning 		/* SMSC9512/9514 USB Hub & Ethernet Device (SAL10) */
12446f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9904),
12456f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
12466f41d12bSSteve Glendinning 	},
12476f41d12bSSteve Glendinning 	{
12486f41d12bSSteve Glendinning 		/* SMSC9500A USB Ethernet Device (HAL) */
12496f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9905),
12506f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
12516f41d12bSSteve Glendinning 	},
12526f41d12bSSteve Glendinning 	{
12536f41d12bSSteve Glendinning 		/* SMSC9505A USB Ethernet Device (HAL) */
12546f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9906),
12556f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
12566f41d12bSSteve Glendinning 	},
12576f41d12bSSteve Glendinning 	{
12586f41d12bSSteve Glendinning 		/* SMSC9500 USB Ethernet Device (Alternate ID) */
12596f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9907),
12606f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
12616f41d12bSSteve Glendinning 	},
12626f41d12bSSteve Glendinning 	{
12636f41d12bSSteve Glendinning 		/* SMSC9500A USB Ethernet Device (Alternate ID) */
12646f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9908),
12656f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
12666f41d12bSSteve Glendinning 	},
12676f41d12bSSteve Glendinning 	{
12686f41d12bSSteve Glendinning 		/* SMSC9512/9514 USB Hub & Ethernet Device (Alternate ID) */
12696f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9909),
12706f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
12716f41d12bSSteve Glendinning 	},
127288edaa41SSteve Glendinning 	{
127388edaa41SSteve Glendinning 		/* SMSC LAN9530 USB Ethernet Device */
127488edaa41SSteve Glendinning 		USB_DEVICE(0x0424, 0x9530),
127588edaa41SSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
127688edaa41SSteve Glendinning 	},
127788edaa41SSteve Glendinning 	{
127888edaa41SSteve Glendinning 		/* SMSC LAN9730 USB Ethernet Device */
127988edaa41SSteve Glendinning 		USB_DEVICE(0x0424, 0x9730),
128088edaa41SSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
128188edaa41SSteve Glendinning 	},
128288edaa41SSteve Glendinning 	{
128388edaa41SSteve Glendinning 		/* SMSC LAN89530 USB Ethernet Device */
128488edaa41SSteve Glendinning 		USB_DEVICE(0x0424, 0x9E08),
128588edaa41SSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
128688edaa41SSteve Glendinning 	},
12872f7ca802SSteve Glendinning 	{ },		/* END */
12882f7ca802SSteve Glendinning };
12892f7ca802SSteve Glendinning MODULE_DEVICE_TABLE(usb, products);
12902f7ca802SSteve Glendinning 
12912f7ca802SSteve Glendinning static struct usb_driver smsc95xx_driver = {
12922f7ca802SSteve Glendinning 	.name		= "smsc95xx",
12932f7ca802SSteve Glendinning 	.id_table	= products,
12942f7ca802SSteve Glendinning 	.probe		= usbnet_probe,
12952f7ca802SSteve Glendinning 	.suspend	= usbnet_suspend,
12962f7ca802SSteve Glendinning 	.resume		= usbnet_resume,
12972f7ca802SSteve Glendinning 	.disconnect	= usbnet_disconnect,
12982f7ca802SSteve Glendinning };
12992f7ca802SSteve Glendinning 
1300*d632eb1bSGreg Kroah-Hartman module_usb_driver(smsc95xx_driver);
13012f7ca802SSteve Glendinning 
13022f7ca802SSteve Glendinning MODULE_AUTHOR("Nancy Lin");
13032f7ca802SSteve Glendinning MODULE_AUTHOR("Steve Glendinning <steve.glendinning@smsc.com>");
13042f7ca802SSteve Glendinning MODULE_DESCRIPTION("SMSC95XX USB 2.0 Ethernet Devices");
13052f7ca802SSteve Glendinning MODULE_LICENSE("GPL");
1306