diff options
Diffstat (limited to 'drivers/net/ipg.c')
-rw-r--r-- | drivers/net/ipg.c | 44 |
1 files changed, 20 insertions, 24 deletions
diff --git a/drivers/net/ipg.c b/drivers/net/ipg.c index 72e3d2da9e9f..58cd3202b48c 100644 --- a/drivers/net/ipg.c +++ b/drivers/net/ipg.c | |||
@@ -88,16 +88,14 @@ static const char *ipg_brand_name[] = { | |||
88 | "IC PLUS IP1000 1000/100/10 based NIC", | 88 | "IC PLUS IP1000 1000/100/10 based NIC", |
89 | "Sundance Technology ST2021 based NIC", | 89 | "Sundance Technology ST2021 based NIC", |
90 | "Tamarack Microelectronics TC9020/9021 based NIC", | 90 | "Tamarack Microelectronics TC9020/9021 based NIC", |
91 | "Tamarack Microelectronics TC9020/9021 based NIC", | ||
92 | "D-Link NIC IP1000A" | 91 | "D-Link NIC IP1000A" |
93 | }; | 92 | }; |
94 | 93 | ||
95 | static DEFINE_PCI_DEVICE_TABLE(ipg_pci_tbl) = { | 94 | static DEFINE_PCI_DEVICE_TABLE(ipg_pci_tbl) = { |
96 | { PCI_VDEVICE(SUNDANCE, 0x1023), 0 }, | 95 | { PCI_VDEVICE(SUNDANCE, 0x1023), 0 }, |
97 | { PCI_VDEVICE(SUNDANCE, 0x2021), 1 }, | 96 | { PCI_VDEVICE(SUNDANCE, 0x2021), 1 }, |
98 | { PCI_VDEVICE(SUNDANCE, 0x1021), 2 }, | 97 | { PCI_VDEVICE(DLINK, 0x9021), 2 }, |
99 | { PCI_VDEVICE(DLINK, 0x9021), 3 }, | 98 | { PCI_VDEVICE(DLINK, 0x4020), 3 }, |
100 | { PCI_VDEVICE(DLINK, 0x4020), 4 }, | ||
101 | { 0, } | 99 | { 0, } |
102 | }; | 100 | }; |
103 | 101 | ||
@@ -488,14 +486,14 @@ static int ipg_config_autoneg(struct net_device *dev) | |||
488 | phyctrl = ipg_r8(PHY_CTRL); | 486 | phyctrl = ipg_r8(PHY_CTRL); |
489 | mac_ctrl_val = ipg_r32(MAC_CTRL); | 487 | mac_ctrl_val = ipg_r32(MAC_CTRL); |
490 | 488 | ||
491 | /* Set flags for use in resolving auto-negotation, assuming | 489 | /* Set flags for use in resolving auto-negotiation, assuming |
492 | * non-1000Mbps, half duplex, no flow control. | 490 | * non-1000Mbps, half duplex, no flow control. |
493 | */ | 491 | */ |
494 | fullduplex = 0; | 492 | fullduplex = 0; |
495 | txflowcontrol = 0; | 493 | txflowcontrol = 0; |
496 | rxflowcontrol = 0; | 494 | rxflowcontrol = 0; |
497 | 495 | ||
498 | /* To accomodate a problem in 10Mbps operation, | 496 | /* To accommodate a problem in 10Mbps operation, |
499 | * set a global flag if PHY running in 10Mbps mode. | 497 | * set a global flag if PHY running in 10Mbps mode. |
500 | */ | 498 | */ |
501 | sp->tenmbpsmode = 0; | 499 | sp->tenmbpsmode = 0; |
@@ -848,7 +846,7 @@ static void init_tfdlist(struct net_device *dev) | |||
848 | } | 846 | } |
849 | 847 | ||
850 | /* | 848 | /* |
851 | * Free all transmit buffers which have already been transfered | 849 | * Free all transmit buffers which have already been transferred |
852 | * via DMA to the IPG. | 850 | * via DMA to the IPG. |
853 | */ | 851 | */ |
854 | static void ipg_nic_txfree(struct net_device *dev) | 852 | static void ipg_nic_txfree(struct net_device *dev) |
@@ -922,7 +920,7 @@ static void ipg_tx_timeout(struct net_device *dev) | |||
922 | 920 | ||
923 | /* | 921 | /* |
924 | * For TxComplete interrupts, free all transmit | 922 | * For TxComplete interrupts, free all transmit |
925 | * buffers which have already been transfered via DMA | 923 | * buffers which have already been transferred via DMA |
926 | * to the IPG. | 924 | * to the IPG. |
927 | */ | 925 | */ |
928 | static void ipg_nic_txcleanup(struct net_device *dev) | 926 | static void ipg_nic_txcleanup(struct net_device *dev) |
@@ -1143,13 +1141,13 @@ static int ipg_nic_rx_check_error(struct net_device *dev) | |||
1143 | 1141 | ||
1144 | /* Increment detailed receive error statistics. */ | 1142 | /* Increment detailed receive error statistics. */ |
1145 | if (le64_to_cpu(rxfd->rfs) & IPG_RFS_RXFIFOOVERRUN) { | 1143 | if (le64_to_cpu(rxfd->rfs) & IPG_RFS_RXFIFOOVERRUN) { |
1146 | IPG_DEBUG_MSG("RX FIFO overrun occured.\n"); | 1144 | IPG_DEBUG_MSG("RX FIFO overrun occurred.\n"); |
1147 | 1145 | ||
1148 | sp->stats.rx_fifo_errors++; | 1146 | sp->stats.rx_fifo_errors++; |
1149 | } | 1147 | } |
1150 | 1148 | ||
1151 | if (le64_to_cpu(rxfd->rfs) & IPG_RFS_RXRUNTFRAME) { | 1149 | if (le64_to_cpu(rxfd->rfs) & IPG_RFS_RXRUNTFRAME) { |
1152 | IPG_DEBUG_MSG("RX runt occured.\n"); | 1150 | IPG_DEBUG_MSG("RX runt occurred.\n"); |
1153 | sp->stats.rx_length_errors++; | 1151 | sp->stats.rx_length_errors++; |
1154 | } | 1152 | } |
1155 | 1153 | ||
@@ -1158,7 +1156,7 @@ static int ipg_nic_rx_check_error(struct net_device *dev) | |||
1158 | */ | 1156 | */ |
1159 | 1157 | ||
1160 | if (le64_to_cpu(rxfd->rfs) & IPG_RFS_RXALIGNMENTERROR) { | 1158 | if (le64_to_cpu(rxfd->rfs) & IPG_RFS_RXALIGNMENTERROR) { |
1161 | IPG_DEBUG_MSG("RX alignment error occured.\n"); | 1159 | IPG_DEBUG_MSG("RX alignment error occurred.\n"); |
1162 | sp->stats.rx_frame_errors++; | 1160 | sp->stats.rx_frame_errors++; |
1163 | } | 1161 | } |
1164 | 1162 | ||
@@ -1213,7 +1211,7 @@ static void ipg_nic_rx_with_start_and_end(struct net_device *dev, | |||
1213 | 1211 | ||
1214 | skb_put(skb, framelen); | 1212 | skb_put(skb, framelen); |
1215 | skb->protocol = eth_type_trans(skb, dev); | 1213 | skb->protocol = eth_type_trans(skb, dev); |
1216 | skb->ip_summed = CHECKSUM_NONE; | 1214 | skb_checksum_none_assert(skb); |
1217 | netif_rx(skb); | 1215 | netif_rx(skb); |
1218 | sp->rx_buff[entry] = NULL; | 1216 | sp->rx_buff[entry] = NULL; |
1219 | } | 1217 | } |
@@ -1278,7 +1276,7 @@ static void ipg_nic_rx_with_end(struct net_device *dev, | |||
1278 | jumbo->skb->protocol = | 1276 | jumbo->skb->protocol = |
1279 | eth_type_trans(jumbo->skb, dev); | 1277 | eth_type_trans(jumbo->skb, dev); |
1280 | 1278 | ||
1281 | jumbo->skb->ip_summed = CHECKSUM_NONE; | 1279 | skb_checksum_none_assert(jumbo->skb); |
1282 | netif_rx(jumbo->skb); | 1280 | netif_rx(jumbo->skb); |
1283 | } | 1281 | } |
1284 | } | 1282 | } |
@@ -1423,12 +1421,12 @@ static int ipg_nic_rx(struct net_device *dev) | |||
1423 | 1421 | ||
1424 | /* Increment detailed receive error statistics. */ | 1422 | /* Increment detailed receive error statistics. */ |
1425 | if (le64_to_cpu(rxfd->rfs) & IPG_RFS_RXFIFOOVERRUN) { | 1423 | if (le64_to_cpu(rxfd->rfs) & IPG_RFS_RXFIFOOVERRUN) { |
1426 | IPG_DEBUG_MSG("RX FIFO overrun occured.\n"); | 1424 | IPG_DEBUG_MSG("RX FIFO overrun occurred.\n"); |
1427 | sp->stats.rx_fifo_errors++; | 1425 | sp->stats.rx_fifo_errors++; |
1428 | } | 1426 | } |
1429 | 1427 | ||
1430 | if (le64_to_cpu(rxfd->rfs) & IPG_RFS_RXRUNTFRAME) { | 1428 | if (le64_to_cpu(rxfd->rfs) & IPG_RFS_RXRUNTFRAME) { |
1431 | IPG_DEBUG_MSG("RX runt occured.\n"); | 1429 | IPG_DEBUG_MSG("RX runt occurred.\n"); |
1432 | sp->stats.rx_length_errors++; | 1430 | sp->stats.rx_length_errors++; |
1433 | } | 1431 | } |
1434 | 1432 | ||
@@ -1438,7 +1436,7 @@ static int ipg_nic_rx(struct net_device *dev) | |||
1438 | */ | 1436 | */ |
1439 | 1437 | ||
1440 | if (le64_to_cpu(rxfd->rfs) & IPG_RFS_RXALIGNMENTERROR) { | 1438 | if (le64_to_cpu(rxfd->rfs) & IPG_RFS_RXALIGNMENTERROR) { |
1441 | IPG_DEBUG_MSG("RX alignment error occured.\n"); | 1439 | IPG_DEBUG_MSG("RX alignment error occurred.\n"); |
1442 | sp->stats.rx_frame_errors++; | 1440 | sp->stats.rx_frame_errors++; |
1443 | } | 1441 | } |
1444 | 1442 | ||
@@ -1462,7 +1460,7 @@ static int ipg_nic_rx(struct net_device *dev) | |||
1462 | } | 1460 | } |
1463 | } else { | 1461 | } else { |
1464 | 1462 | ||
1465 | /* Adjust the new buffer length to accomodate the size | 1463 | /* Adjust the new buffer length to accommodate the size |
1466 | * of the received frame. | 1464 | * of the received frame. |
1467 | */ | 1465 | */ |
1468 | skb_put(skb, framelen); | 1466 | skb_put(skb, framelen); |
@@ -1476,7 +1474,7 @@ static int ipg_nic_rx(struct net_device *dev) | |||
1476 | * IP/TCP/UDP frame was received. Let the | 1474 | * IP/TCP/UDP frame was received. Let the |
1477 | * upper layer decide. | 1475 | * upper layer decide. |
1478 | */ | 1476 | */ |
1479 | skb->ip_summed = CHECKSUM_NONE; | 1477 | skb_checksum_none_assert(skb); |
1480 | 1478 | ||
1481 | /* Hand off frame for higher layer processing. | 1479 | /* Hand off frame for higher layer processing. |
1482 | * The function netif_rx() releases the sk_buff | 1480 | * The function netif_rx() releases the sk_buff |
@@ -1490,7 +1488,7 @@ static int ipg_nic_rx(struct net_device *dev) | |||
1490 | } | 1488 | } |
1491 | 1489 | ||
1492 | /* | 1490 | /* |
1493 | * If there are more RFDs to proces and the allocated amount of RFD | 1491 | * If there are more RFDs to process and the allocated amount of RFD |
1494 | * processing time has expired, assert Interrupt Requested to make | 1492 | * processing time has expired, assert Interrupt Requested to make |
1495 | * sure we come back to process the remaining RFDs. | 1493 | * sure we come back to process the remaining RFDs. |
1496 | */ | 1494 | */ |
@@ -1888,7 +1886,7 @@ static netdev_tx_t ipg_nic_hard_start_xmit(struct sk_buff *skb, | |||
1888 | /* Request TxComplete interrupts at an interval defined | 1886 | /* Request TxComplete interrupts at an interval defined |
1889 | * by the constant IPG_FRAMESBETWEENTXCOMPLETES. | 1887 | * by the constant IPG_FRAMESBETWEENTXCOMPLETES. |
1890 | * Request TxComplete interrupt for every frame | 1888 | * Request TxComplete interrupt for every frame |
1891 | * if in 10Mbps mode to accomodate problem with 10Mbps | 1889 | * if in 10Mbps mode to accommodate problem with 10Mbps |
1892 | * processing. | 1890 | * processing. |
1893 | */ | 1891 | */ |
1894 | if (sp->tenmbpsmode) | 1892 | if (sp->tenmbpsmode) |
@@ -2027,7 +2025,6 @@ static void ipg_init_mii(struct net_device *dev) | |||
2027 | 2025 | ||
2028 | if (phyaddr != 0x1f) { | 2026 | if (phyaddr != 0x1f) { |
2029 | u16 mii_phyctrl, mii_1000cr; | 2027 | u16 mii_phyctrl, mii_1000cr; |
2030 | u8 revisionid = 0; | ||
2031 | 2028 | ||
2032 | mii_1000cr = mdio_read(dev, phyaddr, MII_CTRL1000); | 2029 | mii_1000cr = mdio_read(dev, phyaddr, MII_CTRL1000); |
2033 | mii_1000cr |= ADVERTISE_1000FULL | ADVERTISE_1000HALF | | 2030 | mii_1000cr |= ADVERTISE_1000FULL | ADVERTISE_1000HALF | |
@@ -2037,8 +2034,7 @@ static void ipg_init_mii(struct net_device *dev) | |||
2037 | mii_phyctrl = mdio_read(dev, phyaddr, MII_BMCR); | 2034 | mii_phyctrl = mdio_read(dev, phyaddr, MII_BMCR); |
2038 | 2035 | ||
2039 | /* Set default phyparam */ | 2036 | /* Set default phyparam */ |
2040 | pci_read_config_byte(sp->pdev, PCI_REVISION_ID, &revisionid); | 2037 | ipg_set_phy_default_param(sp->pdev->revision, dev, phyaddr); |
2041 | ipg_set_phy_default_param(revisionid, dev, phyaddr); | ||
2042 | 2038 | ||
2043 | /* Reset PHY */ | 2039 | /* Reset PHY */ |
2044 | mii_phyctrl |= BMCR_RESET | BMCR_ANRESTART; | 2040 | mii_phyctrl |= BMCR_RESET | BMCR_ANRESTART; |
@@ -2102,7 +2098,7 @@ static int ipg_nic_change_mtu(struct net_device *dev, int new_mtu) | |||
2102 | struct ipg_nic_private *sp = netdev_priv(dev); | 2098 | struct ipg_nic_private *sp = netdev_priv(dev); |
2103 | int err; | 2099 | int err; |
2104 | 2100 | ||
2105 | /* Function to accomodate changes to Maximum Transfer Unit | 2101 | /* Function to accommodate changes to Maximum Transfer Unit |
2106 | * (or MTU) of IPG NIC. Cannot use default function since | 2102 | * (or MTU) of IPG NIC. Cannot use default function since |
2107 | * the default will not allow for MTU > 1500 bytes. | 2103 | * the default will not allow for MTU > 1500 bytes. |
2108 | */ | 2104 | */ |