aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/bcm63xx_enet.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/bcm63xx_enet.c')
-rw-r--r--drivers/net/bcm63xx_enet.c73
1 files changed, 34 insertions, 39 deletions
diff --git a/drivers/net/bcm63xx_enet.c b/drivers/net/bcm63xx_enet.c
index 0d2c5da08937..f1573d492e90 100644
--- a/drivers/net/bcm63xx_enet.c
+++ b/drivers/net/bcm63xx_enet.c
@@ -293,22 +293,22 @@ static int bcm_enet_receive_queue(struct net_device *dev, int budget)
293 /* if the packet does not have start of packet _and_ 293 /* if the packet does not have start of packet _and_
294 * end of packet flag set, then just recycle it */ 294 * end of packet flag set, then just recycle it */
295 if ((len_stat & DMADESC_ESOP_MASK) != DMADESC_ESOP_MASK) { 295 if ((len_stat & DMADESC_ESOP_MASK) != DMADESC_ESOP_MASK) {
296 priv->stats.rx_dropped++; 296 dev->stats.rx_dropped++;
297 continue; 297 continue;
298 } 298 }
299 299
300 /* recycle packet if it's marked as bad */ 300 /* recycle packet if it's marked as bad */
301 if (unlikely(len_stat & DMADESC_ERR_MASK)) { 301 if (unlikely(len_stat & DMADESC_ERR_MASK)) {
302 priv->stats.rx_errors++; 302 dev->stats.rx_errors++;
303 303
304 if (len_stat & DMADESC_OVSIZE_MASK) 304 if (len_stat & DMADESC_OVSIZE_MASK)
305 priv->stats.rx_length_errors++; 305 dev->stats.rx_length_errors++;
306 if (len_stat & DMADESC_CRC_MASK) 306 if (len_stat & DMADESC_CRC_MASK)
307 priv->stats.rx_crc_errors++; 307 dev->stats.rx_crc_errors++;
308 if (len_stat & DMADESC_UNDER_MASK) 308 if (len_stat & DMADESC_UNDER_MASK)
309 priv->stats.rx_frame_errors++; 309 dev->stats.rx_frame_errors++;
310 if (len_stat & DMADESC_OV_MASK) 310 if (len_stat & DMADESC_OV_MASK)
311 priv->stats.rx_fifo_errors++; 311 dev->stats.rx_fifo_errors++;
312 continue; 312 continue;
313 } 313 }
314 314
@@ -324,7 +324,7 @@ static int bcm_enet_receive_queue(struct net_device *dev, int budget)
324 nskb = netdev_alloc_skb_ip_align(dev, len); 324 nskb = netdev_alloc_skb_ip_align(dev, len);
325 if (!nskb) { 325 if (!nskb) {
326 /* forget packet, just rearm desc */ 326 /* forget packet, just rearm desc */
327 priv->stats.rx_dropped++; 327 dev->stats.rx_dropped++;
328 continue; 328 continue;
329 } 329 }
330 330
@@ -342,8 +342,8 @@ static int bcm_enet_receive_queue(struct net_device *dev, int budget)
342 342
343 skb_put(skb, len); 343 skb_put(skb, len);
344 skb->protocol = eth_type_trans(skb, dev); 344 skb->protocol = eth_type_trans(skb, dev);
345 priv->stats.rx_packets++; 345 dev->stats.rx_packets++;
346 priv->stats.rx_bytes += len; 346 dev->stats.rx_bytes += len;
347 netif_receive_skb(skb); 347 netif_receive_skb(skb);
348 348
349 } while (--budget > 0); 349 } while (--budget > 0);
@@ -403,7 +403,7 @@ static int bcm_enet_tx_reclaim(struct net_device *dev, int force)
403 spin_unlock(&priv->tx_lock); 403 spin_unlock(&priv->tx_lock);
404 404
405 if (desc->len_stat & DMADESC_UNDER_MASK) 405 if (desc->len_stat & DMADESC_UNDER_MASK)
406 priv->stats.tx_errors++; 406 dev->stats.tx_errors++;
407 407
408 dev_kfree_skb(skb); 408 dev_kfree_skb(skb);
409 released++; 409 released++;
@@ -563,8 +563,8 @@ static int bcm_enet_start_xmit(struct sk_buff *skb, struct net_device *dev)
563 if (!priv->tx_desc_count) 563 if (!priv->tx_desc_count)
564 netif_stop_queue(dev); 564 netif_stop_queue(dev);
565 565
566 priv->stats.tx_bytes += skb->len; 566 dev->stats.tx_bytes += skb->len;
567 priv->stats.tx_packets++; 567 dev->stats.tx_packets++;
568 ret = NETDEV_TX_OK; 568 ret = NETDEV_TX_OK;
569 569
570out_unlock: 570out_unlock:
@@ -597,7 +597,7 @@ static int bcm_enet_set_mac_address(struct net_device *dev, void *p)
597} 597}
598 598
599/* 599/*
600 * Change rx mode (promiscous/allmulti) and update multicast list 600 * Change rx mode (promiscuous/allmulti) and update multicast list
601 */ 601 */
602static void bcm_enet_set_multicast_list(struct net_device *dev) 602static void bcm_enet_set_multicast_list(struct net_device *dev)
603{ 603{
@@ -798,7 +798,7 @@ static int bcm_enet_open(struct net_device *dev)
798 snprintf(phy_id, sizeof(phy_id), PHY_ID_FMT, 798 snprintf(phy_id, sizeof(phy_id), PHY_ID_FMT,
799 priv->mac_id ? "1" : "0", priv->phy_id); 799 priv->mac_id ? "1" : "0", priv->phy_id);
800 800
801 phydev = phy_connect(dev, phy_id, &bcm_enet_adjust_phy_link, 0, 801 phydev = phy_connect(dev, phy_id, bcm_enet_adjust_phy_link, 0,
802 PHY_INTERFACE_MODE_MII); 802 PHY_INTERFACE_MODE_MII);
803 803
804 if (IS_ERR(phydev)) { 804 if (IS_ERR(phydev)) {
@@ -839,8 +839,8 @@ static int bcm_enet_open(struct net_device *dev)
839 if (ret) 839 if (ret)
840 goto out_phy_disconnect; 840 goto out_phy_disconnect;
841 841
842 ret = request_irq(priv->irq_rx, bcm_enet_isr_dma, 842 ret = request_irq(priv->irq_rx, bcm_enet_isr_dma, IRQF_DISABLED,
843 IRQF_SAMPLE_RANDOM | IRQF_DISABLED, dev->name, dev); 843 dev->name, dev);
844 if (ret) 844 if (ret)
845 goto out_freeirq; 845 goto out_freeirq;
846 846
@@ -1097,7 +1097,7 @@ static int bcm_enet_stop(struct net_device *dev)
1097 enet_dma_writel(priv, 0, ENETDMA_IRMASK_REG(priv->tx_chan)); 1097 enet_dma_writel(priv, 0, ENETDMA_IRMASK_REG(priv->tx_chan));
1098 1098
1099 /* make sure no mib update is scheduled */ 1099 /* make sure no mib update is scheduled */
1100 flush_scheduled_work(); 1100 cancel_work_sync(&priv->mib_update_task);
1101 1101
1102 /* disable dma & mac */ 1102 /* disable dma & mac */
1103 bcm_enet_disable_dma(priv, priv->tx_chan); 1103 bcm_enet_disable_dma(priv, priv->tx_chan);
@@ -1141,17 +1141,6 @@ static int bcm_enet_stop(struct net_device *dev)
1141} 1141}
1142 1142
1143/* 1143/*
1144 * core request to return device rx/tx stats
1145 */
1146static struct net_device_stats *bcm_enet_get_stats(struct net_device *dev)
1147{
1148 struct bcm_enet_priv *priv;
1149
1150 priv = netdev_priv(dev);
1151 return &priv->stats;
1152}
1153
1154/*
1155 * ethtool callbacks 1144 * ethtool callbacks
1156 */ 1145 */
1157struct bcm_enet_stats { 1146struct bcm_enet_stats {
@@ -1163,16 +1152,18 @@ struct bcm_enet_stats {
1163 1152
1164#define GEN_STAT(m) sizeof(((struct bcm_enet_priv *)0)->m), \ 1153#define GEN_STAT(m) sizeof(((struct bcm_enet_priv *)0)->m), \
1165 offsetof(struct bcm_enet_priv, m) 1154 offsetof(struct bcm_enet_priv, m)
1155#define DEV_STAT(m) sizeof(((struct net_device_stats *)0)->m), \
1156 offsetof(struct net_device_stats, m)
1166 1157
1167static const struct bcm_enet_stats bcm_enet_gstrings_stats[] = { 1158static const struct bcm_enet_stats bcm_enet_gstrings_stats[] = {
1168 { "rx_packets", GEN_STAT(stats.rx_packets), -1 }, 1159 { "rx_packets", DEV_STAT(rx_packets), -1 },
1169 { "tx_packets", GEN_STAT(stats.tx_packets), -1 }, 1160 { "tx_packets", DEV_STAT(tx_packets), -1 },
1170 { "rx_bytes", GEN_STAT(stats.rx_bytes), -1 }, 1161 { "rx_bytes", DEV_STAT(rx_bytes), -1 },
1171 { "tx_bytes", GEN_STAT(stats.tx_bytes), -1 }, 1162 { "tx_bytes", DEV_STAT(tx_bytes), -1 },
1172 { "rx_errors", GEN_STAT(stats.rx_errors), -1 }, 1163 { "rx_errors", DEV_STAT(rx_errors), -1 },
1173 { "tx_errors", GEN_STAT(stats.tx_errors), -1 }, 1164 { "tx_errors", DEV_STAT(tx_errors), -1 },
1174 { "rx_dropped", GEN_STAT(stats.rx_dropped), -1 }, 1165 { "rx_dropped", DEV_STAT(rx_dropped), -1 },
1175 { "tx_dropped", GEN_STAT(stats.tx_dropped), -1 }, 1166 { "tx_dropped", DEV_STAT(tx_dropped), -1 },
1176 1167
1177 { "rx_good_octets", GEN_STAT(mib.rx_gd_octets), ETH_MIB_RX_GD_OCTETS}, 1168 { "rx_good_octets", GEN_STAT(mib.rx_gd_octets), ETH_MIB_RX_GD_OCTETS},
1178 { "rx_good_pkts", GEN_STAT(mib.rx_gd_pkts), ETH_MIB_RX_GD_PKTS }, 1169 { "rx_good_pkts", GEN_STAT(mib.rx_gd_pkts), ETH_MIB_RX_GD_PKTS },
@@ -1328,7 +1319,11 @@ static void bcm_enet_get_ethtool_stats(struct net_device *netdev,
1328 char *p; 1319 char *p;
1329 1320
1330 s = &bcm_enet_gstrings_stats[i]; 1321 s = &bcm_enet_gstrings_stats[i];
1331 p = (char *)priv + s->stat_offset; 1322 if (s->mib_reg == -1)
1323 p = (char *)&netdev->stats;
1324 else
1325 p = (char *)priv;
1326 p += s->stat_offset;
1332 data[i] = (s->sizeof_stat == sizeof(u64)) ? 1327 data[i] = (s->sizeof_stat == sizeof(u64)) ?
1333 *(u64 *)p : *(u32 *)p; 1328 *(u64 *)p : *(u32 *)p;
1334 } 1329 }
@@ -1351,7 +1346,8 @@ static int bcm_enet_get_settings(struct net_device *dev,
1351 return phy_ethtool_gset(priv->phydev, cmd); 1346 return phy_ethtool_gset(priv->phydev, cmd);
1352 } else { 1347 } else {
1353 cmd->autoneg = 0; 1348 cmd->autoneg = 0;
1354 cmd->speed = (priv->force_speed_100) ? SPEED_100 : SPEED_10; 1349 ethtool_cmd_speed_set(cmd, ((priv->force_speed_100)
1350 ? SPEED_100 : SPEED_10));
1355 cmd->duplex = (priv->force_duplex_full) ? 1351 cmd->duplex = (priv->force_duplex_full) ?
1356 DUPLEX_FULL : DUPLEX_HALF; 1352 DUPLEX_FULL : DUPLEX_HALF;
1357 cmd->supported = ADVERTISED_10baseT_Half | 1353 cmd->supported = ADVERTISED_10baseT_Half |
@@ -1605,7 +1601,6 @@ static const struct net_device_ops bcm_enet_ops = {
1605 .ndo_open = bcm_enet_open, 1601 .ndo_open = bcm_enet_open,
1606 .ndo_stop = bcm_enet_stop, 1602 .ndo_stop = bcm_enet_stop,
1607 .ndo_start_xmit = bcm_enet_start_xmit, 1603 .ndo_start_xmit = bcm_enet_start_xmit,
1608 .ndo_get_stats = bcm_enet_get_stats,
1609 .ndo_set_mac_address = bcm_enet_set_mac_address, 1604 .ndo_set_mac_address = bcm_enet_set_mac_address,
1610 .ndo_set_multicast_list = bcm_enet_set_multicast_list, 1605 .ndo_set_multicast_list = bcm_enet_set_multicast_list,
1611 .ndo_do_ioctl = bcm_enet_ioctl, 1606 .ndo_do_ioctl = bcm_enet_ioctl,