diff options
Diffstat (limited to 'drivers/net/mv643xx_eth.c')
-rw-r--r-- | drivers/net/mv643xx_eth.c | 120 |
1 files changed, 47 insertions, 73 deletions
diff --git a/drivers/net/mv643xx_eth.c b/drivers/net/mv643xx_eth.c index 2d488abcf62d..a5d9b1c310b3 100644 --- a/drivers/net/mv643xx_eth.c +++ b/drivers/net/mv643xx_eth.c | |||
@@ -35,6 +35,8 @@ | |||
35 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 35 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
36 | */ | 36 | */ |
37 | 37 | ||
38 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
39 | |||
38 | #include <linux/init.h> | 40 | #include <linux/init.h> |
39 | #include <linux/dma-mapping.h> | 41 | #include <linux/dma-mapping.h> |
40 | #include <linux/in.h> | 42 | #include <linux/in.h> |
@@ -627,9 +629,8 @@ err: | |||
627 | if ((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC)) != | 629 | if ((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC)) != |
628 | (RX_FIRST_DESC | RX_LAST_DESC)) { | 630 | (RX_FIRST_DESC | RX_LAST_DESC)) { |
629 | if (net_ratelimit()) | 631 | if (net_ratelimit()) |
630 | dev_printk(KERN_ERR, &mp->dev->dev, | 632 | netdev_err(mp->dev, |
631 | "received packet spanning " | 633 | "received packet spanning multiple descriptors\n"); |
632 | "multiple descriptors\n"); | ||
633 | } | 634 | } |
634 | 635 | ||
635 | if (cmd_sts & ERROR_SUMMARY) | 636 | if (cmd_sts & ERROR_SUMMARY) |
@@ -868,15 +869,14 @@ static netdev_tx_t mv643xx_eth_xmit(struct sk_buff *skb, struct net_device *dev) | |||
868 | 869 | ||
869 | if (has_tiny_unaligned_frags(skb) && __skb_linearize(skb)) { | 870 | if (has_tiny_unaligned_frags(skb) && __skb_linearize(skb)) { |
870 | txq->tx_dropped++; | 871 | txq->tx_dropped++; |
871 | dev_printk(KERN_DEBUG, &dev->dev, | 872 | netdev_printk(KERN_DEBUG, dev, |
872 | "failed to linearize skb with tiny " | 873 | "failed to linearize skb with tiny unaligned fragment\n"); |
873 | "unaligned fragment\n"); | ||
874 | return NETDEV_TX_BUSY; | 874 | return NETDEV_TX_BUSY; |
875 | } | 875 | } |
876 | 876 | ||
877 | if (txq->tx_ring_size - txq->tx_desc_count < MAX_SKB_FRAGS + 1) { | 877 | if (txq->tx_ring_size - txq->tx_desc_count < MAX_SKB_FRAGS + 1) { |
878 | if (net_ratelimit()) | 878 | if (net_ratelimit()) |
879 | dev_printk(KERN_ERR, &dev->dev, "tx queue full?!\n"); | 879 | netdev_err(dev, "tx queue full?!\n"); |
880 | kfree_skb(skb); | 880 | kfree_skb(skb); |
881 | return NETDEV_TX_OK; | 881 | return NETDEV_TX_OK; |
882 | } | 882 | } |
@@ -959,7 +959,7 @@ static int txq_reclaim(struct tx_queue *txq, int budget, int force) | |||
959 | skb = __skb_dequeue(&txq->tx_skb); | 959 | skb = __skb_dequeue(&txq->tx_skb); |
960 | 960 | ||
961 | if (cmd_sts & ERROR_SUMMARY) { | 961 | if (cmd_sts & ERROR_SUMMARY) { |
962 | dev_printk(KERN_INFO, &mp->dev->dev, "tx error\n"); | 962 | netdev_info(mp->dev, "tx error\n"); |
963 | mp->dev->stats.tx_errors++; | 963 | mp->dev->stats.tx_errors++; |
964 | } | 964 | } |
965 | 965 | ||
@@ -1122,20 +1122,20 @@ static int smi_bus_read(struct mii_bus *bus, int addr, int reg) | |||
1122 | int ret; | 1122 | int ret; |
1123 | 1123 | ||
1124 | if (smi_wait_ready(msp)) { | 1124 | if (smi_wait_ready(msp)) { |
1125 | printk(KERN_WARNING "mv643xx_eth: SMI bus busy timeout\n"); | 1125 | pr_warn("SMI bus busy timeout\n"); |
1126 | return -ETIMEDOUT; | 1126 | return -ETIMEDOUT; |
1127 | } | 1127 | } |
1128 | 1128 | ||
1129 | writel(SMI_OPCODE_READ | (reg << 21) | (addr << 16), smi_reg); | 1129 | writel(SMI_OPCODE_READ | (reg << 21) | (addr << 16), smi_reg); |
1130 | 1130 | ||
1131 | if (smi_wait_ready(msp)) { | 1131 | if (smi_wait_ready(msp)) { |
1132 | printk(KERN_WARNING "mv643xx_eth: SMI bus busy timeout\n"); | 1132 | pr_warn("SMI bus busy timeout\n"); |
1133 | return -ETIMEDOUT; | 1133 | return -ETIMEDOUT; |
1134 | } | 1134 | } |
1135 | 1135 | ||
1136 | ret = readl(smi_reg); | 1136 | ret = readl(smi_reg); |
1137 | if (!(ret & SMI_READ_VALID)) { | 1137 | if (!(ret & SMI_READ_VALID)) { |
1138 | printk(KERN_WARNING "mv643xx_eth: SMI bus read not valid\n"); | 1138 | pr_warn("SMI bus read not valid\n"); |
1139 | return -ENODEV; | 1139 | return -ENODEV; |
1140 | } | 1140 | } |
1141 | 1141 | ||
@@ -1148,7 +1148,7 @@ static int smi_bus_write(struct mii_bus *bus, int addr, int reg, u16 val) | |||
1148 | void __iomem *smi_reg = msp->base + SMI_REG; | 1148 | void __iomem *smi_reg = msp->base + SMI_REG; |
1149 | 1149 | ||
1150 | if (smi_wait_ready(msp)) { | 1150 | if (smi_wait_ready(msp)) { |
1151 | printk(KERN_WARNING "mv643xx_eth: SMI bus busy timeout\n"); | 1151 | pr_warn("SMI bus busy timeout\n"); |
1152 | return -ETIMEDOUT; | 1152 | return -ETIMEDOUT; |
1153 | } | 1153 | } |
1154 | 1154 | ||
@@ -1156,7 +1156,7 @@ static int smi_bus_write(struct mii_bus *bus, int addr, int reg, u16 val) | |||
1156 | (addr << 16) | (val & 0xffff), smi_reg); | 1156 | (addr << 16) | (val & 0xffff), smi_reg); |
1157 | 1157 | ||
1158 | if (smi_wait_ready(msp)) { | 1158 | if (smi_wait_ready(msp)) { |
1159 | printk(KERN_WARNING "mv643xx_eth: SMI bus busy timeout\n"); | 1159 | pr_warn("SMI bus busy timeout\n"); |
1160 | return -ETIMEDOUT; | 1160 | return -ETIMEDOUT; |
1161 | } | 1161 | } |
1162 | 1162 | ||
@@ -1444,13 +1444,13 @@ mv643xx_eth_get_settings_phyless(struct mv643xx_eth_private *mp, | |||
1444 | cmd->advertising = ADVERTISED_MII; | 1444 | cmd->advertising = ADVERTISED_MII; |
1445 | switch (port_status & PORT_SPEED_MASK) { | 1445 | switch (port_status & PORT_SPEED_MASK) { |
1446 | case PORT_SPEED_10: | 1446 | case PORT_SPEED_10: |
1447 | cmd->speed = SPEED_10; | 1447 | ethtool_cmd_speed_set(cmd, SPEED_10); |
1448 | break; | 1448 | break; |
1449 | case PORT_SPEED_100: | 1449 | case PORT_SPEED_100: |
1450 | cmd->speed = SPEED_100; | 1450 | ethtool_cmd_speed_set(cmd, SPEED_100); |
1451 | break; | 1451 | break; |
1452 | case PORT_SPEED_1000: | 1452 | case PORT_SPEED_1000: |
1453 | cmd->speed = SPEED_1000; | 1453 | ethtool_cmd_speed_set(cmd, SPEED_1000); |
1454 | break; | 1454 | break; |
1455 | default: | 1455 | default: |
1456 | cmd->speed = -1; | 1456 | cmd->speed = -1; |
@@ -1514,11 +1514,6 @@ static int mv643xx_eth_nway_reset(struct net_device *dev) | |||
1514 | return genphy_restart_aneg(mp->phy); | 1514 | return genphy_restart_aneg(mp->phy); |
1515 | } | 1515 | } |
1516 | 1516 | ||
1517 | static u32 mv643xx_eth_get_link(struct net_device *dev) | ||
1518 | { | ||
1519 | return !!netif_carrier_ok(dev); | ||
1520 | } | ||
1521 | |||
1522 | static int | 1517 | static int |
1523 | mv643xx_eth_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec) | 1518 | mv643xx_eth_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec) |
1524 | { | 1519 | { |
@@ -1571,9 +1566,8 @@ mv643xx_eth_set_ringparam(struct net_device *dev, struct ethtool_ringparam *er) | |||
1571 | if (netif_running(dev)) { | 1566 | if (netif_running(dev)) { |
1572 | mv643xx_eth_stop(dev); | 1567 | mv643xx_eth_stop(dev); |
1573 | if (mv643xx_eth_open(dev)) { | 1568 | if (mv643xx_eth_open(dev)) { |
1574 | dev_printk(KERN_ERR, &dev->dev, | 1569 | netdev_err(dev, |
1575 | "fatal error on re-opening device after " | 1570 | "fatal error on re-opening device after ring param change\n"); |
1576 | "ring param change\n"); | ||
1577 | return -ENOMEM; | 1571 | return -ENOMEM; |
1578 | } | 1572 | } |
1579 | } | 1573 | } |
@@ -1581,18 +1575,12 @@ mv643xx_eth_set_ringparam(struct net_device *dev, struct ethtool_ringparam *er) | |||
1581 | return 0; | 1575 | return 0; |
1582 | } | 1576 | } |
1583 | 1577 | ||
1584 | static u32 | ||
1585 | mv643xx_eth_get_rx_csum(struct net_device *dev) | ||
1586 | { | ||
1587 | struct mv643xx_eth_private *mp = netdev_priv(dev); | ||
1588 | |||
1589 | return !!(rdlp(mp, PORT_CONFIG) & 0x02000000); | ||
1590 | } | ||
1591 | 1578 | ||
1592 | static int | 1579 | static int |
1593 | mv643xx_eth_set_rx_csum(struct net_device *dev, u32 rx_csum) | 1580 | mv643xx_eth_set_features(struct net_device *dev, u32 features) |
1594 | { | 1581 | { |
1595 | struct mv643xx_eth_private *mp = netdev_priv(dev); | 1582 | struct mv643xx_eth_private *mp = netdev_priv(dev); |
1583 | u32 rx_csum = features & NETIF_F_RXCSUM; | ||
1596 | 1584 | ||
1597 | wrlp(mp, PORT_CONFIG, rx_csum ? 0x02000000 : 0x00000000); | 1585 | wrlp(mp, PORT_CONFIG, rx_csum ? 0x02000000 : 0x00000000); |
1598 | 1586 | ||
@@ -1640,11 +1628,6 @@ static void mv643xx_eth_get_ethtool_stats(struct net_device *dev, | |||
1640 | } | 1628 | } |
1641 | } | 1629 | } |
1642 | 1630 | ||
1643 | static int mv643xx_eth_set_flags(struct net_device *dev, u32 data) | ||
1644 | { | ||
1645 | return ethtool_op_set_flags(dev, data, ETH_FLAG_LRO); | ||
1646 | } | ||
1647 | |||
1648 | static int mv643xx_eth_get_sset_count(struct net_device *dev, int sset) | 1631 | static int mv643xx_eth_get_sset_count(struct net_device *dev, int sset) |
1649 | { | 1632 | { |
1650 | if (sset == ETH_SS_STATS) | 1633 | if (sset == ETH_SS_STATS) |
@@ -1658,19 +1641,13 @@ static const struct ethtool_ops mv643xx_eth_ethtool_ops = { | |||
1658 | .set_settings = mv643xx_eth_set_settings, | 1641 | .set_settings = mv643xx_eth_set_settings, |
1659 | .get_drvinfo = mv643xx_eth_get_drvinfo, | 1642 | .get_drvinfo = mv643xx_eth_get_drvinfo, |
1660 | .nway_reset = mv643xx_eth_nway_reset, | 1643 | .nway_reset = mv643xx_eth_nway_reset, |
1661 | .get_link = mv643xx_eth_get_link, | 1644 | .get_link = ethtool_op_get_link, |
1662 | .get_coalesce = mv643xx_eth_get_coalesce, | 1645 | .get_coalesce = mv643xx_eth_get_coalesce, |
1663 | .set_coalesce = mv643xx_eth_set_coalesce, | 1646 | .set_coalesce = mv643xx_eth_set_coalesce, |
1664 | .get_ringparam = mv643xx_eth_get_ringparam, | 1647 | .get_ringparam = mv643xx_eth_get_ringparam, |
1665 | .set_ringparam = mv643xx_eth_set_ringparam, | 1648 | .set_ringparam = mv643xx_eth_set_ringparam, |
1666 | .get_rx_csum = mv643xx_eth_get_rx_csum, | ||
1667 | .set_rx_csum = mv643xx_eth_set_rx_csum, | ||
1668 | .set_tx_csum = ethtool_op_set_tx_csum, | ||
1669 | .set_sg = ethtool_op_set_sg, | ||
1670 | .get_strings = mv643xx_eth_get_strings, | 1649 | .get_strings = mv643xx_eth_get_strings, |
1671 | .get_ethtool_stats = mv643xx_eth_get_ethtool_stats, | 1650 | .get_ethtool_stats = mv643xx_eth_get_ethtool_stats, |
1672 | .get_flags = ethtool_op_get_flags, | ||
1673 | .set_flags = mv643xx_eth_set_flags, | ||
1674 | .get_sset_count = mv643xx_eth_get_sset_count, | 1651 | .get_sset_count = mv643xx_eth_get_sset_count, |
1675 | }; | 1652 | }; |
1676 | 1653 | ||
@@ -1879,7 +1856,7 @@ static int rxq_init(struct mv643xx_eth_private *mp, int index) | |||
1879 | } | 1856 | } |
1880 | 1857 | ||
1881 | if (rxq->rx_desc_area == NULL) { | 1858 | if (rxq->rx_desc_area == NULL) { |
1882 | dev_printk(KERN_ERR, &mp->dev->dev, | 1859 | netdev_err(mp->dev, |
1883 | "can't allocate rx ring (%d bytes)\n", size); | 1860 | "can't allocate rx ring (%d bytes)\n", size); |
1884 | goto out; | 1861 | goto out; |
1885 | } | 1862 | } |
@@ -1889,8 +1866,7 @@ static int rxq_init(struct mv643xx_eth_private *mp, int index) | |||
1889 | rxq->rx_skb = kmalloc(rxq->rx_ring_size * sizeof(*rxq->rx_skb), | 1866 | rxq->rx_skb = kmalloc(rxq->rx_ring_size * sizeof(*rxq->rx_skb), |
1890 | GFP_KERNEL); | 1867 | GFP_KERNEL); |
1891 | if (rxq->rx_skb == NULL) { | 1868 | if (rxq->rx_skb == NULL) { |
1892 | dev_printk(KERN_ERR, &mp->dev->dev, | 1869 | netdev_err(mp->dev, "can't allocate rx skb ring\n"); |
1893 | "can't allocate rx skb ring\n"); | ||
1894 | goto out_free; | 1870 | goto out_free; |
1895 | } | 1871 | } |
1896 | 1872 | ||
@@ -1949,8 +1925,7 @@ static void rxq_deinit(struct rx_queue *rxq) | |||
1949 | } | 1925 | } |
1950 | 1926 | ||
1951 | if (rxq->rx_desc_count) { | 1927 | if (rxq->rx_desc_count) { |
1952 | dev_printk(KERN_ERR, &mp->dev->dev, | 1928 | netdev_err(mp->dev, "error freeing rx ring -- %d skbs stuck\n", |
1953 | "error freeing rx ring -- %d skbs stuck\n", | ||
1954 | rxq->rx_desc_count); | 1929 | rxq->rx_desc_count); |
1955 | } | 1930 | } |
1956 | 1931 | ||
@@ -1992,7 +1967,7 @@ static int txq_init(struct mv643xx_eth_private *mp, int index) | |||
1992 | } | 1967 | } |
1993 | 1968 | ||
1994 | if (txq->tx_desc_area == NULL) { | 1969 | if (txq->tx_desc_area == NULL) { |
1995 | dev_printk(KERN_ERR, &mp->dev->dev, | 1970 | netdev_err(mp->dev, |
1996 | "can't allocate tx ring (%d bytes)\n", size); | 1971 | "can't allocate tx ring (%d bytes)\n", size); |
1997 | return -ENOMEM; | 1972 | return -ENOMEM; |
1998 | } | 1973 | } |
@@ -2098,7 +2073,7 @@ static void handle_link_event(struct mv643xx_eth_private *mp) | |||
2098 | if (netif_carrier_ok(dev)) { | 2073 | if (netif_carrier_ok(dev)) { |
2099 | int i; | 2074 | int i; |
2100 | 2075 | ||
2101 | printk(KERN_INFO "%s: link down\n", dev->name); | 2076 | netdev_info(dev, "link down\n"); |
2102 | 2077 | ||
2103 | netif_carrier_off(dev); | 2078 | netif_carrier_off(dev); |
2104 | 2079 | ||
@@ -2129,10 +2104,8 @@ static void handle_link_event(struct mv643xx_eth_private *mp) | |||
2129 | duplex = (port_status & FULL_DUPLEX) ? 1 : 0; | 2104 | duplex = (port_status & FULL_DUPLEX) ? 1 : 0; |
2130 | fc = (port_status & FLOW_CONTROL_ENABLED) ? 1 : 0; | 2105 | fc = (port_status & FLOW_CONTROL_ENABLED) ? 1 : 0; |
2131 | 2106 | ||
2132 | printk(KERN_INFO "%s: link up, %d Mb/s, %s duplex, " | 2107 | netdev_info(dev, "link up, %d Mb/s, %s duplex, flow control %sabled\n", |
2133 | "flow control %sabled\n", dev->name, | 2108 | speed, duplex ? "full" : "half", fc ? "en" : "dis"); |
2134 | speed, duplex ? "full" : "half", | ||
2135 | fc ? "en" : "dis"); | ||
2136 | 2109 | ||
2137 | if (!netif_carrier_ok(dev)) | 2110 | if (!netif_carrier_ok(dev)) |
2138 | netif_carrier_on(dev); | 2111 | netif_carrier_on(dev); |
@@ -2274,7 +2247,7 @@ static void port_start(struct mv643xx_eth_private *mp) | |||
2274 | * frames to RX queue #0, and include the pseudo-header when | 2247 | * frames to RX queue #0, and include the pseudo-header when |
2275 | * calculating receive checksums. | 2248 | * calculating receive checksums. |
2276 | */ | 2249 | */ |
2277 | wrlp(mp, PORT_CONFIG, 0x02000000); | 2250 | mv643xx_eth_set_features(mp->dev, mp->dev->features); |
2278 | 2251 | ||
2279 | /* | 2252 | /* |
2280 | * Treat BPDUs as normal multicasts, and disable partition mode. | 2253 | * Treat BPDUs as normal multicasts, and disable partition mode. |
@@ -2342,7 +2315,7 @@ static int mv643xx_eth_open(struct net_device *dev) | |||
2342 | err = request_irq(dev->irq, mv643xx_eth_irq, | 2315 | err = request_irq(dev->irq, mv643xx_eth_irq, |
2343 | IRQF_SHARED, dev->name, dev); | 2316 | IRQF_SHARED, dev->name, dev); |
2344 | if (err) { | 2317 | if (err) { |
2345 | dev_printk(KERN_ERR, &dev->dev, "can't assign irq\n"); | 2318 | netdev_err(dev, "can't assign irq\n"); |
2346 | return -EAGAIN; | 2319 | return -EAGAIN; |
2347 | } | 2320 | } |
2348 | 2321 | ||
@@ -2488,9 +2461,8 @@ static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu) | |||
2488 | */ | 2461 | */ |
2489 | mv643xx_eth_stop(dev); | 2462 | mv643xx_eth_stop(dev); |
2490 | if (mv643xx_eth_open(dev)) { | 2463 | if (mv643xx_eth_open(dev)) { |
2491 | dev_printk(KERN_ERR, &dev->dev, | 2464 | netdev_err(dev, |
2492 | "fatal error on re-opening device after " | 2465 | "fatal error on re-opening device after MTU change\n"); |
2493 | "MTU change\n"); | ||
2494 | } | 2466 | } |
2495 | 2467 | ||
2496 | return 0; | 2468 | return 0; |
@@ -2513,7 +2485,7 @@ static void mv643xx_eth_tx_timeout(struct net_device *dev) | |||
2513 | { | 2485 | { |
2514 | struct mv643xx_eth_private *mp = netdev_priv(dev); | 2486 | struct mv643xx_eth_private *mp = netdev_priv(dev); |
2515 | 2487 | ||
2516 | dev_printk(KERN_INFO, &dev->dev, "tx timeout\n"); | 2488 | netdev_info(dev, "tx timeout\n"); |
2517 | 2489 | ||
2518 | schedule_work(&mp->tx_timeout_task); | 2490 | schedule_work(&mp->tx_timeout_task); |
2519 | } | 2491 | } |
@@ -2608,8 +2580,8 @@ static int mv643xx_eth_shared_probe(struct platform_device *pdev) | |||
2608 | int ret; | 2580 | int ret; |
2609 | 2581 | ||
2610 | if (!mv643xx_eth_version_printed++) | 2582 | if (!mv643xx_eth_version_printed++) |
2611 | printk(KERN_NOTICE "MV-643xx 10/100/1000 ethernet " | 2583 | pr_notice("MV-643xx 10/100/1000 ethernet driver version %s\n", |
2612 | "driver version %s\n", mv643xx_eth_driver_version); | 2584 | mv643xx_eth_driver_version); |
2613 | 2585 | ||
2614 | ret = -EINVAL; | 2586 | ret = -EINVAL; |
2615 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 2587 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
@@ -2859,6 +2831,7 @@ static const struct net_device_ops mv643xx_eth_netdev_ops = { | |||
2859 | .ndo_validate_addr = eth_validate_addr, | 2831 | .ndo_validate_addr = eth_validate_addr, |
2860 | .ndo_do_ioctl = mv643xx_eth_ioctl, | 2832 | .ndo_do_ioctl = mv643xx_eth_ioctl, |
2861 | .ndo_change_mtu = mv643xx_eth_change_mtu, | 2833 | .ndo_change_mtu = mv643xx_eth_change_mtu, |
2834 | .ndo_set_features = mv643xx_eth_set_features, | ||
2862 | .ndo_tx_timeout = mv643xx_eth_tx_timeout, | 2835 | .ndo_tx_timeout = mv643xx_eth_tx_timeout, |
2863 | .ndo_get_stats = mv643xx_eth_get_stats, | 2836 | .ndo_get_stats = mv643xx_eth_get_stats, |
2864 | #ifdef CONFIG_NET_POLL_CONTROLLER | 2837 | #ifdef CONFIG_NET_POLL_CONTROLLER |
@@ -2876,14 +2849,12 @@ static int mv643xx_eth_probe(struct platform_device *pdev) | |||
2876 | 2849 | ||
2877 | pd = pdev->dev.platform_data; | 2850 | pd = pdev->dev.platform_data; |
2878 | if (pd == NULL) { | 2851 | if (pd == NULL) { |
2879 | dev_printk(KERN_ERR, &pdev->dev, | 2852 | dev_err(&pdev->dev, "no mv643xx_eth_platform_data\n"); |
2880 | "no mv643xx_eth_platform_data\n"); | ||
2881 | return -ENODEV; | 2853 | return -ENODEV; |
2882 | } | 2854 | } |
2883 | 2855 | ||
2884 | if (pd->shared == NULL) { | 2856 | if (pd->shared == NULL) { |
2885 | dev_printk(KERN_ERR, &pdev->dev, | 2857 | dev_err(&pdev->dev, "no mv643xx_eth_platform_data->shared\n"); |
2886 | "no mv643xx_eth_platform_data->shared\n"); | ||
2887 | return -ENODEV; | 2858 | return -ENODEV; |
2888 | } | 2859 | } |
2889 | 2860 | ||
@@ -2901,7 +2872,8 @@ static int mv643xx_eth_probe(struct platform_device *pdev) | |||
2901 | mp->dev = dev; | 2872 | mp->dev = dev; |
2902 | 2873 | ||
2903 | set_params(mp, pd); | 2874 | set_params(mp, pd); |
2904 | dev->real_num_tx_queues = mp->txq_count; | 2875 | netif_set_real_num_tx_queues(dev, mp->txq_count); |
2876 | netif_set_real_num_rx_queues(dev, mp->rxq_count); | ||
2905 | 2877 | ||
2906 | if (pd->phy_addr != MV643XX_ETH_PHY_NONE) | 2878 | if (pd->phy_addr != MV643XX_ETH_PHY_NONE) |
2907 | mp->phy = phy_scan(mp, pd->phy_addr); | 2879 | mp->phy = phy_scan(mp, pd->phy_addr); |
@@ -2942,7 +2914,9 @@ static int mv643xx_eth_probe(struct platform_device *pdev) | |||
2942 | dev->watchdog_timeo = 2 * HZ; | 2914 | dev->watchdog_timeo = 2 * HZ; |
2943 | dev->base_addr = 0; | 2915 | dev->base_addr = 0; |
2944 | 2916 | ||
2945 | dev->features = NETIF_F_SG | NETIF_F_IP_CSUM; | 2917 | dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | |
2918 | NETIF_F_RXCSUM | NETIF_F_LRO; | ||
2919 | dev->features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM; | ||
2946 | dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM; | 2920 | dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM; |
2947 | 2921 | ||
2948 | SET_NETDEV_DEV(dev, &pdev->dev); | 2922 | SET_NETDEV_DEV(dev, &pdev->dev); |
@@ -2961,11 +2935,11 @@ static int mv643xx_eth_probe(struct platform_device *pdev) | |||
2961 | if (err) | 2935 | if (err) |
2962 | goto out; | 2936 | goto out; |
2963 | 2937 | ||
2964 | dev_printk(KERN_NOTICE, &dev->dev, "port %d with MAC address %pM\n", | 2938 | netdev_notice(dev, "port %d with MAC address %pM\n", |
2965 | mp->port_num, dev->dev_addr); | 2939 | mp->port_num, dev->dev_addr); |
2966 | 2940 | ||
2967 | if (mp->tx_desc_sram_size > 0) | 2941 | if (mp->tx_desc_sram_size > 0) |
2968 | dev_printk(KERN_NOTICE, &dev->dev, "configured with sram\n"); | 2942 | netdev_notice(dev, "configured with sram\n"); |
2969 | 2943 | ||
2970 | return 0; | 2944 | return 0; |
2971 | 2945 | ||
@@ -2982,7 +2956,7 @@ static int mv643xx_eth_remove(struct platform_device *pdev) | |||
2982 | unregister_netdev(mp->dev); | 2956 | unregister_netdev(mp->dev); |
2983 | if (mp->phy != NULL) | 2957 | if (mp->phy != NULL) |
2984 | phy_detach(mp->phy); | 2958 | phy_detach(mp->phy); |
2985 | flush_scheduled_work(); | 2959 | cancel_work_sync(&mp->tx_timeout_task); |
2986 | free_netdev(mp->dev); | 2960 | free_netdev(mp->dev); |
2987 | 2961 | ||
2988 | platform_set_drvdata(pdev, NULL); | 2962 | platform_set_drvdata(pdev, NULL); |