diff options
Diffstat (limited to 'drivers/net/chelsio')
-rw-r--r-- | drivers/net/chelsio/common.h | 5 | ||||
-rw-r--r-- | drivers/net/chelsio/cxgb2.c | 59 | ||||
-rw-r--r-- | drivers/net/chelsio/mv88e1xxx.c | 2 | ||||
-rw-r--r-- | drivers/net/chelsio/my3126.c | 2 | ||||
-rw-r--r-- | drivers/net/chelsio/pm3393.c | 2 | ||||
-rw-r--r-- | drivers/net/chelsio/sge.c | 32 | ||||
-rw-r--r-- | drivers/net/chelsio/subr.c | 4 | ||||
-rw-r--r-- | drivers/net/chelsio/tp.c | 5 | ||||
-rw-r--r-- | drivers/net/chelsio/tp.h | 1 | ||||
-rw-r--r-- | drivers/net/chelsio/vsc7326.c | 4 |
10 files changed, 35 insertions, 81 deletions
diff --git a/drivers/net/chelsio/common.h b/drivers/net/chelsio/common.h index 092f31a126e6..c26d863e1697 100644 --- a/drivers/net/chelsio/common.h +++ b/drivers/net/chelsio/common.h | |||
@@ -264,11 +264,6 @@ struct adapter { | |||
264 | 264 | ||
265 | enum { /* adapter flags */ | 265 | enum { /* adapter flags */ |
266 | FULL_INIT_DONE = 1 << 0, | 266 | FULL_INIT_DONE = 1 << 0, |
267 | TSO_CAPABLE = 1 << 2, | ||
268 | TCP_CSUM_CAPABLE = 1 << 3, | ||
269 | UDP_CSUM_CAPABLE = 1 << 4, | ||
270 | VLAN_ACCEL_CAPABLE = 1 << 5, | ||
271 | RX_CSUM_ENABLED = 1 << 6, | ||
272 | }; | 267 | }; |
273 | 268 | ||
274 | struct mdio_ops; | 269 | struct mdio_ops; |
diff --git a/drivers/net/chelsio/cxgb2.c b/drivers/net/chelsio/cxgb2.c index 0f71304e0542..b422d83f5343 100644 --- a/drivers/net/chelsio/cxgb2.c +++ b/drivers/net/chelsio/cxgb2.c | |||
@@ -192,10 +192,8 @@ static void link_start(struct port_info *p) | |||
192 | 192 | ||
193 | static void enable_hw_csum(struct adapter *adapter) | 193 | static void enable_hw_csum(struct adapter *adapter) |
194 | { | 194 | { |
195 | if (adapter->flags & TSO_CAPABLE) | 195 | if (adapter->port[0].dev->hw_features & NETIF_F_TSO) |
196 | t1_tp_set_ip_checksum_offload(adapter->tp, 1); /* for TSO only */ | 196 | t1_tp_set_ip_checksum_offload(adapter->tp, 1); /* for TSO only */ |
197 | if (adapter->flags & UDP_CSUM_CAPABLE) | ||
198 | t1_tp_set_udp_checksum_offload(adapter->tp, 1); | ||
199 | t1_tp_set_tcp_checksum_offload(adapter->tp, 1); | 197 | t1_tp_set_tcp_checksum_offload(adapter->tp, 1); |
200 | } | 198 | } |
201 | 199 | ||
@@ -579,10 +577,10 @@ static int get_settings(struct net_device *dev, struct ethtool_cmd *cmd) | |||
579 | cmd->advertising = p->link_config.advertising; | 577 | cmd->advertising = p->link_config.advertising; |
580 | 578 | ||
581 | if (netif_carrier_ok(dev)) { | 579 | if (netif_carrier_ok(dev)) { |
582 | cmd->speed = p->link_config.speed; | 580 | ethtool_cmd_speed_set(cmd, p->link_config.speed); |
583 | cmd->duplex = p->link_config.duplex; | 581 | cmd->duplex = p->link_config.duplex; |
584 | } else { | 582 | } else { |
585 | cmd->speed = -1; | 583 | ethtool_cmd_speed_set(cmd, -1); |
586 | cmd->duplex = -1; | 584 | cmd->duplex = -1; |
587 | } | 585 | } |
588 | 586 | ||
@@ -640,11 +638,12 @@ static int set_settings(struct net_device *dev, struct ethtool_cmd *cmd) | |||
640 | return -EOPNOTSUPP; /* can't change speed/duplex */ | 638 | return -EOPNOTSUPP; /* can't change speed/duplex */ |
641 | 639 | ||
642 | if (cmd->autoneg == AUTONEG_DISABLE) { | 640 | if (cmd->autoneg == AUTONEG_DISABLE) { |
643 | int cap = speed_duplex_to_caps(cmd->speed, cmd->duplex); | 641 | u32 speed = ethtool_cmd_speed(cmd); |
642 | int cap = speed_duplex_to_caps(speed, cmd->duplex); | ||
644 | 643 | ||
645 | if (!(lc->supported & cap) || cmd->speed == SPEED_1000) | 644 | if (!(lc->supported & cap) || (speed == SPEED_1000)) |
646 | return -EINVAL; | 645 | return -EINVAL; |
647 | lc->requested_speed = cmd->speed; | 646 | lc->requested_speed = speed; |
648 | lc->requested_duplex = cmd->duplex; | 647 | lc->requested_duplex = cmd->duplex; |
649 | lc->advertising = 0; | 648 | lc->advertising = 0; |
650 | } else { | 649 | } else { |
@@ -705,33 +704,6 @@ static int set_pauseparam(struct net_device *dev, | |||
705 | return 0; | 704 | return 0; |
706 | } | 705 | } |
707 | 706 | ||
708 | static u32 get_rx_csum(struct net_device *dev) | ||
709 | { | ||
710 | struct adapter *adapter = dev->ml_priv; | ||
711 | |||
712 | return (adapter->flags & RX_CSUM_ENABLED) != 0; | ||
713 | } | ||
714 | |||
715 | static int set_rx_csum(struct net_device *dev, u32 data) | ||
716 | { | ||
717 | struct adapter *adapter = dev->ml_priv; | ||
718 | |||
719 | if (data) | ||
720 | adapter->flags |= RX_CSUM_ENABLED; | ||
721 | else | ||
722 | adapter->flags &= ~RX_CSUM_ENABLED; | ||
723 | return 0; | ||
724 | } | ||
725 | |||
726 | static int set_tso(struct net_device *dev, u32 value) | ||
727 | { | ||
728 | struct adapter *adapter = dev->ml_priv; | ||
729 | |||
730 | if (!(adapter->flags & TSO_CAPABLE)) | ||
731 | return value ? -EOPNOTSUPP : 0; | ||
732 | return ethtool_op_set_tso(dev, value); | ||
733 | } | ||
734 | |||
735 | static void get_sge_param(struct net_device *dev, struct ethtool_ringparam *e) | 707 | static void get_sge_param(struct net_device *dev, struct ethtool_ringparam *e) |
736 | { | 708 | { |
737 | struct adapter *adapter = dev->ml_priv; | 709 | struct adapter *adapter = dev->ml_priv; |
@@ -831,17 +803,12 @@ static const struct ethtool_ops t1_ethtool_ops = { | |||
831 | .get_eeprom = get_eeprom, | 803 | .get_eeprom = get_eeprom, |
832 | .get_pauseparam = get_pauseparam, | 804 | .get_pauseparam = get_pauseparam, |
833 | .set_pauseparam = set_pauseparam, | 805 | .set_pauseparam = set_pauseparam, |
834 | .get_rx_csum = get_rx_csum, | ||
835 | .set_rx_csum = set_rx_csum, | ||
836 | .set_tx_csum = ethtool_op_set_tx_csum, | ||
837 | .set_sg = ethtool_op_set_sg, | ||
838 | .get_link = ethtool_op_get_link, | 806 | .get_link = ethtool_op_get_link, |
839 | .get_strings = get_strings, | 807 | .get_strings = get_strings, |
840 | .get_sset_count = get_sset_count, | 808 | .get_sset_count = get_sset_count, |
841 | .get_ethtool_stats = get_stats, | 809 | .get_ethtool_stats = get_stats, |
842 | .get_regs_len = get_regs_len, | 810 | .get_regs_len = get_regs_len, |
843 | .get_regs = get_regs, | 811 | .get_regs = get_regs, |
844 | .set_tso = set_tso, | ||
845 | }; | 812 | }; |
846 | 813 | ||
847 | static int t1_ioctl(struct net_device *dev, struct ifreq *req, int cmd) | 814 | static int t1_ioctl(struct net_device *dev, struct ifreq *req, int cmd) |
@@ -1105,28 +1072,28 @@ static int __devinit init_one(struct pci_dev *pdev, | |||
1105 | netdev->mem_start = mmio_start; | 1072 | netdev->mem_start = mmio_start; |
1106 | netdev->mem_end = mmio_start + mmio_len - 1; | 1073 | netdev->mem_end = mmio_start + mmio_len - 1; |
1107 | netdev->ml_priv = adapter; | 1074 | netdev->ml_priv = adapter; |
1108 | netdev->features |= NETIF_F_SG | NETIF_F_IP_CSUM; | 1075 | netdev->hw_features |= NETIF_F_SG | NETIF_F_IP_CSUM | |
1109 | netdev->features |= NETIF_F_LLTX; | 1076 | NETIF_F_RXCSUM; |
1077 | netdev->features |= NETIF_F_SG | NETIF_F_IP_CSUM | | ||
1078 | NETIF_F_RXCSUM | NETIF_F_LLTX; | ||
1110 | 1079 | ||
1111 | adapter->flags |= RX_CSUM_ENABLED | TCP_CSUM_CAPABLE; | ||
1112 | if (pci_using_dac) | 1080 | if (pci_using_dac) |
1113 | netdev->features |= NETIF_F_HIGHDMA; | 1081 | netdev->features |= NETIF_F_HIGHDMA; |
1114 | if (vlan_tso_capable(adapter)) { | 1082 | if (vlan_tso_capable(adapter)) { |
1115 | #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE) | 1083 | #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE) |
1116 | adapter->flags |= VLAN_ACCEL_CAPABLE; | ||
1117 | netdev->features |= | 1084 | netdev->features |= |
1118 | NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX; | 1085 | NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX; |
1119 | #endif | 1086 | #endif |
1120 | 1087 | ||
1121 | /* T204: disable TSO */ | 1088 | /* T204: disable TSO */ |
1122 | if (!(is_T2(adapter)) || bi->port_number != 4) { | 1089 | if (!(is_T2(adapter)) || bi->port_number != 4) { |
1123 | adapter->flags |= TSO_CAPABLE; | 1090 | netdev->hw_features |= NETIF_F_TSO; |
1124 | netdev->features |= NETIF_F_TSO; | 1091 | netdev->features |= NETIF_F_TSO; |
1125 | } | 1092 | } |
1126 | } | 1093 | } |
1127 | 1094 | ||
1128 | netdev->netdev_ops = &cxgb_netdev_ops; | 1095 | netdev->netdev_ops = &cxgb_netdev_ops; |
1129 | netdev->hard_header_len += (adapter->flags & TSO_CAPABLE) ? | 1096 | netdev->hard_header_len += (netdev->hw_features & NETIF_F_TSO) ? |
1130 | sizeof(struct cpl_tx_pkt_lso) : sizeof(struct cpl_tx_pkt); | 1097 | sizeof(struct cpl_tx_pkt_lso) : sizeof(struct cpl_tx_pkt); |
1131 | 1098 | ||
1132 | netif_napi_add(netdev, &adapter->napi, t1_poll, 64); | 1099 | netif_napi_add(netdev, &adapter->napi, t1_poll, 64); |
diff --git a/drivers/net/chelsio/mv88e1xxx.c b/drivers/net/chelsio/mv88e1xxx.c index 809047a99e96..71018a4fdf15 100644 --- a/drivers/net/chelsio/mv88e1xxx.c +++ b/drivers/net/chelsio/mv88e1xxx.c | |||
@@ -41,7 +41,7 @@ static void mdio_clear_bit(struct cphy *cphy, int reg, u32 bitval) | |||
41 | * | 41 | * |
42 | * PARAMS: cphy - Pointer to PHY instance data. | 42 | * PARAMS: cphy - Pointer to PHY instance data. |
43 | * | 43 | * |
44 | * RETURN: 0 - Successfull reset. | 44 | * RETURN: 0 - Successful reset. |
45 | * -1 - Timeout. | 45 | * -1 - Timeout. |
46 | */ | 46 | */ |
47 | static int mv88e1xxx_reset(struct cphy *cphy, int wait) | 47 | static int mv88e1xxx_reset(struct cphy *cphy, int wait) |
diff --git a/drivers/net/chelsio/my3126.c b/drivers/net/chelsio/my3126.c index 4c6028512d10..a683fd3bb624 100644 --- a/drivers/net/chelsio/my3126.c +++ b/drivers/net/chelsio/my3126.c | |||
@@ -22,7 +22,7 @@ static int my3126_interrupt_enable(struct cphy *cphy) | |||
22 | 22 | ||
23 | static int my3126_interrupt_disable(struct cphy *cphy) | 23 | static int my3126_interrupt_disable(struct cphy *cphy) |
24 | { | 24 | { |
25 | cancel_rearming_delayed_work(&cphy->phy_update); | 25 | cancel_delayed_work_sync(&cphy->phy_update); |
26 | return 0; | 26 | return 0; |
27 | } | 27 | } |
28 | 28 | ||
diff --git a/drivers/net/chelsio/pm3393.c b/drivers/net/chelsio/pm3393.c index 7dbb16d36fff..40c7b93ababc 100644 --- a/drivers/net/chelsio/pm3393.c +++ b/drivers/net/chelsio/pm3393.c | |||
@@ -293,7 +293,7 @@ static int pm3393_enable_port(struct cmac *cmac, int which) | |||
293 | pm3393_enable(cmac, which); | 293 | pm3393_enable(cmac, which); |
294 | 294 | ||
295 | /* | 295 | /* |
296 | * XXX This should be done by the PHY and preferrably not at all. | 296 | * XXX This should be done by the PHY and preferably not at all. |
297 | * The PHY doesn't give us link status indication on its own so have | 297 | * The PHY doesn't give us link status indication on its own so have |
298 | * the link management code query it instead. | 298 | * the link management code query it instead. |
299 | */ | 299 | */ |
diff --git a/drivers/net/chelsio/sge.c b/drivers/net/chelsio/sge.c index f01cfdb995de..58380d240619 100644 --- a/drivers/net/chelsio/sge.c +++ b/drivers/net/chelsio/sge.c | |||
@@ -54,6 +54,7 @@ | |||
54 | #include <linux/in.h> | 54 | #include <linux/in.h> |
55 | #include <linux/if_arp.h> | 55 | #include <linux/if_arp.h> |
56 | #include <linux/slab.h> | 56 | #include <linux/slab.h> |
57 | #include <linux/prefetch.h> | ||
57 | 58 | ||
58 | #include "cpl5_cmd.h" | 59 | #include "cpl5_cmd.h" |
59 | #include "sge.h" | 60 | #include "sge.h" |
@@ -273,6 +274,10 @@ struct sge { | |||
273 | struct cmdQ cmdQ[SGE_CMDQ_N] ____cacheline_aligned_in_smp; | 274 | struct cmdQ cmdQ[SGE_CMDQ_N] ____cacheline_aligned_in_smp; |
274 | }; | 275 | }; |
275 | 276 | ||
277 | static const u8 ch_mac_addr[ETH_ALEN] = { | ||
278 | 0x0, 0x7, 0x43, 0x0, 0x0, 0x0 | ||
279 | }; | ||
280 | |||
276 | /* | 281 | /* |
277 | * stop tasklet and free all pending skb's | 282 | * stop tasklet and free all pending skb's |
278 | */ | 283 | */ |
@@ -925,7 +930,7 @@ void t1_sge_intr_enable(struct sge *sge) | |||
925 | u32 en = SGE_INT_ENABLE; | 930 | u32 en = SGE_INT_ENABLE; |
926 | u32 val = readl(sge->adapter->regs + A_PL_ENABLE); | 931 | u32 val = readl(sge->adapter->regs + A_PL_ENABLE); |
927 | 932 | ||
928 | if (sge->adapter->flags & TSO_CAPABLE) | 933 | if (sge->adapter->port[0].dev->hw_features & NETIF_F_TSO) |
929 | en &= ~F_PACKET_TOO_BIG; | 934 | en &= ~F_PACKET_TOO_BIG; |
930 | writel(en, sge->adapter->regs + A_SG_INT_ENABLE); | 935 | writel(en, sge->adapter->regs + A_SG_INT_ENABLE); |
931 | writel(val | SGE_PL_INTR_MASK, sge->adapter->regs + A_PL_ENABLE); | 936 | writel(val | SGE_PL_INTR_MASK, sge->adapter->regs + A_PL_ENABLE); |
@@ -948,7 +953,7 @@ int t1_sge_intr_error_handler(struct sge *sge) | |||
948 | struct adapter *adapter = sge->adapter; | 953 | struct adapter *adapter = sge->adapter; |
949 | u32 cause = readl(adapter->regs + A_SG_INT_CAUSE); | 954 | u32 cause = readl(adapter->regs + A_SG_INT_CAUSE); |
950 | 955 | ||
951 | if (adapter->flags & TSO_CAPABLE) | 956 | if (adapter->port[0].dev->hw_features & NETIF_F_TSO) |
952 | cause &= ~F_PACKET_TOO_BIG; | 957 | cause &= ~F_PACKET_TOO_BIG; |
953 | if (cause & F_RESPQ_EXHAUSTED) | 958 | if (cause & F_RESPQ_EXHAUSTED) |
954 | sge->stats.respQ_empty++; | 959 | sge->stats.respQ_empty++; |
@@ -1365,6 +1370,7 @@ static void sge_rx(struct sge *sge, struct freelQ *fl, unsigned int len) | |||
1365 | const struct cpl_rx_pkt *p; | 1370 | const struct cpl_rx_pkt *p; |
1366 | struct adapter *adapter = sge->adapter; | 1371 | struct adapter *adapter = sge->adapter; |
1367 | struct sge_port_stats *st; | 1372 | struct sge_port_stats *st; |
1373 | struct net_device *dev; | ||
1368 | 1374 | ||
1369 | skb = get_packet(adapter->pdev, fl, len - sge->rx_pkt_pad); | 1375 | skb = get_packet(adapter->pdev, fl, len - sge->rx_pkt_pad); |
1370 | if (unlikely(!skb)) { | 1376 | if (unlikely(!skb)) { |
@@ -1380,15 +1386,16 @@ static void sge_rx(struct sge *sge, struct freelQ *fl, unsigned int len) | |||
1380 | __skb_pull(skb, sizeof(*p)); | 1386 | __skb_pull(skb, sizeof(*p)); |
1381 | 1387 | ||
1382 | st = this_cpu_ptr(sge->port_stats[p->iff]); | 1388 | st = this_cpu_ptr(sge->port_stats[p->iff]); |
1389 | dev = adapter->port[p->iff].dev; | ||
1383 | 1390 | ||
1384 | skb->protocol = eth_type_trans(skb, adapter->port[p->iff].dev); | 1391 | skb->protocol = eth_type_trans(skb, dev); |
1385 | if ((adapter->flags & RX_CSUM_ENABLED) && p->csum == 0xffff && | 1392 | if ((dev->features & NETIF_F_RXCSUM) && p->csum == 0xffff && |
1386 | skb->protocol == htons(ETH_P_IP) && | 1393 | skb->protocol == htons(ETH_P_IP) && |
1387 | (skb->data[9] == IPPROTO_TCP || skb->data[9] == IPPROTO_UDP)) { | 1394 | (skb->data[9] == IPPROTO_TCP || skb->data[9] == IPPROTO_UDP)) { |
1388 | ++st->rx_cso_good; | 1395 | ++st->rx_cso_good; |
1389 | skb->ip_summed = CHECKSUM_UNNECESSARY; | 1396 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
1390 | } else | 1397 | } else |
1391 | skb->ip_summed = CHECKSUM_NONE; | 1398 | skb_checksum_none_assert(skb); |
1392 | 1399 | ||
1393 | if (unlikely(adapter->vlan_grp && p->vlan_valid)) { | 1400 | if (unlikely(adapter->vlan_grp && p->vlan_valid)) { |
1394 | st->vlan_xtract++; | 1401 | st->vlan_xtract++; |
@@ -1551,7 +1558,7 @@ static inline int responses_pending(const struct adapter *adapter) | |||
1551 | const struct respQ *Q = &adapter->sge->respQ; | 1558 | const struct respQ *Q = &adapter->sge->respQ; |
1552 | const struct respQ_e *e = &Q->entries[Q->cidx]; | 1559 | const struct respQ_e *e = &Q->entries[Q->cidx]; |
1553 | 1560 | ||
1554 | return (e->GenerationBit == Q->genbit); | 1561 | return e->GenerationBit == Q->genbit; |
1555 | } | 1562 | } |
1556 | 1563 | ||
1557 | /* | 1564 | /* |
@@ -1658,7 +1665,7 @@ irqreturn_t t1_interrupt(int irq, void *data) | |||
1658 | * The code figures out how many entries the sk_buff will require in the | 1665 | * The code figures out how many entries the sk_buff will require in the |
1659 | * cmdQ and updates the cmdQ data structure with the state once the enqueue | 1666 | * cmdQ and updates the cmdQ data structure with the state once the enqueue |
1660 | * has complete. Then, it doesn't access the global structure anymore, but | 1667 | * has complete. Then, it doesn't access the global structure anymore, but |
1661 | * uses the corresponding fields on the stack. In conjuction with a spinlock | 1668 | * uses the corresponding fields on the stack. In conjunction with a spinlock |
1662 | * around that code, we can make the function reentrant without holding the | 1669 | * around that code, we can make the function reentrant without holding the |
1663 | * lock when we actually enqueue (which might be expensive, especially on | 1670 | * lock when we actually enqueue (which might be expensive, especially on |
1664 | * architectures with IO MMUs). | 1671 | * architectures with IO MMUs). |
@@ -1834,8 +1841,7 @@ netdev_tx_t t1_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
1834 | return NETDEV_TX_OK; | 1841 | return NETDEV_TX_OK; |
1835 | } | 1842 | } |
1836 | 1843 | ||
1837 | if (!(adapter->flags & UDP_CSUM_CAPABLE) && | 1844 | if (skb->ip_summed == CHECKSUM_PARTIAL && |
1838 | skb->ip_summed == CHECKSUM_PARTIAL && | ||
1839 | ip_hdr(skb)->protocol == IPPROTO_UDP) { | 1845 | ip_hdr(skb)->protocol == IPPROTO_UDP) { |
1840 | if (unlikely(skb_checksum_help(skb))) { | 1846 | if (unlikely(skb_checksum_help(skb))) { |
1841 | pr_debug("%s: unable to do udp checksum\n", dev->name); | 1847 | pr_debug("%s: unable to do udp checksum\n", dev->name); |
@@ -1870,7 +1876,7 @@ netdev_tx_t t1_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
1870 | cpl->iff = dev->if_port; | 1876 | cpl->iff = dev->if_port; |
1871 | 1877 | ||
1872 | #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE) | 1878 | #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE) |
1873 | if (adapter->vlan_grp && vlan_tx_tag_present(skb)) { | 1879 | if (vlan_tx_tag_present(skb)) { |
1874 | cpl->vlan_valid = 1; | 1880 | cpl->vlan_valid = 1; |
1875 | cpl->vlan = htons(vlan_tx_tag_get(skb)); | 1881 | cpl->vlan = htons(vlan_tx_tag_get(skb)); |
1876 | st->vlan_insert++; | 1882 | st->vlan_insert++; |
@@ -2012,10 +2018,6 @@ static void espibug_workaround_t204(unsigned long data) | |||
2012 | continue; | 2018 | continue; |
2013 | 2019 | ||
2014 | if (!skb->cb[0]) { | 2020 | if (!skb->cb[0]) { |
2015 | u8 ch_mac_addr[ETH_ALEN] = { | ||
2016 | 0x0, 0x7, 0x43, 0x0, 0x0, 0x0 | ||
2017 | }; | ||
2018 | |||
2019 | skb_copy_to_linear_data_offset(skb, | 2021 | skb_copy_to_linear_data_offset(skb, |
2020 | sizeof(struct cpl_tx_pkt), | 2022 | sizeof(struct cpl_tx_pkt), |
2021 | ch_mac_addr, | 2023 | ch_mac_addr, |
@@ -2048,8 +2050,6 @@ static void espibug_workaround(unsigned long data) | |||
2048 | 2050 | ||
2049 | if ((seop & 0xfff0fff) == 0xfff && skb) { | 2051 | if ((seop & 0xfff0fff) == 0xfff && skb) { |
2050 | if (!skb->cb[0]) { | 2052 | if (!skb->cb[0]) { |
2051 | u8 ch_mac_addr[ETH_ALEN] = | ||
2052 | {0x0, 0x7, 0x43, 0x0, 0x0, 0x0}; | ||
2053 | skb_copy_to_linear_data_offset(skb, | 2053 | skb_copy_to_linear_data_offset(skb, |
2054 | sizeof(struct cpl_tx_pkt), | 2054 | sizeof(struct cpl_tx_pkt), |
2055 | ch_mac_addr, | 2055 | ch_mac_addr, |
diff --git a/drivers/net/chelsio/subr.c b/drivers/net/chelsio/subr.c index 599d178df62d..8a43c7e19701 100644 --- a/drivers/net/chelsio/subr.c +++ b/drivers/net/chelsio/subr.c | |||
@@ -314,14 +314,12 @@ static int mi1_mdio_write(struct net_device *dev, int phy_addr, int mmd_addr, | |||
314 | return 0; | 314 | return 0; |
315 | } | 315 | } |
316 | 316 | ||
317 | #if defined(CONFIG_CHELSIO_T1_1G) | ||
318 | static const struct mdio_ops mi1_mdio_ops = { | 317 | static const struct mdio_ops mi1_mdio_ops = { |
319 | .init = mi1_mdio_init, | 318 | .init = mi1_mdio_init, |
320 | .read = mi1_mdio_read, | 319 | .read = mi1_mdio_read, |
321 | .write = mi1_mdio_write, | 320 | .write = mi1_mdio_write, |
322 | .mode_support = MDIO_SUPPORTS_C22 | 321 | .mode_support = MDIO_SUPPORTS_C22 |
323 | }; | 322 | }; |
324 | #endif | ||
325 | 323 | ||
326 | #endif | 324 | #endif |
327 | 325 | ||
@@ -558,7 +556,7 @@ struct chelsio_vpd_t { | |||
558 | #define EEPROM_MAX_POLL 4 | 556 | #define EEPROM_MAX_POLL 4 |
559 | 557 | ||
560 | /* | 558 | /* |
561 | * Read SEEPROM. A zero is written to the flag register when the addres is | 559 | * Read SEEPROM. A zero is written to the flag register when the address is |
562 | * written to the Control register. The hardware device will set the flag to a | 560 | * written to the Control register. The hardware device will set the flag to a |
563 | * one when 4B have been transferred to the Data register. | 561 | * one when 4B have been transferred to the Data register. |
564 | */ | 562 | */ |
diff --git a/drivers/net/chelsio/tp.c b/drivers/net/chelsio/tp.c index 6222d585e447..8bed4a59e65f 100644 --- a/drivers/net/chelsio/tp.c +++ b/drivers/net/chelsio/tp.c | |||
@@ -152,11 +152,6 @@ void t1_tp_set_ip_checksum_offload(struct petp *tp, int enable) | |||
152 | set_csum_offload(tp, F_IP_CSUM, enable); | 152 | set_csum_offload(tp, F_IP_CSUM, enable); |
153 | } | 153 | } |
154 | 154 | ||
155 | void t1_tp_set_udp_checksum_offload(struct petp *tp, int enable) | ||
156 | { | ||
157 | set_csum_offload(tp, F_UDP_CSUM, enable); | ||
158 | } | ||
159 | |||
160 | void t1_tp_set_tcp_checksum_offload(struct petp *tp, int enable) | 155 | void t1_tp_set_tcp_checksum_offload(struct petp *tp, int enable) |
161 | { | 156 | { |
162 | set_csum_offload(tp, F_TCP_CSUM, enable); | 157 | set_csum_offload(tp, F_TCP_CSUM, enable); |
diff --git a/drivers/net/chelsio/tp.h b/drivers/net/chelsio/tp.h index 32fc71e58913..dfd8ce25106a 100644 --- a/drivers/net/chelsio/tp.h +++ b/drivers/net/chelsio/tp.h | |||
@@ -65,7 +65,6 @@ void t1_tp_intr_clear(struct petp *tp); | |||
65 | int t1_tp_intr_handler(struct petp *tp); | 65 | int t1_tp_intr_handler(struct petp *tp); |
66 | 66 | ||
67 | void t1_tp_get_mib_statistics(adapter_t *adap, struct tp_mib_statistics *tps); | 67 | void t1_tp_get_mib_statistics(adapter_t *adap, struct tp_mib_statistics *tps); |
68 | void t1_tp_set_udp_checksum_offload(struct petp *tp, int enable); | ||
69 | void t1_tp_set_tcp_checksum_offload(struct petp *tp, int enable); | 68 | void t1_tp_set_tcp_checksum_offload(struct petp *tp, int enable); |
70 | void t1_tp_set_ip_checksum_offload(struct petp *tp, int enable); | 69 | void t1_tp_set_ip_checksum_offload(struct petp *tp, int enable); |
71 | int t1_tp_set_coalescing_size(struct petp *tp, unsigned int size); | 70 | int t1_tp_set_coalescing_size(struct petp *tp, unsigned int size); |
diff --git a/drivers/net/chelsio/vsc7326.c b/drivers/net/chelsio/vsc7326.c index c844111cffeb..b0cb388f5e12 100644 --- a/drivers/net/chelsio/vsc7326.c +++ b/drivers/net/chelsio/vsc7326.c | |||
@@ -255,7 +255,7 @@ static int bist_rd(adapter_t *adapter, int moduleid, int address) | |||
255 | else if ((result & (1 << 8)) != 0x0) | 255 | else if ((result & (1 << 8)) != 0x0) |
256 | pr_err("bist read error: 0x%x\n", result); | 256 | pr_err("bist read error: 0x%x\n", result); |
257 | 257 | ||
258 | return (result & 0xff); | 258 | return result & 0xff; |
259 | } | 259 | } |
260 | 260 | ||
261 | static int bist_wr(adapter_t *adapter, int moduleid, int address, int value) | 261 | static int bist_wr(adapter_t *adapter, int moduleid, int address, int value) |
@@ -566,7 +566,7 @@ static int mac_disable(struct cmac *mac, int which) | |||
566 | for (i = 0; i <= 0x3a; ++i) | 566 | for (i = 0; i <= 0x3a; ++i) |
567 | vsc_write(mac->adapter, CRA(4, port, i), 0); | 567 | vsc_write(mac->adapter, CRA(4, port, i), 0); |
568 | 568 | ||
569 | /* Clear sofware counters */ | 569 | /* Clear software counters */ |
570 | memset(&mac->stats, 0, sizeof(struct cmac_statistics)); | 570 | memset(&mac->stats, 0, sizeof(struct cmac_statistics)); |
571 | 571 | ||
572 | return 0; | 572 | return 0; |