xref: /linux/drivers/net/usb/smsc95xx.c (revision c53647a5df9e66dd9fedf240198e1fe50d88c286)
11ccea77eSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
22f7ca802SSteve Glendinning  /***************************************************************************
32f7ca802SSteve Glendinning  *
42f7ca802SSteve Glendinning  * Copyright (C) 2007-2008 SMSC
52f7ca802SSteve Glendinning  *
62f7ca802SSteve Glendinning  *****************************************************************************/
72f7ca802SSteve Glendinning 
82f7ca802SSteve Glendinning #include <linux/module.h>
92f7ca802SSteve Glendinning #include <linux/kmod.h>
102f7ca802SSteve Glendinning #include <linux/netdevice.h>
112f7ca802SSteve Glendinning #include <linux/etherdevice.h>
122f7ca802SSteve Glendinning #include <linux/ethtool.h>
132f7ca802SSteve Glendinning #include <linux/mii.h>
142f7ca802SSteve Glendinning #include <linux/usb.h>
15bbd9f9eeSSteve Glendinning #include <linux/bitrev.h>
16bbd9f9eeSSteve Glendinning #include <linux/crc16.h>
172f7ca802SSteve Glendinning #include <linux/crc32.h>
182f7ca802SSteve Glendinning #include <linux/usb/usbnet.h>
195a0e3ad6STejun Heo #include <linux/slab.h>
20c489565bSArnd Bergmann #include <linux/of_net.h>
211ce8b372SLukas Wunner #include <linux/irq.h>
221ce8b372SLukas Wunner #include <linux/irqdomain.h>
2305b35e7eSAndre Edich #include <linux/mdio.h>
2405b35e7eSAndre Edich #include <linux/phy.h>
251710b52dSOleksij Rempel #include <net/selftests.h>
261710b52dSOleksij Rempel 
272f7ca802SSteve Glendinning #include "smsc95xx.h"
282f7ca802SSteve Glendinning 
292f7ca802SSteve Glendinning #define SMSC_CHIPNAME			"smsc95xx"
3005b35e7eSAndre Edich #define SMSC_DRIVER_VERSION		"2.0.0"
312f7ca802SSteve Glendinning #define HS_USB_PKT_SIZE			(512)
322f7ca802SSteve Glendinning #define FS_USB_PKT_SIZE			(64)
332f7ca802SSteve Glendinning #define DEFAULT_HS_BURST_CAP_SIZE	(16 * 1024 + 5 * HS_USB_PKT_SIZE)
342f7ca802SSteve Glendinning #define DEFAULT_FS_BURST_CAP_SIZE	(6 * 1024 + 33 * FS_USB_PKT_SIZE)
352f7ca802SSteve Glendinning #define DEFAULT_BULK_IN_DELAY		(0x00002000)
362f7ca802SSteve Glendinning #define MAX_SINGLE_PACKET_SIZE		(2048)
372f7ca802SSteve Glendinning #define LAN95XX_EEPROM_MAGIC		(0x9500)
382f7ca802SSteve Glendinning #define EEPROM_MAC_OFFSET		(0x01)
39f7b29271SSteve Glendinning #define DEFAULT_TX_CSUM_ENABLE		(true)
402f7ca802SSteve Glendinning #define DEFAULT_RX_CSUM_ENABLE		(true)
412f7ca802SSteve Glendinning #define SMSC95XX_INTERNAL_PHY_ID	(1)
422f7ca802SSteve Glendinning #define SMSC95XX_TX_OVERHEAD		(8)
43f7b29271SSteve Glendinning #define SMSC95XX_TX_OVERHEAD_CSUM	(12)
44e5e3af83SSteve Glendinning #define SUPPORTED_WAKE			(WAKE_PHY | WAKE_UCAST | WAKE_BCAST | \
45bbd9f9eeSSteve Glendinning 					 WAKE_MCAST | WAKE_ARP | WAKE_MAGIC)
462f7ca802SSteve Glendinning 
479ebca507SSteve Glendinning #define FEATURE_8_WAKEUP_FILTERS	(0x01)
489ebca507SSteve Glendinning #define FEATURE_PHY_NLP_CROSSOVER	(0x02)
49eb970ff0SMing Lei #define FEATURE_REMOTE_WAKEUP		(0x04)
509ebca507SSteve Glendinning 
51b2d4b150SSteve Glendinning #define SUSPEND_SUSPEND0		(0x01)
52b2d4b150SSteve Glendinning #define SUSPEND_SUSPEND1		(0x02)
53b2d4b150SSteve Glendinning #define SUSPEND_SUSPEND2		(0x04)
54b2d4b150SSteve Glendinning #define SUSPEND_SUSPEND3		(0x08)
55b2d4b150SSteve Glendinning #define SUSPEND_ALLMODES		(SUSPEND_SUSPEND0 | SUSPEND_SUSPEND1 | \
56b2d4b150SSteve Glendinning 					 SUSPEND_SUSPEND2 | SUSPEND_SUSPEND3)
57b2d4b150SSteve Glendinning 
581ce8b372SLukas Wunner #define SMSC95XX_NR_IRQS		(1) /* raise to 12 for GPIOs */
591ce8b372SLukas Wunner #define PHY_HWIRQ			(SMSC95XX_NR_IRQS - 1)
601ce8b372SLukas Wunner 
612f7ca802SSteve Glendinning struct smsc95xx_priv {
622f7ca802SSteve Glendinning 	u32 mac_cr;
633c0f3c60SMarc Zyngier 	u32 hash_hi;
643c0f3c60SMarc Zyngier 	u32 hash_lo;
65e0e474a8SSteve Glendinning 	u32 wolopts;
662f7ca802SSteve Glendinning 	spinlock_t mac_cr_lock;
679ebca507SSteve Glendinning 	u8 features;
68b2d4b150SSteve Glendinning 	u8 suspend_flags;
69809ff97aSAlexandru Tachici 	bool is_internal_phy;
701ce8b372SLukas Wunner 	struct irq_chip irqchip;
711ce8b372SLukas Wunner 	struct irq_domain *irqdomain;
721ce8b372SLukas Wunner 	struct fwnode_handle *irqfwnode;
7305b35e7eSAndre Edich 	struct mii_bus *mdiobus;
7405b35e7eSAndre Edich 	struct phy_device *phydev;
757b960c96SLukas Wunner 	struct task_struct *pm_task;
762f7ca802SSteve Glendinning };
772f7ca802SSteve Glendinning 
78eb939922SRusty Russell static bool turbo_mode = true;
792f7ca802SSteve Glendinning module_param(turbo_mode, bool, 0644);
802f7ca802SSteve Glendinning MODULE_PARM_DESC(turbo_mode, "Enable multiple frames per Rx transaction");
812f7ca802SSteve Glendinning 
8231472429SLukas Wunner static int __must_check smsc95xx_read_reg(struct usbnet *dev, u32 index,
8331472429SLukas Wunner 					  u32 *data)
842f7ca802SSteve Glendinning {
857b960c96SLukas Wunner 	struct smsc95xx_priv *pdata = dev->driver_priv;
8672108fd2SMing Lei 	u32 buf;
872f7ca802SSteve Glendinning 	int ret;
88ec32115dSMing Lei 	int (*fn)(struct usbnet *, u8, u8, u16, u16, void *, u16);
892f7ca802SSteve Glendinning 
907b960c96SLukas Wunner 	if (current != pdata->pm_task)
91ec32115dSMing Lei 		fn = usbnet_read_cmd;
92ec32115dSMing Lei 	else
93ec32115dSMing Lei 		fn = usbnet_read_cmd_nopm;
94ec32115dSMing Lei 
95ec32115dSMing Lei 	ret = fn(dev, USB_VENDOR_REQUEST_READ_REGISTER, USB_DIR_IN
96ec32115dSMing Lei 		 | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
9772108fd2SMing Lei 		 0, index, &buf, 4);
98c70c453aSFabio Estevam 	if (ret < 0) {
99c70c453aSFabio Estevam 		if (ret != -ENODEV)
1001e1d7412SJoe Perches 			netdev_warn(dev->net, "Failed to read reg index 0x%08x: %d\n",
1011e1d7412SJoe Perches 				    index, ret);
1025a36b68bSDan Carpenter 		return ret;
1035a36b68bSDan Carpenter 	}
1042f7ca802SSteve Glendinning 
10572108fd2SMing Lei 	le32_to_cpus(&buf);
10672108fd2SMing Lei 	*data = buf;
1072f7ca802SSteve Glendinning 
1082f7ca802SSteve Glendinning 	return ret;
1092f7ca802SSteve Glendinning }
1102f7ca802SSteve Glendinning 
11131472429SLukas Wunner static int __must_check smsc95xx_write_reg(struct usbnet *dev, u32 index,
11231472429SLukas Wunner 					   u32 data)
1132f7ca802SSteve Glendinning {
1147b960c96SLukas Wunner 	struct smsc95xx_priv *pdata = dev->driver_priv;
11572108fd2SMing Lei 	u32 buf;
1162f7ca802SSteve Glendinning 	int ret;
117ec32115dSMing Lei 	int (*fn)(struct usbnet *, u8, u8, u16, u16, const void *, u16);
1182f7ca802SSteve Glendinning 
1197b960c96SLukas Wunner 	if (current != pdata->pm_task)
120ec32115dSMing Lei 		fn = usbnet_write_cmd;
121ec32115dSMing Lei 	else
122ec32115dSMing Lei 		fn = usbnet_write_cmd_nopm;
123ec32115dSMing Lei 
12472108fd2SMing Lei 	buf = data;
12572108fd2SMing Lei 	cpu_to_le32s(&buf);
1262f7ca802SSteve Glendinning 
127ec32115dSMing Lei 	ret = fn(dev, USB_VENDOR_REQUEST_WRITE_REGISTER, USB_DIR_OUT
128ec32115dSMing Lei 		 | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
12972108fd2SMing Lei 		 0, index, &buf, 4);
130c70c453aSFabio Estevam 	if (ret < 0 && ret != -ENODEV)
1311e1d7412SJoe Perches 		netdev_warn(dev->net, "Failed to write reg index 0x%08x: %d\n",
1321e1d7412SJoe Perches 			    index, ret);
1332f7ca802SSteve Glendinning 
1342f7ca802SSteve Glendinning 	return ret;
1352f7ca802SSteve Glendinning }
1362f7ca802SSteve Glendinning 
1372f7ca802SSteve Glendinning /* Loop until the read is completed with timeout
1382f7ca802SSteve Glendinning  * called with phy_mutex held */
13931472429SLukas Wunner static int __must_check smsc95xx_phy_wait_not_busy(struct usbnet *dev)
1402f7ca802SSteve Glendinning {
1412f7ca802SSteve Glendinning 	unsigned long start_time = jiffies;
1422f7ca802SSteve Glendinning 	u32 val;
143769ea6d8SSteve Glendinning 	int ret;
1442f7ca802SSteve Glendinning 
1452f7ca802SSteve Glendinning 	do {
14631472429SLukas Wunner 		ret = smsc95xx_read_reg(dev, MII_ADDR, &val);
147b052e073SSteve Glendinning 		if (ret < 0) {
148c70c453aSFabio Estevam 			/* Ignore -ENODEV error during disconnect() */
149c70c453aSFabio Estevam 			if (ret == -ENODEV)
150c70c453aSFabio Estevam 				return 0;
151b052e073SSteve Glendinning 			netdev_warn(dev->net, "Error reading MII_ACCESS\n");
152b052e073SSteve Glendinning 			return ret;
153b052e073SSteve Glendinning 		}
154b052e073SSteve Glendinning 
1552f7ca802SSteve Glendinning 		if (!(val & MII_BUSY_))
1562f7ca802SSteve Glendinning 			return 0;
1572f7ca802SSteve Glendinning 	} while (!time_after(jiffies, start_time + HZ));
1582f7ca802SSteve Glendinning 
1592f7ca802SSteve Glendinning 	return -EIO;
1602f7ca802SSteve Glendinning }
1612f7ca802SSteve Glendinning 
16205b35e7eSAndre Edich static u32 mii_address_cmd(int phy_id, int idx, u16 op)
16305b35e7eSAndre Edich {
16405b35e7eSAndre Edich 	return (phy_id & 0x1f) << 11 | (idx & 0x1f) << 6 | op;
16505b35e7eSAndre Edich }
16605b35e7eSAndre Edich 
16731472429SLukas Wunner static int smsc95xx_mdio_read(struct usbnet *dev, int phy_id, int idx)
1682f7ca802SSteve Glendinning {
1692f7ca802SSteve Glendinning 	u32 val, addr;
170769ea6d8SSteve Glendinning 	int ret;
1712f7ca802SSteve Glendinning 
1722f7ca802SSteve Glendinning 	mutex_lock(&dev->phy_mutex);
1732f7ca802SSteve Glendinning 
1742f7ca802SSteve Glendinning 	/* confirm MII not busy */
17531472429SLukas Wunner 	ret = smsc95xx_phy_wait_not_busy(dev);
176b052e073SSteve Glendinning 	if (ret < 0) {
17705b35e7eSAndre Edich 		netdev_warn(dev->net, "%s: MII is busy\n", __func__);
178b052e073SSteve Glendinning 		goto done;
179b052e073SSteve Glendinning 	}
1802f7ca802SSteve Glendinning 
1812f7ca802SSteve Glendinning 	/* set the address, index & direction (read from PHY) */
18205b35e7eSAndre Edich 	addr = mii_address_cmd(phy_id, idx, MII_READ_ | MII_BUSY_);
18331472429SLukas Wunner 	ret = smsc95xx_write_reg(dev, MII_ADDR, addr);
184b052e073SSteve Glendinning 	if (ret < 0) {
185c70c453aSFabio Estevam 		if (ret != -ENODEV)
186b052e073SSteve Glendinning 			netdev_warn(dev->net, "Error writing MII_ADDR\n");
187b052e073SSteve Glendinning 		goto done;
188b052e073SSteve Glendinning 	}
1892f7ca802SSteve Glendinning 
19031472429SLukas Wunner 	ret = smsc95xx_phy_wait_not_busy(dev);
191b052e073SSteve Glendinning 	if (ret < 0) {
192b052e073SSteve Glendinning 		netdev_warn(dev->net, "Timed out reading MII reg %02X\n", idx);
193b052e073SSteve Glendinning 		goto done;
194b052e073SSteve Glendinning 	}
195769ea6d8SSteve Glendinning 
19631472429SLukas Wunner 	ret = smsc95xx_read_reg(dev, MII_DATA, &val);
197b052e073SSteve Glendinning 	if (ret < 0) {
198c70c453aSFabio Estevam 		if (ret != -ENODEV)
199b052e073SSteve Glendinning 			netdev_warn(dev->net, "Error reading MII_DATA\n");
200b052e073SSteve Glendinning 		goto done;
201b052e073SSteve Glendinning 	}
202769ea6d8SSteve Glendinning 
203769ea6d8SSteve Glendinning 	ret = (u16)(val & 0xFFFF);
204769ea6d8SSteve Glendinning 
205769ea6d8SSteve Glendinning done:
2062f7ca802SSteve Glendinning 	mutex_unlock(&dev->phy_mutex);
207c70c453aSFabio Estevam 
208c70c453aSFabio Estevam 	/* Ignore -ENODEV error during disconnect() */
209c70c453aSFabio Estevam 	if (ret == -ENODEV)
210c70c453aSFabio Estevam 		return 0;
211769ea6d8SSteve Glendinning 	return ret;
2122f7ca802SSteve Glendinning }
2132f7ca802SSteve Glendinning 
21431472429SLukas Wunner static void smsc95xx_mdio_write(struct usbnet *dev, int phy_id, int idx,
21531472429SLukas Wunner 				int regval)
2162f7ca802SSteve Glendinning {
2172f7ca802SSteve Glendinning 	u32 val, addr;
218769ea6d8SSteve Glendinning 	int ret;
2192f7ca802SSteve Glendinning 
2202f7ca802SSteve Glendinning 	mutex_lock(&dev->phy_mutex);
2212f7ca802SSteve Glendinning 
2222f7ca802SSteve Glendinning 	/* confirm MII not busy */
22331472429SLukas Wunner 	ret = smsc95xx_phy_wait_not_busy(dev);
224b052e073SSteve Glendinning 	if (ret < 0) {
22505b35e7eSAndre Edich 		netdev_warn(dev->net, "%s: MII is busy\n", __func__);
226b052e073SSteve Glendinning 		goto done;
227b052e073SSteve Glendinning 	}
2282f7ca802SSteve Glendinning 
2292f7ca802SSteve Glendinning 	val = regval;
23031472429SLukas Wunner 	ret = smsc95xx_write_reg(dev, MII_DATA, val);
231b052e073SSteve Glendinning 	if (ret < 0) {
232c70c453aSFabio Estevam 		if (ret != -ENODEV)
233b052e073SSteve Glendinning 			netdev_warn(dev->net, "Error writing MII_DATA\n");
234b052e073SSteve Glendinning 		goto done;
235b052e073SSteve Glendinning 	}
2362f7ca802SSteve Glendinning 
2372f7ca802SSteve Glendinning 	/* set the address, index & direction (write to PHY) */
23805b35e7eSAndre Edich 	addr = mii_address_cmd(phy_id, idx, MII_WRITE_ | MII_BUSY_);
23931472429SLukas Wunner 	ret = smsc95xx_write_reg(dev, MII_ADDR, addr);
240b052e073SSteve Glendinning 	if (ret < 0) {
241c70c453aSFabio Estevam 		if (ret != -ENODEV)
242b052e073SSteve Glendinning 			netdev_warn(dev->net, "Error writing MII_ADDR\n");
243b052e073SSteve Glendinning 		goto done;
244b052e073SSteve Glendinning 	}
2452f7ca802SSteve Glendinning 
24631472429SLukas Wunner 	ret = smsc95xx_phy_wait_not_busy(dev);
247b052e073SSteve Glendinning 	if (ret < 0) {
248b052e073SSteve Glendinning 		netdev_warn(dev->net, "Timed out writing MII reg %02X\n", idx);
249b052e073SSteve Glendinning 		goto done;
250b052e073SSteve Glendinning 	}
2512f7ca802SSteve Glendinning 
252769ea6d8SSteve Glendinning done:
2532f7ca802SSteve Glendinning 	mutex_unlock(&dev->phy_mutex);
2542f7ca802SSteve Glendinning }
2552f7ca802SSteve Glendinning 
256809ff97aSAlexandru Tachici static int smsc95xx_mdiobus_reset(struct mii_bus *bus)
257809ff97aSAlexandru Tachici {
258809ff97aSAlexandru Tachici 	struct smsc95xx_priv *pdata;
259809ff97aSAlexandru Tachici 	struct usbnet *dev;
260809ff97aSAlexandru Tachici 	u32 val;
261809ff97aSAlexandru Tachici 	int ret;
262809ff97aSAlexandru Tachici 
263809ff97aSAlexandru Tachici 	dev = bus->priv;
264809ff97aSAlexandru Tachici 	pdata = dev->driver_priv;
265809ff97aSAlexandru Tachici 
266809ff97aSAlexandru Tachici 	if (pdata->is_internal_phy)
267809ff97aSAlexandru Tachici 		return 0;
268809ff97aSAlexandru Tachici 
269809ff97aSAlexandru Tachici 	mutex_lock(&dev->phy_mutex);
270809ff97aSAlexandru Tachici 
271809ff97aSAlexandru Tachici 	ret = smsc95xx_read_reg(dev, PM_CTRL, &val);
272809ff97aSAlexandru Tachici 	if (ret < 0)
273809ff97aSAlexandru Tachici 		goto reset_out;
274809ff97aSAlexandru Tachici 
275809ff97aSAlexandru Tachici 	val |= PM_CTL_PHY_RST_;
276809ff97aSAlexandru Tachici 
277809ff97aSAlexandru Tachici 	ret = smsc95xx_write_reg(dev, PM_CTRL, val);
278809ff97aSAlexandru Tachici 	if (ret < 0)
279809ff97aSAlexandru Tachici 		goto reset_out;
280809ff97aSAlexandru Tachici 
281809ff97aSAlexandru Tachici 	/* Driver has no knowledge at this point about the external PHY.
282809ff97aSAlexandru Tachici 	 * The 802.3 specifies that the reset process shall
283809ff97aSAlexandru Tachici 	 * be completed within 0.5 s.
284809ff97aSAlexandru Tachici 	 */
285809ff97aSAlexandru Tachici 	fsleep(500000);
286809ff97aSAlexandru Tachici 
287809ff97aSAlexandru Tachici reset_out:
288809ff97aSAlexandru Tachici 	mutex_unlock(&dev->phy_mutex);
289809ff97aSAlexandru Tachici 
290809ff97aSAlexandru Tachici 	return 0;
291809ff97aSAlexandru Tachici }
292809ff97aSAlexandru Tachici 
29305b35e7eSAndre Edich static int smsc95xx_mdiobus_read(struct mii_bus *bus, int phy_id, int idx)
294e5e3af83SSteve Glendinning {
29505b35e7eSAndre Edich 	struct usbnet *dev = bus->priv;
29605b35e7eSAndre Edich 
29731472429SLukas Wunner 	return smsc95xx_mdio_read(dev, phy_id, idx);
298e5e3af83SSteve Glendinning }
299e5e3af83SSteve Glendinning 
30005b35e7eSAndre Edich static int smsc95xx_mdiobus_write(struct mii_bus *bus, int phy_id, int idx,
30105b35e7eSAndre Edich 				  u16 regval)
302e5e3af83SSteve Glendinning {
30305b35e7eSAndre Edich 	struct usbnet *dev = bus->priv;
30405b35e7eSAndre Edich 
30531472429SLukas Wunner 	smsc95xx_mdio_write(dev, phy_id, idx, regval);
30605b35e7eSAndre Edich 	return 0;
307e5e3af83SSteve Glendinning }
308e5e3af83SSteve Glendinning 
309769ea6d8SSteve Glendinning static int __must_check smsc95xx_wait_eeprom(struct usbnet *dev)
3102f7ca802SSteve Glendinning {
3112f7ca802SSteve Glendinning 	unsigned long start_time = jiffies;
3122f7ca802SSteve Glendinning 	u32 val;
313769ea6d8SSteve Glendinning 	int ret;
3142f7ca802SSteve Glendinning 
3152f7ca802SSteve Glendinning 	do {
316769ea6d8SSteve Glendinning 		ret = smsc95xx_read_reg(dev, E2P_CMD, &val);
317b052e073SSteve Glendinning 		if (ret < 0) {
318b052e073SSteve Glendinning 			netdev_warn(dev->net, "Error reading E2P_CMD\n");
319b052e073SSteve Glendinning 			return ret;
320b052e073SSteve Glendinning 		}
321b052e073SSteve Glendinning 
3222f7ca802SSteve Glendinning 		if (!(val & E2P_CMD_BUSY_) || (val & E2P_CMD_TIMEOUT_))
3232f7ca802SSteve Glendinning 			break;
3242f7ca802SSteve Glendinning 		udelay(40);
3252f7ca802SSteve Glendinning 	} while (!time_after(jiffies, start_time + HZ));
3262f7ca802SSteve Glendinning 
3272f7ca802SSteve Glendinning 	if (val & (E2P_CMD_TIMEOUT_ | E2P_CMD_BUSY_)) {
32860b86755SJoe Perches 		netdev_warn(dev->net, "EEPROM read operation timeout\n");
3292f7ca802SSteve Glendinning 		return -EIO;
3302f7ca802SSteve Glendinning 	}
3312f7ca802SSteve Glendinning 
3322f7ca802SSteve Glendinning 	return 0;
3332f7ca802SSteve Glendinning }
3342f7ca802SSteve Glendinning 
335769ea6d8SSteve Glendinning static int __must_check smsc95xx_eeprom_confirm_not_busy(struct usbnet *dev)
3362f7ca802SSteve Glendinning {
3372f7ca802SSteve Glendinning 	unsigned long start_time = jiffies;
3382f7ca802SSteve Glendinning 	u32 val;
339769ea6d8SSteve Glendinning 	int ret;
3402f7ca802SSteve Glendinning 
3412f7ca802SSteve Glendinning 	do {
342769ea6d8SSteve Glendinning 		ret = smsc95xx_read_reg(dev, E2P_CMD, &val);
343b052e073SSteve Glendinning 		if (ret < 0) {
344b052e073SSteve Glendinning 			netdev_warn(dev->net, "Error reading E2P_CMD\n");
345b052e073SSteve Glendinning 			return ret;
346b052e073SSteve Glendinning 		}
3472f7ca802SSteve Glendinning 
3482f7ca802SSteve Glendinning 		if (!(val & E2P_CMD_BUSY_))
3492f7ca802SSteve Glendinning 			return 0;
3502f7ca802SSteve Glendinning 
3512f7ca802SSteve Glendinning 		udelay(40);
3522f7ca802SSteve Glendinning 	} while (!time_after(jiffies, start_time + HZ));
3532f7ca802SSteve Glendinning 
35460b86755SJoe Perches 	netdev_warn(dev->net, "EEPROM is busy\n");
3552f7ca802SSteve Glendinning 	return -EIO;
3562f7ca802SSteve Glendinning }
3572f7ca802SSteve Glendinning 
3582f7ca802SSteve Glendinning static int smsc95xx_read_eeprom(struct usbnet *dev, u32 offset, u32 length,
3592f7ca802SSteve Glendinning 				u8 *data)
3602f7ca802SSteve Glendinning {
3612f7ca802SSteve Glendinning 	u32 val;
3622f7ca802SSteve Glendinning 	int i, ret;
3632f7ca802SSteve Glendinning 
3642f7ca802SSteve Glendinning 	BUG_ON(!dev);
3652f7ca802SSteve Glendinning 	BUG_ON(!data);
3662f7ca802SSteve Glendinning 
3672f7ca802SSteve Glendinning 	ret = smsc95xx_eeprom_confirm_not_busy(dev);
3682f7ca802SSteve Glendinning 	if (ret)
3692f7ca802SSteve Glendinning 		return ret;
3702f7ca802SSteve Glendinning 
3712f7ca802SSteve Glendinning 	for (i = 0; i < length; i++) {
3722f7ca802SSteve Glendinning 		val = E2P_CMD_BUSY_ | E2P_CMD_READ_ | (offset & E2P_CMD_ADDR_);
373769ea6d8SSteve Glendinning 		ret = smsc95xx_write_reg(dev, E2P_CMD, val);
374b052e073SSteve Glendinning 		if (ret < 0) {
375b052e073SSteve Glendinning 			netdev_warn(dev->net, "Error writing E2P_CMD\n");
376b052e073SSteve Glendinning 			return ret;
377b052e073SSteve Glendinning 		}
3782f7ca802SSteve Glendinning 
3792f7ca802SSteve Glendinning 		ret = smsc95xx_wait_eeprom(dev);
3802f7ca802SSteve Glendinning 		if (ret < 0)
3812f7ca802SSteve Glendinning 			return ret;
3822f7ca802SSteve Glendinning 
383769ea6d8SSteve Glendinning 		ret = smsc95xx_read_reg(dev, E2P_DATA, &val);
384b052e073SSteve Glendinning 		if (ret < 0) {
385b052e073SSteve Glendinning 			netdev_warn(dev->net, "Error reading E2P_DATA\n");
386b052e073SSteve Glendinning 			return ret;
387b052e073SSteve Glendinning 		}
3882f7ca802SSteve Glendinning 
3892f7ca802SSteve Glendinning 		data[i] = val & 0xFF;
3902f7ca802SSteve Glendinning 		offset++;
3912f7ca802SSteve Glendinning 	}
3922f7ca802SSteve Glendinning 
3932f7ca802SSteve Glendinning 	return 0;
3942f7ca802SSteve Glendinning }
3952f7ca802SSteve Glendinning 
3962f7ca802SSteve Glendinning static int smsc95xx_write_eeprom(struct usbnet *dev, u32 offset, u32 length,
3972f7ca802SSteve Glendinning 				 u8 *data)
3982f7ca802SSteve Glendinning {
3992f7ca802SSteve Glendinning 	u32 val;
4002f7ca802SSteve Glendinning 	int i, ret;
4012f7ca802SSteve Glendinning 
4022f7ca802SSteve Glendinning 	BUG_ON(!dev);
4032f7ca802SSteve Glendinning 	BUG_ON(!data);
4042f7ca802SSteve Glendinning 
4052f7ca802SSteve Glendinning 	ret = smsc95xx_eeprom_confirm_not_busy(dev);
4062f7ca802SSteve Glendinning 	if (ret)
4072f7ca802SSteve Glendinning 		return ret;
4082f7ca802SSteve Glendinning 
4092f7ca802SSteve Glendinning 	/* Issue write/erase enable command */
4102f7ca802SSteve Glendinning 	val = E2P_CMD_BUSY_ | E2P_CMD_EWEN_;
411769ea6d8SSteve Glendinning 	ret = smsc95xx_write_reg(dev, E2P_CMD, val);
412b052e073SSteve Glendinning 	if (ret < 0) {
413b052e073SSteve Glendinning 		netdev_warn(dev->net, "Error writing E2P_DATA\n");
414b052e073SSteve Glendinning 		return ret;
415b052e073SSteve Glendinning 	}
4162f7ca802SSteve Glendinning 
4172f7ca802SSteve Glendinning 	ret = smsc95xx_wait_eeprom(dev);
4182f7ca802SSteve Glendinning 	if (ret < 0)
4192f7ca802SSteve Glendinning 		return ret;
4202f7ca802SSteve Glendinning 
4212f7ca802SSteve Glendinning 	for (i = 0; i < length; i++) {
4222f7ca802SSteve Glendinning 
4232f7ca802SSteve Glendinning 		/* Fill data register */
4242f7ca802SSteve Glendinning 		val = data[i];
425769ea6d8SSteve Glendinning 		ret = smsc95xx_write_reg(dev, E2P_DATA, val);
426b052e073SSteve Glendinning 		if (ret < 0) {
427b052e073SSteve Glendinning 			netdev_warn(dev->net, "Error writing E2P_DATA\n");
428b052e073SSteve Glendinning 			return ret;
429b052e073SSteve Glendinning 		}
4302f7ca802SSteve Glendinning 
4312f7ca802SSteve Glendinning 		/* Send "write" command */
4322f7ca802SSteve Glendinning 		val = E2P_CMD_BUSY_ | E2P_CMD_WRITE_ | (offset & E2P_CMD_ADDR_);
433769ea6d8SSteve Glendinning 		ret = smsc95xx_write_reg(dev, E2P_CMD, val);
434b052e073SSteve Glendinning 		if (ret < 0) {
435b052e073SSteve Glendinning 			netdev_warn(dev->net, "Error writing E2P_CMD\n");
436b052e073SSteve Glendinning 			return ret;
437b052e073SSteve Glendinning 		}
4382f7ca802SSteve Glendinning 
4392f7ca802SSteve Glendinning 		ret = smsc95xx_wait_eeprom(dev);
4402f7ca802SSteve Glendinning 		if (ret < 0)
4412f7ca802SSteve Glendinning 			return ret;
4422f7ca802SSteve Glendinning 
4432f7ca802SSteve Glendinning 		offset++;
4442f7ca802SSteve Glendinning 	}
4452f7ca802SSteve Glendinning 
4462f7ca802SSteve Glendinning 	return 0;
4472f7ca802SSteve Glendinning }
4482f7ca802SSteve Glendinning 
449769ea6d8SSteve Glendinning static int __must_check smsc95xx_write_reg_async(struct usbnet *dev, u16 index,
4507b9e7580SSteve Glendinning 						 u32 data)
4512f7ca802SSteve Glendinning {
4521d74a6bdSSteve Glendinning 	const u16 size = 4;
4537b9e7580SSteve Glendinning 	u32 buf;
45472108fd2SMing Lei 	int ret;
4552f7ca802SSteve Glendinning 
4567b9e7580SSteve Glendinning 	buf = data;
4577b9e7580SSteve Glendinning 	cpu_to_le32s(&buf);
4587b9e7580SSteve Glendinning 
45972108fd2SMing Lei 	ret = usbnet_write_cmd_async(dev, USB_VENDOR_REQUEST_WRITE_REGISTER,
46072108fd2SMing Lei 				     USB_DIR_OUT | USB_TYPE_VENDOR |
46172108fd2SMing Lei 				     USB_RECIP_DEVICE,
4627b9e7580SSteve Glendinning 				     0, index, &buf, size);
46372108fd2SMing Lei 	if (ret < 0)
46472108fd2SMing Lei 		netdev_warn(dev->net, "Error write async cmd, sts=%d\n",
46572108fd2SMing Lei 			    ret);
46672108fd2SMing Lei 	return ret;
4672f7ca802SSteve Glendinning }
4682f7ca802SSteve Glendinning 
4692f7ca802SSteve Glendinning /* returns hash bit number for given MAC address
4702f7ca802SSteve Glendinning  * example:
4712f7ca802SSteve Glendinning  * 01 00 5E 00 00 01 -> returns bit number 31 */
4722f7ca802SSteve Glendinning static unsigned int smsc95xx_hash(char addr[ETH_ALEN])
4732f7ca802SSteve Glendinning {
4742f7ca802SSteve Glendinning 	return (ether_crc(ETH_ALEN, addr) >> 26) & 0x3f;
4752f7ca802SSteve Glendinning }
4762f7ca802SSteve Glendinning 
4772f7ca802SSteve Glendinning static void smsc95xx_set_multicast(struct net_device *netdev)
4782f7ca802SSteve Glendinning {
4792f7ca802SSteve Glendinning 	struct usbnet *dev = netdev_priv(netdev);
480ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
4812f7ca802SSteve Glendinning 	unsigned long flags;
482769ea6d8SSteve Glendinning 	int ret;
4832f7ca802SSteve Glendinning 
4843c0f3c60SMarc Zyngier 	pdata->hash_hi = 0;
4853c0f3c60SMarc Zyngier 	pdata->hash_lo = 0;
4863c0f3c60SMarc Zyngier 
4872f7ca802SSteve Glendinning 	spin_lock_irqsave(&pdata->mac_cr_lock, flags);
4882f7ca802SSteve Glendinning 
4892f7ca802SSteve Glendinning 	if (dev->net->flags & IFF_PROMISC) {
490a475f603SJoe Perches 		netif_dbg(dev, drv, dev->net, "promiscuous mode enabled\n");
4912f7ca802SSteve Glendinning 		pdata->mac_cr |= MAC_CR_PRMS_;
4922f7ca802SSteve Glendinning 		pdata->mac_cr &= ~(MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
4932f7ca802SSteve Glendinning 	} else if (dev->net->flags & IFF_ALLMULTI) {
494a475f603SJoe Perches 		netif_dbg(dev, drv, dev->net, "receive all multicast enabled\n");
4952f7ca802SSteve Glendinning 		pdata->mac_cr |= MAC_CR_MCPAS_;
4962f7ca802SSteve Glendinning 		pdata->mac_cr &= ~(MAC_CR_PRMS_ | MAC_CR_HPFILT_);
4974cd24eafSJiri Pirko 	} else if (!netdev_mc_empty(dev->net)) {
49822bedad3SJiri Pirko 		struct netdev_hw_addr *ha;
4992f7ca802SSteve Glendinning 
5002f7ca802SSteve Glendinning 		pdata->mac_cr |= MAC_CR_HPFILT_;
5012f7ca802SSteve Glendinning 		pdata->mac_cr &= ~(MAC_CR_PRMS_ | MAC_CR_MCPAS_);
5022f7ca802SSteve Glendinning 
50322bedad3SJiri Pirko 		netdev_for_each_mc_addr(ha, netdev) {
50422bedad3SJiri Pirko 			u32 bitnum = smsc95xx_hash(ha->addr);
5052f7ca802SSteve Glendinning 			u32 mask = 0x01 << (bitnum & 0x1F);
5062f7ca802SSteve Glendinning 			if (bitnum & 0x20)
5073c0f3c60SMarc Zyngier 				pdata->hash_hi |= mask;
5082f7ca802SSteve Glendinning 			else
5093c0f3c60SMarc Zyngier 				pdata->hash_lo |= mask;
5102f7ca802SSteve Glendinning 		}
5112f7ca802SSteve Glendinning 
512a475f603SJoe Perches 		netif_dbg(dev, drv, dev->net, "HASHH=0x%08X, HASHL=0x%08X\n",
5133c0f3c60SMarc Zyngier 				   pdata->hash_hi, pdata->hash_lo);
5142f7ca802SSteve Glendinning 	} else {
515a475f603SJoe Perches 		netif_dbg(dev, drv, dev->net, "receive own packets only\n");
5162f7ca802SSteve Glendinning 		pdata->mac_cr &=
5172f7ca802SSteve Glendinning 			~(MAC_CR_PRMS_ | MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
5182f7ca802SSteve Glendinning 	}
5192f7ca802SSteve Glendinning 
5202f7ca802SSteve Glendinning 	spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
5212f7ca802SSteve Glendinning 
5222f7ca802SSteve Glendinning 	/* Initiate async writes, as we can't wait for completion here */
5237b9e7580SSteve Glendinning 	ret = smsc95xx_write_reg_async(dev, HASHH, pdata->hash_hi);
524b052e073SSteve Glendinning 	if (ret < 0)
525b052e073SSteve Glendinning 		netdev_warn(dev->net, "failed to initiate async write to HASHH\n");
526769ea6d8SSteve Glendinning 
5277b9e7580SSteve Glendinning 	ret = smsc95xx_write_reg_async(dev, HASHL, pdata->hash_lo);
528b052e073SSteve Glendinning 	if (ret < 0)
529b052e073SSteve Glendinning 		netdev_warn(dev->net, "failed to initiate async write to HASHL\n");
530769ea6d8SSteve Glendinning 
5317b9e7580SSteve Glendinning 	ret = smsc95xx_write_reg_async(dev, MAC_CR, pdata->mac_cr);
532b052e073SSteve Glendinning 	if (ret < 0)
533b052e073SSteve Glendinning 		netdev_warn(dev->net, "failed to initiate async write to MAC_CR\n");
5342f7ca802SSteve Glendinning }
5352f7ca802SSteve Glendinning 
53605b35e7eSAndre Edich static int smsc95xx_phy_update_flowcontrol(struct usbnet *dev)
5372f7ca802SSteve Glendinning {
5389c082731SNisar Sayed 	u32 flow = 0, afc_cfg;
53905b35e7eSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
54005b35e7eSAndre Edich 	bool tx_pause, rx_pause;
5412f7ca802SSteve Glendinning 
5422f7ca802SSteve Glendinning 	int ret = smsc95xx_read_reg(dev, AFC_CFG, &afc_cfg);
543e360a8b4SSteve Glendinning 	if (ret < 0)
544b052e073SSteve Glendinning 		return ret;
5452f7ca802SSteve Glendinning 
54605b35e7eSAndre Edich 	if (pdata->phydev->duplex == DUPLEX_FULL) {
54705b35e7eSAndre Edich 		phy_get_pause(pdata->phydev, &tx_pause, &rx_pause);
5482f7ca802SSteve Glendinning 
54905b35e7eSAndre Edich 		if (rx_pause)
5502f7ca802SSteve Glendinning 			flow = 0xFFFF0002;
5512f7ca802SSteve Glendinning 
55205b35e7eSAndre Edich 		if (tx_pause) {
5532f7ca802SSteve Glendinning 			afc_cfg |= 0xF;
5549c082731SNisar Sayed 			flow |= 0xFFFF0000;
5559c082731SNisar Sayed 		} else {
5562f7ca802SSteve Glendinning 			afc_cfg &= ~0xF;
5579c082731SNisar Sayed 		}
5582f7ca802SSteve Glendinning 
559a475f603SJoe Perches 		netif_dbg(dev, link, dev->net, "rx pause %s, tx pause %s\n",
56005b35e7eSAndre Edich 			  rx_pause ? "enabled" : "disabled",
56105b35e7eSAndre Edich 			  tx_pause ? "enabled" : "disabled");
5622f7ca802SSteve Glendinning 	} else {
563a475f603SJoe Perches 		netif_dbg(dev, link, dev->net, "half duplex\n");
5642f7ca802SSteve Glendinning 		afc_cfg |= 0xF;
5652f7ca802SSteve Glendinning 	}
5662f7ca802SSteve Glendinning 
567769ea6d8SSteve Glendinning 	ret = smsc95xx_write_reg(dev, FLOW, flow);
568b052e073SSteve Glendinning 	if (ret < 0)
569b052e073SSteve Glendinning 		return ret;
570e360a8b4SSteve Glendinning 
571e360a8b4SSteve Glendinning 	return smsc95xx_write_reg(dev, AFC_CFG, afc_cfg);
5722f7ca802SSteve Glendinning }
5732f7ca802SSteve Glendinning 
5748960f878SLukas Wunner static void smsc95xx_mac_update_fullduplex(struct usbnet *dev)
5752f7ca802SSteve Glendinning {
576ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
5772f7ca802SSteve Glendinning 	unsigned long flags;
578769ea6d8SSteve Glendinning 	int ret;
5792f7ca802SSteve Glendinning 
5802f7ca802SSteve Glendinning 	spin_lock_irqsave(&pdata->mac_cr_lock, flags);
58105b35e7eSAndre Edich 	if (pdata->phydev->duplex != DUPLEX_FULL) {
5822f7ca802SSteve Glendinning 		pdata->mac_cr &= ~MAC_CR_FDPX_;
5832f7ca802SSteve Glendinning 		pdata->mac_cr |= MAC_CR_RCVOWN_;
5842f7ca802SSteve Glendinning 	} else {
5852f7ca802SSteve Glendinning 		pdata->mac_cr &= ~MAC_CR_RCVOWN_;
5862f7ca802SSteve Glendinning 		pdata->mac_cr |= MAC_CR_FDPX_;
5872f7ca802SSteve Glendinning 	}
5882f7ca802SSteve Glendinning 	spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
5892f7ca802SSteve Glendinning 
590769ea6d8SSteve Glendinning 	ret = smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
5918960f878SLukas Wunner 	if (ret < 0) {
5928960f878SLukas Wunner 		if (ret != -ENODEV)
5938960f878SLukas Wunner 			netdev_warn(dev->net,
5948960f878SLukas Wunner 				    "Error updating MAC full duplex mode\n");
5958960f878SLukas Wunner 		return;
5968960f878SLukas Wunner 	}
5972f7ca802SSteve Glendinning 
59805b35e7eSAndre Edich 	ret = smsc95xx_phy_update_flowcontrol(dev);
599b052e073SSteve Glendinning 	if (ret < 0)
600b052e073SSteve Glendinning 		netdev_warn(dev->net, "Error updating PHY flow control\n");
6012f7ca802SSteve Glendinning }
6022f7ca802SSteve Glendinning 
6032f7ca802SSteve Glendinning static void smsc95xx_status(struct usbnet *dev, struct urb *urb)
6042f7ca802SSteve Glendinning {
6051ce8b372SLukas Wunner 	struct smsc95xx_priv *pdata = dev->driver_priv;
6061ce8b372SLukas Wunner 	unsigned long flags;
6072f7ca802SSteve Glendinning 	u32 intdata;
6082f7ca802SSteve Glendinning 
6092f7ca802SSteve Glendinning 	if (urb->actual_length != 4) {
61060b86755SJoe Perches 		netdev_warn(dev->net, "unexpected urb length %d\n",
61160b86755SJoe Perches 			    urb->actual_length);
6122f7ca802SSteve Glendinning 		return;
6132f7ca802SSteve Glendinning 	}
6142f7ca802SSteve Glendinning 
6156809d216SBen Dooks 	intdata = get_unaligned_le32(urb->transfer_buffer);
616a475f603SJoe Perches 	netif_dbg(dev, link, dev->net, "intdata: 0x%08X\n", intdata);
6172f7ca802SSteve Glendinning 
6181ce8b372SLukas Wunner 	local_irq_save(flags);
6191ce8b372SLukas Wunner 
6202f7ca802SSteve Glendinning 	if (intdata & INT_ENP_PHY_INT_)
6211ce8b372SLukas Wunner 		generic_handle_domain_irq(pdata->irqdomain, PHY_HWIRQ);
6222f7ca802SSteve Glendinning 	else
62360b86755SJoe Perches 		netdev_warn(dev->net, "unexpected interrupt, intdata=0x%08X\n",
62460b86755SJoe Perches 			    intdata);
6251ce8b372SLukas Wunner 
6261ce8b372SLukas Wunner 	local_irq_restore(flags);
6272f7ca802SSteve Glendinning }
6282f7ca802SSteve Glendinning 
629f7b29271SSteve Glendinning /* Enable or disable Tx & Rx checksum offload engines */
630c8f44affSMichał Mirosław static int smsc95xx_set_features(struct net_device *netdev,
631c8f44affSMichał Mirosław 	netdev_features_t features)
6322f7ca802SSteve Glendinning {
63378e47fe4SMichał Mirosław 	struct usbnet *dev = netdev_priv(netdev);
6342f7ca802SSteve Glendinning 	u32 read_buf;
63578e47fe4SMichał Mirosław 	int ret;
63678e47fe4SMichał Mirosław 
63778e47fe4SMichał Mirosław 	ret = smsc95xx_read_reg(dev, COE_CR, &read_buf);
638e360a8b4SSteve Glendinning 	if (ret < 0)
639b052e073SSteve Glendinning 		return ret;
6402f7ca802SSteve Glendinning 
641fe0cd8caSNisar Sayed 	if (features & NETIF_F_IP_CSUM)
642f7b29271SSteve Glendinning 		read_buf |= Tx_COE_EN_;
643f7b29271SSteve Glendinning 	else
644f7b29271SSteve Glendinning 		read_buf &= ~Tx_COE_EN_;
645f7b29271SSteve Glendinning 
64678e47fe4SMichał Mirosław 	if (features & NETIF_F_RXCSUM)
6472f7ca802SSteve Glendinning 		read_buf |= Rx_COE_EN_;
6482f7ca802SSteve Glendinning 	else
6492f7ca802SSteve Glendinning 		read_buf &= ~Rx_COE_EN_;
6502f7ca802SSteve Glendinning 
6512f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, COE_CR, read_buf);
652e360a8b4SSteve Glendinning 	if (ret < 0)
653b052e073SSteve Glendinning 		return ret;
6542f7ca802SSteve Glendinning 
655a475f603SJoe Perches 	netif_dbg(dev, hw, dev->net, "COE_CR = 0x%08x\n", read_buf);
6562f7ca802SSteve Glendinning 	return 0;
6572f7ca802SSteve Glendinning }
6582f7ca802SSteve Glendinning 
6592f7ca802SSteve Glendinning static int smsc95xx_ethtool_get_eeprom_len(struct net_device *net)
6602f7ca802SSteve Glendinning {
6612f7ca802SSteve Glendinning 	return MAX_EEPROM_SIZE;
6622f7ca802SSteve Glendinning }
6632f7ca802SSteve Glendinning 
6642f7ca802SSteve Glendinning static int smsc95xx_ethtool_get_eeprom(struct net_device *netdev,
6652f7ca802SSteve Glendinning 				       struct ethtool_eeprom *ee, u8 *data)
6662f7ca802SSteve Glendinning {
6672f7ca802SSteve Glendinning 	struct usbnet *dev = netdev_priv(netdev);
6682f7ca802SSteve Glendinning 
6692f7ca802SSteve Glendinning 	ee->magic = LAN95XX_EEPROM_MAGIC;
6702f7ca802SSteve Glendinning 
6712f7ca802SSteve Glendinning 	return smsc95xx_read_eeprom(dev, ee->offset, ee->len, data);
6722f7ca802SSteve Glendinning }
6732f7ca802SSteve Glendinning 
6742f7ca802SSteve Glendinning static int smsc95xx_ethtool_set_eeprom(struct net_device *netdev,
6752f7ca802SSteve Glendinning 				       struct ethtool_eeprom *ee, u8 *data)
6762f7ca802SSteve Glendinning {
6772f7ca802SSteve Glendinning 	struct usbnet *dev = netdev_priv(netdev);
6782f7ca802SSteve Glendinning 
6792f7ca802SSteve Glendinning 	if (ee->magic != LAN95XX_EEPROM_MAGIC) {
68060b86755SJoe Perches 		netdev_warn(dev->net, "EEPROM: magic value mismatch, magic = 0x%x\n",
6812f7ca802SSteve Glendinning 			    ee->magic);
6822f7ca802SSteve Glendinning 		return -EINVAL;
6832f7ca802SSteve Glendinning 	}
6842f7ca802SSteve Glendinning 
6852f7ca802SSteve Glendinning 	return smsc95xx_write_eeprom(dev, ee->offset, ee->len, data);
6862f7ca802SSteve Glendinning }
6872f7ca802SSteve Glendinning 
6889fa32e94SEmeric Vigier static int smsc95xx_ethtool_getregslen(struct net_device *netdev)
6899fa32e94SEmeric Vigier {
6909fa32e94SEmeric Vigier 	/* all smsc95xx registers */
69196245317SSteve Glendinning 	return COE_CR - ID_REV + sizeof(u32);
6929fa32e94SEmeric Vigier }
6939fa32e94SEmeric Vigier 
6949fa32e94SEmeric Vigier static void
6959fa32e94SEmeric Vigier smsc95xx_ethtool_getregs(struct net_device *netdev, struct ethtool_regs *regs,
6969fa32e94SEmeric Vigier 			 void *buf)
6979fa32e94SEmeric Vigier {
6989fa32e94SEmeric Vigier 	struct usbnet *dev = netdev_priv(netdev);
699d348446bSDan Carpenter 	unsigned int i, j;
700d348446bSDan Carpenter 	int retval;
7019fa32e94SEmeric Vigier 	u32 *data = buf;
7029fa32e94SEmeric Vigier 
7039fa32e94SEmeric Vigier 	retval = smsc95xx_read_reg(dev, ID_REV, &regs->version);
7049fa32e94SEmeric Vigier 	if (retval < 0) {
7059fa32e94SEmeric Vigier 		netdev_warn(netdev, "REGS: cannot read ID_REV\n");
7069fa32e94SEmeric Vigier 		return;
7079fa32e94SEmeric Vigier 	}
7089fa32e94SEmeric Vigier 
7099fa32e94SEmeric Vigier 	for (i = ID_REV, j = 0; i <= COE_CR; i += (sizeof(u32)), j++) {
7109fa32e94SEmeric Vigier 		retval = smsc95xx_read_reg(dev, i, &data[j]);
7119fa32e94SEmeric Vigier 		if (retval < 0) {
7129fa32e94SEmeric Vigier 			netdev_warn(netdev, "REGS: cannot read reg[%x]\n", i);
7139fa32e94SEmeric Vigier 			return;
7149fa32e94SEmeric Vigier 		}
7159fa32e94SEmeric Vigier 	}
7169fa32e94SEmeric Vigier }
7179fa32e94SEmeric Vigier 
718e0e474a8SSteve Glendinning static void smsc95xx_ethtool_get_wol(struct net_device *net,
719e0e474a8SSteve Glendinning 				     struct ethtool_wolinfo *wolinfo)
720e0e474a8SSteve Glendinning {
721e0e474a8SSteve Glendinning 	struct usbnet *dev = netdev_priv(net);
722ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
723e0e474a8SSteve Glendinning 
724e0e474a8SSteve Glendinning 	wolinfo->supported = SUPPORTED_WAKE;
725e0e474a8SSteve Glendinning 	wolinfo->wolopts = pdata->wolopts;
726e0e474a8SSteve Glendinning }
727e0e474a8SSteve Glendinning 
728e0e474a8SSteve Glendinning static int smsc95xx_ethtool_set_wol(struct net_device *net,
729e0e474a8SSteve Glendinning 				    struct ethtool_wolinfo *wolinfo)
730e0e474a8SSteve Glendinning {
731e0e474a8SSteve Glendinning 	struct usbnet *dev = netdev_priv(net);
732ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
7333b14692cSSteve Glendinning 	int ret;
734e0e474a8SSteve Glendinning 
735c530c471SFlorian Fainelli 	if (wolinfo->wolopts & ~SUPPORTED_WAKE)
736c530c471SFlorian Fainelli 		return -EINVAL;
737c530c471SFlorian Fainelli 
738e0e474a8SSteve Glendinning 	pdata->wolopts = wolinfo->wolopts & SUPPORTED_WAKE;
7393b14692cSSteve Glendinning 
7403b14692cSSteve Glendinning 	ret = device_set_wakeup_enable(&dev->udev->dev, pdata->wolopts);
741b052e073SSteve Glendinning 	if (ret < 0)
742b052e073SSteve Glendinning 		netdev_warn(dev->net, "device_set_wakeup_enable error %d\n", ret);
7433b14692cSSteve Glendinning 
744b052e073SSteve Glendinning 	return ret;
745e0e474a8SSteve Glendinning }
746e0e474a8SSteve Glendinning 
74705b35e7eSAndre Edich static u32 smsc95xx_get_link(struct net_device *net)
74813722bbeSWoojung Huh {
74905b35e7eSAndre Edich 	phy_read_status(net->phydev);
75005b35e7eSAndre Edich 	return net->phydev->link;
75113722bbeSWoojung Huh }
75213722bbeSWoojung Huh 
7531710b52dSOleksij Rempel static void smsc95xx_ethtool_get_strings(struct net_device *netdev, u32 sset,
7541710b52dSOleksij Rempel 					u8 *data)
7551710b52dSOleksij Rempel {
7561710b52dSOleksij Rempel 	switch (sset) {
7571710b52dSOleksij Rempel 	case ETH_SS_TEST:
7581710b52dSOleksij Rempel 		net_selftest_get_strings(data);
7591710b52dSOleksij Rempel 		break;
7601710b52dSOleksij Rempel 	}
7611710b52dSOleksij Rempel }
7621710b52dSOleksij Rempel 
7631710b52dSOleksij Rempel static int smsc95xx_ethtool_get_sset_count(struct net_device *ndev, int sset)
7641710b52dSOleksij Rempel {
7651710b52dSOleksij Rempel 	switch (sset) {
7661710b52dSOleksij Rempel 	case ETH_SS_TEST:
7671710b52dSOleksij Rempel 		return net_selftest_get_count();
7681710b52dSOleksij Rempel 	default:
7691710b52dSOleksij Rempel 		return -EOPNOTSUPP;
7701710b52dSOleksij Rempel 	}
7711710b52dSOleksij Rempel }
7721710b52dSOleksij Rempel 
7730fc0b732SStephen Hemminger static const struct ethtool_ops smsc95xx_ethtool_ops = {
77405b35e7eSAndre Edich 	.get_link	= smsc95xx_get_link,
77505b35e7eSAndre Edich 	.nway_reset	= phy_ethtool_nway_reset,
7762f7ca802SSteve Glendinning 	.get_drvinfo	= usbnet_get_drvinfo,
7772f7ca802SSteve Glendinning 	.get_msglevel	= usbnet_get_msglevel,
7782f7ca802SSteve Glendinning 	.set_msglevel	= usbnet_set_msglevel,
7792f7ca802SSteve Glendinning 	.get_eeprom_len	= smsc95xx_ethtool_get_eeprom_len,
7802f7ca802SSteve Glendinning 	.get_eeprom	= smsc95xx_ethtool_get_eeprom,
7812f7ca802SSteve Glendinning 	.set_eeprom	= smsc95xx_ethtool_set_eeprom,
7829fa32e94SEmeric Vigier 	.get_regs_len	= smsc95xx_ethtool_getregslen,
7839fa32e94SEmeric Vigier 	.get_regs	= smsc95xx_ethtool_getregs,
784e0e474a8SSteve Glendinning 	.get_wol	= smsc95xx_ethtool_get_wol,
785e0e474a8SSteve Glendinning 	.set_wol	= smsc95xx_ethtool_set_wol,
78605b35e7eSAndre Edich 	.get_link_ksettings	= phy_ethtool_get_link_ksettings,
78705b35e7eSAndre Edich 	.set_link_ksettings	= phy_ethtool_set_link_ksettings,
788a8f5cb9eSPetr Kulhavy 	.get_ts_info	= ethtool_op_get_ts_info,
7891710b52dSOleksij Rempel 	.self_test	= net_selftest,
7901710b52dSOleksij Rempel 	.get_strings	= smsc95xx_ethtool_get_strings,
7911710b52dSOleksij Rempel 	.get_sset_count	= smsc95xx_ethtool_get_sset_count,
7922f7ca802SSteve Glendinning };
7932f7ca802SSteve Glendinning 
7942f7ca802SSteve Glendinning static int smsc95xx_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
7952f7ca802SSteve Glendinning {
7962f7ca802SSteve Glendinning 	if (!netif_running(netdev))
7972f7ca802SSteve Glendinning 		return -EINVAL;
7982f7ca802SSteve Glendinning 
79905b35e7eSAndre Edich 	return phy_mii_ioctl(netdev->phydev, rq, cmd);
8002f7ca802SSteve Glendinning }
8012f7ca802SSteve Glendinning 
8022f7ca802SSteve Glendinning static void smsc95xx_init_mac_address(struct usbnet *dev)
8032f7ca802SSteve Glendinning {
804a7021af7SJakub Kicinski 	u8 addr[ETH_ALEN];
805a7021af7SJakub Kicinski 
806c489565bSArnd Bergmann 	/* maybe the boot loader passed the MAC address in devicetree */
8074d04cdc5SJakub Kicinski 	if (!platform_get_ethdev_address(&dev->udev->dev, dev->net)) {
8084f359b65SŁukasz Stelmach 		if (is_valid_ether_addr(dev->net->dev_addr)) {
8094f359b65SŁukasz Stelmach 			/* device tree values are valid so use them */
8104f359b65SŁukasz Stelmach 			netif_dbg(dev, ifup, dev->net, "MAC address read from the device tree\n");
811c489565bSArnd Bergmann 			return;
812c489565bSArnd Bergmann 		}
8134f359b65SŁukasz Stelmach 	}
814c489565bSArnd Bergmann 
8152f7ca802SSteve Glendinning 	/* try reading mac address from EEPROM */
816a7021af7SJakub Kicinski 	if (smsc95xx_read_eeprom(dev, EEPROM_MAC_OFFSET, ETH_ALEN, addr) == 0) {
817a7021af7SJakub Kicinski 		eth_hw_addr_set(dev->net, addr);
8182f7ca802SSteve Glendinning 		if (is_valid_ether_addr(dev->net->dev_addr)) {
8192f7ca802SSteve Glendinning 			/* eeprom values are valid so use them */
820a475f603SJoe Perches 			netif_dbg(dev, ifup, dev->net, "MAC address read from EEPROM\n");
8212f7ca802SSteve Glendinning 			return;
8222f7ca802SSteve Glendinning 		}
8232f7ca802SSteve Glendinning 	}
8242f7ca802SSteve Glendinning 
825c489565bSArnd Bergmann 	/* no useful static MAC address found. generate a random one */
826f2cedb63SDanny Kukawka 	eth_hw_addr_random(dev->net);
827c7e12eadSJoe Perches 	netif_dbg(dev, ifup, dev->net, "MAC address set to eth_random_addr\n");
8282f7ca802SSteve Glendinning }
8292f7ca802SSteve Glendinning 
8302f7ca802SSteve Glendinning static int smsc95xx_set_mac_address(struct usbnet *dev)
8312f7ca802SSteve Glendinning {
8322f7ca802SSteve Glendinning 	u32 addr_lo = dev->net->dev_addr[0] | dev->net->dev_addr[1] << 8 |
8332f7ca802SSteve Glendinning 		dev->net->dev_addr[2] << 16 | dev->net->dev_addr[3] << 24;
8342f7ca802SSteve Glendinning 	u32 addr_hi = dev->net->dev_addr[4] | dev->net->dev_addr[5] << 8;
8352f7ca802SSteve Glendinning 	int ret;
8362f7ca802SSteve Glendinning 
8372f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, ADDRL, addr_lo);
838b052e073SSteve Glendinning 	if (ret < 0)
839b052e073SSteve Glendinning 		return ret;
840e360a8b4SSteve Glendinning 
841e360a8b4SSteve Glendinning 	return smsc95xx_write_reg(dev, ADDRH, addr_hi);
8422f7ca802SSteve Glendinning }
8432f7ca802SSteve Glendinning 
8442f7ca802SSteve Glendinning /* starts the TX path */
845769ea6d8SSteve Glendinning static int smsc95xx_start_tx_path(struct usbnet *dev)
8462f7ca802SSteve Glendinning {
847ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
8482f7ca802SSteve Glendinning 	unsigned long flags;
849769ea6d8SSteve Glendinning 	int ret;
8502f7ca802SSteve Glendinning 
8512f7ca802SSteve Glendinning 	/* Enable Tx at MAC */
8522f7ca802SSteve Glendinning 	spin_lock_irqsave(&pdata->mac_cr_lock, flags);
8532f7ca802SSteve Glendinning 	pdata->mac_cr |= MAC_CR_TXEN_;
8542f7ca802SSteve Glendinning 	spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
8552f7ca802SSteve Glendinning 
856769ea6d8SSteve Glendinning 	ret = smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
857e360a8b4SSteve Glendinning 	if (ret < 0)
858b052e073SSteve Glendinning 		return ret;
8592f7ca802SSteve Glendinning 
8602f7ca802SSteve Glendinning 	/* Enable Tx at SCSRs */
861e360a8b4SSteve Glendinning 	return smsc95xx_write_reg(dev, TX_CFG, TX_CFG_ON_);
8622f7ca802SSteve Glendinning }
8632f7ca802SSteve Glendinning 
8642f7ca802SSteve Glendinning /* Starts the Receive path */
86531472429SLukas Wunner static int smsc95xx_start_rx_path(struct usbnet *dev)
8662f7ca802SSteve Glendinning {
867ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
8682f7ca802SSteve Glendinning 	unsigned long flags;
8692f7ca802SSteve Glendinning 
8702f7ca802SSteve Glendinning 	spin_lock_irqsave(&pdata->mac_cr_lock, flags);
8712f7ca802SSteve Glendinning 	pdata->mac_cr |= MAC_CR_RXEN_;
8722f7ca802SSteve Glendinning 	spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
8732f7ca802SSteve Glendinning 
87431472429SLukas Wunner 	return smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
8752f7ca802SSteve Glendinning }
8762f7ca802SSteve Glendinning 
8772f7ca802SSteve Glendinning static int smsc95xx_reset(struct usbnet *dev)
8782f7ca802SSteve Glendinning {
879ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
8802f7ca802SSteve Glendinning 	u32 read_buf, write_buf, burst_cap;
8812f7ca802SSteve Glendinning 	int ret = 0, timeout;
8822f7ca802SSteve Glendinning 
883a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net, "entering smsc95xx_reset\n");
8842f7ca802SSteve Glendinning 
8854436761bSSteve Glendinning 	ret = smsc95xx_write_reg(dev, HW_CFG, HW_CFG_LRST_);
886e360a8b4SSteve Glendinning 	if (ret < 0)
887b052e073SSteve Glendinning 		return ret;
8882f7ca802SSteve Glendinning 
8892f7ca802SSteve Glendinning 	timeout = 0;
8902f7ca802SSteve Glendinning 	do {
891cf2acec2SSteve Glendinning 		msleep(10);
8922f7ca802SSteve Glendinning 		ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
893e360a8b4SSteve Glendinning 		if (ret < 0)
894b052e073SSteve Glendinning 			return ret;
8952f7ca802SSteve Glendinning 		timeout++;
8962f7ca802SSteve Glendinning 	} while ((read_buf & HW_CFG_LRST_) && (timeout < 100));
8972f7ca802SSteve Glendinning 
8982f7ca802SSteve Glendinning 	if (timeout >= 100) {
89960b86755SJoe Perches 		netdev_warn(dev->net, "timeout waiting for completion of Lite Reset\n");
900*c53647a5SDan Carpenter 		return -ETIMEDOUT;
9012f7ca802SSteve Glendinning 	}
9022f7ca802SSteve Glendinning 
9032f7ca802SSteve Glendinning 	ret = smsc95xx_set_mac_address(dev);
9042f7ca802SSteve Glendinning 	if (ret < 0)
9052f7ca802SSteve Glendinning 		return ret;
9062f7ca802SSteve Glendinning 
9071e1d7412SJoe Perches 	netif_dbg(dev, ifup, dev->net, "MAC Address: %pM\n",
9081e1d7412SJoe Perches 		  dev->net->dev_addr);
9092f7ca802SSteve Glendinning 
9102f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
911e360a8b4SSteve Glendinning 	if (ret < 0)
912b052e073SSteve Glendinning 		return ret;
9132f7ca802SSteve Glendinning 
9141e1d7412SJoe Perches 	netif_dbg(dev, ifup, dev->net, "Read Value from HW_CFG : 0x%08x\n",
9151e1d7412SJoe Perches 		  read_buf);
9162f7ca802SSteve Glendinning 
9172f7ca802SSteve Glendinning 	read_buf |= HW_CFG_BIR_;
9182f7ca802SSteve Glendinning 
9192f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
920e360a8b4SSteve Glendinning 	if (ret < 0)
921b052e073SSteve Glendinning 		return ret;
9222f7ca802SSteve Glendinning 
9232f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
924e360a8b4SSteve Glendinning 	if (ret < 0)
925b052e073SSteve Glendinning 		return ret;
926b052e073SSteve Glendinning 
927a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net,
928a475f603SJoe Perches 		  "Read Value from HW_CFG after writing HW_CFG_BIR_: 0x%08x\n",
92960b86755SJoe Perches 		  read_buf);
9302f7ca802SSteve Glendinning 
9312f7ca802SSteve Glendinning 	if (!turbo_mode) {
9322f7ca802SSteve Glendinning 		burst_cap = 0;
9332f7ca802SSteve Glendinning 		dev->rx_urb_size = MAX_SINGLE_PACKET_SIZE;
9342f7ca802SSteve Glendinning 	} else if (dev->udev->speed == USB_SPEED_HIGH) {
9352f7ca802SSteve Glendinning 		burst_cap = DEFAULT_HS_BURST_CAP_SIZE / HS_USB_PKT_SIZE;
9362f7ca802SSteve Glendinning 		dev->rx_urb_size = DEFAULT_HS_BURST_CAP_SIZE;
9372f7ca802SSteve Glendinning 	} else {
9382f7ca802SSteve Glendinning 		burst_cap = DEFAULT_FS_BURST_CAP_SIZE / FS_USB_PKT_SIZE;
9392f7ca802SSteve Glendinning 		dev->rx_urb_size = DEFAULT_FS_BURST_CAP_SIZE;
9402f7ca802SSteve Glendinning 	}
9412f7ca802SSteve Glendinning 
9421e1d7412SJoe Perches 	netif_dbg(dev, ifup, dev->net, "rx_urb_size=%ld\n",
9431e1d7412SJoe Perches 		  (ulong)dev->rx_urb_size);
9442f7ca802SSteve Glendinning 
9452f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, BURST_CAP, burst_cap);
946e360a8b4SSteve Glendinning 	if (ret < 0)
947b052e073SSteve Glendinning 		return ret;
9482f7ca802SSteve Glendinning 
9492f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, BURST_CAP, &read_buf);
950e360a8b4SSteve Glendinning 	if (ret < 0)
951b052e073SSteve Glendinning 		return ret;
952769ea6d8SSteve Glendinning 
953a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net,
954a475f603SJoe Perches 		  "Read Value from BURST_CAP after writing: 0x%08x\n",
9552f7ca802SSteve Glendinning 		  read_buf);
9562f7ca802SSteve Glendinning 
9574436761bSSteve Glendinning 	ret = smsc95xx_write_reg(dev, BULK_IN_DLY, DEFAULT_BULK_IN_DELAY);
958e360a8b4SSteve Glendinning 	if (ret < 0)
959b052e073SSteve Glendinning 		return ret;
9602f7ca802SSteve Glendinning 
9612f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, BULK_IN_DLY, &read_buf);
962e360a8b4SSteve Glendinning 	if (ret < 0)
963b052e073SSteve Glendinning 		return ret;
964769ea6d8SSteve Glendinning 
965a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net,
966a475f603SJoe Perches 		  "Read Value from BULK_IN_DLY after writing: 0x%08x\n",
96760b86755SJoe Perches 		  read_buf);
9682f7ca802SSteve Glendinning 
9692f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
970e360a8b4SSteve Glendinning 	if (ret < 0)
971b052e073SSteve Glendinning 		return ret;
972769ea6d8SSteve Glendinning 
9731e1d7412SJoe Perches 	netif_dbg(dev, ifup, dev->net, "Read Value from HW_CFG: 0x%08x\n",
9741e1d7412SJoe Perches 		  read_buf);
9752f7ca802SSteve Glendinning 
9762f7ca802SSteve Glendinning 	if (turbo_mode)
9772f7ca802SSteve Glendinning 		read_buf |= (HW_CFG_MEF_ | HW_CFG_BCE_);
9782f7ca802SSteve Glendinning 
9792f7ca802SSteve Glendinning 	read_buf &= ~HW_CFG_RXDOFF_;
9802f7ca802SSteve Glendinning 
9812f7ca802SSteve Glendinning 	/* set Rx data offset=2, Make IP header aligns on word boundary. */
9822f7ca802SSteve Glendinning 	read_buf |= NET_IP_ALIGN << 9;
9832f7ca802SSteve Glendinning 
9842f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
985e360a8b4SSteve Glendinning 	if (ret < 0)
986b052e073SSteve Glendinning 		return ret;
9872f7ca802SSteve Glendinning 
9882f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
989e360a8b4SSteve Glendinning 	if (ret < 0)
990b052e073SSteve Glendinning 		return ret;
991769ea6d8SSteve Glendinning 
992a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net,
993a475f603SJoe Perches 		  "Read Value from HW_CFG after writing: 0x%08x\n", read_buf);
9942f7ca802SSteve Glendinning 
9954436761bSSteve Glendinning 	ret = smsc95xx_write_reg(dev, INT_STS, INT_STS_CLEAR_ALL_);
996e360a8b4SSteve Glendinning 	if (ret < 0)
997b052e073SSteve Glendinning 		return ret;
9982f7ca802SSteve Glendinning 
9992f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, ID_REV, &read_buf);
1000e360a8b4SSteve Glendinning 	if (ret < 0)
1001b052e073SSteve Glendinning 		return ret;
1002a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net, "ID_REV = 0x%08x\n", read_buf);
10032f7ca802SSteve Glendinning 
1004f293501cSSteve Glendinning 	/* Configure GPIO pins as LED outputs */
1005f293501cSSteve Glendinning 	write_buf = LED_GPIO_CFG_SPD_LED | LED_GPIO_CFG_LNK_LED |
1006f293501cSSteve Glendinning 		LED_GPIO_CFG_FDX_LED;
1007f293501cSSteve Glendinning 	ret = smsc95xx_write_reg(dev, LED_GPIO_CFG, write_buf);
1008e360a8b4SSteve Glendinning 	if (ret < 0)
1009b052e073SSteve Glendinning 		return ret;
1010f293501cSSteve Glendinning 
10112f7ca802SSteve Glendinning 	/* Init Tx */
10124436761bSSteve Glendinning 	ret = smsc95xx_write_reg(dev, FLOW, 0);
1013e360a8b4SSteve Glendinning 	if (ret < 0)
1014b052e073SSteve Glendinning 		return ret;
10152f7ca802SSteve Glendinning 
10164436761bSSteve Glendinning 	ret = smsc95xx_write_reg(dev, AFC_CFG, AFC_CFG_DEFAULT);
1017e360a8b4SSteve Glendinning 	if (ret < 0)
1018b052e073SSteve Glendinning 		return ret;
10192f7ca802SSteve Glendinning 
10202f7ca802SSteve Glendinning 	/* Don't need mac_cr_lock during initialisation */
10212f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, MAC_CR, &pdata->mac_cr);
1022e360a8b4SSteve Glendinning 	if (ret < 0)
1023b052e073SSteve Glendinning 		return ret;
10242f7ca802SSteve Glendinning 
10252f7ca802SSteve Glendinning 	/* Init Rx */
10262f7ca802SSteve Glendinning 	/* Set Vlan */
10274436761bSSteve Glendinning 	ret = smsc95xx_write_reg(dev, VLAN1, (u32)ETH_P_8021Q);
1028e360a8b4SSteve Glendinning 	if (ret < 0)
1029b052e073SSteve Glendinning 		return ret;
10302f7ca802SSteve Glendinning 
1031f7b29271SSteve Glendinning 	/* Enable or disable checksum offload engines */
1032769ea6d8SSteve Glendinning 	ret = smsc95xx_set_features(dev->net, dev->net->features);
1033b052e073SSteve Glendinning 	if (ret < 0) {
1034b052e073SSteve Glendinning 		netdev_warn(dev->net, "Failed to set checksum offload features\n");
1035b052e073SSteve Glendinning 		return ret;
1036b052e073SSteve Glendinning 	}
10372f7ca802SSteve Glendinning 
10382f7ca802SSteve Glendinning 	smsc95xx_set_multicast(dev->net);
10392f7ca802SSteve Glendinning 
10402f7ca802SSteve Glendinning 	ret = smsc95xx_read_reg(dev, INT_EP_CTL, &read_buf);
1041e360a8b4SSteve Glendinning 	if (ret < 0)
1042b052e073SSteve Glendinning 		return ret;
10432f7ca802SSteve Glendinning 
10442f7ca802SSteve Glendinning 	/* enable PHY interrupts */
10452f7ca802SSteve Glendinning 	read_buf |= INT_EP_CTL_PHY_INT_;
10462f7ca802SSteve Glendinning 
10472f7ca802SSteve Glendinning 	ret = smsc95xx_write_reg(dev, INT_EP_CTL, read_buf);
1048e360a8b4SSteve Glendinning 	if (ret < 0)
1049b052e073SSteve Glendinning 		return ret;
10502f7ca802SSteve Glendinning 
1051769ea6d8SSteve Glendinning 	ret = smsc95xx_start_tx_path(dev);
1052b052e073SSteve Glendinning 	if (ret < 0) {
1053b052e073SSteve Glendinning 		netdev_warn(dev->net, "Failed to start TX path\n");
1054b052e073SSteve Glendinning 		return ret;
1055b052e073SSteve Glendinning 	}
1056769ea6d8SSteve Glendinning 
105731472429SLukas Wunner 	ret = smsc95xx_start_rx_path(dev);
1058b052e073SSteve Glendinning 	if (ret < 0) {
1059b052e073SSteve Glendinning 		netdev_warn(dev->net, "Failed to start RX path\n");
1060b052e073SSteve Glendinning 		return ret;
1061b052e073SSteve Glendinning 	}
10622f7ca802SSteve Glendinning 
1063a475f603SJoe Perches 	netif_dbg(dev, ifup, dev->net, "smsc95xx_reset, return 0\n");
10642f7ca802SSteve Glendinning 	return 0;
10652f7ca802SSteve Glendinning }
10662f7ca802SSteve Glendinning 
106763e77b39SStephen Hemminger static const struct net_device_ops smsc95xx_netdev_ops = {
106863e77b39SStephen Hemminger 	.ndo_open		= usbnet_open,
106963e77b39SStephen Hemminger 	.ndo_stop		= usbnet_stop,
107063e77b39SStephen Hemminger 	.ndo_start_xmit		= usbnet_start_xmit,
107163e77b39SStephen Hemminger 	.ndo_tx_timeout		= usbnet_tx_timeout,
107263e77b39SStephen Hemminger 	.ndo_change_mtu		= usbnet_change_mtu,
1073323955a0SHeiner Kallweit 	.ndo_get_stats64	= dev_get_tstats64,
107463e77b39SStephen Hemminger 	.ndo_set_mac_address 	= eth_mac_addr,
107563e77b39SStephen Hemminger 	.ndo_validate_addr	= eth_validate_addr,
1076a7605370SArnd Bergmann 	.ndo_eth_ioctl		= smsc95xx_ioctl,
1077afc4b13dSJiri Pirko 	.ndo_set_rx_mode	= smsc95xx_set_multicast,
107878e47fe4SMichał Mirosław 	.ndo_set_features	= smsc95xx_set_features,
107963e77b39SStephen Hemminger };
108063e77b39SStephen Hemminger 
1081a049a30fSMartyn Welch static void smsc95xx_handle_link_change(struct net_device *net)
1082a049a30fSMartyn Welch {
1083a049a30fSMartyn Welch 	struct usbnet *dev = netdev_priv(net);
1084a049a30fSMartyn Welch 
1085a049a30fSMartyn Welch 	phy_print_status(net->phydev);
10868960f878SLukas Wunner 	smsc95xx_mac_update_fullduplex(dev);
1087a049a30fSMartyn Welch 	usbnet_defer_kevent(dev, EVENT_LINK_CHANGE);
1088a049a30fSMartyn Welch }
1089a049a30fSMartyn Welch 
10902f7ca802SSteve Glendinning static int smsc95xx_bind(struct usbnet *dev, struct usb_interface *intf)
10912f7ca802SSteve Glendinning {
1092ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata;
10931ce8b372SLukas Wunner 	char usb_path[64];
10941ce8b372SLukas Wunner 	int ret, phy_irq;
1095bbd9f9eeSSteve Glendinning 	u32 val;
10962f7ca802SSteve Glendinning 
10972f7ca802SSteve Glendinning 	printk(KERN_INFO SMSC_CHIPNAME " v" SMSC_DRIVER_VERSION "\n");
10982f7ca802SSteve Glendinning 
10992f7ca802SSteve Glendinning 	ret = usbnet_get_endpoints(dev, intf);
1100b052e073SSteve Glendinning 	if (ret < 0) {
1101b052e073SSteve Glendinning 		netdev_warn(dev->net, "usbnet_get_endpoints failed: %d\n", ret);
1102b052e073SSteve Glendinning 		return ret;
1103b052e073SSteve Glendinning 	}
11042f7ca802SSteve Glendinning 
1105ad90a73fSAndre Edich 	pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
110638673c82SJoe Perches 	if (!pdata)
11072f7ca802SSteve Glendinning 		return -ENOMEM;
11082f7ca802SSteve Glendinning 
1109ad90a73fSAndre Edich 	dev->driver_priv = pdata;
1110ad90a73fSAndre Edich 
11112f7ca802SSteve Glendinning 	spin_lock_init(&pdata->mac_cr_lock);
11122f7ca802SSteve Glendinning 
1113fe0cd8caSNisar Sayed 	/* LAN95xx devices do not alter the computed checksum of 0 to 0xffff.
1114fe0cd8caSNisar Sayed 	 * RFC 2460, ipv6 UDP calculated checksum yields a result of zero must
1115fe0cd8caSNisar Sayed 	 * be changed to 0xffff. RFC 768, ipv4 UDP computed checksum is zero,
1116fe0cd8caSNisar Sayed 	 * it is transmitted as all ones. The zero transmitted checksum means
1117fe0cd8caSNisar Sayed 	 * transmitter generated no checksum. Hence, enable csum offload only
1118fe0cd8caSNisar Sayed 	 * for ipv4 packets.
1119fe0cd8caSNisar Sayed 	 */
112078e47fe4SMichał Mirosław 	if (DEFAULT_TX_CSUM_ENABLE)
1121fe0cd8caSNisar Sayed 		dev->net->features |= NETIF_F_IP_CSUM;
112278e47fe4SMichał Mirosław 	if (DEFAULT_RX_CSUM_ENABLE)
112378e47fe4SMichał Mirosław 		dev->net->features |= NETIF_F_RXCSUM;
112478e47fe4SMichał Mirosław 
1125fe0cd8caSNisar Sayed 	dev->net->hw_features = NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
1126810eeb1fSBen Dooks 	set_bit(EVENT_NO_IP_ALIGN, &dev->flags);
11272f7ca802SSteve Glendinning 
1128f4e8ab7cSBernard Blackham 	smsc95xx_init_mac_address(dev);
1129f4e8ab7cSBernard Blackham 
11302f7ca802SSteve Glendinning 	/* Init all registers */
11312f7ca802SSteve Glendinning 	ret = smsc95xx_reset(dev);
11327c8b1e85SAndre Edich 	if (ret)
11337c8b1e85SAndre Edich 		goto free_pdata;
11342f7ca802SSteve Glendinning 
11351ce8b372SLukas Wunner 	/* create irq domain for use by PHY driver and GPIO consumers */
11361ce8b372SLukas Wunner 	usb_make_path(dev->udev, usb_path, sizeof(usb_path));
11371ce8b372SLukas Wunner 	pdata->irqfwnode = irq_domain_alloc_named_fwnode(usb_path);
11381ce8b372SLukas Wunner 	if (!pdata->irqfwnode) {
11391ce8b372SLukas Wunner 		ret = -ENOMEM;
11401ce8b372SLukas Wunner 		goto free_pdata;
11411ce8b372SLukas Wunner 	}
11421ce8b372SLukas Wunner 
11431ce8b372SLukas Wunner 	pdata->irqdomain = irq_domain_create_linear(pdata->irqfwnode,
11441ce8b372SLukas Wunner 						    SMSC95XX_NR_IRQS,
11451ce8b372SLukas Wunner 						    &irq_domain_simple_ops,
11461ce8b372SLukas Wunner 						    pdata);
11471ce8b372SLukas Wunner 	if (!pdata->irqdomain) {
11481ce8b372SLukas Wunner 		ret = -ENOMEM;
11491ce8b372SLukas Wunner 		goto free_irqfwnode;
11501ce8b372SLukas Wunner 	}
11511ce8b372SLukas Wunner 
11521ce8b372SLukas Wunner 	phy_irq = irq_create_mapping(pdata->irqdomain, PHY_HWIRQ);
11531ce8b372SLukas Wunner 	if (!phy_irq) {
11541ce8b372SLukas Wunner 		ret = -ENOENT;
11551ce8b372SLukas Wunner 		goto remove_irqdomain;
11561ce8b372SLukas Wunner 	}
11571ce8b372SLukas Wunner 
11581ce8b372SLukas Wunner 	pdata->irqchip = dummy_irq_chip;
11591ce8b372SLukas Wunner 	pdata->irqchip.name = SMSC_CHIPNAME;
11601ce8b372SLukas Wunner 	irq_set_chip_and_handler_name(phy_irq, &pdata->irqchip,
11611ce8b372SLukas Wunner 				      handle_simple_irq, "phy");
11621ce8b372SLukas Wunner 
116305b35e7eSAndre Edich 	pdata->mdiobus = mdiobus_alloc();
116405b35e7eSAndre Edich 	if (!pdata->mdiobus) {
116505b35e7eSAndre Edich 		ret = -ENOMEM;
11661ce8b372SLukas Wunner 		goto dispose_irq;
116705b35e7eSAndre Edich 	}
116805b35e7eSAndre Edich 
116905b35e7eSAndre Edich 	ret = smsc95xx_read_reg(dev, HW_CFG, &val);
117005b35e7eSAndre Edich 	if (ret < 0)
117105b35e7eSAndre Edich 		goto free_mdio;
117205b35e7eSAndre Edich 
1173809ff97aSAlexandru Tachici 	pdata->is_internal_phy = !(val & HW_CFG_PSEL_);
1174809ff97aSAlexandru Tachici 	if (pdata->is_internal_phy)
117505b35e7eSAndre Edich 		pdata->mdiobus->phy_mask = ~(1u << SMSC95XX_INTERNAL_PHY_ID);
117605b35e7eSAndre Edich 
117705b35e7eSAndre Edich 	pdata->mdiobus->priv = dev;
117805b35e7eSAndre Edich 	pdata->mdiobus->read = smsc95xx_mdiobus_read;
117905b35e7eSAndre Edich 	pdata->mdiobus->write = smsc95xx_mdiobus_write;
1180809ff97aSAlexandru Tachici 	pdata->mdiobus->reset = smsc95xx_mdiobus_reset;
118105b35e7eSAndre Edich 	pdata->mdiobus->name = "smsc95xx-mdiobus";
118205b35e7eSAndre Edich 	pdata->mdiobus->parent = &dev->udev->dev;
118305b35e7eSAndre Edich 
118405b35e7eSAndre Edich 	snprintf(pdata->mdiobus->id, ARRAY_SIZE(pdata->mdiobus->id),
118505b35e7eSAndre Edich 		 "usb-%03d:%03d", dev->udev->bus->busnum, dev->udev->devnum);
118605b35e7eSAndre Edich 
118705b35e7eSAndre Edich 	ret = mdiobus_register(pdata->mdiobus);
118805b35e7eSAndre Edich 	if (ret) {
118905b35e7eSAndre Edich 		netdev_err(dev->net, "Could not register MDIO bus\n");
119005b35e7eSAndre Edich 		goto free_mdio;
119105b35e7eSAndre Edich 	}
119205b35e7eSAndre Edich 
119305b35e7eSAndre Edich 	pdata->phydev = phy_find_first(pdata->mdiobus);
119405b35e7eSAndre Edich 	if (!pdata->phydev) {
119505b35e7eSAndre Edich 		netdev_err(dev->net, "no PHY found\n");
119605b35e7eSAndre Edich 		ret = -ENODEV;
119705b35e7eSAndre Edich 		goto unregister_mdio;
119805b35e7eSAndre Edich 	}
119905b35e7eSAndre Edich 
12001ce8b372SLukas Wunner 	pdata->phydev->irq = phy_irq;
1201809ff97aSAlexandru Tachici 	pdata->phydev->is_internal = pdata->is_internal_phy;
120205b35e7eSAndre Edich 
1203bbd9f9eeSSteve Glendinning 	/* detect device revision as different features may be available */
1204bbd9f9eeSSteve Glendinning 	ret = smsc95xx_read_reg(dev, ID_REV, &val);
1205e360a8b4SSteve Glendinning 	if (ret < 0)
120605b35e7eSAndre Edich 		goto unregister_mdio;
12073ed58f96SAndre Edich 
1208bbd9f9eeSSteve Glendinning 	val >>= 16;
12099ebca507SSteve Glendinning 	if ((val == ID_REV_CHIP_ID_9500A_) || (val == ID_REV_CHIP_ID_9530_) ||
12109ebca507SSteve Glendinning 	    (val == ID_REV_CHIP_ID_89530_) || (val == ID_REV_CHIP_ID_9730_))
12119ebca507SSteve Glendinning 		pdata->features = (FEATURE_8_WAKEUP_FILTERS |
12129ebca507SSteve Glendinning 			FEATURE_PHY_NLP_CROSSOVER |
1213eb970ff0SMing Lei 			FEATURE_REMOTE_WAKEUP);
12149ebca507SSteve Glendinning 	else if (val == ID_REV_CHIP_ID_9512_)
12159ebca507SSteve Glendinning 		pdata->features = FEATURE_8_WAKEUP_FILTERS;
1216bbd9f9eeSSteve Glendinning 
121763e77b39SStephen Hemminger 	dev->net->netdev_ops = &smsc95xx_netdev_ops;
12182f7ca802SSteve Glendinning 	dev->net->ethtool_ops = &smsc95xx_ethtool_ops;
12192f7ca802SSteve Glendinning 	dev->net->flags |= IFF_MULTICAST;
122078e47fe4SMichał Mirosław 	dev->net->hard_header_len += SMSC95XX_TX_OVERHEAD_CSUM;
122185b18b02SStefan Wahren 	dev->net->min_mtu = ETH_MIN_MTU;
122285b18b02SStefan Wahren 	dev->net->max_mtu = ETH_DATA_LEN;
12239bbf5660SStephane Fillod 	dev->hard_mtu = dev->net->mtu + dev->net->hard_header_len;
1224a049a30fSMartyn Welch 
1225a049a30fSMartyn Welch 	ret = phy_connect_direct(dev->net, pdata->phydev,
1226a049a30fSMartyn Welch 				 &smsc95xx_handle_link_change,
1227a049a30fSMartyn Welch 				 PHY_INTERFACE_MODE_MII);
1228a049a30fSMartyn Welch 	if (ret) {
1229a049a30fSMartyn Welch 		netdev_err(dev->net, "can't attach PHY to %s\n", pdata->mdiobus->id);
1230a049a30fSMartyn Welch 		goto unregister_mdio;
1231a049a30fSMartyn Welch 	}
1232a049a30fSMartyn Welch 
1233a049a30fSMartyn Welch 	phy_attached_info(dev->net->phydev);
1234a049a30fSMartyn Welch 
12352f7ca802SSteve Glendinning 	return 0;
12367c8b1e85SAndre Edich 
123705b35e7eSAndre Edich unregister_mdio:
123805b35e7eSAndre Edich 	mdiobus_unregister(pdata->mdiobus);
123905b35e7eSAndre Edich 
124005b35e7eSAndre Edich free_mdio:
124105b35e7eSAndre Edich 	mdiobus_free(pdata->mdiobus);
124205b35e7eSAndre Edich 
12431ce8b372SLukas Wunner dispose_irq:
12441ce8b372SLukas Wunner 	irq_dispose_mapping(phy_irq);
12451ce8b372SLukas Wunner 
12461ce8b372SLukas Wunner remove_irqdomain:
12471ce8b372SLukas Wunner 	irq_domain_remove(pdata->irqdomain);
12481ce8b372SLukas Wunner 
12491ce8b372SLukas Wunner free_irqfwnode:
12501ce8b372SLukas Wunner 	irq_domain_free_fwnode(pdata->irqfwnode);
12511ce8b372SLukas Wunner 
12527c8b1e85SAndre Edich free_pdata:
12537c8b1e85SAndre Edich 	kfree(pdata);
12547c8b1e85SAndre Edich 	return ret;
12552f7ca802SSteve Glendinning }
12562f7ca802SSteve Glendinning 
12572f7ca802SSteve Glendinning static void smsc95xx_unbind(struct usbnet *dev, struct usb_interface *intf)
12582f7ca802SSteve Glendinning {
1259ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
1260d69d1694SChristoph Fritz 
1261a049a30fSMartyn Welch 	phy_disconnect(dev->net->phydev);
126205b35e7eSAndre Edich 	mdiobus_unregister(pdata->mdiobus);
126305b35e7eSAndre Edich 	mdiobus_free(pdata->mdiobus);
12641ce8b372SLukas Wunner 	irq_dispose_mapping(irq_find_mapping(pdata->irqdomain, PHY_HWIRQ));
12651ce8b372SLukas Wunner 	irq_domain_remove(pdata->irqdomain);
12661ce8b372SLukas Wunner 	irq_domain_free_fwnode(pdata->irqfwnode);
1267a475f603SJoe Perches 	netif_dbg(dev, ifdown, dev->net, "free pdata\n");
12682f7ca802SSteve Glendinning 	kfree(pdata);
12692f7ca802SSteve Glendinning }
12702f7ca802SSteve Glendinning 
127105b35e7eSAndre Edich static int smsc95xx_start_phy(struct usbnet *dev)
127205b35e7eSAndre Edich {
1273a049a30fSMartyn Welch 	phy_start(dev->net->phydev);
127405b35e7eSAndre Edich 
127505b35e7eSAndre Edich 	return 0;
127605b35e7eSAndre Edich }
127705b35e7eSAndre Edich 
1278a049a30fSMartyn Welch static int smsc95xx_stop(struct usbnet *dev)
127905b35e7eSAndre Edich {
128005b35e7eSAndre Edich 	phy_stop(dev->net->phydev);
1281a049a30fSMartyn Welch 
128205b35e7eSAndre Edich 	return 0;
128305b35e7eSAndre Edich }
128405b35e7eSAndre Edich 
1285068bb1a7SSteve Glendinning static u32 smsc_crc(const u8 *buffer, size_t len, int filter)
1286bbd9f9eeSSteve Glendinning {
1287068bb1a7SSteve Glendinning 	u32 crc = bitrev16(crc16(0xFFFF, buffer, len));
1288068bb1a7SSteve Glendinning 	return crc << ((filter % 2) * 16);
1289bbd9f9eeSSteve Glendinning }
1290bbd9f9eeSSteve Glendinning 
129131472429SLukas Wunner static int smsc95xx_link_ok(struct usbnet *dev)
1292e5e3af83SSteve Glendinning {
129331472429SLukas Wunner 	struct smsc95xx_priv *pdata = dev->driver_priv;
1294e5e3af83SSteve Glendinning 	int ret;
1295e5e3af83SSteve Glendinning 
1296e5e3af83SSteve Glendinning 	/* first, a dummy read, needed to latch some MII phys */
129731472429SLukas Wunner 	ret = smsc95xx_mdio_read(dev, pdata->phydev->mdio.addr, MII_BMSR);
1298e360a8b4SSteve Glendinning 	if (ret < 0)
1299b052e073SSteve Glendinning 		return ret;
1300e5e3af83SSteve Glendinning 
130131472429SLukas Wunner 	ret = smsc95xx_mdio_read(dev, pdata->phydev->mdio.addr, MII_BMSR);
1302e360a8b4SSteve Glendinning 	if (ret < 0)
1303b052e073SSteve Glendinning 		return ret;
1304e5e3af83SSteve Glendinning 
1305e5e3af83SSteve Glendinning 	return !!(ret & BMSR_LSTATUS);
1306e5e3af83SSteve Glendinning }
1307e5e3af83SSteve Glendinning 
1308319b95b5SSteve Glendinning static int smsc95xx_enter_suspend0(struct usbnet *dev)
1309319b95b5SSteve Glendinning {
1310ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
1311319b95b5SSteve Glendinning 	u32 val;
1312319b95b5SSteve Glendinning 	int ret;
1313319b95b5SSteve Glendinning 
131431472429SLukas Wunner 	ret = smsc95xx_read_reg(dev, PM_CTRL, &val);
1315e360a8b4SSteve Glendinning 	if (ret < 0)
1316b052e073SSteve Glendinning 		return ret;
1317319b95b5SSteve Glendinning 
1318319b95b5SSteve Glendinning 	val &= (~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_));
1319319b95b5SSteve Glendinning 	val |= PM_CTL_SUS_MODE_0;
1320319b95b5SSteve Glendinning 
132131472429SLukas Wunner 	ret = smsc95xx_write_reg(dev, PM_CTRL, val);
1322e360a8b4SSteve Glendinning 	if (ret < 0)
1323b052e073SSteve Glendinning 		return ret;
1324319b95b5SSteve Glendinning 
1325319b95b5SSteve Glendinning 	/* clear wol status */
1326319b95b5SSteve Glendinning 	val &= ~PM_CTL_WUPS_;
1327319b95b5SSteve Glendinning 	val |= PM_CTL_WUPS_WOL_;
1328319b95b5SSteve Glendinning 
1329319b95b5SSteve Glendinning 	/* enable energy detection */
1330319b95b5SSteve Glendinning 	if (pdata->wolopts & WAKE_PHY)
1331319b95b5SSteve Glendinning 		val |= PM_CTL_WUPS_ED_;
1332319b95b5SSteve Glendinning 
133331472429SLukas Wunner 	ret = smsc95xx_write_reg(dev, PM_CTRL, val);
1334e360a8b4SSteve Glendinning 	if (ret < 0)
1335b052e073SSteve Glendinning 		return ret;
1336319b95b5SSteve Glendinning 
1337319b95b5SSteve Glendinning 	/* read back PM_CTRL */
133831472429SLukas Wunner 	ret = smsc95xx_read_reg(dev, PM_CTRL, &val);
133976437214SMing Lei 	if (ret < 0)
134076437214SMing Lei 		return ret;
1341319b95b5SSteve Glendinning 
1342b2d4b150SSteve Glendinning 	pdata->suspend_flags |= SUSPEND_SUSPEND0;
1343b2d4b150SSteve Glendinning 
134476437214SMing Lei 	return 0;
1345319b95b5SSteve Glendinning }
1346319b95b5SSteve Glendinning 
1347319b95b5SSteve Glendinning static int smsc95xx_enter_suspend1(struct usbnet *dev)
1348319b95b5SSteve Glendinning {
1349ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
135031472429SLukas Wunner 	int ret, phy_id = pdata->phydev->mdio.addr;
1351319b95b5SSteve Glendinning 	u32 val;
1352319b95b5SSteve Glendinning 
1353319b95b5SSteve Glendinning 	/* reconfigure link pulse detection timing for
1354319b95b5SSteve Glendinning 	 * compatibility with non-standard link partners
1355319b95b5SSteve Glendinning 	 */
1356319b95b5SSteve Glendinning 	if (pdata->features & FEATURE_PHY_NLP_CROSSOVER)
135731472429SLukas Wunner 		smsc95xx_mdio_write(dev, phy_id, PHY_EDPD_CONFIG,
1358319b95b5SSteve Glendinning 				    PHY_EDPD_CONFIG_DEFAULT);
1359319b95b5SSteve Glendinning 
1360319b95b5SSteve Glendinning 	/* enable energy detect power-down mode */
136131472429SLukas Wunner 	ret = smsc95xx_mdio_read(dev, phy_id, PHY_MODE_CTRL_STS);
1362e360a8b4SSteve Glendinning 	if (ret < 0)
1363b052e073SSteve Glendinning 		return ret;
1364319b95b5SSteve Glendinning 
1365319b95b5SSteve Glendinning 	ret |= MODE_CTRL_STS_EDPWRDOWN_;
1366319b95b5SSteve Glendinning 
136731472429SLukas Wunner 	smsc95xx_mdio_write(dev, phy_id, PHY_MODE_CTRL_STS, ret);
1368319b95b5SSteve Glendinning 
1369319b95b5SSteve Glendinning 	/* enter SUSPEND1 mode */
137031472429SLukas Wunner 	ret = smsc95xx_read_reg(dev, PM_CTRL, &val);
1371e360a8b4SSteve Glendinning 	if (ret < 0)
1372b052e073SSteve Glendinning 		return ret;
1373319b95b5SSteve Glendinning 
1374319b95b5SSteve Glendinning 	val &= ~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_);
1375319b95b5SSteve Glendinning 	val |= PM_CTL_SUS_MODE_1;
1376319b95b5SSteve Glendinning 
137731472429SLukas Wunner 	ret = smsc95xx_write_reg(dev, PM_CTRL, val);
1378e360a8b4SSteve Glendinning 	if (ret < 0)
1379b052e073SSteve Glendinning 		return ret;
1380319b95b5SSteve Glendinning 
1381319b95b5SSteve Glendinning 	/* clear wol status, enable energy detection */
1382319b95b5SSteve Glendinning 	val &= ~PM_CTL_WUPS_;
1383319b95b5SSteve Glendinning 	val |= (PM_CTL_WUPS_ED_ | PM_CTL_ED_EN_);
1384319b95b5SSteve Glendinning 
138531472429SLukas Wunner 	ret = smsc95xx_write_reg(dev, PM_CTRL, val);
138676437214SMing Lei 	if (ret < 0)
138776437214SMing Lei 		return ret;
1388319b95b5SSteve Glendinning 
1389b2d4b150SSteve Glendinning 	pdata->suspend_flags |= SUSPEND_SUSPEND1;
1390b2d4b150SSteve Glendinning 
139176437214SMing Lei 	return 0;
1392319b95b5SSteve Glendinning }
1393319b95b5SSteve Glendinning 
1394319b95b5SSteve Glendinning static int smsc95xx_enter_suspend2(struct usbnet *dev)
1395319b95b5SSteve Glendinning {
1396ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
1397319b95b5SSteve Glendinning 	u32 val;
1398319b95b5SSteve Glendinning 	int ret;
1399319b95b5SSteve Glendinning 
140031472429SLukas Wunner 	ret = smsc95xx_read_reg(dev, PM_CTRL, &val);
1401e360a8b4SSteve Glendinning 	if (ret < 0)
1402b052e073SSteve Glendinning 		return ret;
1403319b95b5SSteve Glendinning 
1404319b95b5SSteve Glendinning 	val &= ~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_);
1405319b95b5SSteve Glendinning 	val |= PM_CTL_SUS_MODE_2;
1406319b95b5SSteve Glendinning 
140731472429SLukas Wunner 	ret = smsc95xx_write_reg(dev, PM_CTRL, val);
140876437214SMing Lei 	if (ret < 0)
140976437214SMing Lei 		return ret;
1410319b95b5SSteve Glendinning 
1411b2d4b150SSteve Glendinning 	pdata->suspend_flags |= SUSPEND_SUSPEND2;
1412b2d4b150SSteve Glendinning 
141376437214SMing Lei 	return 0;
1414319b95b5SSteve Glendinning }
1415319b95b5SSteve Glendinning 
1416b2d4b150SSteve Glendinning static int smsc95xx_enter_suspend3(struct usbnet *dev)
1417b2d4b150SSteve Glendinning {
1418ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
1419b2d4b150SSteve Glendinning 	u32 val;
1420b2d4b150SSteve Glendinning 	int ret;
1421b2d4b150SSteve Glendinning 
142231472429SLukas Wunner 	ret = smsc95xx_read_reg(dev, RX_FIFO_INF, &val);
1423b2d4b150SSteve Glendinning 	if (ret < 0)
1424b2d4b150SSteve Glendinning 		return ret;
1425b2d4b150SSteve Glendinning 
142653a759c8SMartin Wetterwald 	if (val & RX_FIFO_INF_USED_) {
1427b2d4b150SSteve Glendinning 		netdev_info(dev->net, "rx fifo not empty in autosuspend\n");
1428b2d4b150SSteve Glendinning 		return -EBUSY;
1429b2d4b150SSteve Glendinning 	}
1430b2d4b150SSteve Glendinning 
143131472429SLukas Wunner 	ret = smsc95xx_read_reg(dev, PM_CTRL, &val);
1432b2d4b150SSteve Glendinning 	if (ret < 0)
1433b2d4b150SSteve Glendinning 		return ret;
1434b2d4b150SSteve Glendinning 
1435b2d4b150SSteve Glendinning 	val &= ~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_);
1436b2d4b150SSteve Glendinning 	val |= PM_CTL_SUS_MODE_3 | PM_CTL_RES_CLR_WKP_STS;
1437b2d4b150SSteve Glendinning 
143831472429SLukas Wunner 	ret = smsc95xx_write_reg(dev, PM_CTRL, val);
1439b2d4b150SSteve Glendinning 	if (ret < 0)
1440b2d4b150SSteve Glendinning 		return ret;
1441b2d4b150SSteve Glendinning 
1442b2d4b150SSteve Glendinning 	/* clear wol status */
1443b2d4b150SSteve Glendinning 	val &= ~PM_CTL_WUPS_;
1444b2d4b150SSteve Glendinning 	val |= PM_CTL_WUPS_WOL_;
1445b2d4b150SSteve Glendinning 
144631472429SLukas Wunner 	ret = smsc95xx_write_reg(dev, PM_CTRL, val);
1447b2d4b150SSteve Glendinning 	if (ret < 0)
1448b2d4b150SSteve Glendinning 		return ret;
1449b2d4b150SSteve Glendinning 
1450b2d4b150SSteve Glendinning 	pdata->suspend_flags |= SUSPEND_SUSPEND3;
1451b2d4b150SSteve Glendinning 
1452b2d4b150SSteve Glendinning 	return 0;
1453b2d4b150SSteve Glendinning }
1454b2d4b150SSteve Glendinning 
1455b2d4b150SSteve Glendinning static int smsc95xx_autosuspend(struct usbnet *dev, u32 link_up)
1456b2d4b150SSteve Glendinning {
1457ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
1458b2d4b150SSteve Glendinning 
1459b2d4b150SSteve Glendinning 	if (!netif_running(dev->net)) {
1460b2d4b150SSteve Glendinning 		/* interface is ifconfig down so fully power down hw */
1461b2d4b150SSteve Glendinning 		netdev_dbg(dev->net, "autosuspend entering SUSPEND2\n");
1462b2d4b150SSteve Glendinning 		return smsc95xx_enter_suspend2(dev);
1463b2d4b150SSteve Glendinning 	}
1464b2d4b150SSteve Glendinning 
1465b2d4b150SSteve Glendinning 	if (!link_up) {
1466b2d4b150SSteve Glendinning 		/* link is down so enter EDPD mode, but only if device can
1467b2d4b150SSteve Glendinning 		 * reliably resume from it.  This check should be redundant
1468eb970ff0SMing Lei 		 * as current FEATURE_REMOTE_WAKEUP parts also support
1469b2d4b150SSteve Glendinning 		 * FEATURE_PHY_NLP_CROSSOVER but it's included for clarity */
1470b2d4b150SSteve Glendinning 		if (!(pdata->features & FEATURE_PHY_NLP_CROSSOVER)) {
1471b2d4b150SSteve Glendinning 			netdev_warn(dev->net, "EDPD not supported\n");
1472b2d4b150SSteve Glendinning 			return -EBUSY;
1473b2d4b150SSteve Glendinning 		}
1474b2d4b150SSteve Glendinning 
1475b2d4b150SSteve Glendinning 		netdev_dbg(dev->net, "autosuspend entering SUSPEND1\n");
1476b2d4b150SSteve Glendinning 		netdev_info(dev->net, "entering SUSPEND1 mode\n");
1477b2d4b150SSteve Glendinning 		return smsc95xx_enter_suspend1(dev);
1478b2d4b150SSteve Glendinning 	}
1479b2d4b150SSteve Glendinning 
1480b2d4b150SSteve Glendinning 	netdev_dbg(dev->net, "autosuspend entering SUSPEND3\n");
1481b2d4b150SSteve Glendinning 	return smsc95xx_enter_suspend3(dev);
1482b2d4b150SSteve Glendinning }
1483b2d4b150SSteve Glendinning 
1484b5a04475SSteve Glendinning static int smsc95xx_suspend(struct usb_interface *intf, pm_message_t message)
1485b5a04475SSteve Glendinning {
1486b5a04475SSteve Glendinning 	struct usbnet *dev = usb_get_intfdata(intf);
1487ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
1488e5e3af83SSteve Glendinning 	u32 val, link_up;
1489b5a04475SSteve Glendinning 	int ret;
1490b5a04475SSteve Glendinning 
14917b960c96SLukas Wunner 	pdata->pm_task = current;
14927b960c96SLukas Wunner 
1493b5a04475SSteve Glendinning 	ret = usbnet_suspend(intf, message);
1494b052e073SSteve Glendinning 	if (ret < 0) {
1495b052e073SSteve Glendinning 		netdev_warn(dev->net, "usbnet_suspend error\n");
14967b960c96SLukas Wunner 		pdata->pm_task = NULL;
1497b052e073SSteve Glendinning 		return ret;
1498b052e073SSteve Glendinning 	}
1499b5a04475SSteve Glendinning 
1500b2d4b150SSteve Glendinning 	if (pdata->suspend_flags) {
1501b2d4b150SSteve Glendinning 		netdev_warn(dev->net, "error during last resume\n");
1502b2d4b150SSteve Glendinning 		pdata->suspend_flags = 0;
1503b2d4b150SSteve Glendinning 	}
1504b2d4b150SSteve Glendinning 
150531472429SLukas Wunner 	link_up = smsc95xx_link_ok(dev);
1506e5e3af83SSteve Glendinning 
150742e21c01SMing Lei 	if (message.event == PM_EVENT_AUTO_SUSPEND &&
1508eb970ff0SMing Lei 	    (pdata->features & FEATURE_REMOTE_WAKEUP)) {
1509b2d4b150SSteve Glendinning 		ret = smsc95xx_autosuspend(dev, link_up);
1510b2d4b150SSteve Glendinning 		goto done;
1511b2d4b150SSteve Glendinning 	}
1512b2d4b150SSteve Glendinning 
1513b2d4b150SSteve Glendinning 	/* if we get this far we're not autosuspending */
1514e5e3af83SSteve Glendinning 	/* if no wol options set, or if link is down and we're not waking on
1515e5e3af83SSteve Glendinning 	 * PHY activity, enter lowest power SUSPEND2 mode
1516e5e3af83SSteve Glendinning 	 */
1517e5e3af83SSteve Glendinning 	if (!(pdata->wolopts & SUPPORTED_WAKE) ||
1518e5e3af83SSteve Glendinning 		!(link_up || (pdata->wolopts & WAKE_PHY))) {
15191e1d7412SJoe Perches 		netdev_info(dev->net, "entering SUSPEND2 mode\n");
1520b5a04475SSteve Glendinning 
1521e0e474a8SSteve Glendinning 		/* disable energy detect (link up) & wake up events */
152231472429SLukas Wunner 		ret = smsc95xx_read_reg(dev, WUCSR, &val);
1523e360a8b4SSteve Glendinning 		if (ret < 0)
1524b052e073SSteve Glendinning 			goto done;
1525e0e474a8SSteve Glendinning 
1526e0e474a8SSteve Glendinning 		val &= ~(WUCSR_MPEN_ | WUCSR_WAKE_EN_);
1527e0e474a8SSteve Glendinning 
152831472429SLukas Wunner 		ret = smsc95xx_write_reg(dev, WUCSR, val);
1529e360a8b4SSteve Glendinning 		if (ret < 0)
1530b052e073SSteve Glendinning 			goto done;
1531e0e474a8SSteve Glendinning 
153231472429SLukas Wunner 		ret = smsc95xx_read_reg(dev, PM_CTRL, &val);
1533e360a8b4SSteve Glendinning 		if (ret < 0)
1534b052e073SSteve Glendinning 			goto done;
1535e0e474a8SSteve Glendinning 
1536e0e474a8SSteve Glendinning 		val &= ~(PM_CTL_ED_EN_ | PM_CTL_WOL_EN_);
1537e0e474a8SSteve Glendinning 
153831472429SLukas Wunner 		ret = smsc95xx_write_reg(dev, PM_CTRL, val);
1539e360a8b4SSteve Glendinning 		if (ret < 0)
1540b052e073SSteve Glendinning 			goto done;
1541e0e474a8SSteve Glendinning 
15423b9f7d8cSSteve Glendinning 		ret = smsc95xx_enter_suspend2(dev);
15433b9f7d8cSSteve Glendinning 		goto done;
1544b5a04475SSteve Glendinning 	}
1545b5a04475SSteve Glendinning 
1546e5e3af83SSteve Glendinning 	if (pdata->wolopts & WAKE_PHY) {
1547e5e3af83SSteve Glendinning 		/* if link is down then configure EDPD and enter SUSPEND1,
1548e5e3af83SSteve Glendinning 		 * otherwise enter SUSPEND0 below
1549e5e3af83SSteve Glendinning 		 */
1550e5e3af83SSteve Glendinning 		if (!link_up) {
15511e1d7412SJoe Perches 			netdev_info(dev->net, "entering SUSPEND1 mode\n");
15523b9f7d8cSSteve Glendinning 			ret = smsc95xx_enter_suspend1(dev);
15533b9f7d8cSSteve Glendinning 			goto done;
1554e5e3af83SSteve Glendinning 		}
1555e5e3af83SSteve Glendinning 	}
1556e5e3af83SSteve Glendinning 
1557bbd9f9eeSSteve Glendinning 	if (pdata->wolopts & (WAKE_BCAST | WAKE_MCAST | WAKE_ARP | WAKE_UCAST)) {
15586396bb22SKees Cook 		u32 *filter_mask = kcalloc(32, sizeof(u32), GFP_KERNEL);
155906a221beSMing Lei 		u32 command[2];
156006a221beSMing Lei 		u32 offset[2];
156106a221beSMing Lei 		u32 crc[4];
15629ebca507SSteve Glendinning 		int wuff_filter_count =
15639ebca507SSteve Glendinning 			(pdata->features & FEATURE_8_WAKEUP_FILTERS) ?
15649ebca507SSteve Glendinning 			LAN9500A_WUFF_NUM : LAN9500_WUFF_NUM;
1565bbd9f9eeSSteve Glendinning 		int i, filter = 0;
1566bbd9f9eeSSteve Glendinning 
1567eed9a729SSteve Glendinning 		if (!filter_mask) {
1568eed9a729SSteve Glendinning 			netdev_warn(dev->net, "Unable to allocate filter_mask\n");
15693b9f7d8cSSteve Glendinning 			ret = -ENOMEM;
15703b9f7d8cSSteve Glendinning 			goto done;
1571eed9a729SSteve Glendinning 		}
1572eed9a729SSteve Glendinning 
157306a221beSMing Lei 		memset(command, 0, sizeof(command));
157406a221beSMing Lei 		memset(offset, 0, sizeof(offset));
157506a221beSMing Lei 		memset(crc, 0, sizeof(crc));
157606a221beSMing Lei 
1577bbd9f9eeSSteve Glendinning 		if (pdata->wolopts & WAKE_BCAST) {
1578bbd9f9eeSSteve Glendinning 			const u8 bcast[] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
15791e1d7412SJoe Perches 			netdev_info(dev->net, "enabling broadcast detection\n");
1580bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4] = 0x003F;
1581bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4 + 1] = 0x00;
1582bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4 + 2] = 0x00;
1583bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4 + 3] = 0x00;
1584bbd9f9eeSSteve Glendinning 			command[filter/4] |= 0x05UL << ((filter % 4) * 8);
1585bbd9f9eeSSteve Glendinning 			offset[filter/4] |= 0x00 << ((filter % 4) * 8);
1586bbd9f9eeSSteve Glendinning 			crc[filter/2] |= smsc_crc(bcast, 6, filter);
1587bbd9f9eeSSteve Glendinning 			filter++;
1588bbd9f9eeSSteve Glendinning 		}
1589bbd9f9eeSSteve Glendinning 
1590bbd9f9eeSSteve Glendinning 		if (pdata->wolopts & WAKE_MCAST) {
1591bbd9f9eeSSteve Glendinning 			const u8 mcast[] = {0x01, 0x00, 0x5E};
15921e1d7412SJoe Perches 			netdev_info(dev->net, "enabling multicast detection\n");
1593bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4] = 0x0007;
1594bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4 + 1] = 0x00;
1595bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4 + 2] = 0x00;
1596bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4 + 3] = 0x00;
1597bbd9f9eeSSteve Glendinning 			command[filter/4] |= 0x09UL << ((filter % 4) * 8);
1598bbd9f9eeSSteve Glendinning 			offset[filter/4] |= 0x00  << ((filter % 4) * 8);
1599bbd9f9eeSSteve Glendinning 			crc[filter/2] |= smsc_crc(mcast, 3, filter);
1600bbd9f9eeSSteve Glendinning 			filter++;
1601bbd9f9eeSSteve Glendinning 		}
1602bbd9f9eeSSteve Glendinning 
1603bbd9f9eeSSteve Glendinning 		if (pdata->wolopts & WAKE_ARP) {
1604bbd9f9eeSSteve Glendinning 			const u8 arp[] = {0x08, 0x06};
16051e1d7412SJoe Perches 			netdev_info(dev->net, "enabling ARP detection\n");
1606bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4] = 0x0003;
1607bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4 + 1] = 0x00;
1608bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4 + 2] = 0x00;
1609bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4 + 3] = 0x00;
1610bbd9f9eeSSteve Glendinning 			command[filter/4] |= 0x05UL << ((filter % 4) * 8);
1611bbd9f9eeSSteve Glendinning 			offset[filter/4] |= 0x0C << ((filter % 4) * 8);
1612bbd9f9eeSSteve Glendinning 			crc[filter/2] |= smsc_crc(arp, 2, filter);
1613bbd9f9eeSSteve Glendinning 			filter++;
1614bbd9f9eeSSteve Glendinning 		}
1615bbd9f9eeSSteve Glendinning 
1616bbd9f9eeSSteve Glendinning 		if (pdata->wolopts & WAKE_UCAST) {
16171e1d7412SJoe Perches 			netdev_info(dev->net, "enabling unicast detection\n");
1618bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4] = 0x003F;
1619bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4 + 1] = 0x00;
1620bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4 + 2] = 0x00;
1621bbd9f9eeSSteve Glendinning 			filter_mask[filter * 4 + 3] = 0x00;
1622bbd9f9eeSSteve Glendinning 			command[filter/4] |= 0x01UL << ((filter % 4) * 8);
1623bbd9f9eeSSteve Glendinning 			offset[filter/4] |= 0x00 << ((filter % 4) * 8);
1624bbd9f9eeSSteve Glendinning 			crc[filter/2] |= smsc_crc(dev->net->dev_addr, ETH_ALEN, filter);
1625bbd9f9eeSSteve Glendinning 			filter++;
1626bbd9f9eeSSteve Glendinning 		}
1627bbd9f9eeSSteve Glendinning 
16289ebca507SSteve Glendinning 		for (i = 0; i < (wuff_filter_count * 4); i++) {
162931472429SLukas Wunner 			ret = smsc95xx_write_reg(dev, WUFF, filter_mask[i]);
1630b052e073SSteve Glendinning 			if (ret < 0) {
163106a221beSMing Lei 				kfree(filter_mask);
1632b052e073SSteve Glendinning 				goto done;
1633b052e073SSteve Glendinning 			}
1634bbd9f9eeSSteve Glendinning 		}
163506a221beSMing Lei 		kfree(filter_mask);
1636bbd9f9eeSSteve Glendinning 
16379ebca507SSteve Glendinning 		for (i = 0; i < (wuff_filter_count / 4); i++) {
163831472429SLukas Wunner 			ret = smsc95xx_write_reg(dev, WUFF, command[i]);
1639e360a8b4SSteve Glendinning 			if (ret < 0)
1640b052e073SSteve Glendinning 				goto done;
1641b052e073SSteve Glendinning 		}
1642bbd9f9eeSSteve Glendinning 
16439ebca507SSteve Glendinning 		for (i = 0; i < (wuff_filter_count / 4); i++) {
164431472429SLukas Wunner 			ret = smsc95xx_write_reg(dev, WUFF, offset[i]);
1645e360a8b4SSteve Glendinning 			if (ret < 0)
1646b052e073SSteve Glendinning 				goto done;
1647b052e073SSteve Glendinning 		}
1648bbd9f9eeSSteve Glendinning 
16499ebca507SSteve Glendinning 		for (i = 0; i < (wuff_filter_count / 2); i++) {
165031472429SLukas Wunner 			ret = smsc95xx_write_reg(dev, WUFF, crc[i]);
1651e360a8b4SSteve Glendinning 			if (ret < 0)
1652b052e073SSteve Glendinning 				goto done;
1653b052e073SSteve Glendinning 		}
1654bbd9f9eeSSteve Glendinning 
1655bbd9f9eeSSteve Glendinning 		/* clear any pending pattern match packet status */
165631472429SLukas Wunner 		ret = smsc95xx_read_reg(dev, WUCSR, &val);
1657e360a8b4SSteve Glendinning 		if (ret < 0)
1658b052e073SSteve Glendinning 			goto done;
1659bbd9f9eeSSteve Glendinning 
1660bbd9f9eeSSteve Glendinning 		val |= WUCSR_WUFR_;
1661bbd9f9eeSSteve Glendinning 
166231472429SLukas Wunner 		ret = smsc95xx_write_reg(dev, WUCSR, val);
1663e360a8b4SSteve Glendinning 		if (ret < 0)
1664b052e073SSteve Glendinning 			goto done;
1665b052e073SSteve Glendinning 	}
1666bbd9f9eeSSteve Glendinning 
1667e0e474a8SSteve Glendinning 	if (pdata->wolopts & WAKE_MAGIC) {
1668e0e474a8SSteve Glendinning 		/* clear any pending magic packet status */
166931472429SLukas Wunner 		ret = smsc95xx_read_reg(dev, WUCSR, &val);
1670e360a8b4SSteve Glendinning 		if (ret < 0)
1671b052e073SSteve Glendinning 			goto done;
1672e0e474a8SSteve Glendinning 
1673e0e474a8SSteve Glendinning 		val |= WUCSR_MPR_;
1674e0e474a8SSteve Glendinning 
167531472429SLukas Wunner 		ret = smsc95xx_write_reg(dev, WUCSR, val);
1676e360a8b4SSteve Glendinning 		if (ret < 0)
1677b052e073SSteve Glendinning 			goto done;
1678b052e073SSteve Glendinning 	}
1679e0e474a8SSteve Glendinning 
1680bbd9f9eeSSteve Glendinning 	/* enable/disable wakeup sources */
168131472429SLukas Wunner 	ret = smsc95xx_read_reg(dev, WUCSR, &val);
1682e360a8b4SSteve Glendinning 	if (ret < 0)
1683b052e073SSteve Glendinning 		goto done;
1684e0e474a8SSteve Glendinning 
1685bbd9f9eeSSteve Glendinning 	if (pdata->wolopts & (WAKE_BCAST | WAKE_MCAST | WAKE_ARP | WAKE_UCAST)) {
16861e1d7412SJoe Perches 		netdev_info(dev->net, "enabling pattern match wakeup\n");
1687bbd9f9eeSSteve Glendinning 		val |= WUCSR_WAKE_EN_;
1688bbd9f9eeSSteve Glendinning 	} else {
16891e1d7412SJoe Perches 		netdev_info(dev->net, "disabling pattern match wakeup\n");
1690bbd9f9eeSSteve Glendinning 		val &= ~WUCSR_WAKE_EN_;
1691bbd9f9eeSSteve Glendinning 	}
1692bbd9f9eeSSteve Glendinning 
1693e0e474a8SSteve Glendinning 	if (pdata->wolopts & WAKE_MAGIC) {
16941e1d7412SJoe Perches 		netdev_info(dev->net, "enabling magic packet wakeup\n");
1695e0e474a8SSteve Glendinning 		val |= WUCSR_MPEN_;
1696e0e474a8SSteve Glendinning 	} else {
16971e1d7412SJoe Perches 		netdev_info(dev->net, "disabling magic packet wakeup\n");
1698e0e474a8SSteve Glendinning 		val &= ~WUCSR_MPEN_;
1699e0e474a8SSteve Glendinning 	}
1700e0e474a8SSteve Glendinning 
170131472429SLukas Wunner 	ret = smsc95xx_write_reg(dev, WUCSR, val);
1702e360a8b4SSteve Glendinning 	if (ret < 0)
1703b052e073SSteve Glendinning 		goto done;
1704e0e474a8SSteve Glendinning 
1705e0e474a8SSteve Glendinning 	/* enable wol wakeup source */
170631472429SLukas Wunner 	ret = smsc95xx_read_reg(dev, PM_CTRL, &val);
1707e360a8b4SSteve Glendinning 	if (ret < 0)
1708b052e073SSteve Glendinning 		goto done;
1709e0e474a8SSteve Glendinning 
1710e0e474a8SSteve Glendinning 	val |= PM_CTL_WOL_EN_;
1711e0e474a8SSteve Glendinning 
1712e5e3af83SSteve Glendinning 	/* phy energy detect wakeup source */
1713e5e3af83SSteve Glendinning 	if (pdata->wolopts & WAKE_PHY)
1714e5e3af83SSteve Glendinning 		val |= PM_CTL_ED_EN_;
1715e5e3af83SSteve Glendinning 
171631472429SLukas Wunner 	ret = smsc95xx_write_reg(dev, PM_CTRL, val);
1717e360a8b4SSteve Glendinning 	if (ret < 0)
1718b052e073SSteve Glendinning 		goto done;
1719e0e474a8SSteve Glendinning 
1720bbd9f9eeSSteve Glendinning 	/* enable receiver to enable frame reception */
172131472429SLukas Wunner 	smsc95xx_start_rx_path(dev);
1722e0e474a8SSteve Glendinning 
1723e0e474a8SSteve Glendinning 	/* some wol options are enabled, so enter SUSPEND0 */
17241e1d7412SJoe Perches 	netdev_info(dev->net, "entering SUSPEND0 mode\n");
17253b9f7d8cSSteve Glendinning 	ret = smsc95xx_enter_suspend0(dev);
17263b9f7d8cSSteve Glendinning 
17273b9f7d8cSSteve Glendinning done:
17280d41be53SMing Lei 	/*
17290d41be53SMing Lei 	 * TODO: resume() might need to handle the suspend failure
17300d41be53SMing Lei 	 * in system sleep
17310d41be53SMing Lei 	 */
17320d41be53SMing Lei 	if (ret && PMSG_IS_AUTO(message))
17333b9f7d8cSSteve Glendinning 		usbnet_resume(intf);
17347b900eadSFrieder Schrempf 
17357b960c96SLukas Wunner 	pdata->pm_task = NULL;
17363b9f7d8cSSteve Glendinning 	return ret;
1737e0e474a8SSteve Glendinning }
1738e0e474a8SSteve Glendinning 
1739e0e474a8SSteve Glendinning static int smsc95xx_resume(struct usb_interface *intf)
1740e0e474a8SSteve Glendinning {
1741e0e474a8SSteve Glendinning 	struct usbnet *dev = usb_get_intfdata(intf);
17428bca81d9SSudip Mukherjee 	struct smsc95xx_priv *pdata;
17438bca81d9SSudip Mukherjee 	u8 suspend_flags;
1744e0e474a8SSteve Glendinning 	int ret;
1745e0e474a8SSteve Glendinning 	u32 val;
1746e0e474a8SSteve Glendinning 
1747e0e474a8SSteve Glendinning 	BUG_ON(!dev);
1748ad90a73fSAndre Edich 	pdata = dev->driver_priv;
17498bca81d9SSudip Mukherjee 	suspend_flags = pdata->suspend_flags;
1750e0e474a8SSteve Glendinning 
1751b2d4b150SSteve Glendinning 	netdev_dbg(dev->net, "resume suspend_flags=0x%02x\n", suspend_flags);
1752b2d4b150SSteve Glendinning 
1753b2d4b150SSteve Glendinning 	/* do this first to ensure it's cleared even in error case */
1754b2d4b150SSteve Glendinning 	pdata->suspend_flags = 0;
1755b2d4b150SSteve Glendinning 
17567b960c96SLukas Wunner 	pdata->pm_task = current;
17577b960c96SLukas Wunner 
1758b2d4b150SSteve Glendinning 	if (suspend_flags & SUSPEND_ALLMODES) {
1759bbd9f9eeSSteve Glendinning 		/* clear wake-up sources */
176031472429SLukas Wunner 		ret = smsc95xx_read_reg(dev, WUCSR, &val);
1761e360a8b4SSteve Glendinning 		if (ret < 0)
17627b960c96SLukas Wunner 			goto done;
1763e0e474a8SSteve Glendinning 
1764bbd9f9eeSSteve Glendinning 		val &= ~(WUCSR_WAKE_EN_ | WUCSR_MPEN_);
1765e0e474a8SSteve Glendinning 
176631472429SLukas Wunner 		ret = smsc95xx_write_reg(dev, WUCSR, val);
1767e360a8b4SSteve Glendinning 		if (ret < 0)
17687b960c96SLukas Wunner 			goto done;
1769e0e474a8SSteve Glendinning 
1770e0e474a8SSteve Glendinning 		/* clear wake-up status */
177131472429SLukas Wunner 		ret = smsc95xx_read_reg(dev, PM_CTRL, &val);
1772e360a8b4SSteve Glendinning 		if (ret < 0)
17737b960c96SLukas Wunner 			goto done;
1774e0e474a8SSteve Glendinning 
1775e0e474a8SSteve Glendinning 		val &= ~PM_CTL_WOL_EN_;
1776e0e474a8SSteve Glendinning 		val |= PM_CTL_WUPS_;
1777e0e474a8SSteve Glendinning 
177831472429SLukas Wunner 		ret = smsc95xx_write_reg(dev, PM_CTRL, val);
1779e360a8b4SSteve Glendinning 		if (ret < 0)
17807b960c96SLukas Wunner 			goto done;
1781b052e073SSteve Glendinning 	}
1782e0e474a8SSteve Glendinning 
17831ce8b372SLukas Wunner 	phy_init_hw(pdata->phydev);
17841ce8b372SLukas Wunner 
1785af3d7c1eSSteve Glendinning 	ret = usbnet_resume(intf);
1786b052e073SSteve Glendinning 	if (ret < 0)
1787b052e073SSteve Glendinning 		netdev_warn(dev->net, "usbnet_resume error\n");
1788e0e474a8SSteve Glendinning 
17897b960c96SLukas Wunner done:
17907b960c96SLukas Wunner 	pdata->pm_task = NULL;
1791b052e073SSteve Glendinning 	return ret;
1792e0e474a8SSteve Glendinning }
1793e0e474a8SSteve Glendinning 
1794b4df480fSJoonyoung Shim static int smsc95xx_reset_resume(struct usb_interface *intf)
1795b4df480fSJoonyoung Shim {
1796b4df480fSJoonyoung Shim 	struct usbnet *dev = usb_get_intfdata(intf);
17977b960c96SLukas Wunner 	struct smsc95xx_priv *pdata = dev->driver_priv;
1798b4df480fSJoonyoung Shim 	int ret;
1799b4df480fSJoonyoung Shim 
18007b960c96SLukas Wunner 	pdata->pm_task = current;
1801b4df480fSJoonyoung Shim 	ret = smsc95xx_reset(dev);
18027b960c96SLukas Wunner 	pdata->pm_task = NULL;
1803b4df480fSJoonyoung Shim 	if (ret < 0)
1804b4df480fSJoonyoung Shim 		return ret;
1805b4df480fSJoonyoung Shim 
1806b4df480fSJoonyoung Shim 	return smsc95xx_resume(intf);
1807b4df480fSJoonyoung Shim }
1808b4df480fSJoonyoung Shim 
18092f7ca802SSteve Glendinning static void smsc95xx_rx_csum_offload(struct sk_buff *skb)
18102f7ca802SSteve Glendinning {
18112f7ca802SSteve Glendinning 	skb->csum = *(u16 *)(skb_tail_pointer(skb) - 2);
18122f7ca802SSteve Glendinning 	skb->ip_summed = CHECKSUM_COMPLETE;
18132f7ca802SSteve Glendinning 	skb_trim(skb, skb->len - 2);
18142f7ca802SSteve Glendinning }
18152f7ca802SSteve Glendinning 
18162f7ca802SSteve Glendinning static int smsc95xx_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
18172f7ca802SSteve Glendinning {
1818eb85569fSEmil Goode 	/* This check is no longer done by usbnet */
1819eb85569fSEmil Goode 	if (skb->len < dev->net->hard_header_len)
1820eb85569fSEmil Goode 		return 0;
1821eb85569fSEmil Goode 
18222f7ca802SSteve Glendinning 	while (skb->len > 0) {
18232f7ca802SSteve Glendinning 		u32 header, align_count;
18242f7ca802SSteve Glendinning 		struct sk_buff *ax_skb;
18252f7ca802SSteve Glendinning 		unsigned char *packet;
18262f7ca802SSteve Glendinning 		u16 size;
18272f7ca802SSteve Glendinning 
18286809d216SBen Dooks 		header = get_unaligned_le32(skb->data);
18292f7ca802SSteve Glendinning 		skb_pull(skb, 4 + NET_IP_ALIGN);
18302f7ca802SSteve Glendinning 		packet = skb->data;
18312f7ca802SSteve Glendinning 
18322f7ca802SSteve Glendinning 		/* get the packet length */
18332f7ca802SSteve Glendinning 		size = (u16)((header & RX_STS_FL_) >> 16);
18342f7ca802SSteve Glendinning 		align_count = (4 - ((size + NET_IP_ALIGN) % 4)) % 4;
18352f7ca802SSteve Glendinning 
1836ff821092SSzymon Heidrich 		if (unlikely(size > skb->len)) {
1837ff821092SSzymon Heidrich 			netif_dbg(dev, rx_err, dev->net,
1838ff821092SSzymon Heidrich 				  "size err header=0x%08x\n", header);
1839ff821092SSzymon Heidrich 			return 0;
1840ff821092SSzymon Heidrich 		}
1841ff821092SSzymon Heidrich 
18422f7ca802SSteve Glendinning 		if (unlikely(header & RX_STS_ES_)) {
1843a475f603SJoe Perches 			netif_dbg(dev, rx_err, dev->net,
1844a475f603SJoe Perches 				  "Error header=0x%08x\n", header);
184580667ac1SHerbert Xu 			dev->net->stats.rx_errors++;
184680667ac1SHerbert Xu 			dev->net->stats.rx_dropped++;
18472f7ca802SSteve Glendinning 
18482f7ca802SSteve Glendinning 			if (header & RX_STS_CRC_) {
184980667ac1SHerbert Xu 				dev->net->stats.rx_crc_errors++;
18502f7ca802SSteve Glendinning 			} else {
18512f7ca802SSteve Glendinning 				if (header & (RX_STS_TL_ | RX_STS_RF_))
185280667ac1SHerbert Xu 					dev->net->stats.rx_frame_errors++;
18532f7ca802SSteve Glendinning 
18542f7ca802SSteve Glendinning 				if ((header & RX_STS_LE_) &&
18552f7ca802SSteve Glendinning 					(!(header & RX_STS_FT_)))
185680667ac1SHerbert Xu 					dev->net->stats.rx_length_errors++;
18572f7ca802SSteve Glendinning 			}
18582f7ca802SSteve Glendinning 		} else {
18592f7ca802SSteve Glendinning 			/* ETH_FRAME_LEN + 4(CRC) + 2(COE) + 4(Vlan) */
18602f7ca802SSteve Glendinning 			if (unlikely(size > (ETH_FRAME_LEN + 12))) {
1861a475f603SJoe Perches 				netif_dbg(dev, rx_err, dev->net,
1862a475f603SJoe Perches 					  "size err header=0x%08x\n", header);
18632f7ca802SSteve Glendinning 				return 0;
18642f7ca802SSteve Glendinning 			}
18652f7ca802SSteve Glendinning 
18662f7ca802SSteve Glendinning 			/* last frame in this batch */
18672f7ca802SSteve Glendinning 			if (skb->len == size) {
186878e47fe4SMichał Mirosław 				if (dev->net->features & NETIF_F_RXCSUM)
18692f7ca802SSteve Glendinning 					smsc95xx_rx_csum_offload(skb);
1870df18accaSPeter Korsgaard 				skb_trim(skb, skb->len - 4); /* remove fcs */
18712f7ca802SSteve Glendinning 				skb->truesize = size + sizeof(struct sk_buff);
18722f7ca802SSteve Glendinning 
18732f7ca802SSteve Glendinning 				return 1;
18742f7ca802SSteve Glendinning 			}
18752f7ca802SSteve Glendinning 
18762f7ca802SSteve Glendinning 			ax_skb = skb_clone(skb, GFP_ATOMIC);
18772f7ca802SSteve Glendinning 			if (unlikely(!ax_skb)) {
187860b86755SJoe Perches 				netdev_warn(dev->net, "Error allocating skb\n");
18792f7ca802SSteve Glendinning 				return 0;
18802f7ca802SSteve Glendinning 			}
18812f7ca802SSteve Glendinning 
18822f7ca802SSteve Glendinning 			ax_skb->len = size;
18832f7ca802SSteve Glendinning 			ax_skb->data = packet;
18842f7ca802SSteve Glendinning 			skb_set_tail_pointer(ax_skb, size);
18852f7ca802SSteve Glendinning 
188678e47fe4SMichał Mirosław 			if (dev->net->features & NETIF_F_RXCSUM)
18872f7ca802SSteve Glendinning 				smsc95xx_rx_csum_offload(ax_skb);
1888df18accaSPeter Korsgaard 			skb_trim(ax_skb, ax_skb->len - 4); /* remove fcs */
18892f7ca802SSteve Glendinning 			ax_skb->truesize = size + sizeof(struct sk_buff);
18902f7ca802SSteve Glendinning 
18912f7ca802SSteve Glendinning 			usbnet_skb_return(dev, ax_skb);
18922f7ca802SSteve Glendinning 		}
18932f7ca802SSteve Glendinning 
18942f7ca802SSteve Glendinning 		skb_pull(skb, size);
18952f7ca802SSteve Glendinning 
18962f7ca802SSteve Glendinning 		/* padding bytes before the next frame starts */
18972f7ca802SSteve Glendinning 		if (skb->len)
18982f7ca802SSteve Glendinning 			skb_pull(skb, align_count);
18992f7ca802SSteve Glendinning 	}
19002f7ca802SSteve Glendinning 
19012f7ca802SSteve Glendinning 	return 1;
19022f7ca802SSteve Glendinning }
19032f7ca802SSteve Glendinning 
1904f7b29271SSteve Glendinning static u32 smsc95xx_calc_csum_preamble(struct sk_buff *skb)
1905f7b29271SSteve Glendinning {
190655508d60SMichał Mirosław 	u16 low_16 = (u16)skb_checksum_start_offset(skb);
190755508d60SMichał Mirosław 	u16 high_16 = low_16 + skb->csum_offset;
1908f7b29271SSteve Glendinning 	return (high_16 << 16) | low_16;
1909f7b29271SSteve Glendinning }
1910f7b29271SSteve Glendinning 
191175938f77SBen Dooks /* The TX CSUM won't work if the checksum lies in the last 4 bytes of the
191275938f77SBen Dooks  * transmission. This is fairly unlikely, only seems to trigger with some
191375938f77SBen Dooks  * short TCP ACK packets sent.
191475938f77SBen Dooks  *
191575938f77SBen Dooks  * Note, this calculation should probably check for the alignment of the
191675938f77SBen Dooks  * data as well, but a straight check for csum being in the last four bytes
191775938f77SBen Dooks  * of the packet should be ok for now.
191875938f77SBen Dooks  */
191975938f77SBen Dooks static bool smsc95xx_can_tx_checksum(struct sk_buff *skb)
192075938f77SBen Dooks {
192175938f77SBen Dooks        unsigned int len = skb->len - skb_checksum_start_offset(skb);
192275938f77SBen Dooks 
192375938f77SBen Dooks        if (skb->len <= 45)
192475938f77SBen Dooks 	       return false;
192575938f77SBen Dooks        return skb->csum_offset < (len - (4 + 1));
192675938f77SBen Dooks }
192775938f77SBen Dooks 
19282f7ca802SSteve Glendinning static struct sk_buff *smsc95xx_tx_fixup(struct usbnet *dev,
19292f7ca802SSteve Glendinning 					 struct sk_buff *skb, gfp_t flags)
19302f7ca802SSteve Glendinning {
193178e47fe4SMichał Mirosław 	bool csum = skb->ip_summed == CHECKSUM_PARTIAL;
1932f7b29271SSteve Glendinning 	int overhead = csum ? SMSC95XX_TX_OVERHEAD_CSUM : SMSC95XX_TX_OVERHEAD;
19332f7ca802SSteve Glendinning 	u32 tx_cmd_a, tx_cmd_b;
19340c8b2655SBen Dooks 	void *ptr;
19352f7ca802SSteve Glendinning 
1936f7b29271SSteve Glendinning 	/* We do not advertise SG, so skbs should be already linearized */
1937f7b29271SSteve Glendinning 	BUG_ON(skb_shinfo(skb)->nr_frags);
1938f7b29271SSteve Glendinning 
1939e9156cd2SJames Hughes 	/* Make writable and expand header space by overhead if required */
1940e9156cd2SJames Hughes 	if (skb_cow_head(skb, overhead)) {
1941e9156cd2SJames Hughes 		/* Must deallocate here as returning NULL to indicate error
1942e9156cd2SJames Hughes 		 * means the skb won't be deallocated in the caller.
1943e9156cd2SJames Hughes 		 */
19442f7ca802SSteve Glendinning 		dev_kfree_skb_any(skb);
19452f7ca802SSteve Glendinning 		return NULL;
19462f7ca802SSteve Glendinning 	}
19472f7ca802SSteve Glendinning 
19480c8b2655SBen Dooks 	tx_cmd_b = (u32)skb->len;
19490c8b2655SBen Dooks 	tx_cmd_a = tx_cmd_b | TX_CMD_A_FIRST_SEG_ | TX_CMD_A_LAST_SEG_;
19500c8b2655SBen Dooks 
1951f7b29271SSteve Glendinning 	if (csum) {
195275938f77SBen Dooks 		if (!smsc95xx_can_tx_checksum(skb)) {
195311bc3088SSteve Glendinning 			/* workaround - hardware tx checksum does not work
195411bc3088SSteve Glendinning 			 * properly with extremely small packets */
195555508d60SMichał Mirosław 			long csstart = skb_checksum_start_offset(skb);
195611bc3088SSteve Glendinning 			__wsum calc = csum_partial(skb->data + csstart,
195711bc3088SSteve Glendinning 				skb->len - csstart, 0);
195811bc3088SSteve Glendinning 			*((__sum16 *)(skb->data + csstart
195911bc3088SSteve Glendinning 				+ skb->csum_offset)) = csum_fold(calc);
196011bc3088SSteve Glendinning 
196111bc3088SSteve Glendinning 			csum = false;
196211bc3088SSteve Glendinning 		} else {
1963f7b29271SSteve Glendinning 			u32 csum_preamble = smsc95xx_calc_csum_preamble(skb);
19640c8b2655SBen Dooks 			ptr = skb_push(skb, 4);
19650c8b2655SBen Dooks 			put_unaligned_le32(csum_preamble, ptr);
1966f7b29271SSteve Glendinning 
19670c8b2655SBen Dooks 			tx_cmd_a += 4;
19680c8b2655SBen Dooks 			tx_cmd_b += 4;
1969f7b29271SSteve Glendinning 			tx_cmd_b |= TX_CMD_B_CSUM_ENABLE;
19700c8b2655SBen Dooks 		}
19710c8b2655SBen Dooks 	}
19722f7ca802SSteve Glendinning 
19730c8b2655SBen Dooks 	ptr = skb_push(skb, 8);
19740c8b2655SBen Dooks 	put_unaligned_le32(tx_cmd_a, ptr);
19750c8b2655SBen Dooks 	put_unaligned_le32(tx_cmd_b, ptr+4);
19762f7ca802SSteve Glendinning 
19772f7ca802SSteve Glendinning 	return skb;
19782f7ca802SSteve Glendinning }
19792f7ca802SSteve Glendinning 
1980b2d4b150SSteve Glendinning static int smsc95xx_manage_power(struct usbnet *dev, int on)
1981b2d4b150SSteve Glendinning {
1982ad90a73fSAndre Edich 	struct smsc95xx_priv *pdata = dev->driver_priv;
1983b2d4b150SSteve Glendinning 
1984b2d4b150SSteve Glendinning 	dev->intf->needs_remote_wakeup = on;
1985b2d4b150SSteve Glendinning 
1986eb970ff0SMing Lei 	if (pdata->features & FEATURE_REMOTE_WAKEUP)
1987b2d4b150SSteve Glendinning 		return 0;
1988b2d4b150SSteve Glendinning 
1989eb970ff0SMing Lei 	/* this chip revision isn't capable of remote wakeup */
1990eb970ff0SMing Lei 	netdev_info(dev->net, "hardware isn't capable of remote wakeup\n");
1991b2d4b150SSteve Glendinning 
1992b2d4b150SSteve Glendinning 	if (on)
1993b2d4b150SSteve Glendinning 		usb_autopm_get_interface_no_resume(dev->intf);
1994b2d4b150SSteve Glendinning 	else
1995b2d4b150SSteve Glendinning 		usb_autopm_put_interface(dev->intf);
1996b2d4b150SSteve Glendinning 
1997b2d4b150SSteve Glendinning 	return 0;
1998b2d4b150SSteve Glendinning }
1999b2d4b150SSteve Glendinning 
20002f7ca802SSteve Glendinning static const struct driver_info smsc95xx_info = {
20012f7ca802SSteve Glendinning 	.description	= "smsc95xx USB 2.0 Ethernet",
20022f7ca802SSteve Glendinning 	.bind		= smsc95xx_bind,
20032f7ca802SSteve Glendinning 	.unbind		= smsc95xx_unbind,
20040bf38853SMarkus Reichl 	.reset		= smsc95xx_reset,
20050bf38853SMarkus Reichl 	.check_connect	= smsc95xx_start_phy,
2006a049a30fSMartyn Welch 	.stop		= smsc95xx_stop,
20072f7ca802SSteve Glendinning 	.rx_fixup	= smsc95xx_rx_fixup,
20082f7ca802SSteve Glendinning 	.tx_fixup	= smsc95xx_tx_fixup,
20092f7ca802SSteve Glendinning 	.status		= smsc95xx_status,
2010b2d4b150SSteve Glendinning 	.manage_power	= smsc95xx_manage_power,
201107d69d42SPaolo Pisati 	.flags		= FLAG_ETHER | FLAG_SEND_ZLP | FLAG_LINK_INTR,
20122f7ca802SSteve Glendinning };
20132f7ca802SSteve Glendinning 
20142f7ca802SSteve Glendinning static const struct usb_device_id products[] = {
20152f7ca802SSteve Glendinning 	{
20162f7ca802SSteve Glendinning 		/* SMSC9500 USB Ethernet Device */
20172f7ca802SSteve Glendinning 		USB_DEVICE(0x0424, 0x9500),
20182f7ca802SSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
20192f7ca802SSteve Glendinning 	},
2020726474b8SSteve Glendinning 	{
20216f41d12bSSteve Glendinning 		/* SMSC9505 USB Ethernet Device */
20226f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9505),
20236f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
20246f41d12bSSteve Glendinning 	},
20256f41d12bSSteve Glendinning 	{
20266f41d12bSSteve Glendinning 		/* SMSC9500A USB Ethernet Device */
20276f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9E00),
20286f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
20296f41d12bSSteve Glendinning 	},
20306f41d12bSSteve Glendinning 	{
20316f41d12bSSteve Glendinning 		/* SMSC9505A USB Ethernet Device */
20326f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9E01),
20336f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
20346f41d12bSSteve Glendinning 	},
20356f41d12bSSteve Glendinning 	{
2036726474b8SSteve Glendinning 		/* SMSC9512/9514 USB Hub & Ethernet Device */
2037726474b8SSteve Glendinning 		USB_DEVICE(0x0424, 0xec00),
2038726474b8SSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
2039726474b8SSteve Glendinning 	},
20406f41d12bSSteve Glendinning 	{
20416f41d12bSSteve Glendinning 		/* SMSC9500 USB Ethernet Device (SAL10) */
20426f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9900),
20436f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
20446f41d12bSSteve Glendinning 	},
20456f41d12bSSteve Glendinning 	{
20466f41d12bSSteve Glendinning 		/* SMSC9505 USB Ethernet Device (SAL10) */
20476f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9901),
20486f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
20496f41d12bSSteve Glendinning 	},
20506f41d12bSSteve Glendinning 	{
20516f41d12bSSteve Glendinning 		/* SMSC9500A USB Ethernet Device (SAL10) */
20526f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9902),
20536f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
20546f41d12bSSteve Glendinning 	},
20556f41d12bSSteve Glendinning 	{
20566f41d12bSSteve Glendinning 		/* SMSC9505A USB Ethernet Device (SAL10) */
20576f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9903),
20586f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
20596f41d12bSSteve Glendinning 	},
20606f41d12bSSteve Glendinning 	{
20616f41d12bSSteve Glendinning 		/* SMSC9512/9514 USB Hub & Ethernet Device (SAL10) */
20626f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9904),
20636f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
20646f41d12bSSteve Glendinning 	},
20656f41d12bSSteve Glendinning 	{
20666f41d12bSSteve Glendinning 		/* SMSC9500A USB Ethernet Device (HAL) */
20676f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9905),
20686f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
20696f41d12bSSteve Glendinning 	},
20706f41d12bSSteve Glendinning 	{
20716f41d12bSSteve Glendinning 		/* SMSC9505A USB Ethernet Device (HAL) */
20726f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9906),
20736f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
20746f41d12bSSteve Glendinning 	},
20756f41d12bSSteve Glendinning 	{
20766f41d12bSSteve Glendinning 		/* SMSC9500 USB Ethernet Device (Alternate ID) */
20776f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9907),
20786f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
20796f41d12bSSteve Glendinning 	},
20806f41d12bSSteve Glendinning 	{
20816f41d12bSSteve Glendinning 		/* SMSC9500A USB Ethernet Device (Alternate ID) */
20826f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9908),
20836f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
20846f41d12bSSteve Glendinning 	},
20856f41d12bSSteve Glendinning 	{
20866f41d12bSSteve Glendinning 		/* SMSC9512/9514 USB Hub & Ethernet Device (Alternate ID) */
20876f41d12bSSteve Glendinning 		USB_DEVICE(0x0424, 0x9909),
20886f41d12bSSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
20896f41d12bSSteve Glendinning 	},
209088edaa41SSteve Glendinning 	{
209188edaa41SSteve Glendinning 		/* SMSC LAN9530 USB Ethernet Device */
209288edaa41SSteve Glendinning 		USB_DEVICE(0x0424, 0x9530),
209388edaa41SSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
209488edaa41SSteve Glendinning 	},
209588edaa41SSteve Glendinning 	{
209688edaa41SSteve Glendinning 		/* SMSC LAN9730 USB Ethernet Device */
209788edaa41SSteve Glendinning 		USB_DEVICE(0x0424, 0x9730),
209888edaa41SSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
209988edaa41SSteve Glendinning 	},
210088edaa41SSteve Glendinning 	{
210188edaa41SSteve Glendinning 		/* SMSC LAN89530 USB Ethernet Device */
210288edaa41SSteve Glendinning 		USB_DEVICE(0x0424, 0x9E08),
210388edaa41SSteve Glendinning 		.driver_info = (unsigned long) &smsc95xx_info,
210488edaa41SSteve Glendinning 	},
21054066bf4cSParthiban Veerasooran 	{
21064066bf4cSParthiban Veerasooran 		/* Microchip's EVB-LAN8670-USB 10BASE-T1S Ethernet Device */
21074066bf4cSParthiban Veerasooran 		USB_DEVICE(0x184F, 0x0051),
21084066bf4cSParthiban Veerasooran 		.driver_info = (unsigned long)&smsc95xx_info,
21094066bf4cSParthiban Veerasooran 	},
21102f7ca802SSteve Glendinning 	{ },		/* END */
21112f7ca802SSteve Glendinning };
21122f7ca802SSteve Glendinning MODULE_DEVICE_TABLE(usb, products);
21132f7ca802SSteve Glendinning 
21142f7ca802SSteve Glendinning static struct usb_driver smsc95xx_driver = {
21152f7ca802SSteve Glendinning 	.name		= "smsc95xx",
21162f7ca802SSteve Glendinning 	.id_table	= products,
21172f7ca802SSteve Glendinning 	.probe		= usbnet_probe,
2118b5a04475SSteve Glendinning 	.suspend	= smsc95xx_suspend,
2119e0e474a8SSteve Glendinning 	.resume		= smsc95xx_resume,
2120b4df480fSJoonyoung Shim 	.reset_resume	= smsc95xx_reset_resume,
21212f7ca802SSteve Glendinning 	.disconnect	= usbnet_disconnect,
2122e1f12eb6SSarah Sharp 	.disable_hub_initiated_lpm = 1,
2123b2d4b150SSteve Glendinning 	.supports_autosuspend = 1,
21242f7ca802SSteve Glendinning };
21252f7ca802SSteve Glendinning 
2126d632eb1bSGreg Kroah-Hartman module_usb_driver(smsc95xx_driver);
21272f7ca802SSteve Glendinning 
21282f7ca802SSteve Glendinning MODULE_AUTHOR("Nancy Lin");
212990b24cfbSSteve Glendinning MODULE_AUTHOR("Steve Glendinning <steve.glendinning@shawell.net>");
21302f7ca802SSteve Glendinning MODULE_DESCRIPTION("SMSC95XX USB 2.0 Ethernet Devices");
21312f7ca802SSteve Glendinning MODULE_LICENSE("GPL");
2132