1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /***************************************************************************
4 * Copyright (C) 2007-2008 SMSC
6 *****************************************************************************/
8 #include <linux/module.h>
9 #include <linux/kmod.h>
10 #include <linux/netdevice.h>
11 #include <linux/etherdevice.h>
12 #include <linux/ethtool.h>
13 #include <linux/mii.h>
14 #include <linux/usb.h>
15 #include <linux/bitrev.h>
16 #include <linux/crc16.h>
17 #include <linux/crc32.h>
18 #include <linux/usb/usbnet.h>
19 #include <linux/slab.h>
20 #include <linux/of_net.h>
21 #include <linux/mdio.h>
22 #include <linux/phy.h>
25 #define SMSC_CHIPNAME "smsc95xx"
26 #define SMSC_DRIVER_VERSION "2.0.0"
27 #define HS_USB_PKT_SIZE (512)
28 #define FS_USB_PKT_SIZE (64)
29 #define DEFAULT_HS_BURST_CAP_SIZE (16 * 1024 + 5 * HS_USB_PKT_SIZE)
30 #define DEFAULT_FS_BURST_CAP_SIZE (6 * 1024 + 33 * FS_USB_PKT_SIZE)
31 #define DEFAULT_BULK_IN_DELAY (0x00002000)
32 #define MAX_SINGLE_PACKET_SIZE (2048)
33 #define LAN95XX_EEPROM_MAGIC (0x9500)
34 #define EEPROM_MAC_OFFSET (0x01)
35 #define DEFAULT_TX_CSUM_ENABLE (true)
36 #define DEFAULT_RX_CSUM_ENABLE (true)
37 #define SMSC95XX_INTERNAL_PHY_ID (1)
38 #define SMSC95XX_TX_OVERHEAD (8)
39 #define SMSC95XX_TX_OVERHEAD_CSUM (12)
40 #define SUPPORTED_WAKE (WAKE_PHY | WAKE_UCAST | WAKE_BCAST | \
41 WAKE_MCAST | WAKE_ARP | WAKE_MAGIC)
43 #define FEATURE_8_WAKEUP_FILTERS (0x01)
44 #define FEATURE_PHY_NLP_CROSSOVER (0x02)
45 #define FEATURE_REMOTE_WAKEUP (0x04)
47 #define SUSPEND_SUSPEND0 (0x01)
48 #define SUSPEND_SUSPEND1 (0x02)
49 #define SUSPEND_SUSPEND2 (0x04)
50 #define SUSPEND_SUSPEND3 (0x08)
51 #define SUSPEND_ALLMODES (SUSPEND_SUSPEND0 | SUSPEND_SUSPEND1 | \
52 SUSPEND_SUSPEND2 | SUSPEND_SUSPEND3)
54 struct smsc95xx_priv {
59 spinlock_t mac_cr_lock;
62 struct mii_bus *mdiobus;
63 struct phy_device *phydev;
66 static bool turbo_mode = true;
67 module_param(turbo_mode, bool, 0644);
68 MODULE_PARM_DESC(turbo_mode, "Enable multiple frames per Rx transaction");
70 static int __must_check __smsc95xx_read_reg(struct usbnet *dev, u32 index,
75 int (*fn)(struct usbnet *, u8, u8, u16, u16, void *, u16);
82 fn = usbnet_read_cmd_nopm;
84 ret = fn(dev, USB_VENDOR_REQUEST_READ_REGISTER, USB_DIR_IN
85 | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
87 if (unlikely(ret < 0)) {
88 netdev_warn(dev->net, "Failed to read reg index 0x%08x: %d\n",
99 static int __must_check __smsc95xx_write_reg(struct usbnet *dev, u32 index,
104 int (*fn)(struct usbnet *, u8, u8, u16, u16, const void *, u16);
109 fn = usbnet_write_cmd;
111 fn = usbnet_write_cmd_nopm;
116 ret = fn(dev, USB_VENDOR_REQUEST_WRITE_REGISTER, USB_DIR_OUT
117 | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
119 if (unlikely(ret < 0))
120 netdev_warn(dev->net, "Failed to write reg index 0x%08x: %d\n",
126 static int __must_check smsc95xx_read_reg_nopm(struct usbnet *dev, u32 index,
129 return __smsc95xx_read_reg(dev, index, data, 1);
132 static int __must_check smsc95xx_write_reg_nopm(struct usbnet *dev, u32 index,
135 return __smsc95xx_write_reg(dev, index, data, 1);
138 static int __must_check smsc95xx_read_reg(struct usbnet *dev, u32 index,
141 return __smsc95xx_read_reg(dev, index, data, 0);
144 static int __must_check smsc95xx_write_reg(struct usbnet *dev, u32 index,
147 return __smsc95xx_write_reg(dev, index, data, 0);
150 /* Loop until the read is completed with timeout
151 * called with phy_mutex held */
152 static int __must_check __smsc95xx_phy_wait_not_busy(struct usbnet *dev,
155 unsigned long start_time = jiffies;
160 ret = __smsc95xx_read_reg(dev, MII_ADDR, &val, in_pm);
162 netdev_warn(dev->net, "Error reading MII_ACCESS\n");
166 if (!(val & MII_BUSY_))
168 } while (!time_after(jiffies, start_time + HZ));
173 static u32 mii_address_cmd(int phy_id, int idx, u16 op)
175 return (phy_id & 0x1f) << 11 | (idx & 0x1f) << 6 | op;
178 static int __smsc95xx_mdio_read(struct usbnet *dev, int phy_id, int idx,
184 mutex_lock(&dev->phy_mutex);
186 /* confirm MII not busy */
187 ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
189 netdev_warn(dev->net, "%s: MII is busy\n", __func__);
193 /* set the address, index & direction (read from PHY) */
194 addr = mii_address_cmd(phy_id, idx, MII_READ_ | MII_BUSY_);
195 ret = __smsc95xx_write_reg(dev, MII_ADDR, addr, in_pm);
197 netdev_warn(dev->net, "Error writing MII_ADDR\n");
201 ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
203 netdev_warn(dev->net, "Timed out reading MII reg %02X\n", idx);
207 ret = __smsc95xx_read_reg(dev, MII_DATA, &val, in_pm);
209 netdev_warn(dev->net, "Error reading MII_DATA\n");
213 ret = (u16)(val & 0xFFFF);
216 mutex_unlock(&dev->phy_mutex);
220 static void __smsc95xx_mdio_write(struct usbnet *dev, int phy_id,
221 int idx, int regval, int in_pm)
226 mutex_lock(&dev->phy_mutex);
228 /* confirm MII not busy */
229 ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
231 netdev_warn(dev->net, "%s: MII is busy\n", __func__);
236 ret = __smsc95xx_write_reg(dev, MII_DATA, val, in_pm);
238 netdev_warn(dev->net, "Error writing MII_DATA\n");
242 /* set the address, index & direction (write to PHY) */
243 addr = mii_address_cmd(phy_id, idx, MII_WRITE_ | MII_BUSY_);
244 ret = __smsc95xx_write_reg(dev, MII_ADDR, addr, in_pm);
246 netdev_warn(dev->net, "Error writing MII_ADDR\n");
250 ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
252 netdev_warn(dev->net, "Timed out writing MII reg %02X\n", idx);
257 mutex_unlock(&dev->phy_mutex);
260 static int smsc95xx_mdio_read_nopm(struct usbnet *dev, int idx)
262 struct smsc95xx_priv *pdata = dev->driver_priv;
264 return __smsc95xx_mdio_read(dev, pdata->phydev->mdio.addr, idx, 1);
267 static void smsc95xx_mdio_write_nopm(struct usbnet *dev, int idx, int regval)
269 struct smsc95xx_priv *pdata = dev->driver_priv;
271 __smsc95xx_mdio_write(dev, pdata->phydev->mdio.addr, idx, regval, 1);
274 static int smsc95xx_mdiobus_read(struct mii_bus *bus, int phy_id, int idx)
276 struct usbnet *dev = bus->priv;
278 return __smsc95xx_mdio_read(dev, phy_id, idx, 0);
281 static int smsc95xx_mdiobus_write(struct mii_bus *bus, int phy_id, int idx,
284 struct usbnet *dev = bus->priv;
286 __smsc95xx_mdio_write(dev, phy_id, idx, regval, 0);
290 static int __must_check smsc95xx_wait_eeprom(struct usbnet *dev)
292 unsigned long start_time = jiffies;
297 ret = smsc95xx_read_reg(dev, E2P_CMD, &val);
299 netdev_warn(dev->net, "Error reading E2P_CMD\n");
303 if (!(val & E2P_CMD_BUSY_) || (val & E2P_CMD_TIMEOUT_))
306 } while (!time_after(jiffies, start_time + HZ));
308 if (val & (E2P_CMD_TIMEOUT_ | E2P_CMD_BUSY_)) {
309 netdev_warn(dev->net, "EEPROM read operation timeout\n");
316 static int __must_check smsc95xx_eeprom_confirm_not_busy(struct usbnet *dev)
318 unsigned long start_time = jiffies;
323 ret = smsc95xx_read_reg(dev, E2P_CMD, &val);
325 netdev_warn(dev->net, "Error reading E2P_CMD\n");
329 if (!(val & E2P_CMD_BUSY_))
333 } while (!time_after(jiffies, start_time + HZ));
335 netdev_warn(dev->net, "EEPROM is busy\n");
339 static int smsc95xx_read_eeprom(struct usbnet *dev, u32 offset, u32 length,
348 ret = smsc95xx_eeprom_confirm_not_busy(dev);
352 for (i = 0; i < length; i++) {
353 val = E2P_CMD_BUSY_ | E2P_CMD_READ_ | (offset & E2P_CMD_ADDR_);
354 ret = smsc95xx_write_reg(dev, E2P_CMD, val);
356 netdev_warn(dev->net, "Error writing E2P_CMD\n");
360 ret = smsc95xx_wait_eeprom(dev);
364 ret = smsc95xx_read_reg(dev, E2P_DATA, &val);
366 netdev_warn(dev->net, "Error reading E2P_DATA\n");
370 data[i] = val & 0xFF;
377 static int smsc95xx_write_eeprom(struct usbnet *dev, u32 offset, u32 length,
386 ret = smsc95xx_eeprom_confirm_not_busy(dev);
390 /* Issue write/erase enable command */
391 val = E2P_CMD_BUSY_ | E2P_CMD_EWEN_;
392 ret = smsc95xx_write_reg(dev, E2P_CMD, val);
394 netdev_warn(dev->net, "Error writing E2P_DATA\n");
398 ret = smsc95xx_wait_eeprom(dev);
402 for (i = 0; i < length; i++) {
404 /* Fill data register */
406 ret = smsc95xx_write_reg(dev, E2P_DATA, val);
408 netdev_warn(dev->net, "Error writing E2P_DATA\n");
412 /* Send "write" command */
413 val = E2P_CMD_BUSY_ | E2P_CMD_WRITE_ | (offset & E2P_CMD_ADDR_);
414 ret = smsc95xx_write_reg(dev, E2P_CMD, val);
416 netdev_warn(dev->net, "Error writing E2P_CMD\n");
420 ret = smsc95xx_wait_eeprom(dev);
430 static int __must_check smsc95xx_write_reg_async(struct usbnet *dev, u16 index,
440 ret = usbnet_write_cmd_async(dev, USB_VENDOR_REQUEST_WRITE_REGISTER,
441 USB_DIR_OUT | USB_TYPE_VENDOR |
443 0, index, &buf, size);
445 netdev_warn(dev->net, "Error write async cmd, sts=%d\n",
450 /* returns hash bit number for given MAC address
452 * 01 00 5E 00 00 01 -> returns bit number 31 */
453 static unsigned int smsc95xx_hash(char addr[ETH_ALEN])
455 return (ether_crc(ETH_ALEN, addr) >> 26) & 0x3f;
458 static void smsc95xx_set_multicast(struct net_device *netdev)
460 struct usbnet *dev = netdev_priv(netdev);
461 struct smsc95xx_priv *pdata = dev->driver_priv;
468 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
470 if (dev->net->flags & IFF_PROMISC) {
471 netif_dbg(dev, drv, dev->net, "promiscuous mode enabled\n");
472 pdata->mac_cr |= MAC_CR_PRMS_;
473 pdata->mac_cr &= ~(MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
474 } else if (dev->net->flags & IFF_ALLMULTI) {
475 netif_dbg(dev, drv, dev->net, "receive all multicast enabled\n");
476 pdata->mac_cr |= MAC_CR_MCPAS_;
477 pdata->mac_cr &= ~(MAC_CR_PRMS_ | MAC_CR_HPFILT_);
478 } else if (!netdev_mc_empty(dev->net)) {
479 struct netdev_hw_addr *ha;
481 pdata->mac_cr |= MAC_CR_HPFILT_;
482 pdata->mac_cr &= ~(MAC_CR_PRMS_ | MAC_CR_MCPAS_);
484 netdev_for_each_mc_addr(ha, netdev) {
485 u32 bitnum = smsc95xx_hash(ha->addr);
486 u32 mask = 0x01 << (bitnum & 0x1F);
488 pdata->hash_hi |= mask;
490 pdata->hash_lo |= mask;
493 netif_dbg(dev, drv, dev->net, "HASHH=0x%08X, HASHL=0x%08X\n",
494 pdata->hash_hi, pdata->hash_lo);
496 netif_dbg(dev, drv, dev->net, "receive own packets only\n");
498 ~(MAC_CR_PRMS_ | MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
501 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
503 /* Initiate async writes, as we can't wait for completion here */
504 ret = smsc95xx_write_reg_async(dev, HASHH, pdata->hash_hi);
506 netdev_warn(dev->net, "failed to initiate async write to HASHH\n");
508 ret = smsc95xx_write_reg_async(dev, HASHL, pdata->hash_lo);
510 netdev_warn(dev->net, "failed to initiate async write to HASHL\n");
512 ret = smsc95xx_write_reg_async(dev, MAC_CR, pdata->mac_cr);
514 netdev_warn(dev->net, "failed to initiate async write to MAC_CR\n");
517 static int smsc95xx_phy_update_flowcontrol(struct usbnet *dev)
519 u32 flow = 0, afc_cfg;
520 struct smsc95xx_priv *pdata = dev->driver_priv;
521 bool tx_pause, rx_pause;
523 int ret = smsc95xx_read_reg(dev, AFC_CFG, &afc_cfg);
527 if (pdata->phydev->duplex == DUPLEX_FULL) {
528 phy_get_pause(pdata->phydev, &tx_pause, &rx_pause);
540 netif_dbg(dev, link, dev->net, "rx pause %s, tx pause %s\n",
541 rx_pause ? "enabled" : "disabled",
542 tx_pause ? "enabled" : "disabled");
544 netif_dbg(dev, link, dev->net, "half duplex\n");
548 ret = smsc95xx_write_reg(dev, FLOW, flow);
552 return smsc95xx_write_reg(dev, AFC_CFG, afc_cfg);
555 static int smsc95xx_link_reset(struct usbnet *dev)
557 struct smsc95xx_priv *pdata = dev->driver_priv;
561 ret = smsc95xx_write_reg(dev, INT_STS, INT_STS_CLEAR_ALL_);
565 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
566 if (pdata->phydev->duplex != DUPLEX_FULL) {
567 pdata->mac_cr &= ~MAC_CR_FDPX_;
568 pdata->mac_cr |= MAC_CR_RCVOWN_;
570 pdata->mac_cr &= ~MAC_CR_RCVOWN_;
571 pdata->mac_cr |= MAC_CR_FDPX_;
573 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
575 ret = smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
579 ret = smsc95xx_phy_update_flowcontrol(dev);
581 netdev_warn(dev->net, "Error updating PHY flow control\n");
586 static void smsc95xx_status(struct usbnet *dev, struct urb *urb)
590 if (urb->actual_length != 4) {
591 netdev_warn(dev->net, "unexpected urb length %d\n",
596 intdata = get_unaligned_le32(urb->transfer_buffer);
597 netif_dbg(dev, link, dev->net, "intdata: 0x%08X\n", intdata);
599 if (intdata & INT_ENP_PHY_INT_)
600 usbnet_defer_kevent(dev, EVENT_LINK_RESET);
602 netdev_warn(dev->net, "unexpected interrupt, intdata=0x%08X\n",
606 /* Enable or disable Tx & Rx checksum offload engines */
607 static int smsc95xx_set_features(struct net_device *netdev,
608 netdev_features_t features)
610 struct usbnet *dev = netdev_priv(netdev);
614 ret = smsc95xx_read_reg(dev, COE_CR, &read_buf);
618 if (features & NETIF_F_IP_CSUM)
619 read_buf |= Tx_COE_EN_;
621 read_buf &= ~Tx_COE_EN_;
623 if (features & NETIF_F_RXCSUM)
624 read_buf |= Rx_COE_EN_;
626 read_buf &= ~Rx_COE_EN_;
628 ret = smsc95xx_write_reg(dev, COE_CR, read_buf);
632 netif_dbg(dev, hw, dev->net, "COE_CR = 0x%08x\n", read_buf);
636 static int smsc95xx_ethtool_get_eeprom_len(struct net_device *net)
638 return MAX_EEPROM_SIZE;
641 static int smsc95xx_ethtool_get_eeprom(struct net_device *netdev,
642 struct ethtool_eeprom *ee, u8 *data)
644 struct usbnet *dev = netdev_priv(netdev);
646 ee->magic = LAN95XX_EEPROM_MAGIC;
648 return smsc95xx_read_eeprom(dev, ee->offset, ee->len, data);
651 static int smsc95xx_ethtool_set_eeprom(struct net_device *netdev,
652 struct ethtool_eeprom *ee, u8 *data)
654 struct usbnet *dev = netdev_priv(netdev);
656 if (ee->magic != LAN95XX_EEPROM_MAGIC) {
657 netdev_warn(dev->net, "EEPROM: magic value mismatch, magic = 0x%x\n",
662 return smsc95xx_write_eeprom(dev, ee->offset, ee->len, data);
665 static int smsc95xx_ethtool_getregslen(struct net_device *netdev)
667 /* all smsc95xx registers */
668 return COE_CR - ID_REV + sizeof(u32);
672 smsc95xx_ethtool_getregs(struct net_device *netdev, struct ethtool_regs *regs,
675 struct usbnet *dev = netdev_priv(netdev);
680 retval = smsc95xx_read_reg(dev, ID_REV, ®s->version);
682 netdev_warn(netdev, "REGS: cannot read ID_REV\n");
686 for (i = ID_REV, j = 0; i <= COE_CR; i += (sizeof(u32)), j++) {
687 retval = smsc95xx_read_reg(dev, i, &data[j]);
689 netdev_warn(netdev, "REGS: cannot read reg[%x]\n", i);
695 static void smsc95xx_ethtool_get_wol(struct net_device *net,
696 struct ethtool_wolinfo *wolinfo)
698 struct usbnet *dev = netdev_priv(net);
699 struct smsc95xx_priv *pdata = dev->driver_priv;
701 wolinfo->supported = SUPPORTED_WAKE;
702 wolinfo->wolopts = pdata->wolopts;
705 static int smsc95xx_ethtool_set_wol(struct net_device *net,
706 struct ethtool_wolinfo *wolinfo)
708 struct usbnet *dev = netdev_priv(net);
709 struct smsc95xx_priv *pdata = dev->driver_priv;
712 if (wolinfo->wolopts & ~SUPPORTED_WAKE)
715 pdata->wolopts = wolinfo->wolopts & SUPPORTED_WAKE;
717 ret = device_set_wakeup_enable(&dev->udev->dev, pdata->wolopts);
719 netdev_warn(dev->net, "device_set_wakeup_enable error %d\n", ret);
724 static u32 smsc95xx_get_link(struct net_device *net)
726 phy_read_status(net->phydev);
727 return net->phydev->link;
730 static const struct ethtool_ops smsc95xx_ethtool_ops = {
731 .get_link = smsc95xx_get_link,
732 .nway_reset = phy_ethtool_nway_reset,
733 .get_drvinfo = usbnet_get_drvinfo,
734 .get_msglevel = usbnet_get_msglevel,
735 .set_msglevel = usbnet_set_msglevel,
736 .get_eeprom_len = smsc95xx_ethtool_get_eeprom_len,
737 .get_eeprom = smsc95xx_ethtool_get_eeprom,
738 .set_eeprom = smsc95xx_ethtool_set_eeprom,
739 .get_regs_len = smsc95xx_ethtool_getregslen,
740 .get_regs = smsc95xx_ethtool_getregs,
741 .get_wol = smsc95xx_ethtool_get_wol,
742 .set_wol = smsc95xx_ethtool_set_wol,
743 .get_link_ksettings = phy_ethtool_get_link_ksettings,
744 .set_link_ksettings = phy_ethtool_set_link_ksettings,
745 .get_ts_info = ethtool_op_get_ts_info,
748 static int smsc95xx_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
750 if (!netif_running(netdev))
753 return phy_mii_ioctl(netdev->phydev, rq, cmd);
756 static void smsc95xx_init_mac_address(struct usbnet *dev)
758 /* maybe the boot loader passed the MAC address in devicetree */
759 if (!eth_platform_get_mac_address(&dev->udev->dev,
760 dev->net->dev_addr)) {
761 if (is_valid_ether_addr(dev->net->dev_addr)) {
762 /* device tree values are valid so use them */
763 netif_dbg(dev, ifup, dev->net, "MAC address read from the device tree\n");
768 /* try reading mac address from EEPROM */
769 if (smsc95xx_read_eeprom(dev, EEPROM_MAC_OFFSET, ETH_ALEN,
770 dev->net->dev_addr) == 0) {
771 if (is_valid_ether_addr(dev->net->dev_addr)) {
772 /* eeprom values are valid so use them */
773 netif_dbg(dev, ifup, dev->net, "MAC address read from EEPROM\n");
778 /* no useful static MAC address found. generate a random one */
779 eth_hw_addr_random(dev->net);
780 netif_dbg(dev, ifup, dev->net, "MAC address set to eth_random_addr\n");
783 static int smsc95xx_set_mac_address(struct usbnet *dev)
785 u32 addr_lo = dev->net->dev_addr[0] | dev->net->dev_addr[1] << 8 |
786 dev->net->dev_addr[2] << 16 | dev->net->dev_addr[3] << 24;
787 u32 addr_hi = dev->net->dev_addr[4] | dev->net->dev_addr[5] << 8;
790 ret = smsc95xx_write_reg(dev, ADDRL, addr_lo);
794 return smsc95xx_write_reg(dev, ADDRH, addr_hi);
797 /* starts the TX path */
798 static int smsc95xx_start_tx_path(struct usbnet *dev)
800 struct smsc95xx_priv *pdata = dev->driver_priv;
804 /* Enable Tx at MAC */
805 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
806 pdata->mac_cr |= MAC_CR_TXEN_;
807 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
809 ret = smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
813 /* Enable Tx at SCSRs */
814 return smsc95xx_write_reg(dev, TX_CFG, TX_CFG_ON_);
817 /* Starts the Receive path */
818 static int smsc95xx_start_rx_path(struct usbnet *dev, int in_pm)
820 struct smsc95xx_priv *pdata = dev->driver_priv;
823 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
824 pdata->mac_cr |= MAC_CR_RXEN_;
825 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
827 return __smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr, in_pm);
830 static int smsc95xx_reset(struct usbnet *dev)
832 struct smsc95xx_priv *pdata = dev->driver_priv;
833 u32 read_buf, write_buf, burst_cap;
834 int ret = 0, timeout;
836 netif_dbg(dev, ifup, dev->net, "entering smsc95xx_reset\n");
838 ret = smsc95xx_write_reg(dev, HW_CFG, HW_CFG_LRST_);
845 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
849 } while ((read_buf & HW_CFG_LRST_) && (timeout < 100));
851 if (timeout >= 100) {
852 netdev_warn(dev->net, "timeout waiting for completion of Lite Reset\n");
856 ret = smsc95xx_write_reg(dev, PM_CTRL, PM_CTL_PHY_RST_);
863 ret = smsc95xx_read_reg(dev, PM_CTRL, &read_buf);
867 } while ((read_buf & PM_CTL_PHY_RST_) && (timeout < 100));
869 if (timeout >= 100) {
870 netdev_warn(dev->net, "timeout waiting for PHY Reset\n");
874 ret = smsc95xx_set_mac_address(dev);
878 netif_dbg(dev, ifup, dev->net, "MAC Address: %pM\n",
881 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
885 netif_dbg(dev, ifup, dev->net, "Read Value from HW_CFG : 0x%08x\n",
888 read_buf |= HW_CFG_BIR_;
890 ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
894 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
898 netif_dbg(dev, ifup, dev->net,
899 "Read Value from HW_CFG after writing HW_CFG_BIR_: 0x%08x\n",
904 dev->rx_urb_size = MAX_SINGLE_PACKET_SIZE;
905 } else if (dev->udev->speed == USB_SPEED_HIGH) {
906 burst_cap = DEFAULT_HS_BURST_CAP_SIZE / HS_USB_PKT_SIZE;
907 dev->rx_urb_size = DEFAULT_HS_BURST_CAP_SIZE;
909 burst_cap = DEFAULT_FS_BURST_CAP_SIZE / FS_USB_PKT_SIZE;
910 dev->rx_urb_size = DEFAULT_FS_BURST_CAP_SIZE;
913 netif_dbg(dev, ifup, dev->net, "rx_urb_size=%ld\n",
914 (ulong)dev->rx_urb_size);
916 ret = smsc95xx_write_reg(dev, BURST_CAP, burst_cap);
920 ret = smsc95xx_read_reg(dev, BURST_CAP, &read_buf);
924 netif_dbg(dev, ifup, dev->net,
925 "Read Value from BURST_CAP after writing: 0x%08x\n",
928 ret = smsc95xx_write_reg(dev, BULK_IN_DLY, DEFAULT_BULK_IN_DELAY);
932 ret = smsc95xx_read_reg(dev, BULK_IN_DLY, &read_buf);
936 netif_dbg(dev, ifup, dev->net,
937 "Read Value from BULK_IN_DLY after writing: 0x%08x\n",
940 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
944 netif_dbg(dev, ifup, dev->net, "Read Value from HW_CFG: 0x%08x\n",
948 read_buf |= (HW_CFG_MEF_ | HW_CFG_BCE_);
950 read_buf &= ~HW_CFG_RXDOFF_;
952 /* set Rx data offset=2, Make IP header aligns on word boundary. */
953 read_buf |= NET_IP_ALIGN << 9;
955 ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
959 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
963 netif_dbg(dev, ifup, dev->net,
964 "Read Value from HW_CFG after writing: 0x%08x\n", read_buf);
966 ret = smsc95xx_write_reg(dev, INT_STS, INT_STS_CLEAR_ALL_);
970 ret = smsc95xx_read_reg(dev, ID_REV, &read_buf);
973 netif_dbg(dev, ifup, dev->net, "ID_REV = 0x%08x\n", read_buf);
975 /* Configure GPIO pins as LED outputs */
976 write_buf = LED_GPIO_CFG_SPD_LED | LED_GPIO_CFG_LNK_LED |
977 LED_GPIO_CFG_FDX_LED;
978 ret = smsc95xx_write_reg(dev, LED_GPIO_CFG, write_buf);
983 ret = smsc95xx_write_reg(dev, FLOW, 0);
987 ret = smsc95xx_write_reg(dev, AFC_CFG, AFC_CFG_DEFAULT);
991 /* Don't need mac_cr_lock during initialisation */
992 ret = smsc95xx_read_reg(dev, MAC_CR, &pdata->mac_cr);
998 ret = smsc95xx_write_reg(dev, VLAN1, (u32)ETH_P_8021Q);
1002 /* Enable or disable checksum offload engines */
1003 ret = smsc95xx_set_features(dev->net, dev->net->features);
1005 netdev_warn(dev->net, "Failed to set checksum offload features\n");
1009 smsc95xx_set_multicast(dev->net);
1011 ret = smsc95xx_read_reg(dev, INT_EP_CTL, &read_buf);
1015 /* enable PHY interrupts */
1016 read_buf |= INT_EP_CTL_PHY_INT_;
1018 ret = smsc95xx_write_reg(dev, INT_EP_CTL, read_buf);
1022 ret = smsc95xx_start_tx_path(dev);
1024 netdev_warn(dev->net, "Failed to start TX path\n");
1028 ret = smsc95xx_start_rx_path(dev, 0);
1030 netdev_warn(dev->net, "Failed to start RX path\n");
1034 netif_dbg(dev, ifup, dev->net, "smsc95xx_reset, return 0\n");
1038 static const struct net_device_ops smsc95xx_netdev_ops = {
1039 .ndo_open = usbnet_open,
1040 .ndo_stop = usbnet_stop,
1041 .ndo_start_xmit = usbnet_start_xmit,
1042 .ndo_tx_timeout = usbnet_tx_timeout,
1043 .ndo_change_mtu = usbnet_change_mtu,
1044 .ndo_get_stats64 = dev_get_tstats64,
1045 .ndo_set_mac_address = eth_mac_addr,
1046 .ndo_validate_addr = eth_validate_addr,
1047 .ndo_eth_ioctl = smsc95xx_ioctl,
1048 .ndo_set_rx_mode = smsc95xx_set_multicast,
1049 .ndo_set_features = smsc95xx_set_features,
1052 static int smsc95xx_bind(struct usbnet *dev, struct usb_interface *intf)
1054 struct smsc95xx_priv *pdata;
1055 bool is_internal_phy;
1059 printk(KERN_INFO SMSC_CHIPNAME " v" SMSC_DRIVER_VERSION "\n");
1061 ret = usbnet_get_endpoints(dev, intf);
1063 netdev_warn(dev->net, "usbnet_get_endpoints failed: %d\n", ret);
1067 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
1071 dev->driver_priv = pdata;
1073 spin_lock_init(&pdata->mac_cr_lock);
1075 /* LAN95xx devices do not alter the computed checksum of 0 to 0xffff.
1076 * RFC 2460, ipv6 UDP calculated checksum yields a result of zero must
1077 * be changed to 0xffff. RFC 768, ipv4 UDP computed checksum is zero,
1078 * it is transmitted as all ones. The zero transmitted checksum means
1079 * transmitter generated no checksum. Hence, enable csum offload only
1082 if (DEFAULT_TX_CSUM_ENABLE)
1083 dev->net->features |= NETIF_F_IP_CSUM;
1084 if (DEFAULT_RX_CSUM_ENABLE)
1085 dev->net->features |= NETIF_F_RXCSUM;
1087 dev->net->hw_features = NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
1088 set_bit(EVENT_NO_IP_ALIGN, &dev->flags);
1090 smsc95xx_init_mac_address(dev);
1092 /* Init all registers */
1093 ret = smsc95xx_reset(dev);
1097 pdata->mdiobus = mdiobus_alloc();
1098 if (!pdata->mdiobus) {
1103 ret = smsc95xx_read_reg(dev, HW_CFG, &val);
1107 is_internal_phy = !(val & HW_CFG_PSEL_);
1108 if (is_internal_phy)
1109 pdata->mdiobus->phy_mask = ~(1u << SMSC95XX_INTERNAL_PHY_ID);
1111 pdata->mdiobus->priv = dev;
1112 pdata->mdiobus->read = smsc95xx_mdiobus_read;
1113 pdata->mdiobus->write = smsc95xx_mdiobus_write;
1114 pdata->mdiobus->name = "smsc95xx-mdiobus";
1115 pdata->mdiobus->parent = &dev->udev->dev;
1117 snprintf(pdata->mdiobus->id, ARRAY_SIZE(pdata->mdiobus->id),
1118 "usb-%03d:%03d", dev->udev->bus->busnum, dev->udev->devnum);
1120 ret = mdiobus_register(pdata->mdiobus);
1122 netdev_err(dev->net, "Could not register MDIO bus\n");
1126 pdata->phydev = phy_find_first(pdata->mdiobus);
1127 if (!pdata->phydev) {
1128 netdev_err(dev->net, "no PHY found\n");
1130 goto unregister_mdio;
1133 pdata->phydev->is_internal = is_internal_phy;
1135 /* detect device revision as different features may be available */
1136 ret = smsc95xx_read_reg(dev, ID_REV, &val);
1138 goto unregister_mdio;
1141 if ((val == ID_REV_CHIP_ID_9500A_) || (val == ID_REV_CHIP_ID_9530_) ||
1142 (val == ID_REV_CHIP_ID_89530_) || (val == ID_REV_CHIP_ID_9730_))
1143 pdata->features = (FEATURE_8_WAKEUP_FILTERS |
1144 FEATURE_PHY_NLP_CROSSOVER |
1145 FEATURE_REMOTE_WAKEUP);
1146 else if (val == ID_REV_CHIP_ID_9512_)
1147 pdata->features = FEATURE_8_WAKEUP_FILTERS;
1149 dev->net->netdev_ops = &smsc95xx_netdev_ops;
1150 dev->net->ethtool_ops = &smsc95xx_ethtool_ops;
1151 dev->net->flags |= IFF_MULTICAST;
1152 dev->net->hard_header_len += SMSC95XX_TX_OVERHEAD_CSUM;
1153 dev->net->min_mtu = ETH_MIN_MTU;
1154 dev->net->max_mtu = ETH_DATA_LEN;
1155 dev->hard_mtu = dev->net->mtu + dev->net->hard_header_len;
1159 mdiobus_unregister(pdata->mdiobus);
1162 mdiobus_free(pdata->mdiobus);
1169 static void smsc95xx_unbind(struct usbnet *dev, struct usb_interface *intf)
1171 struct smsc95xx_priv *pdata = dev->driver_priv;
1173 mdiobus_unregister(pdata->mdiobus);
1174 mdiobus_free(pdata->mdiobus);
1175 netif_dbg(dev, ifdown, dev->net, "free pdata\n");
1179 static void smsc95xx_handle_link_change(struct net_device *net)
1181 phy_print_status(net->phydev);
1184 static int smsc95xx_start_phy(struct usbnet *dev)
1186 struct smsc95xx_priv *pdata = dev->driver_priv;
1187 struct net_device *net = dev->net;
1190 ret = smsc95xx_reset(dev);
1194 ret = phy_connect_direct(net, pdata->phydev,
1195 &smsc95xx_handle_link_change,
1196 PHY_INTERFACE_MODE_MII);
1198 netdev_err(net, "can't attach PHY to %s\n", pdata->mdiobus->id);
1202 phy_attached_info(net->phydev);
1203 phy_start(net->phydev);
1207 static int smsc95xx_disconnect_phy(struct usbnet *dev)
1209 phy_stop(dev->net->phydev);
1210 phy_disconnect(dev->net->phydev);
1214 static u32 smsc_crc(const u8 *buffer, size_t len, int filter)
1216 u32 crc = bitrev16(crc16(0xFFFF, buffer, len));
1217 return crc << ((filter % 2) * 16);
1220 static int smsc95xx_enable_phy_wakeup_interrupts(struct usbnet *dev, u16 mask)
1224 netdev_dbg(dev->net, "enabling PHY wakeup interrupts\n");
1227 ret = smsc95xx_mdio_read_nopm(dev, PHY_INT_SRC);
1231 /* enable interrupt source */
1232 ret = smsc95xx_mdio_read_nopm(dev, PHY_INT_MASK);
1238 smsc95xx_mdio_write_nopm(dev, PHY_INT_MASK, ret);
1243 static int smsc95xx_link_ok_nopm(struct usbnet *dev)
1247 /* first, a dummy read, needed to latch some MII phys */
1248 ret = smsc95xx_mdio_read_nopm(dev, MII_BMSR);
1252 ret = smsc95xx_mdio_read_nopm(dev, MII_BMSR);
1256 return !!(ret & BMSR_LSTATUS);
1259 static int smsc95xx_enter_suspend0(struct usbnet *dev)
1261 struct smsc95xx_priv *pdata = dev->driver_priv;
1265 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1269 val &= (~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_));
1270 val |= PM_CTL_SUS_MODE_0;
1272 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1276 /* clear wol status */
1277 val &= ~PM_CTL_WUPS_;
1278 val |= PM_CTL_WUPS_WOL_;
1280 /* enable energy detection */
1281 if (pdata->wolopts & WAKE_PHY)
1282 val |= PM_CTL_WUPS_ED_;
1284 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1288 /* read back PM_CTRL */
1289 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1293 pdata->suspend_flags |= SUSPEND_SUSPEND0;
1298 static int smsc95xx_enter_suspend1(struct usbnet *dev)
1300 struct smsc95xx_priv *pdata = dev->driver_priv;
1304 /* reconfigure link pulse detection timing for
1305 * compatibility with non-standard link partners
1307 if (pdata->features & FEATURE_PHY_NLP_CROSSOVER)
1308 smsc95xx_mdio_write_nopm(dev, PHY_EDPD_CONFIG,
1309 PHY_EDPD_CONFIG_DEFAULT);
1311 /* enable energy detect power-down mode */
1312 ret = smsc95xx_mdio_read_nopm(dev, PHY_MODE_CTRL_STS);
1316 ret |= MODE_CTRL_STS_EDPWRDOWN_;
1318 smsc95xx_mdio_write_nopm(dev, PHY_MODE_CTRL_STS, ret);
1320 /* enter SUSPEND1 mode */
1321 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1325 val &= ~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_);
1326 val |= PM_CTL_SUS_MODE_1;
1328 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1332 /* clear wol status, enable energy detection */
1333 val &= ~PM_CTL_WUPS_;
1334 val |= (PM_CTL_WUPS_ED_ | PM_CTL_ED_EN_);
1336 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1340 pdata->suspend_flags |= SUSPEND_SUSPEND1;
1345 static int smsc95xx_enter_suspend2(struct usbnet *dev)
1347 struct smsc95xx_priv *pdata = dev->driver_priv;
1351 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1355 val &= ~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_);
1356 val |= PM_CTL_SUS_MODE_2;
1358 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1362 pdata->suspend_flags |= SUSPEND_SUSPEND2;
1367 static int smsc95xx_enter_suspend3(struct usbnet *dev)
1369 struct smsc95xx_priv *pdata = dev->driver_priv;
1373 ret = smsc95xx_read_reg_nopm(dev, RX_FIFO_INF, &val);
1377 if (val & RX_FIFO_INF_USED_) {
1378 netdev_info(dev->net, "rx fifo not empty in autosuspend\n");
1382 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1386 val &= ~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_);
1387 val |= PM_CTL_SUS_MODE_3 | PM_CTL_RES_CLR_WKP_STS;
1389 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1393 /* clear wol status */
1394 val &= ~PM_CTL_WUPS_;
1395 val |= PM_CTL_WUPS_WOL_;
1397 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1401 pdata->suspend_flags |= SUSPEND_SUSPEND3;
1406 static int smsc95xx_autosuspend(struct usbnet *dev, u32 link_up)
1408 struct smsc95xx_priv *pdata = dev->driver_priv;
1411 if (!netif_running(dev->net)) {
1412 /* interface is ifconfig down so fully power down hw */
1413 netdev_dbg(dev->net, "autosuspend entering SUSPEND2\n");
1414 return smsc95xx_enter_suspend2(dev);
1418 /* link is down so enter EDPD mode, but only if device can
1419 * reliably resume from it. This check should be redundant
1420 * as current FEATURE_REMOTE_WAKEUP parts also support
1421 * FEATURE_PHY_NLP_CROSSOVER but it's included for clarity */
1422 if (!(pdata->features & FEATURE_PHY_NLP_CROSSOVER)) {
1423 netdev_warn(dev->net, "EDPD not supported\n");
1427 netdev_dbg(dev->net, "autosuspend entering SUSPEND1\n");
1429 /* enable PHY wakeup events for if cable is attached */
1430 ret = smsc95xx_enable_phy_wakeup_interrupts(dev,
1431 PHY_INT_MASK_ANEG_COMP_);
1433 netdev_warn(dev->net, "error enabling PHY wakeup ints\n");
1437 netdev_info(dev->net, "entering SUSPEND1 mode\n");
1438 return smsc95xx_enter_suspend1(dev);
1441 /* enable PHY wakeup events so we remote wakeup if cable is pulled */
1442 ret = smsc95xx_enable_phy_wakeup_interrupts(dev,
1443 PHY_INT_MASK_LINK_DOWN_);
1445 netdev_warn(dev->net, "error enabling PHY wakeup ints\n");
1449 netdev_dbg(dev->net, "autosuspend entering SUSPEND3\n");
1450 return smsc95xx_enter_suspend3(dev);
1453 static int smsc95xx_suspend(struct usb_interface *intf, pm_message_t message)
1455 struct usbnet *dev = usb_get_intfdata(intf);
1456 struct smsc95xx_priv *pdata = dev->driver_priv;
1460 ret = usbnet_suspend(intf, message);
1462 netdev_warn(dev->net, "usbnet_suspend error\n");
1466 if (pdata->suspend_flags) {
1467 netdev_warn(dev->net, "error during last resume\n");
1468 pdata->suspend_flags = 0;
1471 /* determine if link is up using only _nopm functions */
1472 link_up = smsc95xx_link_ok_nopm(dev);
1474 if (message.event == PM_EVENT_AUTO_SUSPEND &&
1475 (pdata->features & FEATURE_REMOTE_WAKEUP)) {
1476 ret = smsc95xx_autosuspend(dev, link_up);
1480 /* if we get this far we're not autosuspending */
1481 /* if no wol options set, or if link is down and we're not waking on
1482 * PHY activity, enter lowest power SUSPEND2 mode
1484 if (!(pdata->wolopts & SUPPORTED_WAKE) ||
1485 !(link_up || (pdata->wolopts & WAKE_PHY))) {
1486 netdev_info(dev->net, "entering SUSPEND2 mode\n");
1488 /* disable energy detect (link up) & wake up events */
1489 ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
1493 val &= ~(WUCSR_MPEN_ | WUCSR_WAKE_EN_);
1495 ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
1499 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1503 val &= ~(PM_CTL_ED_EN_ | PM_CTL_WOL_EN_);
1505 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1509 ret = smsc95xx_enter_suspend2(dev);
1513 if (pdata->wolopts & WAKE_PHY) {
1514 ret = smsc95xx_enable_phy_wakeup_interrupts(dev,
1515 (PHY_INT_MASK_ANEG_COMP_ | PHY_INT_MASK_LINK_DOWN_));
1517 netdev_warn(dev->net, "error enabling PHY wakeup ints\n");
1521 /* if link is down then configure EDPD and enter SUSPEND1,
1522 * otherwise enter SUSPEND0 below
1525 netdev_info(dev->net, "entering SUSPEND1 mode\n");
1526 ret = smsc95xx_enter_suspend1(dev);
1531 if (pdata->wolopts & (WAKE_BCAST | WAKE_MCAST | WAKE_ARP | WAKE_UCAST)) {
1532 u32 *filter_mask = kcalloc(32, sizeof(u32), GFP_KERNEL);
1536 int wuff_filter_count =
1537 (pdata->features & FEATURE_8_WAKEUP_FILTERS) ?
1538 LAN9500A_WUFF_NUM : LAN9500_WUFF_NUM;
1542 netdev_warn(dev->net, "Unable to allocate filter_mask\n");
1547 memset(command, 0, sizeof(command));
1548 memset(offset, 0, sizeof(offset));
1549 memset(crc, 0, sizeof(crc));
1551 if (pdata->wolopts & WAKE_BCAST) {
1552 const u8 bcast[] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
1553 netdev_info(dev->net, "enabling broadcast detection\n");
1554 filter_mask[filter * 4] = 0x003F;
1555 filter_mask[filter * 4 + 1] = 0x00;
1556 filter_mask[filter * 4 + 2] = 0x00;
1557 filter_mask[filter * 4 + 3] = 0x00;
1558 command[filter/4] |= 0x05UL << ((filter % 4) * 8);
1559 offset[filter/4] |= 0x00 << ((filter % 4) * 8);
1560 crc[filter/2] |= smsc_crc(bcast, 6, filter);
1564 if (pdata->wolopts & WAKE_MCAST) {
1565 const u8 mcast[] = {0x01, 0x00, 0x5E};
1566 netdev_info(dev->net, "enabling multicast detection\n");
1567 filter_mask[filter * 4] = 0x0007;
1568 filter_mask[filter * 4 + 1] = 0x00;
1569 filter_mask[filter * 4 + 2] = 0x00;
1570 filter_mask[filter * 4 + 3] = 0x00;
1571 command[filter/4] |= 0x09UL << ((filter % 4) * 8);
1572 offset[filter/4] |= 0x00 << ((filter % 4) * 8);
1573 crc[filter/2] |= smsc_crc(mcast, 3, filter);
1577 if (pdata->wolopts & WAKE_ARP) {
1578 const u8 arp[] = {0x08, 0x06};
1579 netdev_info(dev->net, "enabling ARP detection\n");
1580 filter_mask[filter * 4] = 0x0003;
1581 filter_mask[filter * 4 + 1] = 0x00;
1582 filter_mask[filter * 4 + 2] = 0x00;
1583 filter_mask[filter * 4 + 3] = 0x00;
1584 command[filter/4] |= 0x05UL << ((filter % 4) * 8);
1585 offset[filter/4] |= 0x0C << ((filter % 4) * 8);
1586 crc[filter/2] |= smsc_crc(arp, 2, filter);
1590 if (pdata->wolopts & WAKE_UCAST) {
1591 netdev_info(dev->net, "enabling unicast detection\n");
1592 filter_mask[filter * 4] = 0x003F;
1593 filter_mask[filter * 4 + 1] = 0x00;
1594 filter_mask[filter * 4 + 2] = 0x00;
1595 filter_mask[filter * 4 + 3] = 0x00;
1596 command[filter/4] |= 0x01UL << ((filter % 4) * 8);
1597 offset[filter/4] |= 0x00 << ((filter % 4) * 8);
1598 crc[filter/2] |= smsc_crc(dev->net->dev_addr, ETH_ALEN, filter);
1602 for (i = 0; i < (wuff_filter_count * 4); i++) {
1603 ret = smsc95xx_write_reg_nopm(dev, WUFF, filter_mask[i]);
1611 for (i = 0; i < (wuff_filter_count / 4); i++) {
1612 ret = smsc95xx_write_reg_nopm(dev, WUFF, command[i]);
1617 for (i = 0; i < (wuff_filter_count / 4); i++) {
1618 ret = smsc95xx_write_reg_nopm(dev, WUFF, offset[i]);
1623 for (i = 0; i < (wuff_filter_count / 2); i++) {
1624 ret = smsc95xx_write_reg_nopm(dev, WUFF, crc[i]);
1629 /* clear any pending pattern match packet status */
1630 ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
1636 ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
1641 if (pdata->wolopts & WAKE_MAGIC) {
1642 /* clear any pending magic packet status */
1643 ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
1649 ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
1654 /* enable/disable wakeup sources */
1655 ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
1659 if (pdata->wolopts & (WAKE_BCAST | WAKE_MCAST | WAKE_ARP | WAKE_UCAST)) {
1660 netdev_info(dev->net, "enabling pattern match wakeup\n");
1661 val |= WUCSR_WAKE_EN_;
1663 netdev_info(dev->net, "disabling pattern match wakeup\n");
1664 val &= ~WUCSR_WAKE_EN_;
1667 if (pdata->wolopts & WAKE_MAGIC) {
1668 netdev_info(dev->net, "enabling magic packet wakeup\n");
1671 netdev_info(dev->net, "disabling magic packet wakeup\n");
1672 val &= ~WUCSR_MPEN_;
1675 ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
1679 /* enable wol wakeup source */
1680 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1684 val |= PM_CTL_WOL_EN_;
1686 /* phy energy detect wakeup source */
1687 if (pdata->wolopts & WAKE_PHY)
1688 val |= PM_CTL_ED_EN_;
1690 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1694 /* enable receiver to enable frame reception */
1695 smsc95xx_start_rx_path(dev, 1);
1697 /* some wol options are enabled, so enter SUSPEND0 */
1698 netdev_info(dev->net, "entering SUSPEND0 mode\n");
1699 ret = smsc95xx_enter_suspend0(dev);
1703 * TODO: resume() might need to handle the suspend failure
1706 if (ret && PMSG_IS_AUTO(message))
1707 usbnet_resume(intf);
1712 static int smsc95xx_resume(struct usb_interface *intf)
1714 struct usbnet *dev = usb_get_intfdata(intf);
1715 struct smsc95xx_priv *pdata;
1721 pdata = dev->driver_priv;
1722 suspend_flags = pdata->suspend_flags;
1724 netdev_dbg(dev->net, "resume suspend_flags=0x%02x\n", suspend_flags);
1726 /* do this first to ensure it's cleared even in error case */
1727 pdata->suspend_flags = 0;
1729 if (suspend_flags & SUSPEND_ALLMODES) {
1730 /* clear wake-up sources */
1731 ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
1735 val &= ~(WUCSR_WAKE_EN_ | WUCSR_MPEN_);
1737 ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
1741 /* clear wake-up status */
1742 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1746 val &= ~PM_CTL_WOL_EN_;
1747 val |= PM_CTL_WUPS_;
1749 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1754 ret = usbnet_resume(intf);
1756 netdev_warn(dev->net, "usbnet_resume error\n");
1758 phy_init_hw(pdata->phydev);
1762 static int smsc95xx_reset_resume(struct usb_interface *intf)
1764 struct usbnet *dev = usb_get_intfdata(intf);
1767 ret = smsc95xx_reset(dev);
1771 return smsc95xx_resume(intf);
1774 static void smsc95xx_rx_csum_offload(struct sk_buff *skb)
1776 skb->csum = *(u16 *)(skb_tail_pointer(skb) - 2);
1777 skb->ip_summed = CHECKSUM_COMPLETE;
1778 skb_trim(skb, skb->len - 2);
1781 static int smsc95xx_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
1783 /* This check is no longer done by usbnet */
1784 if (skb->len < dev->net->hard_header_len)
1787 while (skb->len > 0) {
1788 u32 header, align_count;
1789 struct sk_buff *ax_skb;
1790 unsigned char *packet;
1793 header = get_unaligned_le32(skb->data);
1794 skb_pull(skb, 4 + NET_IP_ALIGN);
1797 /* get the packet length */
1798 size = (u16)((header & RX_STS_FL_) >> 16);
1799 align_count = (4 - ((size + NET_IP_ALIGN) % 4)) % 4;
1801 if (unlikely(header & RX_STS_ES_)) {
1802 netif_dbg(dev, rx_err, dev->net,
1803 "Error header=0x%08x\n", header);
1804 dev->net->stats.rx_errors++;
1805 dev->net->stats.rx_dropped++;
1807 if (header & RX_STS_CRC_) {
1808 dev->net->stats.rx_crc_errors++;
1810 if (header & (RX_STS_TL_ | RX_STS_RF_))
1811 dev->net->stats.rx_frame_errors++;
1813 if ((header & RX_STS_LE_) &&
1814 (!(header & RX_STS_FT_)))
1815 dev->net->stats.rx_length_errors++;
1818 /* ETH_FRAME_LEN + 4(CRC) + 2(COE) + 4(Vlan) */
1819 if (unlikely(size > (ETH_FRAME_LEN + 12))) {
1820 netif_dbg(dev, rx_err, dev->net,
1821 "size err header=0x%08x\n", header);
1825 /* last frame in this batch */
1826 if (skb->len == size) {
1827 if (dev->net->features & NETIF_F_RXCSUM)
1828 smsc95xx_rx_csum_offload(skb);
1829 skb_trim(skb, skb->len - 4); /* remove fcs */
1830 skb->truesize = size + sizeof(struct sk_buff);
1835 ax_skb = skb_clone(skb, GFP_ATOMIC);
1836 if (unlikely(!ax_skb)) {
1837 netdev_warn(dev->net, "Error allocating skb\n");
1842 ax_skb->data = packet;
1843 skb_set_tail_pointer(ax_skb, size);
1845 if (dev->net->features & NETIF_F_RXCSUM)
1846 smsc95xx_rx_csum_offload(ax_skb);
1847 skb_trim(ax_skb, ax_skb->len - 4); /* remove fcs */
1848 ax_skb->truesize = size + sizeof(struct sk_buff);
1850 usbnet_skb_return(dev, ax_skb);
1853 skb_pull(skb, size);
1855 /* padding bytes before the next frame starts */
1857 skb_pull(skb, align_count);
1863 static u32 smsc95xx_calc_csum_preamble(struct sk_buff *skb)
1865 u16 low_16 = (u16)skb_checksum_start_offset(skb);
1866 u16 high_16 = low_16 + skb->csum_offset;
1867 return (high_16 << 16) | low_16;
1870 /* The TX CSUM won't work if the checksum lies in the last 4 bytes of the
1871 * transmission. This is fairly unlikely, only seems to trigger with some
1872 * short TCP ACK packets sent.
1874 * Note, this calculation should probably check for the alignment of the
1875 * data as well, but a straight check for csum being in the last four bytes
1876 * of the packet should be ok for now.
1878 static bool smsc95xx_can_tx_checksum(struct sk_buff *skb)
1880 unsigned int len = skb->len - skb_checksum_start_offset(skb);
1884 return skb->csum_offset < (len - (4 + 1));
1887 static struct sk_buff *smsc95xx_tx_fixup(struct usbnet *dev,
1888 struct sk_buff *skb, gfp_t flags)
1890 bool csum = skb->ip_summed == CHECKSUM_PARTIAL;
1891 int overhead = csum ? SMSC95XX_TX_OVERHEAD_CSUM : SMSC95XX_TX_OVERHEAD;
1892 u32 tx_cmd_a, tx_cmd_b;
1895 /* We do not advertise SG, so skbs should be already linearized */
1896 BUG_ON(skb_shinfo(skb)->nr_frags);
1898 /* Make writable and expand header space by overhead if required */
1899 if (skb_cow_head(skb, overhead)) {
1900 /* Must deallocate here as returning NULL to indicate error
1901 * means the skb won't be deallocated in the caller.
1903 dev_kfree_skb_any(skb);
1907 tx_cmd_b = (u32)skb->len;
1908 tx_cmd_a = tx_cmd_b | TX_CMD_A_FIRST_SEG_ | TX_CMD_A_LAST_SEG_;
1911 if (!smsc95xx_can_tx_checksum(skb)) {
1912 /* workaround - hardware tx checksum does not work
1913 * properly with extremely small packets */
1914 long csstart = skb_checksum_start_offset(skb);
1915 __wsum calc = csum_partial(skb->data + csstart,
1916 skb->len - csstart, 0);
1917 *((__sum16 *)(skb->data + csstart
1918 + skb->csum_offset)) = csum_fold(calc);
1922 u32 csum_preamble = smsc95xx_calc_csum_preamble(skb);
1923 ptr = skb_push(skb, 4);
1924 put_unaligned_le32(csum_preamble, ptr);
1928 tx_cmd_b |= TX_CMD_B_CSUM_ENABLE;
1932 ptr = skb_push(skb, 8);
1933 put_unaligned_le32(tx_cmd_a, ptr);
1934 put_unaligned_le32(tx_cmd_b, ptr+4);
1939 static int smsc95xx_manage_power(struct usbnet *dev, int on)
1941 struct smsc95xx_priv *pdata = dev->driver_priv;
1943 dev->intf->needs_remote_wakeup = on;
1945 if (pdata->features & FEATURE_REMOTE_WAKEUP)
1948 /* this chip revision isn't capable of remote wakeup */
1949 netdev_info(dev->net, "hardware isn't capable of remote wakeup\n");
1952 usb_autopm_get_interface_no_resume(dev->intf);
1954 usb_autopm_put_interface(dev->intf);
1959 static const struct driver_info smsc95xx_info = {
1960 .description = "smsc95xx USB 2.0 Ethernet",
1961 .bind = smsc95xx_bind,
1962 .unbind = smsc95xx_unbind,
1963 .link_reset = smsc95xx_link_reset,
1964 .reset = smsc95xx_start_phy,
1965 .stop = smsc95xx_disconnect_phy,
1966 .rx_fixup = smsc95xx_rx_fixup,
1967 .tx_fixup = smsc95xx_tx_fixup,
1968 .status = smsc95xx_status,
1969 .manage_power = smsc95xx_manage_power,
1970 .flags = FLAG_ETHER | FLAG_SEND_ZLP | FLAG_LINK_INTR,
1973 static const struct usb_device_id products[] = {
1975 /* SMSC9500 USB Ethernet Device */
1976 USB_DEVICE(0x0424, 0x9500),
1977 .driver_info = (unsigned long) &smsc95xx_info,
1980 /* SMSC9505 USB Ethernet Device */
1981 USB_DEVICE(0x0424, 0x9505),
1982 .driver_info = (unsigned long) &smsc95xx_info,
1985 /* SMSC9500A USB Ethernet Device */
1986 USB_DEVICE(0x0424, 0x9E00),
1987 .driver_info = (unsigned long) &smsc95xx_info,
1990 /* SMSC9505A USB Ethernet Device */
1991 USB_DEVICE(0x0424, 0x9E01),
1992 .driver_info = (unsigned long) &smsc95xx_info,
1995 /* SMSC9512/9514 USB Hub & Ethernet Device */
1996 USB_DEVICE(0x0424, 0xec00),
1997 .driver_info = (unsigned long) &smsc95xx_info,
2000 /* SMSC9500 USB Ethernet Device (SAL10) */
2001 USB_DEVICE(0x0424, 0x9900),
2002 .driver_info = (unsigned long) &smsc95xx_info,
2005 /* SMSC9505 USB Ethernet Device (SAL10) */
2006 USB_DEVICE(0x0424, 0x9901),
2007 .driver_info = (unsigned long) &smsc95xx_info,
2010 /* SMSC9500A USB Ethernet Device (SAL10) */
2011 USB_DEVICE(0x0424, 0x9902),
2012 .driver_info = (unsigned long) &smsc95xx_info,
2015 /* SMSC9505A USB Ethernet Device (SAL10) */
2016 USB_DEVICE(0x0424, 0x9903),
2017 .driver_info = (unsigned long) &smsc95xx_info,
2020 /* SMSC9512/9514 USB Hub & Ethernet Device (SAL10) */
2021 USB_DEVICE(0x0424, 0x9904),
2022 .driver_info = (unsigned long) &smsc95xx_info,
2025 /* SMSC9500A USB Ethernet Device (HAL) */
2026 USB_DEVICE(0x0424, 0x9905),
2027 .driver_info = (unsigned long) &smsc95xx_info,
2030 /* SMSC9505A USB Ethernet Device (HAL) */
2031 USB_DEVICE(0x0424, 0x9906),
2032 .driver_info = (unsigned long) &smsc95xx_info,
2035 /* SMSC9500 USB Ethernet Device (Alternate ID) */
2036 USB_DEVICE(0x0424, 0x9907),
2037 .driver_info = (unsigned long) &smsc95xx_info,
2040 /* SMSC9500A USB Ethernet Device (Alternate ID) */
2041 USB_DEVICE(0x0424, 0x9908),
2042 .driver_info = (unsigned long) &smsc95xx_info,
2045 /* SMSC9512/9514 USB Hub & Ethernet Device (Alternate ID) */
2046 USB_DEVICE(0x0424, 0x9909),
2047 .driver_info = (unsigned long) &smsc95xx_info,
2050 /* SMSC LAN9530 USB Ethernet Device */
2051 USB_DEVICE(0x0424, 0x9530),
2052 .driver_info = (unsigned long) &smsc95xx_info,
2055 /* SMSC LAN9730 USB Ethernet Device */
2056 USB_DEVICE(0x0424, 0x9730),
2057 .driver_info = (unsigned long) &smsc95xx_info,
2060 /* SMSC LAN89530 USB Ethernet Device */
2061 USB_DEVICE(0x0424, 0x9E08),
2062 .driver_info = (unsigned long) &smsc95xx_info,
2066 MODULE_DEVICE_TABLE(usb, products);
2068 static struct usb_driver smsc95xx_driver = {
2070 .id_table = products,
2071 .probe = usbnet_probe,
2072 .suspend = smsc95xx_suspend,
2073 .resume = smsc95xx_resume,
2074 .reset_resume = smsc95xx_reset_resume,
2075 .disconnect = usbnet_disconnect,
2076 .disable_hub_initiated_lpm = 1,
2077 .supports_autosuspend = 1,
2080 module_usb_driver(smsc95xx_driver);
2082 MODULE_AUTHOR("Nancy Lin");
2083 MODULE_AUTHOR("Steve Glendinning <steve.glendinning@shawell.net>");
2084 MODULE_DESCRIPTION("SMSC95XX USB 2.0 Ethernet Devices");
2085 MODULE_LICENSE("GPL");