1 /***************************************************************************
3 * Copyright (C) 2007-2008 SMSC
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 *****************************************************************************/
20 #include <linux/module.h>
21 #include <linux/kmod.h>
22 #include <linux/netdevice.h>
23 #include <linux/etherdevice.h>
24 #include <linux/ethtool.h>
25 #include <linux/mii.h>
26 #include <linux/usb.h>
27 #include <linux/bitrev.h>
28 #include <linux/crc16.h>
29 #include <linux/crc32.h>
30 #include <linux/usb/usbnet.h>
31 #include <linux/slab.h>
32 #include <linux/of_net.h>
35 #define SMSC_CHIPNAME "smsc95xx"
36 #define SMSC_DRIVER_VERSION "1.0.6"
37 #define HS_USB_PKT_SIZE (512)
38 #define FS_USB_PKT_SIZE (64)
39 #define DEFAULT_HS_BURST_CAP_SIZE (16 * 1024 + 5 * HS_USB_PKT_SIZE)
40 #define DEFAULT_FS_BURST_CAP_SIZE (6 * 1024 + 33 * FS_USB_PKT_SIZE)
41 #define DEFAULT_BULK_IN_DELAY (0x00002000)
42 #define MAX_SINGLE_PACKET_SIZE (2048)
43 #define LAN95XX_EEPROM_MAGIC (0x9500)
44 #define EEPROM_MAC_OFFSET (0x01)
45 #define DEFAULT_TX_CSUM_ENABLE (true)
46 #define DEFAULT_RX_CSUM_ENABLE (true)
47 #define SMSC95XX_INTERNAL_PHY_ID (1)
48 #define SMSC95XX_TX_OVERHEAD (8)
49 #define SMSC95XX_TX_OVERHEAD_CSUM (12)
50 #define SUPPORTED_WAKE (WAKE_PHY | WAKE_UCAST | WAKE_BCAST | \
51 WAKE_MCAST | WAKE_ARP | WAKE_MAGIC)
53 #define FEATURE_8_WAKEUP_FILTERS (0x01)
54 #define FEATURE_PHY_NLP_CROSSOVER (0x02)
55 #define FEATURE_REMOTE_WAKEUP (0x04)
57 #define SUSPEND_SUSPEND0 (0x01)
58 #define SUSPEND_SUSPEND1 (0x02)
59 #define SUSPEND_SUSPEND2 (0x04)
60 #define SUSPEND_SUSPEND3 (0x08)
61 #define SUSPEND_ALLMODES (SUSPEND_SUSPEND0 | SUSPEND_SUSPEND1 | \
62 SUSPEND_SUSPEND2 | SUSPEND_SUSPEND3)
64 #define CARRIER_CHECK_DELAY (2 * HZ)
66 struct smsc95xx_priv {
72 spinlock_t mac_cr_lock;
77 struct delayed_work carrier_check;
81 static bool turbo_mode = true;
82 module_param(turbo_mode, bool, 0644);
83 MODULE_PARM_DESC(turbo_mode, "Enable multiple frames per Rx transaction");
85 static int __must_check __smsc95xx_read_reg(struct usbnet *dev, u32 index,
90 int (*fn)(struct usbnet *, u8, u8, u16, u16, void *, u16);
97 fn = usbnet_read_cmd_nopm;
99 ret = fn(dev, USB_VENDOR_REQUEST_READ_REGISTER, USB_DIR_IN
100 | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
102 if (unlikely(ret < 0)) {
103 netdev_warn(dev->net, "Failed to read reg index 0x%08x: %d\n",
114 static int __must_check __smsc95xx_write_reg(struct usbnet *dev, u32 index,
119 int (*fn)(struct usbnet *, u8, u8, u16, u16, const void *, u16);
124 fn = usbnet_write_cmd;
126 fn = usbnet_write_cmd_nopm;
131 ret = fn(dev, USB_VENDOR_REQUEST_WRITE_REGISTER, USB_DIR_OUT
132 | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
134 if (unlikely(ret < 0))
135 netdev_warn(dev->net, "Failed to write reg index 0x%08x: %d\n",
141 static int __must_check smsc95xx_read_reg_nopm(struct usbnet *dev, u32 index,
144 return __smsc95xx_read_reg(dev, index, data, 1);
147 static int __must_check smsc95xx_write_reg_nopm(struct usbnet *dev, u32 index,
150 return __smsc95xx_write_reg(dev, index, data, 1);
153 static int __must_check smsc95xx_read_reg(struct usbnet *dev, u32 index,
156 return __smsc95xx_read_reg(dev, index, data, 0);
159 static int __must_check smsc95xx_write_reg(struct usbnet *dev, u32 index,
162 return __smsc95xx_write_reg(dev, index, data, 0);
165 /* Loop until the read is completed with timeout
166 * called with phy_mutex held */
167 static int __must_check __smsc95xx_phy_wait_not_busy(struct usbnet *dev,
170 unsigned long start_time = jiffies;
175 ret = __smsc95xx_read_reg(dev, MII_ADDR, &val, in_pm);
177 netdev_warn(dev->net, "Error reading MII_ACCESS\n");
181 if (!(val & MII_BUSY_))
183 } while (!time_after(jiffies, start_time + HZ));
188 static int __smsc95xx_mdio_read(struct net_device *netdev, int phy_id, int idx,
191 struct usbnet *dev = netdev_priv(netdev);
195 mutex_lock(&dev->phy_mutex);
197 /* confirm MII not busy */
198 ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
200 netdev_warn(dev->net, "MII is busy in smsc95xx_mdio_read\n");
204 /* set the address, index & direction (read from PHY) */
205 phy_id &= dev->mii.phy_id_mask;
206 idx &= dev->mii.reg_num_mask;
207 addr = (phy_id << 11) | (idx << 6) | MII_READ_ | MII_BUSY_;
208 ret = __smsc95xx_write_reg(dev, MII_ADDR, addr, in_pm);
210 netdev_warn(dev->net, "Error writing MII_ADDR\n");
214 ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
216 netdev_warn(dev->net, "Timed out reading MII reg %02X\n", idx);
220 ret = __smsc95xx_read_reg(dev, MII_DATA, &val, in_pm);
222 netdev_warn(dev->net, "Error reading MII_DATA\n");
226 ret = (u16)(val & 0xFFFF);
229 mutex_unlock(&dev->phy_mutex);
233 static void __smsc95xx_mdio_write(struct net_device *netdev, int phy_id,
234 int idx, int regval, int in_pm)
236 struct usbnet *dev = netdev_priv(netdev);
240 mutex_lock(&dev->phy_mutex);
242 /* confirm MII not busy */
243 ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
245 netdev_warn(dev->net, "MII is busy in smsc95xx_mdio_write\n");
250 ret = __smsc95xx_write_reg(dev, MII_DATA, val, in_pm);
252 netdev_warn(dev->net, "Error writing MII_DATA\n");
256 /* set the address, index & direction (write to PHY) */
257 phy_id &= dev->mii.phy_id_mask;
258 idx &= dev->mii.reg_num_mask;
259 addr = (phy_id << 11) | (idx << 6) | MII_WRITE_ | MII_BUSY_;
260 ret = __smsc95xx_write_reg(dev, MII_ADDR, addr, in_pm);
262 netdev_warn(dev->net, "Error writing MII_ADDR\n");
266 ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
268 netdev_warn(dev->net, "Timed out writing MII reg %02X\n", idx);
273 mutex_unlock(&dev->phy_mutex);
276 static int smsc95xx_mdio_read_nopm(struct net_device *netdev, int phy_id,
279 return __smsc95xx_mdio_read(netdev, phy_id, idx, 1);
282 static void smsc95xx_mdio_write_nopm(struct net_device *netdev, int phy_id,
285 __smsc95xx_mdio_write(netdev, phy_id, idx, regval, 1);
288 static int smsc95xx_mdio_read(struct net_device *netdev, int phy_id, int idx)
290 return __smsc95xx_mdio_read(netdev, phy_id, idx, 0);
293 static void smsc95xx_mdio_write(struct net_device *netdev, int phy_id, int idx,
296 __smsc95xx_mdio_write(netdev, phy_id, idx, regval, 0);
299 static int __must_check smsc95xx_wait_eeprom(struct usbnet *dev)
301 unsigned long start_time = jiffies;
306 ret = smsc95xx_read_reg(dev, E2P_CMD, &val);
308 netdev_warn(dev->net, "Error reading E2P_CMD\n");
312 if (!(val & E2P_CMD_BUSY_) || (val & E2P_CMD_TIMEOUT_))
315 } while (!time_after(jiffies, start_time + HZ));
317 if (val & (E2P_CMD_TIMEOUT_ | E2P_CMD_BUSY_)) {
318 netdev_warn(dev->net, "EEPROM read operation timeout\n");
325 static int __must_check smsc95xx_eeprom_confirm_not_busy(struct usbnet *dev)
327 unsigned long start_time = jiffies;
332 ret = smsc95xx_read_reg(dev, E2P_CMD, &val);
334 netdev_warn(dev->net, "Error reading E2P_CMD\n");
338 if (!(val & E2P_CMD_BUSY_))
342 } while (!time_after(jiffies, start_time + HZ));
344 netdev_warn(dev->net, "EEPROM is busy\n");
348 static int smsc95xx_read_eeprom(struct usbnet *dev, u32 offset, u32 length,
357 ret = smsc95xx_eeprom_confirm_not_busy(dev);
361 for (i = 0; i < length; i++) {
362 val = E2P_CMD_BUSY_ | E2P_CMD_READ_ | (offset & E2P_CMD_ADDR_);
363 ret = smsc95xx_write_reg(dev, E2P_CMD, val);
365 netdev_warn(dev->net, "Error writing E2P_CMD\n");
369 ret = smsc95xx_wait_eeprom(dev);
373 ret = smsc95xx_read_reg(dev, E2P_DATA, &val);
375 netdev_warn(dev->net, "Error reading E2P_DATA\n");
379 data[i] = val & 0xFF;
386 static int smsc95xx_write_eeprom(struct usbnet *dev, u32 offset, u32 length,
395 ret = smsc95xx_eeprom_confirm_not_busy(dev);
399 /* Issue write/erase enable command */
400 val = E2P_CMD_BUSY_ | E2P_CMD_EWEN_;
401 ret = smsc95xx_write_reg(dev, E2P_CMD, val);
403 netdev_warn(dev->net, "Error writing E2P_DATA\n");
407 ret = smsc95xx_wait_eeprom(dev);
411 for (i = 0; i < length; i++) {
413 /* Fill data register */
415 ret = smsc95xx_write_reg(dev, E2P_DATA, val);
417 netdev_warn(dev->net, "Error writing E2P_DATA\n");
421 /* Send "write" command */
422 val = E2P_CMD_BUSY_ | E2P_CMD_WRITE_ | (offset & E2P_CMD_ADDR_);
423 ret = smsc95xx_write_reg(dev, E2P_CMD, val);
425 netdev_warn(dev->net, "Error writing E2P_CMD\n");
429 ret = smsc95xx_wait_eeprom(dev);
439 static int __must_check smsc95xx_write_reg_async(struct usbnet *dev, u16 index,
449 ret = usbnet_write_cmd_async(dev, USB_VENDOR_REQUEST_WRITE_REGISTER,
450 USB_DIR_OUT | USB_TYPE_VENDOR |
452 0, index, &buf, size);
454 netdev_warn(dev->net, "Error write async cmd, sts=%d\n",
459 /* returns hash bit number for given MAC address
461 * 01 00 5E 00 00 01 -> returns bit number 31 */
462 static unsigned int smsc95xx_hash(char addr[ETH_ALEN])
464 return (ether_crc(ETH_ALEN, addr) >> 26) & 0x3f;
467 static void smsc95xx_set_multicast(struct net_device *netdev)
469 struct usbnet *dev = netdev_priv(netdev);
470 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
477 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
479 if (dev->net->flags & IFF_PROMISC) {
480 netif_dbg(dev, drv, dev->net, "promiscuous mode enabled\n");
481 pdata->mac_cr |= MAC_CR_PRMS_;
482 pdata->mac_cr &= ~(MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
483 } else if (dev->net->flags & IFF_ALLMULTI) {
484 netif_dbg(dev, drv, dev->net, "receive all multicast enabled\n");
485 pdata->mac_cr |= MAC_CR_MCPAS_;
486 pdata->mac_cr &= ~(MAC_CR_PRMS_ | MAC_CR_HPFILT_);
487 } else if (!netdev_mc_empty(dev->net)) {
488 struct netdev_hw_addr *ha;
490 pdata->mac_cr |= MAC_CR_HPFILT_;
491 pdata->mac_cr &= ~(MAC_CR_PRMS_ | MAC_CR_MCPAS_);
493 netdev_for_each_mc_addr(ha, netdev) {
494 u32 bitnum = smsc95xx_hash(ha->addr);
495 u32 mask = 0x01 << (bitnum & 0x1F);
497 pdata->hash_hi |= mask;
499 pdata->hash_lo |= mask;
502 netif_dbg(dev, drv, dev->net, "HASHH=0x%08X, HASHL=0x%08X\n",
503 pdata->hash_hi, pdata->hash_lo);
505 netif_dbg(dev, drv, dev->net, "receive own packets only\n");
507 ~(MAC_CR_PRMS_ | MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
510 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
512 /* Initiate async writes, as we can't wait for completion here */
513 ret = smsc95xx_write_reg_async(dev, HASHH, pdata->hash_hi);
515 netdev_warn(dev->net, "failed to initiate async write to HASHH\n");
517 ret = smsc95xx_write_reg_async(dev, HASHL, pdata->hash_lo);
519 netdev_warn(dev->net, "failed to initiate async write to HASHL\n");
521 ret = smsc95xx_write_reg_async(dev, MAC_CR, pdata->mac_cr);
523 netdev_warn(dev->net, "failed to initiate async write to MAC_CR\n");
526 static int smsc95xx_phy_update_flowcontrol(struct usbnet *dev, u8 duplex,
527 u16 lcladv, u16 rmtadv)
529 u32 flow, afc_cfg = 0;
531 int ret = smsc95xx_read_reg(dev, AFC_CFG, &afc_cfg);
535 if (duplex == DUPLEX_FULL) {
536 u8 cap = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
538 if (cap & FLOW_CTRL_RX)
543 if (cap & FLOW_CTRL_TX)
548 netif_dbg(dev, link, dev->net, "rx pause %s, tx pause %s\n",
549 cap & FLOW_CTRL_RX ? "enabled" : "disabled",
550 cap & FLOW_CTRL_TX ? "enabled" : "disabled");
552 netif_dbg(dev, link, dev->net, "half duplex\n");
557 ret = smsc95xx_write_reg(dev, FLOW, flow);
561 return smsc95xx_write_reg(dev, AFC_CFG, afc_cfg);
564 static int smsc95xx_link_reset(struct usbnet *dev)
566 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
567 struct mii_if_info *mii = &dev->mii;
568 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
573 /* clear interrupt status */
574 ret = smsc95xx_mdio_read(dev->net, mii->phy_id, PHY_INT_SRC);
578 ret = smsc95xx_write_reg(dev, INT_STS, INT_STS_CLEAR_ALL_);
582 mii_check_media(mii, 1, 1);
583 mii_ethtool_gset(&dev->mii, &ecmd);
584 lcladv = smsc95xx_mdio_read(dev->net, mii->phy_id, MII_ADVERTISE);
585 rmtadv = smsc95xx_mdio_read(dev->net, mii->phy_id, MII_LPA);
587 netif_dbg(dev, link, dev->net,
588 "speed: %u duplex: %d lcladv: %04x rmtadv: %04x\n",
589 ethtool_cmd_speed(&ecmd), ecmd.duplex, lcladv, rmtadv);
591 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
592 if (ecmd.duplex != DUPLEX_FULL) {
593 pdata->mac_cr &= ~MAC_CR_FDPX_;
594 pdata->mac_cr |= MAC_CR_RCVOWN_;
596 pdata->mac_cr &= ~MAC_CR_RCVOWN_;
597 pdata->mac_cr |= MAC_CR_FDPX_;
599 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
601 ret = smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
605 ret = smsc95xx_phy_update_flowcontrol(dev, ecmd.duplex, lcladv, rmtadv);
607 netdev_warn(dev->net, "Error updating PHY flow control\n");
612 static void smsc95xx_status(struct usbnet *dev, struct urb *urb)
616 if (urb->actual_length != 4) {
617 netdev_warn(dev->net, "unexpected urb length %d\n",
622 memcpy(&intdata, urb->transfer_buffer, 4);
623 le32_to_cpus(&intdata);
625 netif_dbg(dev, link, dev->net, "intdata: 0x%08X\n", intdata);
627 if (intdata & INT_ENP_PHY_INT_)
628 usbnet_defer_kevent(dev, EVENT_LINK_RESET);
630 netdev_warn(dev->net, "unexpected interrupt, intdata=0x%08X\n",
634 static void set_carrier(struct usbnet *dev, bool link)
636 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
638 if (pdata->link_ok == link)
641 pdata->link_ok = link;
644 usbnet_link_change(dev, 1, 0);
646 usbnet_link_change(dev, 0, 0);
649 static void check_carrier(struct work_struct *work)
651 struct smsc95xx_priv *pdata = container_of(work, struct smsc95xx_priv,
653 struct usbnet *dev = pdata->dev;
656 if (pdata->suspend_flags != 0)
659 ret = smsc95xx_mdio_read(dev->net, dev->mii.phy_id, MII_BMSR);
661 netdev_warn(dev->net, "Failed to read MII_BMSR\n");
664 if (ret & BMSR_LSTATUS)
669 schedule_delayed_work(&pdata->carrier_check, CARRIER_CHECK_DELAY);
672 /* Enable or disable Tx & Rx checksum offload engines */
673 static int smsc95xx_set_features(struct net_device *netdev,
674 netdev_features_t features)
676 struct usbnet *dev = netdev_priv(netdev);
680 ret = smsc95xx_read_reg(dev, COE_CR, &read_buf);
684 if (features & NETIF_F_IP_CSUM)
685 read_buf |= Tx_COE_EN_;
687 read_buf &= ~Tx_COE_EN_;
689 if (features & NETIF_F_RXCSUM)
690 read_buf |= Rx_COE_EN_;
692 read_buf &= ~Rx_COE_EN_;
694 ret = smsc95xx_write_reg(dev, COE_CR, read_buf);
698 netif_dbg(dev, hw, dev->net, "COE_CR = 0x%08x\n", read_buf);
702 static int smsc95xx_ethtool_get_eeprom_len(struct net_device *net)
704 return MAX_EEPROM_SIZE;
707 static int smsc95xx_ethtool_get_eeprom(struct net_device *netdev,
708 struct ethtool_eeprom *ee, u8 *data)
710 struct usbnet *dev = netdev_priv(netdev);
712 ee->magic = LAN95XX_EEPROM_MAGIC;
714 return smsc95xx_read_eeprom(dev, ee->offset, ee->len, data);
717 static int smsc95xx_ethtool_set_eeprom(struct net_device *netdev,
718 struct ethtool_eeprom *ee, u8 *data)
720 struct usbnet *dev = netdev_priv(netdev);
722 if (ee->magic != LAN95XX_EEPROM_MAGIC) {
723 netdev_warn(dev->net, "EEPROM: magic value mismatch, magic = 0x%x\n",
728 return smsc95xx_write_eeprom(dev, ee->offset, ee->len, data);
731 static int smsc95xx_ethtool_getregslen(struct net_device *netdev)
733 /* all smsc95xx registers */
734 return COE_CR - ID_REV + sizeof(u32);
738 smsc95xx_ethtool_getregs(struct net_device *netdev, struct ethtool_regs *regs,
741 struct usbnet *dev = netdev_priv(netdev);
746 retval = smsc95xx_read_reg(dev, ID_REV, ®s->version);
748 netdev_warn(netdev, "REGS: cannot read ID_REV\n");
752 for (i = ID_REV, j = 0; i <= COE_CR; i += (sizeof(u32)), j++) {
753 retval = smsc95xx_read_reg(dev, i, &data[j]);
755 netdev_warn(netdev, "REGS: cannot read reg[%x]\n", i);
761 static void smsc95xx_ethtool_get_wol(struct net_device *net,
762 struct ethtool_wolinfo *wolinfo)
764 struct usbnet *dev = netdev_priv(net);
765 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
767 wolinfo->supported = SUPPORTED_WAKE;
768 wolinfo->wolopts = pdata->wolopts;
771 static int smsc95xx_ethtool_set_wol(struct net_device *net,
772 struct ethtool_wolinfo *wolinfo)
774 struct usbnet *dev = netdev_priv(net);
775 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
778 pdata->wolopts = wolinfo->wolopts & SUPPORTED_WAKE;
780 ret = device_set_wakeup_enable(&dev->udev->dev, pdata->wolopts);
782 netdev_warn(dev->net, "device_set_wakeup_enable error %d\n", ret);
787 static int get_mdix_status(struct net_device *net)
789 struct usbnet *dev = netdev_priv(net);
793 buf = smsc95xx_mdio_read(dev->net, dev->mii.phy_id, SPECIAL_CTRL_STS);
794 if (buf & SPECIAL_CTRL_STS_OVRRD_AMDIX_) {
795 if (buf & SPECIAL_CTRL_STS_AMDIX_ENABLE_)
796 return ETH_TP_MDI_AUTO;
797 else if (buf & SPECIAL_CTRL_STS_AMDIX_STATE_)
800 buf = smsc95xx_read_reg(dev, STRAP_STATUS, &val);
801 if (val & STRAP_STATUS_AMDIX_EN_)
802 return ETH_TP_MDI_AUTO;
808 static void set_mdix_status(struct net_device *net, __u8 mdix_ctrl)
810 struct usbnet *dev = netdev_priv(net);
811 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
814 if ((pdata->chip_id == ID_REV_CHIP_ID_9500A_) ||
815 (pdata->chip_id == ID_REV_CHIP_ID_9530_) ||
816 (pdata->chip_id == ID_REV_CHIP_ID_89530_) ||
817 (pdata->chip_id == ID_REV_CHIP_ID_9730_)) {
818 /* Extend Manual AutoMDIX timer for 9500A/9500Ai */
819 buf = smsc95xx_mdio_read(dev->net, dev->mii.phy_id,
821 buf |= PHY_EDPD_CONFIG_EXT_CROSSOVER_;
822 smsc95xx_mdio_write(dev->net, dev->mii.phy_id,
823 PHY_EDPD_CONFIG, buf);
826 if (mdix_ctrl == ETH_TP_MDI) {
827 buf = smsc95xx_mdio_read(dev->net, dev->mii.phy_id,
829 buf |= SPECIAL_CTRL_STS_OVRRD_AMDIX_;
830 buf &= ~(SPECIAL_CTRL_STS_AMDIX_ENABLE_ |
831 SPECIAL_CTRL_STS_AMDIX_STATE_);
832 smsc95xx_mdio_write(dev->net, dev->mii.phy_id,
833 SPECIAL_CTRL_STS, buf);
834 } else if (mdix_ctrl == ETH_TP_MDI_X) {
835 buf = smsc95xx_mdio_read(dev->net, dev->mii.phy_id,
837 buf |= SPECIAL_CTRL_STS_OVRRD_AMDIX_;
838 buf &= ~(SPECIAL_CTRL_STS_AMDIX_ENABLE_ |
839 SPECIAL_CTRL_STS_AMDIX_STATE_);
840 buf |= SPECIAL_CTRL_STS_AMDIX_STATE_;
841 smsc95xx_mdio_write(dev->net, dev->mii.phy_id,
842 SPECIAL_CTRL_STS, buf);
843 } else if (mdix_ctrl == ETH_TP_MDI_AUTO) {
844 buf = smsc95xx_mdio_read(dev->net, dev->mii.phy_id,
846 buf &= ~SPECIAL_CTRL_STS_OVRRD_AMDIX_;
847 buf &= ~(SPECIAL_CTRL_STS_AMDIX_ENABLE_ |
848 SPECIAL_CTRL_STS_AMDIX_STATE_);
849 buf |= SPECIAL_CTRL_STS_AMDIX_ENABLE_;
850 smsc95xx_mdio_write(dev->net, dev->mii.phy_id,
851 SPECIAL_CTRL_STS, buf);
853 pdata->mdix_ctrl = mdix_ctrl;
856 static int smsc95xx_get_link_ksettings(struct net_device *net,
857 struct ethtool_link_ksettings *cmd)
859 struct usbnet *dev = netdev_priv(net);
860 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
863 retval = usbnet_get_link_ksettings(net, cmd);
865 cmd->base.eth_tp_mdix = pdata->mdix_ctrl;
866 cmd->base.eth_tp_mdix_ctrl = pdata->mdix_ctrl;
871 static int smsc95xx_set_link_ksettings(struct net_device *net,
872 const struct ethtool_link_ksettings *cmd)
874 struct usbnet *dev = netdev_priv(net);
875 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
878 if (pdata->mdix_ctrl != cmd->base.eth_tp_mdix_ctrl)
879 set_mdix_status(net, cmd->base.eth_tp_mdix_ctrl);
881 retval = usbnet_set_link_ksettings(net, cmd);
886 static const struct ethtool_ops smsc95xx_ethtool_ops = {
887 .get_link = usbnet_get_link,
888 .nway_reset = usbnet_nway_reset,
889 .get_drvinfo = usbnet_get_drvinfo,
890 .get_msglevel = usbnet_get_msglevel,
891 .set_msglevel = usbnet_set_msglevel,
892 .get_eeprom_len = smsc95xx_ethtool_get_eeprom_len,
893 .get_eeprom = smsc95xx_ethtool_get_eeprom,
894 .set_eeprom = smsc95xx_ethtool_set_eeprom,
895 .get_regs_len = smsc95xx_ethtool_getregslen,
896 .get_regs = smsc95xx_ethtool_getregs,
897 .get_wol = smsc95xx_ethtool_get_wol,
898 .set_wol = smsc95xx_ethtool_set_wol,
899 .get_link_ksettings = smsc95xx_get_link_ksettings,
900 .set_link_ksettings = smsc95xx_set_link_ksettings,
901 .get_ts_info = ethtool_op_get_ts_info,
904 static int smsc95xx_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
906 struct usbnet *dev = netdev_priv(netdev);
908 if (!netif_running(netdev))
911 return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
914 static void smsc95xx_init_mac_address(struct usbnet *dev)
918 /* maybe the boot loader passed the MAC address in devicetree */
919 mac_addr = of_get_mac_address(dev->udev->dev.of_node);
921 memcpy(dev->net->dev_addr, mac_addr, ETH_ALEN);
925 /* try reading mac address from EEPROM */
926 if (smsc95xx_read_eeprom(dev, EEPROM_MAC_OFFSET, ETH_ALEN,
927 dev->net->dev_addr) == 0) {
928 if (is_valid_ether_addr(dev->net->dev_addr)) {
929 /* eeprom values are valid so use them */
930 netif_dbg(dev, ifup, dev->net, "MAC address read from EEPROM\n");
935 /* no useful static MAC address found. generate a random one */
936 eth_hw_addr_random(dev->net);
937 netif_dbg(dev, ifup, dev->net, "MAC address set to eth_random_addr\n");
940 static int smsc95xx_set_mac_address(struct usbnet *dev)
942 u32 addr_lo = dev->net->dev_addr[0] | dev->net->dev_addr[1] << 8 |
943 dev->net->dev_addr[2] << 16 | dev->net->dev_addr[3] << 24;
944 u32 addr_hi = dev->net->dev_addr[4] | dev->net->dev_addr[5] << 8;
947 ret = smsc95xx_write_reg(dev, ADDRL, addr_lo);
951 return smsc95xx_write_reg(dev, ADDRH, addr_hi);
954 /* starts the TX path */
955 static int smsc95xx_start_tx_path(struct usbnet *dev)
957 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
961 /* Enable Tx at MAC */
962 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
963 pdata->mac_cr |= MAC_CR_TXEN_;
964 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
966 ret = smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
970 /* Enable Tx at SCSRs */
971 return smsc95xx_write_reg(dev, TX_CFG, TX_CFG_ON_);
974 /* Starts the Receive path */
975 static int smsc95xx_start_rx_path(struct usbnet *dev, int in_pm)
977 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
980 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
981 pdata->mac_cr |= MAC_CR_RXEN_;
982 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
984 return __smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr, in_pm);
987 static int smsc95xx_phy_initialize(struct usbnet *dev)
989 int bmcr, ret, timeout = 0;
991 /* Initialize MII structure */
992 dev->mii.dev = dev->net;
993 dev->mii.mdio_read = smsc95xx_mdio_read;
994 dev->mii.mdio_write = smsc95xx_mdio_write;
995 dev->mii.phy_id_mask = 0x1f;
996 dev->mii.reg_num_mask = 0x1f;
997 dev->mii.phy_id = SMSC95XX_INTERNAL_PHY_ID;
999 /* reset phy and wait for reset to complete */
1000 smsc95xx_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
1004 bmcr = smsc95xx_mdio_read(dev->net, dev->mii.phy_id, MII_BMCR);
1006 } while ((bmcr & BMCR_RESET) && (timeout < 100));
1008 if (timeout >= 100) {
1009 netdev_warn(dev->net, "timeout on PHY Reset");
1013 smsc95xx_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
1014 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP |
1015 ADVERTISE_PAUSE_ASYM);
1018 ret = smsc95xx_mdio_read(dev->net, dev->mii.phy_id, PHY_INT_SRC);
1020 netdev_warn(dev->net, "Failed to read PHY_INT_SRC during init\n");
1024 smsc95xx_mdio_write(dev->net, dev->mii.phy_id, PHY_INT_MASK,
1025 PHY_INT_MASK_DEFAULT_);
1026 mii_nway_restart(&dev->mii);
1028 netif_dbg(dev, ifup, dev->net, "phy initialised successfully\n");
1032 static int smsc95xx_reset(struct usbnet *dev)
1034 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1035 u32 read_buf, write_buf, burst_cap;
1036 int ret = 0, timeout;
1038 netif_dbg(dev, ifup, dev->net, "entering smsc95xx_reset\n");
1040 ret = smsc95xx_write_reg(dev, HW_CFG, HW_CFG_LRST_);
1047 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
1051 } while ((read_buf & HW_CFG_LRST_) && (timeout < 100));
1053 if (timeout >= 100) {
1054 netdev_warn(dev->net, "timeout waiting for completion of Lite Reset\n");
1058 ret = smsc95xx_write_reg(dev, PM_CTRL, PM_CTL_PHY_RST_);
1065 ret = smsc95xx_read_reg(dev, PM_CTRL, &read_buf);
1069 } while ((read_buf & PM_CTL_PHY_RST_) && (timeout < 100));
1071 if (timeout >= 100) {
1072 netdev_warn(dev->net, "timeout waiting for PHY Reset\n");
1076 ret = smsc95xx_set_mac_address(dev);
1080 netif_dbg(dev, ifup, dev->net, "MAC Address: %pM\n",
1081 dev->net->dev_addr);
1083 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
1087 netif_dbg(dev, ifup, dev->net, "Read Value from HW_CFG : 0x%08x\n",
1090 read_buf |= HW_CFG_BIR_;
1092 ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
1096 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
1100 netif_dbg(dev, ifup, dev->net,
1101 "Read Value from HW_CFG after writing HW_CFG_BIR_: 0x%08x\n",
1106 dev->rx_urb_size = MAX_SINGLE_PACKET_SIZE;
1107 } else if (dev->udev->speed == USB_SPEED_HIGH) {
1108 burst_cap = DEFAULT_HS_BURST_CAP_SIZE / HS_USB_PKT_SIZE;
1109 dev->rx_urb_size = DEFAULT_HS_BURST_CAP_SIZE;
1111 burst_cap = DEFAULT_FS_BURST_CAP_SIZE / FS_USB_PKT_SIZE;
1112 dev->rx_urb_size = DEFAULT_FS_BURST_CAP_SIZE;
1115 netif_dbg(dev, ifup, dev->net, "rx_urb_size=%ld\n",
1116 (ulong)dev->rx_urb_size);
1118 ret = smsc95xx_write_reg(dev, BURST_CAP, burst_cap);
1122 ret = smsc95xx_read_reg(dev, BURST_CAP, &read_buf);
1126 netif_dbg(dev, ifup, dev->net,
1127 "Read Value from BURST_CAP after writing: 0x%08x\n",
1130 ret = smsc95xx_write_reg(dev, BULK_IN_DLY, DEFAULT_BULK_IN_DELAY);
1134 ret = smsc95xx_read_reg(dev, BULK_IN_DLY, &read_buf);
1138 netif_dbg(dev, ifup, dev->net,
1139 "Read Value from BULK_IN_DLY after writing: 0x%08x\n",
1142 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
1146 netif_dbg(dev, ifup, dev->net, "Read Value from HW_CFG: 0x%08x\n",
1150 read_buf |= (HW_CFG_MEF_ | HW_CFG_BCE_);
1152 read_buf &= ~HW_CFG_RXDOFF_;
1154 /* set Rx data offset=2, Make IP header aligns on word boundary. */
1155 read_buf |= NET_IP_ALIGN << 9;
1157 ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
1161 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
1165 netif_dbg(dev, ifup, dev->net,
1166 "Read Value from HW_CFG after writing: 0x%08x\n", read_buf);
1168 ret = smsc95xx_write_reg(dev, INT_STS, INT_STS_CLEAR_ALL_);
1172 ret = smsc95xx_read_reg(dev, ID_REV, &read_buf);
1175 netif_dbg(dev, ifup, dev->net, "ID_REV = 0x%08x\n", read_buf);
1177 /* Configure GPIO pins as LED outputs */
1178 write_buf = LED_GPIO_CFG_SPD_LED | LED_GPIO_CFG_LNK_LED |
1179 LED_GPIO_CFG_FDX_LED;
1180 ret = smsc95xx_write_reg(dev, LED_GPIO_CFG, write_buf);
1185 ret = smsc95xx_write_reg(dev, FLOW, 0);
1189 ret = smsc95xx_write_reg(dev, AFC_CFG, AFC_CFG_DEFAULT);
1193 /* Don't need mac_cr_lock during initialisation */
1194 ret = smsc95xx_read_reg(dev, MAC_CR, &pdata->mac_cr);
1200 ret = smsc95xx_write_reg(dev, VLAN1, (u32)ETH_P_8021Q);
1204 /* Enable or disable checksum offload engines */
1205 ret = smsc95xx_set_features(dev->net, dev->net->features);
1207 netdev_warn(dev->net, "Failed to set checksum offload features\n");
1211 smsc95xx_set_multicast(dev->net);
1213 ret = smsc95xx_phy_initialize(dev);
1215 netdev_warn(dev->net, "Failed to init PHY\n");
1219 ret = smsc95xx_read_reg(dev, INT_EP_CTL, &read_buf);
1223 /* enable PHY interrupts */
1224 read_buf |= INT_EP_CTL_PHY_INT_;
1226 ret = smsc95xx_write_reg(dev, INT_EP_CTL, read_buf);
1230 ret = smsc95xx_start_tx_path(dev);
1232 netdev_warn(dev->net, "Failed to start TX path\n");
1236 ret = smsc95xx_start_rx_path(dev, 0);
1238 netdev_warn(dev->net, "Failed to start RX path\n");
1242 netif_dbg(dev, ifup, dev->net, "smsc95xx_reset, return 0\n");
1246 static const struct net_device_ops smsc95xx_netdev_ops = {
1247 .ndo_open = usbnet_open,
1248 .ndo_stop = usbnet_stop,
1249 .ndo_start_xmit = usbnet_start_xmit,
1250 .ndo_tx_timeout = usbnet_tx_timeout,
1251 .ndo_change_mtu = usbnet_change_mtu,
1252 .ndo_get_stats64 = usbnet_get_stats64,
1253 .ndo_set_mac_address = eth_mac_addr,
1254 .ndo_validate_addr = eth_validate_addr,
1255 .ndo_do_ioctl = smsc95xx_ioctl,
1256 .ndo_set_rx_mode = smsc95xx_set_multicast,
1257 .ndo_set_features = smsc95xx_set_features,
1260 static int smsc95xx_bind(struct usbnet *dev, struct usb_interface *intf)
1262 struct smsc95xx_priv *pdata = NULL;
1266 printk(KERN_INFO SMSC_CHIPNAME " v" SMSC_DRIVER_VERSION "\n");
1268 ret = usbnet_get_endpoints(dev, intf);
1270 netdev_warn(dev->net, "usbnet_get_endpoints failed: %d\n", ret);
1274 dev->data[0] = (unsigned long)kzalloc(sizeof(struct smsc95xx_priv),
1277 pdata = (struct smsc95xx_priv *)(dev->data[0]);
1281 spin_lock_init(&pdata->mac_cr_lock);
1283 /* LAN95xx devices do not alter the computed checksum of 0 to 0xffff.
1284 * RFC 2460, ipv6 UDP calculated checksum yields a result of zero must
1285 * be changed to 0xffff. RFC 768, ipv4 UDP computed checksum is zero,
1286 * it is transmitted as all ones. The zero transmitted checksum means
1287 * transmitter generated no checksum. Hence, enable csum offload only
1290 if (DEFAULT_TX_CSUM_ENABLE)
1291 dev->net->features |= NETIF_F_IP_CSUM;
1292 if (DEFAULT_RX_CSUM_ENABLE)
1293 dev->net->features |= NETIF_F_RXCSUM;
1295 dev->net->hw_features = NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
1297 smsc95xx_init_mac_address(dev);
1299 /* Init all registers */
1300 ret = smsc95xx_reset(dev);
1302 /* detect device revision as different features may be available */
1303 ret = smsc95xx_read_reg(dev, ID_REV, &val);
1307 pdata->chip_id = val;
1308 pdata->mdix_ctrl = get_mdix_status(dev->net);
1310 if ((val == ID_REV_CHIP_ID_9500A_) || (val == ID_REV_CHIP_ID_9530_) ||
1311 (val == ID_REV_CHIP_ID_89530_) || (val == ID_REV_CHIP_ID_9730_))
1312 pdata->features = (FEATURE_8_WAKEUP_FILTERS |
1313 FEATURE_PHY_NLP_CROSSOVER |
1314 FEATURE_REMOTE_WAKEUP);
1315 else if (val == ID_REV_CHIP_ID_9512_)
1316 pdata->features = FEATURE_8_WAKEUP_FILTERS;
1318 dev->net->netdev_ops = &smsc95xx_netdev_ops;
1319 dev->net->ethtool_ops = &smsc95xx_ethtool_ops;
1320 dev->net->flags |= IFF_MULTICAST;
1321 dev->net->hard_header_len += SMSC95XX_TX_OVERHEAD_CSUM;
1322 dev->hard_mtu = dev->net->mtu + dev->net->hard_header_len;
1325 INIT_DELAYED_WORK(&pdata->carrier_check, check_carrier);
1326 schedule_delayed_work(&pdata->carrier_check, CARRIER_CHECK_DELAY);
1331 static void smsc95xx_unbind(struct usbnet *dev, struct usb_interface *intf)
1333 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1336 cancel_delayed_work(&pdata->carrier_check);
1337 netif_dbg(dev, ifdown, dev->net, "free pdata\n");
1344 static u32 smsc_crc(const u8 *buffer, size_t len, int filter)
1346 u32 crc = bitrev16(crc16(0xFFFF, buffer, len));
1347 return crc << ((filter % 2) * 16);
1350 static int smsc95xx_enable_phy_wakeup_interrupts(struct usbnet *dev, u16 mask)
1352 struct mii_if_info *mii = &dev->mii;
1355 netdev_dbg(dev->net, "enabling PHY wakeup interrupts\n");
1358 ret = smsc95xx_mdio_read_nopm(dev->net, mii->phy_id, PHY_INT_SRC);
1362 /* enable interrupt source */
1363 ret = smsc95xx_mdio_read_nopm(dev->net, mii->phy_id, PHY_INT_MASK);
1369 smsc95xx_mdio_write_nopm(dev->net, mii->phy_id, PHY_INT_MASK, ret);
1374 static int smsc95xx_link_ok_nopm(struct usbnet *dev)
1376 struct mii_if_info *mii = &dev->mii;
1379 /* first, a dummy read, needed to latch some MII phys */
1380 ret = smsc95xx_mdio_read_nopm(dev->net, mii->phy_id, MII_BMSR);
1384 ret = smsc95xx_mdio_read_nopm(dev->net, mii->phy_id, MII_BMSR);
1388 return !!(ret & BMSR_LSTATUS);
1391 static int smsc95xx_enter_suspend0(struct usbnet *dev)
1393 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1397 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1401 val &= (~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_));
1402 val |= PM_CTL_SUS_MODE_0;
1404 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1408 /* clear wol status */
1409 val &= ~PM_CTL_WUPS_;
1410 val |= PM_CTL_WUPS_WOL_;
1412 /* enable energy detection */
1413 if (pdata->wolopts & WAKE_PHY)
1414 val |= PM_CTL_WUPS_ED_;
1416 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1420 /* read back PM_CTRL */
1421 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1425 pdata->suspend_flags |= SUSPEND_SUSPEND0;
1430 static int smsc95xx_enter_suspend1(struct usbnet *dev)
1432 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1433 struct mii_if_info *mii = &dev->mii;
1437 /* reconfigure link pulse detection timing for
1438 * compatibility with non-standard link partners
1440 if (pdata->features & FEATURE_PHY_NLP_CROSSOVER)
1441 smsc95xx_mdio_write_nopm(dev->net, mii->phy_id, PHY_EDPD_CONFIG,
1442 PHY_EDPD_CONFIG_DEFAULT);
1444 /* enable energy detect power-down mode */
1445 ret = smsc95xx_mdio_read_nopm(dev->net, mii->phy_id, PHY_MODE_CTRL_STS);
1449 ret |= MODE_CTRL_STS_EDPWRDOWN_;
1451 smsc95xx_mdio_write_nopm(dev->net, mii->phy_id, PHY_MODE_CTRL_STS, ret);
1453 /* enter SUSPEND1 mode */
1454 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1458 val &= ~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_);
1459 val |= PM_CTL_SUS_MODE_1;
1461 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1465 /* clear wol status, enable energy detection */
1466 val &= ~PM_CTL_WUPS_;
1467 val |= (PM_CTL_WUPS_ED_ | PM_CTL_ED_EN_);
1469 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1473 pdata->suspend_flags |= SUSPEND_SUSPEND1;
1478 static int smsc95xx_enter_suspend2(struct usbnet *dev)
1480 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1484 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1488 val &= ~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_);
1489 val |= PM_CTL_SUS_MODE_2;
1491 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1495 pdata->suspend_flags |= SUSPEND_SUSPEND2;
1500 static int smsc95xx_enter_suspend3(struct usbnet *dev)
1502 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1506 ret = smsc95xx_read_reg_nopm(dev, RX_FIFO_INF, &val);
1510 if (val & RX_FIFO_INF_USED_) {
1511 netdev_info(dev->net, "rx fifo not empty in autosuspend\n");
1515 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1519 val &= ~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_);
1520 val |= PM_CTL_SUS_MODE_3 | PM_CTL_RES_CLR_WKP_STS;
1522 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1526 /* clear wol status */
1527 val &= ~PM_CTL_WUPS_;
1528 val |= PM_CTL_WUPS_WOL_;
1530 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1534 pdata->suspend_flags |= SUSPEND_SUSPEND3;
1539 static int smsc95xx_autosuspend(struct usbnet *dev, u32 link_up)
1541 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1544 if (!netif_running(dev->net)) {
1545 /* interface is ifconfig down so fully power down hw */
1546 netdev_dbg(dev->net, "autosuspend entering SUSPEND2\n");
1547 return smsc95xx_enter_suspend2(dev);
1551 /* link is down so enter EDPD mode, but only if device can
1552 * reliably resume from it. This check should be redundant
1553 * as current FEATURE_REMOTE_WAKEUP parts also support
1554 * FEATURE_PHY_NLP_CROSSOVER but it's included for clarity */
1555 if (!(pdata->features & FEATURE_PHY_NLP_CROSSOVER)) {
1556 netdev_warn(dev->net, "EDPD not supported\n");
1560 netdev_dbg(dev->net, "autosuspend entering SUSPEND1\n");
1562 /* enable PHY wakeup events for if cable is attached */
1563 ret = smsc95xx_enable_phy_wakeup_interrupts(dev,
1564 PHY_INT_MASK_ANEG_COMP_);
1566 netdev_warn(dev->net, "error enabling PHY wakeup ints\n");
1570 netdev_info(dev->net, "entering SUSPEND1 mode\n");
1571 return smsc95xx_enter_suspend1(dev);
1574 /* enable PHY wakeup events so we remote wakeup if cable is pulled */
1575 ret = smsc95xx_enable_phy_wakeup_interrupts(dev,
1576 PHY_INT_MASK_LINK_DOWN_);
1578 netdev_warn(dev->net, "error enabling PHY wakeup ints\n");
1582 netdev_dbg(dev->net, "autosuspend entering SUSPEND3\n");
1583 return smsc95xx_enter_suspend3(dev);
1586 static int smsc95xx_suspend(struct usb_interface *intf, pm_message_t message)
1588 struct usbnet *dev = usb_get_intfdata(intf);
1589 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1593 ret = usbnet_suspend(intf, message);
1595 netdev_warn(dev->net, "usbnet_suspend error\n");
1599 if (pdata->suspend_flags) {
1600 netdev_warn(dev->net, "error during last resume\n");
1601 pdata->suspend_flags = 0;
1604 /* determine if link is up using only _nopm functions */
1605 link_up = smsc95xx_link_ok_nopm(dev);
1607 if (message.event == PM_EVENT_AUTO_SUSPEND &&
1608 (pdata->features & FEATURE_REMOTE_WAKEUP)) {
1609 ret = smsc95xx_autosuspend(dev, link_up);
1613 /* if we get this far we're not autosuspending */
1614 /* if no wol options set, or if link is down and we're not waking on
1615 * PHY activity, enter lowest power SUSPEND2 mode
1617 if (!(pdata->wolopts & SUPPORTED_WAKE) ||
1618 !(link_up || (pdata->wolopts & WAKE_PHY))) {
1619 netdev_info(dev->net, "entering SUSPEND2 mode\n");
1621 /* disable energy detect (link up) & wake up events */
1622 ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
1626 val &= ~(WUCSR_MPEN_ | WUCSR_WAKE_EN_);
1628 ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
1632 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1636 val &= ~(PM_CTL_ED_EN_ | PM_CTL_WOL_EN_);
1638 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1642 ret = smsc95xx_enter_suspend2(dev);
1646 if (pdata->wolopts & WAKE_PHY) {
1647 ret = smsc95xx_enable_phy_wakeup_interrupts(dev,
1648 (PHY_INT_MASK_ANEG_COMP_ | PHY_INT_MASK_LINK_DOWN_));
1650 netdev_warn(dev->net, "error enabling PHY wakeup ints\n");
1654 /* if link is down then configure EDPD and enter SUSPEND1,
1655 * otherwise enter SUSPEND0 below
1658 netdev_info(dev->net, "entering SUSPEND1 mode\n");
1659 ret = smsc95xx_enter_suspend1(dev);
1664 if (pdata->wolopts & (WAKE_BCAST | WAKE_MCAST | WAKE_ARP | WAKE_UCAST)) {
1665 u32 *filter_mask = kzalloc(sizeof(u32) * 32, GFP_KERNEL);
1669 int wuff_filter_count =
1670 (pdata->features & FEATURE_8_WAKEUP_FILTERS) ?
1671 LAN9500A_WUFF_NUM : LAN9500_WUFF_NUM;
1675 netdev_warn(dev->net, "Unable to allocate filter_mask\n");
1680 memset(command, 0, sizeof(command));
1681 memset(offset, 0, sizeof(offset));
1682 memset(crc, 0, sizeof(crc));
1684 if (pdata->wolopts & WAKE_BCAST) {
1685 const u8 bcast[] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
1686 netdev_info(dev->net, "enabling broadcast detection\n");
1687 filter_mask[filter * 4] = 0x003F;
1688 filter_mask[filter * 4 + 1] = 0x00;
1689 filter_mask[filter * 4 + 2] = 0x00;
1690 filter_mask[filter * 4 + 3] = 0x00;
1691 command[filter/4] |= 0x05UL << ((filter % 4) * 8);
1692 offset[filter/4] |= 0x00 << ((filter % 4) * 8);
1693 crc[filter/2] |= smsc_crc(bcast, 6, filter);
1697 if (pdata->wolopts & WAKE_MCAST) {
1698 const u8 mcast[] = {0x01, 0x00, 0x5E};
1699 netdev_info(dev->net, "enabling multicast detection\n");
1700 filter_mask[filter * 4] = 0x0007;
1701 filter_mask[filter * 4 + 1] = 0x00;
1702 filter_mask[filter * 4 + 2] = 0x00;
1703 filter_mask[filter * 4 + 3] = 0x00;
1704 command[filter/4] |= 0x09UL << ((filter % 4) * 8);
1705 offset[filter/4] |= 0x00 << ((filter % 4) * 8);
1706 crc[filter/2] |= smsc_crc(mcast, 3, filter);
1710 if (pdata->wolopts & WAKE_ARP) {
1711 const u8 arp[] = {0x08, 0x06};
1712 netdev_info(dev->net, "enabling ARP detection\n");
1713 filter_mask[filter * 4] = 0x0003;
1714 filter_mask[filter * 4 + 1] = 0x00;
1715 filter_mask[filter * 4 + 2] = 0x00;
1716 filter_mask[filter * 4 + 3] = 0x00;
1717 command[filter/4] |= 0x05UL << ((filter % 4) * 8);
1718 offset[filter/4] |= 0x0C << ((filter % 4) * 8);
1719 crc[filter/2] |= smsc_crc(arp, 2, filter);
1723 if (pdata->wolopts & WAKE_UCAST) {
1724 netdev_info(dev->net, "enabling unicast detection\n");
1725 filter_mask[filter * 4] = 0x003F;
1726 filter_mask[filter * 4 + 1] = 0x00;
1727 filter_mask[filter * 4 + 2] = 0x00;
1728 filter_mask[filter * 4 + 3] = 0x00;
1729 command[filter/4] |= 0x01UL << ((filter % 4) * 8);
1730 offset[filter/4] |= 0x00 << ((filter % 4) * 8);
1731 crc[filter/2] |= smsc_crc(dev->net->dev_addr, ETH_ALEN, filter);
1735 for (i = 0; i < (wuff_filter_count * 4); i++) {
1736 ret = smsc95xx_write_reg_nopm(dev, WUFF, filter_mask[i]);
1744 for (i = 0; i < (wuff_filter_count / 4); i++) {
1745 ret = smsc95xx_write_reg_nopm(dev, WUFF, command[i]);
1750 for (i = 0; i < (wuff_filter_count / 4); i++) {
1751 ret = smsc95xx_write_reg_nopm(dev, WUFF, offset[i]);
1756 for (i = 0; i < (wuff_filter_count / 2); i++) {
1757 ret = smsc95xx_write_reg_nopm(dev, WUFF, crc[i]);
1762 /* clear any pending pattern match packet status */
1763 ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
1769 ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
1774 if (pdata->wolopts & WAKE_MAGIC) {
1775 /* clear any pending magic packet status */
1776 ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
1782 ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
1787 /* enable/disable wakeup sources */
1788 ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
1792 if (pdata->wolopts & (WAKE_BCAST | WAKE_MCAST | WAKE_ARP | WAKE_UCAST)) {
1793 netdev_info(dev->net, "enabling pattern match wakeup\n");
1794 val |= WUCSR_WAKE_EN_;
1796 netdev_info(dev->net, "disabling pattern match wakeup\n");
1797 val &= ~WUCSR_WAKE_EN_;
1800 if (pdata->wolopts & WAKE_MAGIC) {
1801 netdev_info(dev->net, "enabling magic packet wakeup\n");
1804 netdev_info(dev->net, "disabling magic packet wakeup\n");
1805 val &= ~WUCSR_MPEN_;
1808 ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
1812 /* enable wol wakeup source */
1813 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1817 val |= PM_CTL_WOL_EN_;
1819 /* phy energy detect wakeup source */
1820 if (pdata->wolopts & WAKE_PHY)
1821 val |= PM_CTL_ED_EN_;
1823 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1827 /* enable receiver to enable frame reception */
1828 smsc95xx_start_rx_path(dev, 1);
1830 /* some wol options are enabled, so enter SUSPEND0 */
1831 netdev_info(dev->net, "entering SUSPEND0 mode\n");
1832 ret = smsc95xx_enter_suspend0(dev);
1836 * TODO: resume() might need to handle the suspend failure
1839 if (ret && PMSG_IS_AUTO(message))
1840 usbnet_resume(intf);
1844 static int smsc95xx_resume(struct usb_interface *intf)
1846 struct usbnet *dev = usb_get_intfdata(intf);
1847 struct smsc95xx_priv *pdata;
1853 pdata = (struct smsc95xx_priv *)(dev->data[0]);
1854 suspend_flags = pdata->suspend_flags;
1856 netdev_dbg(dev->net, "resume suspend_flags=0x%02x\n", suspend_flags);
1858 /* do this first to ensure it's cleared even in error case */
1859 pdata->suspend_flags = 0;
1860 schedule_delayed_work(&pdata->carrier_check, CARRIER_CHECK_DELAY);
1862 if (suspend_flags & SUSPEND_ALLMODES) {
1863 /* clear wake-up sources */
1864 ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
1868 val &= ~(WUCSR_WAKE_EN_ | WUCSR_MPEN_);
1870 ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
1874 /* clear wake-up status */
1875 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1879 val &= ~PM_CTL_WOL_EN_;
1880 val |= PM_CTL_WUPS_;
1882 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1887 ret = usbnet_resume(intf);
1889 netdev_warn(dev->net, "usbnet_resume error\n");
1894 static int smsc95xx_reset_resume(struct usb_interface *intf)
1896 struct usbnet *dev = usb_get_intfdata(intf);
1899 ret = smsc95xx_reset(dev);
1903 return smsc95xx_resume(intf);
1906 static void smsc95xx_rx_csum_offload(struct sk_buff *skb)
1908 skb->csum = *(u16 *)(skb_tail_pointer(skb) - 2);
1909 skb->ip_summed = CHECKSUM_COMPLETE;
1910 skb_trim(skb, skb->len - 2);
1913 static int smsc95xx_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
1915 /* This check is no longer done by usbnet */
1916 if (skb->len < dev->net->hard_header_len)
1919 while (skb->len > 0) {
1920 u32 header, align_count;
1921 struct sk_buff *ax_skb;
1922 unsigned char *packet;
1925 memcpy(&header, skb->data, sizeof(header));
1926 le32_to_cpus(&header);
1927 skb_pull(skb, 4 + NET_IP_ALIGN);
1930 /* get the packet length */
1931 size = (u16)((header & RX_STS_FL_) >> 16);
1932 align_count = (4 - ((size + NET_IP_ALIGN) % 4)) % 4;
1934 if (unlikely(header & RX_STS_ES_)) {
1935 netif_dbg(dev, rx_err, dev->net,
1936 "Error header=0x%08x\n", header);
1937 dev->net->stats.rx_errors++;
1938 dev->net->stats.rx_dropped++;
1940 if (header & RX_STS_CRC_) {
1941 dev->net->stats.rx_crc_errors++;
1943 if (header & (RX_STS_TL_ | RX_STS_RF_))
1944 dev->net->stats.rx_frame_errors++;
1946 if ((header & RX_STS_LE_) &&
1947 (!(header & RX_STS_FT_)))
1948 dev->net->stats.rx_length_errors++;
1951 /* ETH_FRAME_LEN + 4(CRC) + 2(COE) + 4(Vlan) */
1952 if (unlikely(size > (ETH_FRAME_LEN + 12))) {
1953 netif_dbg(dev, rx_err, dev->net,
1954 "size err header=0x%08x\n", header);
1958 /* last frame in this batch */
1959 if (skb->len == size) {
1960 if (dev->net->features & NETIF_F_RXCSUM)
1961 smsc95xx_rx_csum_offload(skb);
1962 skb_trim(skb, skb->len - 4); /* remove fcs */
1963 skb->truesize = size + sizeof(struct sk_buff);
1968 ax_skb = skb_clone(skb, GFP_ATOMIC);
1969 if (unlikely(!ax_skb)) {
1970 netdev_warn(dev->net, "Error allocating skb\n");
1975 ax_skb->data = packet;
1976 skb_set_tail_pointer(ax_skb, size);
1978 if (dev->net->features & NETIF_F_RXCSUM)
1979 smsc95xx_rx_csum_offload(ax_skb);
1980 skb_trim(ax_skb, ax_skb->len - 4); /* remove fcs */
1981 ax_skb->truesize = size + sizeof(struct sk_buff);
1983 usbnet_skb_return(dev, ax_skb);
1986 skb_pull(skb, size);
1988 /* padding bytes before the next frame starts */
1990 skb_pull(skb, align_count);
1996 static u32 smsc95xx_calc_csum_preamble(struct sk_buff *skb)
1998 u16 low_16 = (u16)skb_checksum_start_offset(skb);
1999 u16 high_16 = low_16 + skb->csum_offset;
2000 return (high_16 << 16) | low_16;
2003 static struct sk_buff *smsc95xx_tx_fixup(struct usbnet *dev,
2004 struct sk_buff *skb, gfp_t flags)
2006 bool csum = skb->ip_summed == CHECKSUM_PARTIAL;
2007 int overhead = csum ? SMSC95XX_TX_OVERHEAD_CSUM : SMSC95XX_TX_OVERHEAD;
2008 u32 tx_cmd_a, tx_cmd_b;
2010 /* We do not advertise SG, so skbs should be already linearized */
2011 BUG_ON(skb_shinfo(skb)->nr_frags);
2013 /* Make writable and expand header space by overhead if required */
2014 if (skb_cow_head(skb, overhead)) {
2015 /* Must deallocate here as returning NULL to indicate error
2016 * means the skb won't be deallocated in the caller.
2018 dev_kfree_skb_any(skb);
2023 if (skb->len <= 45) {
2024 /* workaround - hardware tx checksum does not work
2025 * properly with extremely small packets */
2026 long csstart = skb_checksum_start_offset(skb);
2027 __wsum calc = csum_partial(skb->data + csstart,
2028 skb->len - csstart, 0);
2029 *((__sum16 *)(skb->data + csstart
2030 + skb->csum_offset)) = csum_fold(calc);
2034 u32 csum_preamble = smsc95xx_calc_csum_preamble(skb);
2036 cpu_to_le32s(&csum_preamble);
2037 memcpy(skb->data, &csum_preamble, 4);
2042 tx_cmd_b = (u32)(skb->len - 4);
2044 tx_cmd_b |= TX_CMD_B_CSUM_ENABLE;
2045 cpu_to_le32s(&tx_cmd_b);
2046 memcpy(skb->data, &tx_cmd_b, 4);
2049 tx_cmd_a = (u32)(skb->len - 8) | TX_CMD_A_FIRST_SEG_ |
2051 cpu_to_le32s(&tx_cmd_a);
2052 memcpy(skb->data, &tx_cmd_a, 4);
2057 static int smsc95xx_manage_power(struct usbnet *dev, int on)
2059 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
2061 dev->intf->needs_remote_wakeup = on;
2063 if (pdata->features & FEATURE_REMOTE_WAKEUP)
2066 /* this chip revision isn't capable of remote wakeup */
2067 netdev_info(dev->net, "hardware isn't capable of remote wakeup\n");
2070 usb_autopm_get_interface_no_resume(dev->intf);
2072 usb_autopm_put_interface(dev->intf);
2077 static const struct driver_info smsc95xx_info = {
2078 .description = "smsc95xx USB 2.0 Ethernet",
2079 .bind = smsc95xx_bind,
2080 .unbind = smsc95xx_unbind,
2081 .link_reset = smsc95xx_link_reset,
2082 .reset = smsc95xx_reset,
2083 .rx_fixup = smsc95xx_rx_fixup,
2084 .tx_fixup = smsc95xx_tx_fixup,
2085 .status = smsc95xx_status,
2086 .manage_power = smsc95xx_manage_power,
2087 .flags = FLAG_ETHER | FLAG_SEND_ZLP | FLAG_LINK_INTR,
2090 static const struct usb_device_id products[] = {
2092 /* SMSC9500 USB Ethernet Device */
2093 USB_DEVICE(0x0424, 0x9500),
2094 .driver_info = (unsigned long) &smsc95xx_info,
2097 /* SMSC9505 USB Ethernet Device */
2098 USB_DEVICE(0x0424, 0x9505),
2099 .driver_info = (unsigned long) &smsc95xx_info,
2102 /* SMSC9500A USB Ethernet Device */
2103 USB_DEVICE(0x0424, 0x9E00),
2104 .driver_info = (unsigned long) &smsc95xx_info,
2107 /* SMSC9505A USB Ethernet Device */
2108 USB_DEVICE(0x0424, 0x9E01),
2109 .driver_info = (unsigned long) &smsc95xx_info,
2112 /* SMSC9512/9514 USB Hub & Ethernet Device */
2113 USB_DEVICE(0x0424, 0xec00),
2114 .driver_info = (unsigned long) &smsc95xx_info,
2117 /* SMSC9500 USB Ethernet Device (SAL10) */
2118 USB_DEVICE(0x0424, 0x9900),
2119 .driver_info = (unsigned long) &smsc95xx_info,
2122 /* SMSC9505 USB Ethernet Device (SAL10) */
2123 USB_DEVICE(0x0424, 0x9901),
2124 .driver_info = (unsigned long) &smsc95xx_info,
2127 /* SMSC9500A USB Ethernet Device (SAL10) */
2128 USB_DEVICE(0x0424, 0x9902),
2129 .driver_info = (unsigned long) &smsc95xx_info,
2132 /* SMSC9505A USB Ethernet Device (SAL10) */
2133 USB_DEVICE(0x0424, 0x9903),
2134 .driver_info = (unsigned long) &smsc95xx_info,
2137 /* SMSC9512/9514 USB Hub & Ethernet Device (SAL10) */
2138 USB_DEVICE(0x0424, 0x9904),
2139 .driver_info = (unsigned long) &smsc95xx_info,
2142 /* SMSC9500A USB Ethernet Device (HAL) */
2143 USB_DEVICE(0x0424, 0x9905),
2144 .driver_info = (unsigned long) &smsc95xx_info,
2147 /* SMSC9505A USB Ethernet Device (HAL) */
2148 USB_DEVICE(0x0424, 0x9906),
2149 .driver_info = (unsigned long) &smsc95xx_info,
2152 /* SMSC9500 USB Ethernet Device (Alternate ID) */
2153 USB_DEVICE(0x0424, 0x9907),
2154 .driver_info = (unsigned long) &smsc95xx_info,
2157 /* SMSC9500A USB Ethernet Device (Alternate ID) */
2158 USB_DEVICE(0x0424, 0x9908),
2159 .driver_info = (unsigned long) &smsc95xx_info,
2162 /* SMSC9512/9514 USB Hub & Ethernet Device (Alternate ID) */
2163 USB_DEVICE(0x0424, 0x9909),
2164 .driver_info = (unsigned long) &smsc95xx_info,
2167 /* SMSC LAN9530 USB Ethernet Device */
2168 USB_DEVICE(0x0424, 0x9530),
2169 .driver_info = (unsigned long) &smsc95xx_info,
2172 /* SMSC LAN9730 USB Ethernet Device */
2173 USB_DEVICE(0x0424, 0x9730),
2174 .driver_info = (unsigned long) &smsc95xx_info,
2177 /* SMSC LAN89530 USB Ethernet Device */
2178 USB_DEVICE(0x0424, 0x9E08),
2179 .driver_info = (unsigned long) &smsc95xx_info,
2183 MODULE_DEVICE_TABLE(usb, products);
2185 static struct usb_driver smsc95xx_driver = {
2187 .id_table = products,
2188 .probe = usbnet_probe,
2189 .suspend = smsc95xx_suspend,
2190 .resume = smsc95xx_resume,
2191 .reset_resume = smsc95xx_reset_resume,
2192 .disconnect = usbnet_disconnect,
2193 .disable_hub_initiated_lpm = 1,
2194 .supports_autosuspend = 1,
2197 module_usb_driver(smsc95xx_driver);
2199 MODULE_AUTHOR("Nancy Lin");
2201 MODULE_DESCRIPTION("SMSC95XX USB 2.0 Ethernet Devices");
2202 MODULE_LICENSE("GPL");