diff options
Diffstat (limited to 'drivers/net/ns83820.c')
-rw-r--r-- | drivers/net/ns83820.c | 72 |
1 files changed, 34 insertions, 38 deletions
diff --git a/drivers/net/ns83820.c b/drivers/net/ns83820.c index 5a3488f76b38..3e4040f2f3cb 100644 --- a/drivers/net/ns83820.c +++ b/drivers/net/ns83820.c | |||
@@ -512,7 +512,7 @@ static void ns83820_vlan_rx_register(struct net_device *ndev, struct vlan_group | |||
512 | /* Packet Receiver | 512 | /* Packet Receiver |
513 | * | 513 | * |
514 | * The hardware supports linked lists of receive descriptors for | 514 | * The hardware supports linked lists of receive descriptors for |
515 | * which ownership is transfered back and forth by means of an | 515 | * which ownership is transferred back and forth by means of an |
516 | * ownership bit. While the hardware does support the use of a | 516 | * ownership bit. While the hardware does support the use of a |
517 | * ring for receive descriptors, we only make use of a chain in | 517 | * ring for receive descriptors, we only make use of a chain in |
518 | * an attempt to reduce bus traffic under heavy load scenarios. | 518 | * an attempt to reduce bus traffic under heavy load scenarios. |
@@ -772,7 +772,7 @@ static int ns83820_setup_rx(struct net_device *ndev) | |||
772 | phy_intr(ndev); | 772 | phy_intr(ndev); |
773 | 773 | ||
774 | /* Okay, let it rip */ | 774 | /* Okay, let it rip */ |
775 | spin_lock_irq(&dev->misc_lock); | 775 | spin_lock(&dev->misc_lock); |
776 | dev->IMR_cache |= ISR_PHY; | 776 | dev->IMR_cache |= ISR_PHY; |
777 | dev->IMR_cache |= ISR_RXRCMP; | 777 | dev->IMR_cache |= ISR_RXRCMP; |
778 | //dev->IMR_cache |= ISR_RXERR; | 778 | //dev->IMR_cache |= ISR_RXERR; |
@@ -923,7 +923,7 @@ static void rx_irq(struct net_device *ndev) | |||
923 | if ((extsts & 0x002a0000) && !(extsts & 0x00540000)) { | 923 | if ((extsts & 0x002a0000) && !(extsts & 0x00540000)) { |
924 | skb->ip_summed = CHECKSUM_UNNECESSARY; | 924 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
925 | } else { | 925 | } else { |
926 | skb->ip_summed = CHECKSUM_NONE; | 926 | skb_checksum_none_assert(skb); |
927 | } | 927 | } |
928 | skb->protocol = eth_type_trans(skb, ndev); | 928 | skb->protocol = eth_type_trans(skb, ndev); |
929 | #ifdef NS83820_VLAN_ACCEL_SUPPORT | 929 | #ifdef NS83820_VLAN_ACCEL_SUPPORT |
@@ -1147,7 +1147,7 @@ again: | |||
1147 | #ifdef NS83820_VLAN_ACCEL_SUPPORT | 1147 | #ifdef NS83820_VLAN_ACCEL_SUPPORT |
1148 | if(vlan_tx_tag_present(skb)) { | 1148 | if(vlan_tx_tag_present(skb)) { |
1149 | /* fetch the vlan tag info out of the | 1149 | /* fetch the vlan tag info out of the |
1150 | * ancilliary data if the vlan code | 1150 | * ancillary data if the vlan code |
1151 | * is using hw vlan acceleration | 1151 | * is using hw vlan acceleration |
1152 | */ | 1152 | */ |
1153 | short tag = vlan_tx_tag_get(skb); | 1153 | short tag = vlan_tx_tag_get(skb); |
@@ -1246,13 +1246,12 @@ static int ns83820_get_settings(struct net_device *ndev, | |||
1246 | { | 1246 | { |
1247 | struct ns83820 *dev = PRIV(ndev); | 1247 | struct ns83820 *dev = PRIV(ndev); |
1248 | u32 cfg, tanar, tbicr; | 1248 | u32 cfg, tanar, tbicr; |
1249 | int have_optical = 0; | ||
1250 | int fullduplex = 0; | 1249 | int fullduplex = 0; |
1251 | 1250 | ||
1252 | /* | 1251 | /* |
1253 | * Here's the list of available ethtool commands from other drivers: | 1252 | * Here's the list of available ethtool commands from other drivers: |
1254 | * cmd->advertising = | 1253 | * cmd->advertising = |
1255 | * cmd->speed = | 1254 | * ethtool_cmd_speed_set(cmd, ...) |
1256 | * cmd->duplex = | 1255 | * cmd->duplex = |
1257 | * cmd->port = 0; | 1256 | * cmd->port = 0; |
1258 | * cmd->phy_address = | 1257 | * cmd->phy_address = |
@@ -1267,39 +1266,40 @@ static int ns83820_get_settings(struct net_device *ndev, | |||
1267 | tanar = readl(dev->base + TANAR); | 1266 | tanar = readl(dev->base + TANAR); |
1268 | tbicr = readl(dev->base + TBICR); | 1267 | tbicr = readl(dev->base + TBICR); |
1269 | 1268 | ||
1270 | if (dev->CFG_cache & CFG_TBI_EN) { | 1269 | fullduplex = (cfg & CFG_DUPSTS) ? 1 : 0; |
1271 | /* we have an optical interface */ | ||
1272 | have_optical = 1; | ||
1273 | fullduplex = (cfg & CFG_DUPSTS) ? 1 : 0; | ||
1274 | |||
1275 | } else { | ||
1276 | /* We have copper */ | ||
1277 | fullduplex = (cfg & CFG_DUPSTS) ? 1 : 0; | ||
1278 | } | ||
1279 | 1270 | ||
1280 | cmd->supported = SUPPORTED_Autoneg; | 1271 | cmd->supported = SUPPORTED_Autoneg; |
1281 | 1272 | ||
1282 | /* we have optical interface */ | ||
1283 | if (dev->CFG_cache & CFG_TBI_EN) { | 1273 | if (dev->CFG_cache & CFG_TBI_EN) { |
1274 | /* we have optical interface */ | ||
1284 | cmd->supported |= SUPPORTED_1000baseT_Half | | 1275 | cmd->supported |= SUPPORTED_1000baseT_Half | |
1285 | SUPPORTED_1000baseT_Full | | 1276 | SUPPORTED_1000baseT_Full | |
1286 | SUPPORTED_FIBRE; | 1277 | SUPPORTED_FIBRE; |
1287 | cmd->port = PORT_FIBRE; | 1278 | cmd->port = PORT_FIBRE; |
1288 | } /* TODO: else copper related support */ | 1279 | } else { |
1280 | /* we have copper */ | ||
1281 | cmd->supported |= SUPPORTED_10baseT_Half | | ||
1282 | SUPPORTED_10baseT_Full | SUPPORTED_100baseT_Half | | ||
1283 | SUPPORTED_100baseT_Full | SUPPORTED_1000baseT_Half | | ||
1284 | SUPPORTED_1000baseT_Full | | ||
1285 | SUPPORTED_MII; | ||
1286 | cmd->port = PORT_MII; | ||
1287 | } | ||
1289 | 1288 | ||
1290 | cmd->duplex = fullduplex ? DUPLEX_FULL : DUPLEX_HALF; | 1289 | cmd->duplex = fullduplex ? DUPLEX_FULL : DUPLEX_HALF; |
1291 | switch (cfg / CFG_SPDSTS0 & 3) { | 1290 | switch (cfg / CFG_SPDSTS0 & 3) { |
1292 | case 2: | 1291 | case 2: |
1293 | cmd->speed = SPEED_1000; | 1292 | ethtool_cmd_speed_set(cmd, SPEED_1000); |
1294 | break; | 1293 | break; |
1295 | case 1: | 1294 | case 1: |
1296 | cmd->speed = SPEED_100; | 1295 | ethtool_cmd_speed_set(cmd, SPEED_100); |
1297 | break; | 1296 | break; |
1298 | default: | 1297 | default: |
1299 | cmd->speed = SPEED_10; | 1298 | ethtool_cmd_speed_set(cmd, SPEED_10); |
1300 | break; | 1299 | break; |
1301 | } | 1300 | } |
1302 | cmd->autoneg = (tbicr & TBICR_MR_AN_ENABLE) ? 1: 0; | 1301 | cmd->autoneg = (tbicr & TBICR_MR_AN_ENABLE) |
1302 | ? AUTONEG_ENABLE : AUTONEG_DISABLE; | ||
1303 | return 0; | 1303 | return 0; |
1304 | } | 1304 | } |
1305 | 1305 | ||
@@ -1405,6 +1405,13 @@ static const struct ethtool_ops ops = { | |||
1405 | .get_link = ns83820_get_link | 1405 | .get_link = ns83820_get_link |
1406 | }; | 1406 | }; |
1407 | 1407 | ||
1408 | static inline void ns83820_disable_interrupts(struct ns83820 *dev) | ||
1409 | { | ||
1410 | writel(0, dev->base + IMR); | ||
1411 | writel(0, dev->base + IER); | ||
1412 | readl(dev->base + IER); | ||
1413 | } | ||
1414 | |||
1408 | /* this function is called in irq context from the ISR */ | 1415 | /* this function is called in irq context from the ISR */ |
1409 | static void ns83820_mib_isr(struct ns83820 *dev) | 1416 | static void ns83820_mib_isr(struct ns83820 *dev) |
1410 | { | 1417 | { |
@@ -1557,10 +1564,7 @@ static int ns83820_stop(struct net_device *ndev) | |||
1557 | /* FIXME: protect against interrupt handler? */ | 1564 | /* FIXME: protect against interrupt handler? */ |
1558 | del_timer_sync(&dev->tx_watchdog); | 1565 | del_timer_sync(&dev->tx_watchdog); |
1559 | 1566 | ||
1560 | /* disable interrupts */ | 1567 | ns83820_disable_interrupts(dev); |
1561 | writel(0, dev->base + IMR); | ||
1562 | writel(0, dev->base + IER); | ||
1563 | readl(dev->base + IER); | ||
1564 | 1568 | ||
1565 | dev->rx_info.up = 0; | 1569 | dev->rx_info.up = 0; |
1566 | synchronize_irq(dev->pci_dev->irq); | 1570 | synchronize_irq(dev->pci_dev->irq); |
@@ -1984,12 +1988,11 @@ static int __devinit ns83820_init_one(struct pci_dev *pci_dev, | |||
1984 | } | 1988 | } |
1985 | 1989 | ||
1986 | ndev = alloc_etherdev(sizeof(struct ns83820)); | 1990 | ndev = alloc_etherdev(sizeof(struct ns83820)); |
1987 | dev = PRIV(ndev); | ||
1988 | |||
1989 | err = -ENOMEM; | 1991 | err = -ENOMEM; |
1990 | if (!dev) | 1992 | if (!ndev) |
1991 | goto out; | 1993 | goto out; |
1992 | 1994 | ||
1995 | dev = PRIV(ndev); | ||
1993 | dev->ndev = ndev; | 1996 | dev->ndev = ndev; |
1994 | 1997 | ||
1995 | spin_lock_init(&dev->rx_info.lock); | 1998 | spin_lock_init(&dev->rx_info.lock); |
@@ -2023,10 +2026,7 @@ static int __devinit ns83820_init_one(struct pci_dev *pci_dev, | |||
2023 | dev->tx_descs, (long)dev->tx_phy_descs, | 2026 | dev->tx_descs, (long)dev->tx_phy_descs, |
2024 | dev->rx_info.descs, (long)dev->rx_info.phy_descs); | 2027 | dev->rx_info.descs, (long)dev->rx_info.phy_descs); |
2025 | 2028 | ||
2026 | /* disable interrupts */ | 2029 | ns83820_disable_interrupts(dev); |
2027 | writel(0, dev->base + IMR); | ||
2028 | writel(0, dev->base + IER); | ||
2029 | readl(dev->base + IER); | ||
2030 | 2030 | ||
2031 | dev->IMR_cache = 0; | 2031 | dev->IMR_cache = 0; |
2032 | 2032 | ||
@@ -2250,9 +2250,7 @@ static int __devinit ns83820_init_one(struct pci_dev *pci_dev, | |||
2250 | return 0; | 2250 | return 0; |
2251 | 2251 | ||
2252 | out_cleanup: | 2252 | out_cleanup: |
2253 | writel(0, dev->base + IMR); /* paranoia */ | 2253 | ns83820_disable_interrupts(dev); /* paranoia */ |
2254 | writel(0, dev->base + IER); | ||
2255 | readl(dev->base + IER); | ||
2256 | out_free_irq: | 2254 | out_free_irq: |
2257 | rtnl_unlock(); | 2255 | rtnl_unlock(); |
2258 | free_irq(pci_dev->irq, ndev); | 2256 | free_irq(pci_dev->irq, ndev); |
@@ -2277,9 +2275,7 @@ static void __devexit ns83820_remove_one(struct pci_dev *pci_dev) | |||
2277 | if (!ndev) /* paranoia */ | 2275 | if (!ndev) /* paranoia */ |
2278 | return; | 2276 | return; |
2279 | 2277 | ||
2280 | writel(0, dev->base + IMR); /* paranoia */ | 2278 | ns83820_disable_interrupts(dev); /* paranoia */ |
2281 | writel(0, dev->base + IER); | ||
2282 | readl(dev->base + IER); | ||
2283 | 2279 | ||
2284 | unregister_netdev(ndev); | 2280 | unregister_netdev(ndev); |
2285 | free_irq(dev->pci_dev->irq, ndev); | 2281 | free_irq(dev->pci_dev->irq, ndev); |