aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/8139cp.c
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
committerGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
commitc71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch)
treeecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /drivers/net/8139cp.c
parentea53c912f8a86a8567697115b6a0d8152beee5c8 (diff)
parent6a00f206debf8a5c8899055726ad127dbeeed098 (diff)
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts: litmus/sched_cedf.c
Diffstat (limited to 'drivers/net/8139cp.c')
-rw-r--r--drivers/net/8139cp.c60
1 files changed, 23 insertions, 37 deletions
diff --git a/drivers/net/8139cp.c b/drivers/net/8139cp.c
index 4a4f6b81e32d..10c45051caea 100644
--- a/drivers/net/8139cp.c
+++ b/drivers/net/8139cp.c
@@ -490,13 +490,11 @@ static inline unsigned int cp_rx_csum_ok (u32 status)
490{ 490{
491 unsigned int protocol = (status >> 16) & 0x3; 491 unsigned int protocol = (status >> 16) & 0x3;
492 492
493 if (likely((protocol == RxProtoTCP) && (!(status & TCPFail)))) 493 if (((protocol == RxProtoTCP) && !(status & TCPFail)) ||
494 ((protocol == RxProtoUDP) && !(status & UDPFail)))
494 return 1; 495 return 1;
495 else if ((protocol == RxProtoUDP) && (!(status & UDPFail))) 496 else
496 return 1; 497 return 0;
497 else if ((protocol == RxProtoIP) && (!(status & IPFail)))
498 return 1;
499 return 0;
500} 498}
501 499
502static int cp_rx_poll(struct napi_struct *napi, int budget) 500static int cp_rx_poll(struct napi_struct *napi, int budget)
@@ -561,7 +559,7 @@ rx_status_loop:
561 if (cp_rx_csum_ok(status)) 559 if (cp_rx_csum_ok(status))
562 skb->ip_summed = CHECKSUM_UNNECESSARY; 560 skb->ip_summed = CHECKSUM_UNNECESSARY;
563 else 561 else
564 skb->ip_summed = CHECKSUM_NONE; 562 skb_checksum_none_assert(skb);
565 563
566 skb_put(skb, len); 564 skb_put(skb, len);
567 565
@@ -754,14 +752,13 @@ static netdev_tx_t cp_start_xmit (struct sk_buff *skb,
754 } 752 }
755 753
756#if CP_VLAN_TAG_USED 754#if CP_VLAN_TAG_USED
757 if (cp->vlgrp && vlan_tx_tag_present(skb)) 755 if (vlan_tx_tag_present(skb))
758 vlan_tag = TxVlanTag | swab16(vlan_tx_tag_get(skb)); 756 vlan_tag = TxVlanTag | swab16(vlan_tx_tag_get(skb));
759#endif 757#endif
760 758
761 entry = cp->tx_head; 759 entry = cp->tx_head;
762 eor = (entry == (CP_TX_RING_SIZE - 1)) ? RingEnd : 0; 760 eor = (entry == (CP_TX_RING_SIZE - 1)) ? RingEnd : 0;
763 if (dev->features & NETIF_F_TSO) 761 mss = skb_shinfo(skb)->gso_size;
764 mss = skb_shinfo(skb)->gso_size;
765 762
766 if (skb_shinfo(skb)->nr_frags == 0) { 763 if (skb_shinfo(skb)->nr_frags == 0) {
767 struct cp_desc *txd = &cp->tx_ring[entry]; 764 struct cp_desc *txd = &cp->tx_ring[entry];
@@ -1418,32 +1415,23 @@ static void cp_set_msglevel(struct net_device *dev, u32 value)
1418 cp->msg_enable = value; 1415 cp->msg_enable = value;
1419} 1416}
1420 1417
1421static u32 cp_get_rx_csum(struct net_device *dev) 1418static int cp_set_features(struct net_device *dev, u32 features)
1422{ 1419{
1423 struct cp_private *cp = netdev_priv(dev); 1420 struct cp_private *cp = netdev_priv(dev);
1424 return (cpr16(CpCmd) & RxChkSum) ? 1 : 0; 1421 unsigned long flags;
1425}
1426 1422
1427static int cp_set_rx_csum(struct net_device *dev, u32 data) 1423 if (!((dev->features ^ features) & NETIF_F_RXCSUM))
1428{ 1424 return 0;
1429 struct cp_private *cp = netdev_priv(dev);
1430 u16 cmd = cp->cpcmd, newcmd;
1431 1425
1432 newcmd = cmd; 1426 spin_lock_irqsave(&cp->lock, flags);
1433 1427
1434 if (data) 1428 if (features & NETIF_F_RXCSUM)
1435 newcmd |= RxChkSum; 1429 cp->cpcmd |= RxChkSum;
1436 else 1430 else
1437 newcmd &= ~RxChkSum; 1431 cp->cpcmd &= ~RxChkSum;
1438
1439 if (newcmd != cmd) {
1440 unsigned long flags;
1441 1432
1442 spin_lock_irqsave(&cp->lock, flags); 1433 cpw16_f(CpCmd, cp->cpcmd);
1443 cp->cpcmd = newcmd; 1434 spin_unlock_irqrestore(&cp->lock, flags);
1444 cpw16_f(CpCmd, newcmd);
1445 spin_unlock_irqrestore(&cp->lock, flags);
1446 }
1447 1435
1448 return 0; 1436 return 0;
1449} 1437}
@@ -1556,11 +1544,6 @@ static const struct ethtool_ops cp_ethtool_ops = {
1556 .get_link = ethtool_op_get_link, 1544 .get_link = ethtool_op_get_link,
1557 .get_msglevel = cp_get_msglevel, 1545 .get_msglevel = cp_get_msglevel,
1558 .set_msglevel = cp_set_msglevel, 1546 .set_msglevel = cp_set_msglevel,
1559 .get_rx_csum = cp_get_rx_csum,
1560 .set_rx_csum = cp_set_rx_csum,
1561 .set_tx_csum = ethtool_op_set_tx_csum, /* local! */
1562 .set_sg = ethtool_op_set_sg,
1563 .set_tso = ethtool_op_set_tso,
1564 .get_regs = cp_get_regs, 1547 .get_regs = cp_get_regs,
1565 .get_wol = cp_get_wol, 1548 .get_wol = cp_get_wol,
1566 .set_wol = cp_set_wol, 1549 .set_wol = cp_set_wol,
@@ -1833,6 +1816,7 @@ static const struct net_device_ops cp_netdev_ops = {
1833 .ndo_do_ioctl = cp_ioctl, 1816 .ndo_do_ioctl = cp_ioctl,
1834 .ndo_start_xmit = cp_start_xmit, 1817 .ndo_start_xmit = cp_start_xmit,
1835 .ndo_tx_timeout = cp_tx_timeout, 1818 .ndo_tx_timeout = cp_tx_timeout,
1819 .ndo_set_features = cp_set_features,
1836#if CP_VLAN_TAG_USED 1820#if CP_VLAN_TAG_USED
1837 .ndo_vlan_rx_register = cp_vlan_rx_register, 1821 .ndo_vlan_rx_register = cp_vlan_rx_register,
1838#endif 1822#endif
@@ -1936,6 +1920,9 @@ static int cp_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
1936 cp->cpcmd = (pci_using_dac ? PCIDAC : 0) | 1920 cp->cpcmd = (pci_using_dac ? PCIDAC : 0) |
1937 PCIMulRW | RxChkSum | CpRxOn | CpTxOn; 1921 PCIMulRW | RxChkSum | CpRxOn | CpTxOn;
1938 1922
1923 dev->features |= NETIF_F_RXCSUM;
1924 dev->hw_features |= NETIF_F_RXCSUM;
1925
1939 regs = ioremap(pciaddr, CP_REGS_SIZE); 1926 regs = ioremap(pciaddr, CP_REGS_SIZE);
1940 if (!regs) { 1927 if (!regs) {
1941 rc = -EIO; 1928 rc = -EIO;
@@ -1968,9 +1955,8 @@ static int cp_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
1968 if (pci_using_dac) 1955 if (pci_using_dac)
1969 dev->features |= NETIF_F_HIGHDMA; 1956 dev->features |= NETIF_F_HIGHDMA;
1970 1957
1971#if 0 /* disabled by default until verified */ 1958 /* disabled by default until verified */
1972 dev->features |= NETIF_F_TSO; 1959 dev->hw_features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO;
1973#endif
1974 1960
1975 dev->irq = pdev->irq; 1961 dev->irq = pdev->irq;
1976 1962