Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | |
| 3 | Intel 10 Gigabit PCI Express Linux driver |
Don Skidmore | a52055e | 2011-02-23 09:58:39 +0000 | [diff] [blame] | 4 | Copyright(c) 1999 - 2011 Intel Corporation. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5 | |
| 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, |
| 8 | version 2, as published by the Free Software Foundation. |
| 9 | |
| 10 | This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 13 | more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License along with |
| 16 | this program; if not, write to the Free Software Foundation, Inc., |
| 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | |
| 19 | The full GNU General Public License is included in this distribution in |
| 20 | the file called "COPYING". |
| 21 | |
| 22 | Contact Information: |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 23 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| 24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 25 | |
| 26 | *******************************************************************************/ |
| 27 | |
| 28 | /* ethtool support for ixgbe */ |
| 29 | |
Alexey Dobriyan | a6b7a40 | 2011-06-06 10:43:46 +0000 | [diff] [blame] | 30 | #include <linux/interrupt.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 31 | #include <linux/types.h> |
| 32 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 33 | #include <linux/slab.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 34 | #include <linux/pci.h> |
| 35 | #include <linux/netdevice.h> |
| 36 | #include <linux/ethtool.h> |
| 37 | #include <linux/vmalloc.h> |
| 38 | #include <linux/uaccess.h> |
| 39 | |
| 40 | #include "ixgbe.h" |
| 41 | |
| 42 | |
| 43 | #define IXGBE_ALL_RAR_ENTRIES 16 |
| 44 | |
Ajit Khaparde | 29c3a05 | 2009-10-13 01:47:33 +0000 | [diff] [blame] | 45 | enum {NETDEV_STATS, IXGBE_STATS}; |
| 46 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 47 | struct ixgbe_stats { |
| 48 | char stat_string[ETH_GSTRING_LEN]; |
Ajit Khaparde | 29c3a05 | 2009-10-13 01:47:33 +0000 | [diff] [blame] | 49 | int type; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 50 | int sizeof_stat; |
| 51 | int stat_offset; |
| 52 | }; |
| 53 | |
Ajit Khaparde | 29c3a05 | 2009-10-13 01:47:33 +0000 | [diff] [blame] | 54 | #define IXGBE_STAT(m) IXGBE_STATS, \ |
| 55 | sizeof(((struct ixgbe_adapter *)0)->m), \ |
| 56 | offsetof(struct ixgbe_adapter, m) |
| 57 | #define IXGBE_NETDEV_STAT(m) NETDEV_STATS, \ |
Eric Dumazet | 55bad82 | 2010-07-23 13:44:21 +0000 | [diff] [blame] | 58 | sizeof(((struct rtnl_link_stats64 *)0)->m), \ |
| 59 | offsetof(struct rtnl_link_stats64, m) |
Ajit Khaparde | 29c3a05 | 2009-10-13 01:47:33 +0000 | [diff] [blame] | 60 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 61 | static struct ixgbe_stats ixgbe_gstrings_stats[] = { |
Eric Dumazet | 55bad82 | 2010-07-23 13:44:21 +0000 | [diff] [blame] | 62 | {"rx_packets", IXGBE_NETDEV_STAT(rx_packets)}, |
| 63 | {"tx_packets", IXGBE_NETDEV_STAT(tx_packets)}, |
| 64 | {"rx_bytes", IXGBE_NETDEV_STAT(rx_bytes)}, |
| 65 | {"tx_bytes", IXGBE_NETDEV_STAT(tx_bytes)}, |
Ben Greear | aad7191 | 2009-09-30 12:08:16 +0000 | [diff] [blame] | 66 | {"rx_pkts_nic", IXGBE_STAT(stats.gprc)}, |
| 67 | {"tx_pkts_nic", IXGBE_STAT(stats.gptc)}, |
| 68 | {"rx_bytes_nic", IXGBE_STAT(stats.gorc)}, |
| 69 | {"tx_bytes_nic", IXGBE_STAT(stats.gotc)}, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 70 | {"lsc_int", IXGBE_STAT(lsc_int)}, |
| 71 | {"tx_busy", IXGBE_STAT(tx_busy)}, |
| 72 | {"non_eop_descs", IXGBE_STAT(non_eop_descs)}, |
Eric Dumazet | 55bad82 | 2010-07-23 13:44:21 +0000 | [diff] [blame] | 73 | {"rx_errors", IXGBE_NETDEV_STAT(rx_errors)}, |
| 74 | {"tx_errors", IXGBE_NETDEV_STAT(tx_errors)}, |
| 75 | {"rx_dropped", IXGBE_NETDEV_STAT(rx_dropped)}, |
| 76 | {"tx_dropped", IXGBE_NETDEV_STAT(tx_dropped)}, |
| 77 | {"multicast", IXGBE_NETDEV_STAT(multicast)}, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 78 | {"broadcast", IXGBE_STAT(stats.bprc)}, |
| 79 | {"rx_no_buffer_count", IXGBE_STAT(stats.rnbc[0]) }, |
Eric Dumazet | 55bad82 | 2010-07-23 13:44:21 +0000 | [diff] [blame] | 80 | {"collisions", IXGBE_NETDEV_STAT(collisions)}, |
| 81 | {"rx_over_errors", IXGBE_NETDEV_STAT(rx_over_errors)}, |
| 82 | {"rx_crc_errors", IXGBE_NETDEV_STAT(rx_crc_errors)}, |
| 83 | {"rx_frame_errors", IXGBE_NETDEV_STAT(rx_frame_errors)}, |
Mallikarjuna R Chilakala | 94b982b | 2009-11-23 06:32:06 +0000 | [diff] [blame] | 84 | {"hw_rsc_aggregated", IXGBE_STAT(rsc_total_count)}, |
| 85 | {"hw_rsc_flushed", IXGBE_STAT(rsc_total_flush)}, |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 86 | {"fdir_match", IXGBE_STAT(stats.fdirmatch)}, |
| 87 | {"fdir_miss", IXGBE_STAT(stats.fdirmiss)}, |
Alexander Duyck | d034acf | 2011-04-27 09:25:34 +0000 | [diff] [blame] | 88 | {"fdir_overflow", IXGBE_STAT(fdir_overflow)}, |
Eric Dumazet | 55bad82 | 2010-07-23 13:44:21 +0000 | [diff] [blame] | 89 | {"rx_fifo_errors", IXGBE_NETDEV_STAT(rx_fifo_errors)}, |
| 90 | {"rx_missed_errors", IXGBE_NETDEV_STAT(rx_missed_errors)}, |
| 91 | {"tx_aborted_errors", IXGBE_NETDEV_STAT(tx_aborted_errors)}, |
| 92 | {"tx_carrier_errors", IXGBE_NETDEV_STAT(tx_carrier_errors)}, |
| 93 | {"tx_fifo_errors", IXGBE_NETDEV_STAT(tx_fifo_errors)}, |
| 94 | {"tx_heartbeat_errors", IXGBE_NETDEV_STAT(tx_heartbeat_errors)}, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 95 | {"tx_timeout_count", IXGBE_STAT(tx_timeout_count)}, |
| 96 | {"tx_restart_queue", IXGBE_STAT(restart_queue)}, |
| 97 | {"rx_long_length_errors", IXGBE_STAT(stats.roc)}, |
| 98 | {"rx_short_length_errors", IXGBE_STAT(stats.ruc)}, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 99 | {"tx_flow_control_xon", IXGBE_STAT(stats.lxontxc)}, |
| 100 | {"rx_flow_control_xon", IXGBE_STAT(stats.lxonrxc)}, |
| 101 | {"tx_flow_control_xoff", IXGBE_STAT(stats.lxofftxc)}, |
| 102 | {"rx_flow_control_xoff", IXGBE_STAT(stats.lxoffrxc)}, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 103 | {"rx_csum_offload_errors", IXGBE_STAT(hw_csum_rx_error)}, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 104 | {"alloc_rx_page_failed", IXGBE_STAT(alloc_rx_page_failed)}, |
| 105 | {"alloc_rx_buff_failed", IXGBE_STAT(alloc_rx_buff_failed)}, |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 106 | {"rx_no_dma_resources", IXGBE_STAT(hw_rx_no_dma_resources)}, |
Emil Tantilov | 58f6bcf | 2011-04-21 08:43:43 +0000 | [diff] [blame] | 107 | {"os2bmc_rx_by_bmc", IXGBE_STAT(stats.o2bgptc)}, |
| 108 | {"os2bmc_tx_by_bmc", IXGBE_STAT(stats.b2ospc)}, |
| 109 | {"os2bmc_tx_by_host", IXGBE_STAT(stats.o2bspc)}, |
| 110 | {"os2bmc_rx_by_host", IXGBE_STAT(stats.b2ogprc)}, |
Yi Zou | 6d45522 | 2009-05-13 13:12:16 +0000 | [diff] [blame] | 111 | #ifdef IXGBE_FCOE |
| 112 | {"fcoe_bad_fccrc", IXGBE_STAT(stats.fccrc)}, |
| 113 | {"rx_fcoe_dropped", IXGBE_STAT(stats.fcoerpdc)}, |
| 114 | {"rx_fcoe_packets", IXGBE_STAT(stats.fcoeprc)}, |
| 115 | {"rx_fcoe_dwords", IXGBE_STAT(stats.fcoedwrc)}, |
Amir Hanania | 7b859eb | 2011-08-31 02:07:55 +0000 | [diff] [blame] | 116 | {"fcoe_noddp", IXGBE_STAT(stats.fcoe_noddp)}, |
| 117 | {"fcoe_noddp_ext_buff", IXGBE_STAT(stats.fcoe_noddp_ext_buff)}, |
Yi Zou | 6d45522 | 2009-05-13 13:12:16 +0000 | [diff] [blame] | 118 | {"tx_fcoe_packets", IXGBE_STAT(stats.fcoeptc)}, |
| 119 | {"tx_fcoe_dwords", IXGBE_STAT(stats.fcoedwtc)}, |
| 120 | #endif /* IXGBE_FCOE */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 121 | }; |
| 122 | |
| 123 | #define IXGBE_QUEUE_STATS_LEN \ |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 124 | ((((struct ixgbe_adapter *)netdev_priv(netdev))->num_tx_queues + \ |
| 125 | ((struct ixgbe_adapter *)netdev_priv(netdev))->num_rx_queues) * \ |
| 126 | (sizeof(struct ixgbe_queue_stats) / sizeof(u64))) |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 127 | #define IXGBE_GLOBAL_STATS_LEN ARRAY_SIZE(ixgbe_gstrings_stats) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 128 | #define IXGBE_PB_STATS_LEN ( \ |
Wang Chen | 9d2f472 | 2008-11-21 01:56:07 -0800 | [diff] [blame] | 129 | (((struct ixgbe_adapter *)netdev_priv(netdev))->flags & \ |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 130 | IXGBE_FLAG_DCB_ENABLED) ? \ |
| 131 | (sizeof(((struct ixgbe_adapter *)0)->stats.pxonrxc) + \ |
| 132 | sizeof(((struct ixgbe_adapter *)0)->stats.pxontxc) + \ |
| 133 | sizeof(((struct ixgbe_adapter *)0)->stats.pxoffrxc) + \ |
| 134 | sizeof(((struct ixgbe_adapter *)0)->stats.pxofftxc)) \ |
| 135 | / sizeof(u64) : 0) |
| 136 | #define IXGBE_STATS_LEN (IXGBE_GLOBAL_STATS_LEN + \ |
| 137 | IXGBE_PB_STATS_LEN + \ |
| 138 | IXGBE_QUEUE_STATS_LEN) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 139 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 140 | static const char ixgbe_gstrings_test[][ETH_GSTRING_LEN] = { |
| 141 | "Register test (offline)", "Eeprom test (offline)", |
| 142 | "Interrupt test (offline)", "Loopback test (offline)", |
| 143 | "Link test (on/offline)" |
| 144 | }; |
| 145 | #define IXGBE_TEST_LEN sizeof(ixgbe_gstrings_test) / ETH_GSTRING_LEN |
| 146 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 147 | static int ixgbe_get_settings(struct net_device *netdev, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 148 | struct ethtool_cmd *ecmd) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 149 | { |
| 150 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Ayyappan Veeraiyan | 735441f | 2008-02-01 15:58:54 -0800 | [diff] [blame] | 151 | struct ixgbe_hw *hw = &adapter->hw; |
| 152 | u32 link_speed = 0; |
| 153 | bool link_up; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 154 | |
Ayyappan Veeraiyan | 735441f | 2008-02-01 15:58:54 -0800 | [diff] [blame] | 155 | ecmd->supported = SUPPORTED_10000baseT_Full; |
| 156 | ecmd->autoneg = AUTONEG_ENABLE; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 157 | ecmd->transceiver = XCVR_EXTERNAL; |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 158 | if ((hw->phy.media_type == ixgbe_media_type_copper) || |
Mallikarjuna R Chilakala | a380137 | 2009-06-30 11:44:16 +0000 | [diff] [blame] | 159 | (hw->phy.multispeed_fiber)) { |
Ayyappan Veeraiyan | 735441f | 2008-02-01 15:58:54 -0800 | [diff] [blame] | 160 | ecmd->supported |= (SUPPORTED_1000baseT_Full | |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 161 | SUPPORTED_Autoneg); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 162 | |
Atita Shirwaikar | 1b1c0a4 | 2011-01-05 02:00:55 +0000 | [diff] [blame] | 163 | switch (hw->mac.type) { |
| 164 | case ixgbe_mac_X540: |
| 165 | ecmd->supported |= SUPPORTED_100baseT_Full; |
| 166 | break; |
| 167 | default: |
| 168 | break; |
| 169 | } |
| 170 | |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 171 | ecmd->advertising = ADVERTISED_Autoneg; |
Emil Tantilov | 2b642ca | 2011-03-04 09:06:10 +0000 | [diff] [blame] | 172 | if (hw->phy.autoneg_advertised) { |
| 173 | if (hw->phy.autoneg_advertised & |
| 174 | IXGBE_LINK_SPEED_100_FULL) |
| 175 | ecmd->advertising |= ADVERTISED_100baseT_Full; |
| 176 | if (hw->phy.autoneg_advertised & |
| 177 | IXGBE_LINK_SPEED_10GB_FULL) |
| 178 | ecmd->advertising |= ADVERTISED_10000baseT_Full; |
| 179 | if (hw->phy.autoneg_advertised & |
| 180 | IXGBE_LINK_SPEED_1GB_FULL) |
| 181 | ecmd->advertising |= ADVERTISED_1000baseT_Full; |
| 182 | } else { |
| 183 | /* |
| 184 | * Default advertised modes in case |
| 185 | * phy.autoneg_advertised isn't set. |
| 186 | */ |
Don Skidmore | 7c5b83230 | 2009-03-31 21:33:02 +0000 | [diff] [blame] | 187 | ecmd->advertising |= (ADVERTISED_10000baseT_Full | |
| 188 | ADVERTISED_1000baseT_Full); |
Emil Tantilov | 2b642ca | 2011-03-04 09:06:10 +0000 | [diff] [blame] | 189 | if (hw->mac.type == ixgbe_mac_X540) |
| 190 | ecmd->advertising |= ADVERTISED_100baseT_Full; |
Atita Shirwaikar | 1b1c0a4 | 2011-01-05 02:00:55 +0000 | [diff] [blame] | 191 | } |
| 192 | |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 193 | if (hw->phy.media_type == ixgbe_media_type_copper) { |
| 194 | ecmd->supported |= SUPPORTED_TP; |
| 195 | ecmd->advertising |= ADVERTISED_TP; |
| 196 | ecmd->port = PORT_TP; |
| 197 | } else { |
| 198 | ecmd->supported |= SUPPORTED_FIBRE; |
| 199 | ecmd->advertising |= ADVERTISED_FIBRE; |
| 200 | ecmd->port = PORT_FIBRE; |
| 201 | } |
Don Skidmore | 1e336d0 | 2009-01-26 20:57:51 -0800 | [diff] [blame] | 202 | } else if (hw->phy.media_type == ixgbe_media_type_backplane) { |
| 203 | /* Set as FIBRE until SERDES defined in kernel */ |
Mallikarjuna R Chilakala | 46a72b3 | 2009-08-25 04:47:11 +0000 | [diff] [blame] | 204 | if (hw->device_id == IXGBE_DEV_ID_82598_BX) { |
Don Skidmore | 2f21bdd | 2009-02-01 01:18:23 -0800 | [diff] [blame] | 205 | ecmd->supported = (SUPPORTED_1000baseT_Full | |
| 206 | SUPPORTED_FIBRE); |
| 207 | ecmd->advertising = (ADVERTISED_1000baseT_Full | |
| 208 | ADVERTISED_FIBRE); |
| 209 | ecmd->port = PORT_FIBRE; |
| 210 | ecmd->autoneg = AUTONEG_DISABLE; |
Alexander Duyck | 50d6c68 | 2010-11-16 19:27:05 -0800 | [diff] [blame] | 211 | } else if ((hw->device_id == IXGBE_DEV_ID_82599_COMBO_BACKPLANE) || |
| 212 | (hw->device_id == IXGBE_DEV_ID_82599_KX4_MEZZ)) { |
| 213 | ecmd->supported |= (SUPPORTED_1000baseT_Full | |
| 214 | SUPPORTED_Autoneg | |
| 215 | SUPPORTED_FIBRE); |
| 216 | ecmd->advertising = (ADVERTISED_10000baseT_Full | |
| 217 | ADVERTISED_1000baseT_Full | |
| 218 | ADVERTISED_Autoneg | |
| 219 | ADVERTISED_FIBRE); |
| 220 | ecmd->port = PORT_FIBRE; |
Mallikarjuna R Chilakala | 46a72b3 | 2009-08-25 04:47:11 +0000 | [diff] [blame] | 221 | } else { |
| 222 | ecmd->supported |= (SUPPORTED_1000baseT_Full | |
| 223 | SUPPORTED_FIBRE); |
| 224 | ecmd->advertising = (ADVERTISED_10000baseT_Full | |
| 225 | ADVERTISED_1000baseT_Full | |
| 226 | ADVERTISED_FIBRE); |
| 227 | ecmd->port = PORT_FIBRE; |
Don Skidmore | 1e336d0 | 2009-01-26 20:57:51 -0800 | [diff] [blame] | 228 | } |
Ayyappan Veeraiyan | 735441f | 2008-02-01 15:58:54 -0800 | [diff] [blame] | 229 | } else { |
| 230 | ecmd->supported |= SUPPORTED_FIBRE; |
| 231 | ecmd->advertising = (ADVERTISED_10000baseT_Full | |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 232 | ADVERTISED_FIBRE); |
Ayyappan Veeraiyan | 735441f | 2008-02-01 15:58:54 -0800 | [diff] [blame] | 233 | ecmd->port = PORT_FIBRE; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 234 | ecmd->autoneg = AUTONEG_DISABLE; |
Ayyappan Veeraiyan | 735441f | 2008-02-01 15:58:54 -0800 | [diff] [blame] | 235 | } |
| 236 | |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 237 | /* Get PHY type */ |
| 238 | switch (adapter->hw.phy.type) { |
| 239 | case ixgbe_phy_tn: |
Don Skidmore | fe15e8e1 | 2010-11-16 19:27:16 -0800 | [diff] [blame] | 240 | case ixgbe_phy_aq: |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 241 | case ixgbe_phy_cu_unknown: |
| 242 | /* Copper 10G-BASET */ |
| 243 | ecmd->port = PORT_TP; |
| 244 | break; |
| 245 | case ixgbe_phy_qt: |
| 246 | ecmd->port = PORT_FIBRE; |
| 247 | break; |
| 248 | case ixgbe_phy_nl: |
Don Skidmore | ea0a04d | 2010-05-18 16:00:13 +0000 | [diff] [blame] | 249 | case ixgbe_phy_sfp_passive_tyco: |
| 250 | case ixgbe_phy_sfp_passive_unknown: |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 251 | case ixgbe_phy_sfp_ftl: |
| 252 | case ixgbe_phy_sfp_avago: |
| 253 | case ixgbe_phy_sfp_intel: |
| 254 | case ixgbe_phy_sfp_unknown: |
| 255 | switch (adapter->hw.phy.sfp_type) { |
| 256 | /* SFP+ devices, further checking needed */ |
| 257 | case ixgbe_sfp_type_da_cu: |
| 258 | case ixgbe_sfp_type_da_cu_core0: |
| 259 | case ixgbe_sfp_type_da_cu_core1: |
| 260 | ecmd->port = PORT_DA; |
| 261 | break; |
| 262 | case ixgbe_sfp_type_sr: |
| 263 | case ixgbe_sfp_type_lr: |
| 264 | case ixgbe_sfp_type_srlr_core0: |
| 265 | case ixgbe_sfp_type_srlr_core1: |
| 266 | ecmd->port = PORT_FIBRE; |
| 267 | break; |
| 268 | case ixgbe_sfp_type_not_present: |
| 269 | ecmd->port = PORT_NONE; |
| 270 | break; |
Don Skidmore | cb836a9 | 2010-06-29 18:30:59 +0000 | [diff] [blame] | 271 | case ixgbe_sfp_type_1g_cu_core0: |
| 272 | case ixgbe_sfp_type_1g_cu_core1: |
| 273 | ecmd->port = PORT_TP; |
| 274 | ecmd->supported = SUPPORTED_TP; |
| 275 | ecmd->advertising = (ADVERTISED_1000baseT_Full | |
| 276 | ADVERTISED_TP); |
| 277 | break; |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 278 | case ixgbe_sfp_type_unknown: |
| 279 | default: |
| 280 | ecmd->port = PORT_OTHER; |
| 281 | break; |
| 282 | } |
| 283 | break; |
| 284 | case ixgbe_phy_xaui: |
| 285 | ecmd->port = PORT_NONE; |
| 286 | break; |
| 287 | case ixgbe_phy_unknown: |
| 288 | case ixgbe_phy_generic: |
| 289 | case ixgbe_phy_sfp_unsupported: |
| 290 | default: |
| 291 | ecmd->port = PORT_OTHER; |
| 292 | break; |
| 293 | } |
| 294 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 295 | hw->mac.ops.check_link(hw, &link_speed, &link_up, false); |
Ayyappan Veeraiyan | 735441f | 2008-02-01 15:58:54 -0800 | [diff] [blame] | 296 | if (link_up) { |
Atita Shirwaikar | 1b1c0a4 | 2011-01-05 02:00:55 +0000 | [diff] [blame] | 297 | switch (link_speed) { |
| 298 | case IXGBE_LINK_SPEED_10GB_FULL: |
David Decotigny | 7073949 | 2011-04-27 18:32:40 +0000 | [diff] [blame] | 299 | ethtool_cmd_speed_set(ecmd, SPEED_10000); |
Atita Shirwaikar | 1b1c0a4 | 2011-01-05 02:00:55 +0000 | [diff] [blame] | 300 | break; |
| 301 | case IXGBE_LINK_SPEED_1GB_FULL: |
David Decotigny | 7073949 | 2011-04-27 18:32:40 +0000 | [diff] [blame] | 302 | ethtool_cmd_speed_set(ecmd, SPEED_1000); |
Atita Shirwaikar | 1b1c0a4 | 2011-01-05 02:00:55 +0000 | [diff] [blame] | 303 | break; |
| 304 | case IXGBE_LINK_SPEED_100_FULL: |
David Decotigny | 7073949 | 2011-04-27 18:32:40 +0000 | [diff] [blame] | 305 | ethtool_cmd_speed_set(ecmd, SPEED_100); |
Atita Shirwaikar | 1b1c0a4 | 2011-01-05 02:00:55 +0000 | [diff] [blame] | 306 | break; |
| 307 | default: |
| 308 | break; |
| 309 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 310 | ecmd->duplex = DUPLEX_FULL; |
| 311 | } else { |
David Decotigny | 7073949 | 2011-04-27 18:32:40 +0000 | [diff] [blame] | 312 | ethtool_cmd_speed_set(ecmd, -1); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 313 | ecmd->duplex = -1; |
| 314 | } |
| 315 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 316 | return 0; |
| 317 | } |
| 318 | |
| 319 | static int ixgbe_set_settings(struct net_device *netdev, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 320 | struct ethtool_cmd *ecmd) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 321 | { |
| 322 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Ayyappan Veeraiyan | 735441f | 2008-02-01 15:58:54 -0800 | [diff] [blame] | 323 | struct ixgbe_hw *hw = &adapter->hw; |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 324 | u32 advertised, old; |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 325 | s32 err = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 326 | |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 327 | if ((hw->phy.media_type == ixgbe_media_type_copper) || |
Mallikarjuna R Chilakala | a380137 | 2009-06-30 11:44:16 +0000 | [diff] [blame] | 328 | (hw->phy.multispeed_fiber)) { |
Emil Tantilov | abcc80d | 2011-07-29 06:46:10 +0000 | [diff] [blame] | 329 | /* |
| 330 | * this function does not support duplex forcing, but can |
| 331 | * limit the advertising of the adapter to the specified speed |
| 332 | */ |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 333 | if (ecmd->autoneg == AUTONEG_DISABLE) |
| 334 | return -EINVAL; |
| 335 | |
Emil Tantilov | abcc80d | 2011-07-29 06:46:10 +0000 | [diff] [blame] | 336 | if (ecmd->advertising & ~ecmd->supported) |
| 337 | return -EINVAL; |
| 338 | |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 339 | old = hw->phy.autoneg_advertised; |
| 340 | advertised = 0; |
| 341 | if (ecmd->advertising & ADVERTISED_10000baseT_Full) |
| 342 | advertised |= IXGBE_LINK_SPEED_10GB_FULL; |
| 343 | |
| 344 | if (ecmd->advertising & ADVERTISED_1000baseT_Full) |
| 345 | advertised |= IXGBE_LINK_SPEED_1GB_FULL; |
| 346 | |
Emil Tantilov | 2b642ca | 2011-03-04 09:06:10 +0000 | [diff] [blame] | 347 | if (ecmd->advertising & ADVERTISED_100baseT_Full) |
| 348 | advertised |= IXGBE_LINK_SPEED_100_FULL; |
| 349 | |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 350 | if (old == advertised) |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 351 | return err; |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 352 | /* this sets the link speed and restarts auto-neg */ |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 353 | hw->mac.autotry_restart = true; |
Mallikarjuna R Chilakala | 8620a10 | 2009-09-01 13:49:35 +0000 | [diff] [blame] | 354 | err = hw->mac.ops.setup_link(hw, advertised, true, true); |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 355 | if (err) { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 356 | e_info(probe, "setup link failed with code %d\n", err); |
Mallikarjuna R Chilakala | 8620a10 | 2009-09-01 13:49:35 +0000 | [diff] [blame] | 357 | hw->mac.ops.setup_link(hw, old, true, true); |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 358 | } |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 359 | } else { |
| 360 | /* in this case we currently only support 10Gb/FULL */ |
David Decotigny | 25db033 | 2011-04-27 18:32:39 +0000 | [diff] [blame] | 361 | u32 speed = ethtool_cmd_speed(ecmd); |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 362 | if ((ecmd->autoneg == AUTONEG_ENABLE) || |
Mallikarjuna R Chilakala | a380137 | 2009-06-30 11:44:16 +0000 | [diff] [blame] | 363 | (ecmd->advertising != ADVERTISED_10000baseT_Full) || |
David Decotigny | 25db033 | 2011-04-27 18:32:39 +0000 | [diff] [blame] | 364 | (speed + ecmd->duplex != SPEED_10000 + DUPLEX_FULL)) |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 365 | return -EINVAL; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 366 | } |
| 367 | |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 368 | return err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | static void ixgbe_get_pauseparam(struct net_device *netdev, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 372 | struct ethtool_pauseparam *pause) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 373 | { |
| 374 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 375 | struct ixgbe_hw *hw = &adapter->hw; |
| 376 | |
Mika Lansirinne | 860502b | 2011-09-16 16:52:59 +0000 | [diff] [blame] | 377 | if (hw->fc.disable_fc_autoneg) |
Don Skidmore | 71fd570 | 2009-03-31 21:35:05 +0000 | [diff] [blame] | 378 | pause->autoneg = 0; |
| 379 | else |
| 380 | pause->autoneg = 1; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 381 | |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 382 | if (hw->fc.current_mode == ixgbe_fc_rx_pause) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 383 | pause->rx_pause = 1; |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 384 | } else if (hw->fc.current_mode == ixgbe_fc_tx_pause) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 385 | pause->tx_pause = 1; |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 386 | } else if (hw->fc.current_mode == ixgbe_fc_full) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 387 | pause->rx_pause = 1; |
| 388 | pause->tx_pause = 1; |
Alexander Duyck | 673ac60 | 2010-11-16 19:27:05 -0800 | [diff] [blame] | 389 | #ifdef CONFIG_DCB |
| 390 | } else if (hw->fc.current_mode == ixgbe_fc_pfc) { |
| 391 | pause->rx_pause = 0; |
| 392 | pause->tx_pause = 0; |
| 393 | #endif |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 394 | } |
| 395 | } |
| 396 | |
| 397 | static int ixgbe_set_pauseparam(struct net_device *netdev, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 398 | struct ethtool_pauseparam *pause) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 399 | { |
| 400 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 401 | struct ixgbe_hw *hw = &adapter->hw; |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 402 | struct ixgbe_fc_info fc; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 403 | |
Peter P Waskiewicz Jr | 264857b | 2009-05-17 12:35:16 +0000 | [diff] [blame] | 404 | #ifdef CONFIG_DCB |
| 405 | if (adapter->dcb_cfg.pfc_mode_enable || |
| 406 | ((hw->mac.type == ixgbe_mac_82598EB) && |
| 407 | (adapter->flags & IXGBE_FLAG_DCB_ENABLED))) |
| 408 | return -EINVAL; |
| 409 | |
| 410 | #endif |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 411 | fc = hw->fc; |
| 412 | |
Don Skidmore | 71fd570 | 2009-03-31 21:35:05 +0000 | [diff] [blame] | 413 | if (pause->autoneg != AUTONEG_ENABLE) |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 414 | fc.disable_fc_autoneg = true; |
Don Skidmore | 71fd570 | 2009-03-31 21:35:05 +0000 | [diff] [blame] | 415 | else |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 416 | fc.disable_fc_autoneg = false; |
Don Skidmore | 71fd570 | 2009-03-31 21:35:05 +0000 | [diff] [blame] | 417 | |
Don Skidmore | 1c4f0ef | 2010-04-27 11:31:06 +0000 | [diff] [blame] | 418 | if ((pause->rx_pause && pause->tx_pause) || pause->autoneg) |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 419 | fc.requested_mode = ixgbe_fc_full; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 420 | else if (pause->rx_pause && !pause->tx_pause) |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 421 | fc.requested_mode = ixgbe_fc_rx_pause; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 422 | else if (!pause->rx_pause && pause->tx_pause) |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 423 | fc.requested_mode = ixgbe_fc_tx_pause; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 424 | else if (!pause->rx_pause && !pause->tx_pause) |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 425 | fc.requested_mode = ixgbe_fc_none; |
Ayyappan Veeraiyan | 9c83b070 | 2008-02-01 15:58:59 -0800 | [diff] [blame] | 426 | else |
| 427 | return -EINVAL; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 428 | |
Peter P Waskiewicz Jr | 264857b | 2009-05-17 12:35:16 +0000 | [diff] [blame] | 429 | #ifdef CONFIG_DCB |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 430 | adapter->last_lfc_mode = fc.requested_mode; |
Peter P Waskiewicz Jr | 264857b | 2009-05-17 12:35:16 +0000 | [diff] [blame] | 431 | #endif |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 432 | |
| 433 | /* if the thing changed then we'll update and use new autoneg */ |
| 434 | if (memcmp(&fc, &hw->fc, sizeof(struct ixgbe_fc_info))) { |
| 435 | hw->fc = fc; |
| 436 | if (netif_running(netdev)) |
| 437 | ixgbe_reinit_locked(adapter); |
| 438 | else |
| 439 | ixgbe_reset(adapter); |
| 440 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 441 | |
| 442 | return 0; |
| 443 | } |
| 444 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 445 | static u32 ixgbe_get_msglevel(struct net_device *netdev) |
| 446 | { |
| 447 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 448 | return adapter->msg_enable; |
| 449 | } |
| 450 | |
| 451 | static void ixgbe_set_msglevel(struct net_device *netdev, u32 data) |
| 452 | { |
| 453 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 454 | adapter->msg_enable = data; |
| 455 | } |
| 456 | |
| 457 | static int ixgbe_get_regs_len(struct net_device *netdev) |
| 458 | { |
Emil Tantilov | 217995e | 2011-09-15 06:23:10 +0000 | [diff] [blame] | 459 | #define IXGBE_REGS_LEN 1129 |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 460 | return IXGBE_REGS_LEN * sizeof(u32); |
| 461 | } |
| 462 | |
| 463 | #define IXGBE_GET_STAT(_A_, _R_) _A_->stats._R_ |
| 464 | |
| 465 | static void ixgbe_get_regs(struct net_device *netdev, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 466 | struct ethtool_regs *regs, void *p) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 467 | { |
| 468 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 469 | struct ixgbe_hw *hw = &adapter->hw; |
| 470 | u32 *regs_buff = p; |
| 471 | u8 i; |
| 472 | |
| 473 | memset(p, 0, IXGBE_REGS_LEN * sizeof(u32)); |
| 474 | |
| 475 | regs->version = (1 << 24) | hw->revision_id << 16 | hw->device_id; |
| 476 | |
| 477 | /* General Registers */ |
| 478 | regs_buff[0] = IXGBE_READ_REG(hw, IXGBE_CTRL); |
| 479 | regs_buff[1] = IXGBE_READ_REG(hw, IXGBE_STATUS); |
| 480 | regs_buff[2] = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT); |
| 481 | regs_buff[3] = IXGBE_READ_REG(hw, IXGBE_ESDP); |
| 482 | regs_buff[4] = IXGBE_READ_REG(hw, IXGBE_EODSDP); |
| 483 | regs_buff[5] = IXGBE_READ_REG(hw, IXGBE_LEDCTL); |
| 484 | regs_buff[6] = IXGBE_READ_REG(hw, IXGBE_FRTIMER); |
| 485 | regs_buff[7] = IXGBE_READ_REG(hw, IXGBE_TCPTIMER); |
| 486 | |
| 487 | /* NVM Register */ |
| 488 | regs_buff[8] = IXGBE_READ_REG(hw, IXGBE_EEC); |
| 489 | regs_buff[9] = IXGBE_READ_REG(hw, IXGBE_EERD); |
| 490 | regs_buff[10] = IXGBE_READ_REG(hw, IXGBE_FLA); |
| 491 | regs_buff[11] = IXGBE_READ_REG(hw, IXGBE_EEMNGCTL); |
| 492 | regs_buff[12] = IXGBE_READ_REG(hw, IXGBE_EEMNGDATA); |
| 493 | regs_buff[13] = IXGBE_READ_REG(hw, IXGBE_FLMNGCTL); |
| 494 | regs_buff[14] = IXGBE_READ_REG(hw, IXGBE_FLMNGDATA); |
| 495 | regs_buff[15] = IXGBE_READ_REG(hw, IXGBE_FLMNGCNT); |
| 496 | regs_buff[16] = IXGBE_READ_REG(hw, IXGBE_FLOP); |
| 497 | regs_buff[17] = IXGBE_READ_REG(hw, IXGBE_GRC); |
| 498 | |
| 499 | /* Interrupt */ |
Jesse Brandeburg | 98c00a1 | 2008-09-11 19:56:41 -0700 | [diff] [blame] | 500 | /* don't read EICR because it can clear interrupt causes, instead |
| 501 | * read EICS which is a shadow but doesn't clear EICR */ |
| 502 | regs_buff[18] = IXGBE_READ_REG(hw, IXGBE_EICS); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 503 | regs_buff[19] = IXGBE_READ_REG(hw, IXGBE_EICS); |
| 504 | regs_buff[20] = IXGBE_READ_REG(hw, IXGBE_EIMS); |
| 505 | regs_buff[21] = IXGBE_READ_REG(hw, IXGBE_EIMC); |
| 506 | regs_buff[22] = IXGBE_READ_REG(hw, IXGBE_EIAC); |
| 507 | regs_buff[23] = IXGBE_READ_REG(hw, IXGBE_EIAM); |
| 508 | regs_buff[24] = IXGBE_READ_REG(hw, IXGBE_EITR(0)); |
| 509 | regs_buff[25] = IXGBE_READ_REG(hw, IXGBE_IVAR(0)); |
| 510 | regs_buff[26] = IXGBE_READ_REG(hw, IXGBE_MSIXT); |
| 511 | regs_buff[27] = IXGBE_READ_REG(hw, IXGBE_MSIXPBA); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 512 | regs_buff[28] = IXGBE_READ_REG(hw, IXGBE_PBACL(0)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 513 | regs_buff[29] = IXGBE_READ_REG(hw, IXGBE_GPIE); |
| 514 | |
| 515 | /* Flow Control */ |
| 516 | regs_buff[30] = IXGBE_READ_REG(hw, IXGBE_PFCTOP); |
| 517 | regs_buff[31] = IXGBE_READ_REG(hw, IXGBE_FCTTV(0)); |
| 518 | regs_buff[32] = IXGBE_READ_REG(hw, IXGBE_FCTTV(1)); |
| 519 | regs_buff[33] = IXGBE_READ_REG(hw, IXGBE_FCTTV(2)); |
| 520 | regs_buff[34] = IXGBE_READ_REG(hw, IXGBE_FCTTV(3)); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 521 | for (i = 0; i < 8; i++) { |
| 522 | switch (hw->mac.type) { |
| 523 | case ixgbe_mac_82598EB: |
| 524 | regs_buff[35 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTL(i)); |
| 525 | regs_buff[43 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTH(i)); |
| 526 | break; |
| 527 | case ixgbe_mac_82599EB: |
Emil Tantilov | 80bb25e | 2011-07-27 04:16:29 +0000 | [diff] [blame] | 528 | case ixgbe_mac_X540: |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 529 | regs_buff[35 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTL_82599(i)); |
| 530 | regs_buff[43 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i)); |
| 531 | break; |
| 532 | default: |
| 533 | break; |
| 534 | } |
| 535 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 536 | regs_buff[51] = IXGBE_READ_REG(hw, IXGBE_FCRTV); |
| 537 | regs_buff[52] = IXGBE_READ_REG(hw, IXGBE_TFCS); |
| 538 | |
| 539 | /* Receive DMA */ |
| 540 | for (i = 0; i < 64; i++) |
| 541 | regs_buff[53 + i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i)); |
| 542 | for (i = 0; i < 64; i++) |
| 543 | regs_buff[117 + i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i)); |
| 544 | for (i = 0; i < 64; i++) |
| 545 | regs_buff[181 + i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i)); |
| 546 | for (i = 0; i < 64; i++) |
| 547 | regs_buff[245 + i] = IXGBE_READ_REG(hw, IXGBE_RDH(i)); |
| 548 | for (i = 0; i < 64; i++) |
| 549 | regs_buff[309 + i] = IXGBE_READ_REG(hw, IXGBE_RDT(i)); |
| 550 | for (i = 0; i < 64; i++) |
| 551 | regs_buff[373 + i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i)); |
| 552 | for (i = 0; i < 16; i++) |
| 553 | regs_buff[437 + i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i)); |
| 554 | for (i = 0; i < 16; i++) |
| 555 | regs_buff[453 + i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i)); |
| 556 | regs_buff[469] = IXGBE_READ_REG(hw, IXGBE_RDRXCTL); |
| 557 | for (i = 0; i < 8; i++) |
| 558 | regs_buff[470 + i] = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i)); |
| 559 | regs_buff[478] = IXGBE_READ_REG(hw, IXGBE_RXCTRL); |
| 560 | regs_buff[479] = IXGBE_READ_REG(hw, IXGBE_DROPEN); |
| 561 | |
| 562 | /* Receive */ |
| 563 | regs_buff[480] = IXGBE_READ_REG(hw, IXGBE_RXCSUM); |
| 564 | regs_buff[481] = IXGBE_READ_REG(hw, IXGBE_RFCTL); |
| 565 | for (i = 0; i < 16; i++) |
| 566 | regs_buff[482 + i] = IXGBE_READ_REG(hw, IXGBE_RAL(i)); |
| 567 | for (i = 0; i < 16; i++) |
| 568 | regs_buff[498 + i] = IXGBE_READ_REG(hw, IXGBE_RAH(i)); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 569 | regs_buff[514] = IXGBE_READ_REG(hw, IXGBE_PSRTYPE(0)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 570 | regs_buff[515] = IXGBE_READ_REG(hw, IXGBE_FCTRL); |
| 571 | regs_buff[516] = IXGBE_READ_REG(hw, IXGBE_VLNCTRL); |
| 572 | regs_buff[517] = IXGBE_READ_REG(hw, IXGBE_MCSTCTRL); |
| 573 | regs_buff[518] = IXGBE_READ_REG(hw, IXGBE_MRQC); |
| 574 | regs_buff[519] = IXGBE_READ_REG(hw, IXGBE_VMD_CTL); |
| 575 | for (i = 0; i < 8; i++) |
| 576 | regs_buff[520 + i] = IXGBE_READ_REG(hw, IXGBE_IMIR(i)); |
| 577 | for (i = 0; i < 8; i++) |
| 578 | regs_buff[528 + i] = IXGBE_READ_REG(hw, IXGBE_IMIREXT(i)); |
| 579 | regs_buff[536] = IXGBE_READ_REG(hw, IXGBE_IMIRVP); |
| 580 | |
| 581 | /* Transmit */ |
| 582 | for (i = 0; i < 32; i++) |
| 583 | regs_buff[537 + i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i)); |
| 584 | for (i = 0; i < 32; i++) |
| 585 | regs_buff[569 + i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i)); |
| 586 | for (i = 0; i < 32; i++) |
| 587 | regs_buff[601 + i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i)); |
| 588 | for (i = 0; i < 32; i++) |
| 589 | regs_buff[633 + i] = IXGBE_READ_REG(hw, IXGBE_TDH(i)); |
| 590 | for (i = 0; i < 32; i++) |
| 591 | regs_buff[665 + i] = IXGBE_READ_REG(hw, IXGBE_TDT(i)); |
| 592 | for (i = 0; i < 32; i++) |
| 593 | regs_buff[697 + i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i)); |
| 594 | for (i = 0; i < 32; i++) |
| 595 | regs_buff[729 + i] = IXGBE_READ_REG(hw, IXGBE_TDWBAL(i)); |
| 596 | for (i = 0; i < 32; i++) |
| 597 | regs_buff[761 + i] = IXGBE_READ_REG(hw, IXGBE_TDWBAH(i)); |
| 598 | regs_buff[793] = IXGBE_READ_REG(hw, IXGBE_DTXCTL); |
| 599 | for (i = 0; i < 16; i++) |
| 600 | regs_buff[794 + i] = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(i)); |
| 601 | regs_buff[810] = IXGBE_READ_REG(hw, IXGBE_TIPG); |
| 602 | for (i = 0; i < 8; i++) |
| 603 | regs_buff[811 + i] = IXGBE_READ_REG(hw, IXGBE_TXPBSIZE(i)); |
| 604 | regs_buff[819] = IXGBE_READ_REG(hw, IXGBE_MNGTXMAP); |
| 605 | |
| 606 | /* Wake Up */ |
| 607 | regs_buff[820] = IXGBE_READ_REG(hw, IXGBE_WUC); |
| 608 | regs_buff[821] = IXGBE_READ_REG(hw, IXGBE_WUFC); |
| 609 | regs_buff[822] = IXGBE_READ_REG(hw, IXGBE_WUS); |
| 610 | regs_buff[823] = IXGBE_READ_REG(hw, IXGBE_IPAV); |
| 611 | regs_buff[824] = IXGBE_READ_REG(hw, IXGBE_IP4AT); |
| 612 | regs_buff[825] = IXGBE_READ_REG(hw, IXGBE_IP6AT); |
| 613 | regs_buff[826] = IXGBE_READ_REG(hw, IXGBE_WUPL); |
| 614 | regs_buff[827] = IXGBE_READ_REG(hw, IXGBE_WUPM); |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 615 | regs_buff[828] = IXGBE_READ_REG(hw, IXGBE_FHFT(0)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 616 | |
Alexander Duyck | 673ac60 | 2010-11-16 19:27:05 -0800 | [diff] [blame] | 617 | /* DCB */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 618 | regs_buff[829] = IXGBE_READ_REG(hw, IXGBE_RMCS); |
| 619 | regs_buff[830] = IXGBE_READ_REG(hw, IXGBE_DPMCS); |
| 620 | regs_buff[831] = IXGBE_READ_REG(hw, IXGBE_PDPMCS); |
| 621 | regs_buff[832] = IXGBE_READ_REG(hw, IXGBE_RUPPBMR); |
| 622 | for (i = 0; i < 8; i++) |
| 623 | regs_buff[833 + i] = IXGBE_READ_REG(hw, IXGBE_RT2CR(i)); |
| 624 | for (i = 0; i < 8; i++) |
| 625 | regs_buff[841 + i] = IXGBE_READ_REG(hw, IXGBE_RT2SR(i)); |
| 626 | for (i = 0; i < 8; i++) |
| 627 | regs_buff[849 + i] = IXGBE_READ_REG(hw, IXGBE_TDTQ2TCCR(i)); |
| 628 | for (i = 0; i < 8; i++) |
| 629 | regs_buff[857 + i] = IXGBE_READ_REG(hw, IXGBE_TDTQ2TCSR(i)); |
| 630 | for (i = 0; i < 8; i++) |
| 631 | regs_buff[865 + i] = IXGBE_READ_REG(hw, IXGBE_TDPT2TCCR(i)); |
| 632 | for (i = 0; i < 8; i++) |
| 633 | regs_buff[873 + i] = IXGBE_READ_REG(hw, IXGBE_TDPT2TCSR(i)); |
| 634 | |
| 635 | /* Statistics */ |
| 636 | regs_buff[881] = IXGBE_GET_STAT(adapter, crcerrs); |
| 637 | regs_buff[882] = IXGBE_GET_STAT(adapter, illerrc); |
| 638 | regs_buff[883] = IXGBE_GET_STAT(adapter, errbc); |
| 639 | regs_buff[884] = IXGBE_GET_STAT(adapter, mspdc); |
| 640 | for (i = 0; i < 8; i++) |
| 641 | regs_buff[885 + i] = IXGBE_GET_STAT(adapter, mpc[i]); |
| 642 | regs_buff[893] = IXGBE_GET_STAT(adapter, mlfc); |
| 643 | regs_buff[894] = IXGBE_GET_STAT(adapter, mrfc); |
| 644 | regs_buff[895] = IXGBE_GET_STAT(adapter, rlec); |
| 645 | regs_buff[896] = IXGBE_GET_STAT(adapter, lxontxc); |
| 646 | regs_buff[897] = IXGBE_GET_STAT(adapter, lxonrxc); |
| 647 | regs_buff[898] = IXGBE_GET_STAT(adapter, lxofftxc); |
| 648 | regs_buff[899] = IXGBE_GET_STAT(adapter, lxoffrxc); |
| 649 | for (i = 0; i < 8; i++) |
| 650 | regs_buff[900 + i] = IXGBE_GET_STAT(adapter, pxontxc[i]); |
| 651 | for (i = 0; i < 8; i++) |
| 652 | regs_buff[908 + i] = IXGBE_GET_STAT(adapter, pxonrxc[i]); |
| 653 | for (i = 0; i < 8; i++) |
| 654 | regs_buff[916 + i] = IXGBE_GET_STAT(adapter, pxofftxc[i]); |
| 655 | for (i = 0; i < 8; i++) |
| 656 | regs_buff[924 + i] = IXGBE_GET_STAT(adapter, pxoffrxc[i]); |
| 657 | regs_buff[932] = IXGBE_GET_STAT(adapter, prc64); |
| 658 | regs_buff[933] = IXGBE_GET_STAT(adapter, prc127); |
| 659 | regs_buff[934] = IXGBE_GET_STAT(adapter, prc255); |
| 660 | regs_buff[935] = IXGBE_GET_STAT(adapter, prc511); |
| 661 | regs_buff[936] = IXGBE_GET_STAT(adapter, prc1023); |
| 662 | regs_buff[937] = IXGBE_GET_STAT(adapter, prc1522); |
| 663 | regs_buff[938] = IXGBE_GET_STAT(adapter, gprc); |
| 664 | regs_buff[939] = IXGBE_GET_STAT(adapter, bprc); |
| 665 | regs_buff[940] = IXGBE_GET_STAT(adapter, mprc); |
| 666 | regs_buff[941] = IXGBE_GET_STAT(adapter, gptc); |
| 667 | regs_buff[942] = IXGBE_GET_STAT(adapter, gorc); |
| 668 | regs_buff[944] = IXGBE_GET_STAT(adapter, gotc); |
| 669 | for (i = 0; i < 8; i++) |
| 670 | regs_buff[946 + i] = IXGBE_GET_STAT(adapter, rnbc[i]); |
| 671 | regs_buff[954] = IXGBE_GET_STAT(adapter, ruc); |
| 672 | regs_buff[955] = IXGBE_GET_STAT(adapter, rfc); |
| 673 | regs_buff[956] = IXGBE_GET_STAT(adapter, roc); |
| 674 | regs_buff[957] = IXGBE_GET_STAT(adapter, rjc); |
| 675 | regs_buff[958] = IXGBE_GET_STAT(adapter, mngprc); |
| 676 | regs_buff[959] = IXGBE_GET_STAT(adapter, mngpdc); |
| 677 | regs_buff[960] = IXGBE_GET_STAT(adapter, mngptc); |
| 678 | regs_buff[961] = IXGBE_GET_STAT(adapter, tor); |
| 679 | regs_buff[963] = IXGBE_GET_STAT(adapter, tpr); |
| 680 | regs_buff[964] = IXGBE_GET_STAT(adapter, tpt); |
| 681 | regs_buff[965] = IXGBE_GET_STAT(adapter, ptc64); |
| 682 | regs_buff[966] = IXGBE_GET_STAT(adapter, ptc127); |
| 683 | regs_buff[967] = IXGBE_GET_STAT(adapter, ptc255); |
| 684 | regs_buff[968] = IXGBE_GET_STAT(adapter, ptc511); |
| 685 | regs_buff[969] = IXGBE_GET_STAT(adapter, ptc1023); |
| 686 | regs_buff[970] = IXGBE_GET_STAT(adapter, ptc1522); |
| 687 | regs_buff[971] = IXGBE_GET_STAT(adapter, mptc); |
| 688 | regs_buff[972] = IXGBE_GET_STAT(adapter, bptc); |
| 689 | regs_buff[973] = IXGBE_GET_STAT(adapter, xec); |
| 690 | for (i = 0; i < 16; i++) |
| 691 | regs_buff[974 + i] = IXGBE_GET_STAT(adapter, qprc[i]); |
| 692 | for (i = 0; i < 16; i++) |
| 693 | regs_buff[990 + i] = IXGBE_GET_STAT(adapter, qptc[i]); |
| 694 | for (i = 0; i < 16; i++) |
| 695 | regs_buff[1006 + i] = IXGBE_GET_STAT(adapter, qbrc[i]); |
| 696 | for (i = 0; i < 16; i++) |
| 697 | regs_buff[1022 + i] = IXGBE_GET_STAT(adapter, qbtc[i]); |
| 698 | |
| 699 | /* MAC */ |
| 700 | regs_buff[1038] = IXGBE_READ_REG(hw, IXGBE_PCS1GCFIG); |
| 701 | regs_buff[1039] = IXGBE_READ_REG(hw, IXGBE_PCS1GLCTL); |
| 702 | regs_buff[1040] = IXGBE_READ_REG(hw, IXGBE_PCS1GLSTA); |
| 703 | regs_buff[1041] = IXGBE_READ_REG(hw, IXGBE_PCS1GDBG0); |
| 704 | regs_buff[1042] = IXGBE_READ_REG(hw, IXGBE_PCS1GDBG1); |
| 705 | regs_buff[1043] = IXGBE_READ_REG(hw, IXGBE_PCS1GANA); |
| 706 | regs_buff[1044] = IXGBE_READ_REG(hw, IXGBE_PCS1GANLP); |
| 707 | regs_buff[1045] = IXGBE_READ_REG(hw, IXGBE_PCS1GANNP); |
| 708 | regs_buff[1046] = IXGBE_READ_REG(hw, IXGBE_PCS1GANLPNP); |
| 709 | regs_buff[1047] = IXGBE_READ_REG(hw, IXGBE_HLREG0); |
| 710 | regs_buff[1048] = IXGBE_READ_REG(hw, IXGBE_HLREG1); |
| 711 | regs_buff[1049] = IXGBE_READ_REG(hw, IXGBE_PAP); |
| 712 | regs_buff[1050] = IXGBE_READ_REG(hw, IXGBE_MACA); |
| 713 | regs_buff[1051] = IXGBE_READ_REG(hw, IXGBE_APAE); |
| 714 | regs_buff[1052] = IXGBE_READ_REG(hw, IXGBE_ARD); |
| 715 | regs_buff[1053] = IXGBE_READ_REG(hw, IXGBE_AIS); |
| 716 | regs_buff[1054] = IXGBE_READ_REG(hw, IXGBE_MSCA); |
| 717 | regs_buff[1055] = IXGBE_READ_REG(hw, IXGBE_MSRWD); |
| 718 | regs_buff[1056] = IXGBE_READ_REG(hw, IXGBE_MLADD); |
| 719 | regs_buff[1057] = IXGBE_READ_REG(hw, IXGBE_MHADD); |
| 720 | regs_buff[1058] = IXGBE_READ_REG(hw, IXGBE_TREG); |
| 721 | regs_buff[1059] = IXGBE_READ_REG(hw, IXGBE_PCSS1); |
| 722 | regs_buff[1060] = IXGBE_READ_REG(hw, IXGBE_PCSS2); |
| 723 | regs_buff[1061] = IXGBE_READ_REG(hw, IXGBE_XPCSS); |
| 724 | regs_buff[1062] = IXGBE_READ_REG(hw, IXGBE_SERDESC); |
| 725 | regs_buff[1063] = IXGBE_READ_REG(hw, IXGBE_MACS); |
| 726 | regs_buff[1064] = IXGBE_READ_REG(hw, IXGBE_AUTOC); |
| 727 | regs_buff[1065] = IXGBE_READ_REG(hw, IXGBE_LINKS); |
| 728 | regs_buff[1066] = IXGBE_READ_REG(hw, IXGBE_AUTOC2); |
| 729 | regs_buff[1067] = IXGBE_READ_REG(hw, IXGBE_AUTOC3); |
| 730 | regs_buff[1068] = IXGBE_READ_REG(hw, IXGBE_ANLP1); |
| 731 | regs_buff[1069] = IXGBE_READ_REG(hw, IXGBE_ANLP2); |
| 732 | regs_buff[1070] = IXGBE_READ_REG(hw, IXGBE_ATLASCTL); |
| 733 | |
| 734 | /* Diagnostic */ |
| 735 | regs_buff[1071] = IXGBE_READ_REG(hw, IXGBE_RDSTATCTL); |
| 736 | for (i = 0; i < 8; i++) |
Jesse Brandeburg | 98c00a1 | 2008-09-11 19:56:41 -0700 | [diff] [blame] | 737 | regs_buff[1072 + i] = IXGBE_READ_REG(hw, IXGBE_RDSTAT(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 738 | regs_buff[1080] = IXGBE_READ_REG(hw, IXGBE_RDHMPN); |
Jesse Brandeburg | 98c00a1 | 2008-09-11 19:56:41 -0700 | [diff] [blame] | 739 | for (i = 0; i < 4; i++) |
| 740 | regs_buff[1081 + i] = IXGBE_READ_REG(hw, IXGBE_RIC_DW(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 741 | regs_buff[1085] = IXGBE_READ_REG(hw, IXGBE_RDPROBE); |
| 742 | regs_buff[1086] = IXGBE_READ_REG(hw, IXGBE_TDSTATCTL); |
| 743 | for (i = 0; i < 8; i++) |
Jesse Brandeburg | 98c00a1 | 2008-09-11 19:56:41 -0700 | [diff] [blame] | 744 | regs_buff[1087 + i] = IXGBE_READ_REG(hw, IXGBE_TDSTAT(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 745 | regs_buff[1095] = IXGBE_READ_REG(hw, IXGBE_TDHMPN); |
Jesse Brandeburg | 98c00a1 | 2008-09-11 19:56:41 -0700 | [diff] [blame] | 746 | for (i = 0; i < 4; i++) |
| 747 | regs_buff[1096 + i] = IXGBE_READ_REG(hw, IXGBE_TIC_DW(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 748 | regs_buff[1100] = IXGBE_READ_REG(hw, IXGBE_TDPROBE); |
| 749 | regs_buff[1101] = IXGBE_READ_REG(hw, IXGBE_TXBUFCTRL); |
| 750 | regs_buff[1102] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA0); |
| 751 | regs_buff[1103] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA1); |
| 752 | regs_buff[1104] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA2); |
| 753 | regs_buff[1105] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA3); |
| 754 | regs_buff[1106] = IXGBE_READ_REG(hw, IXGBE_RXBUFCTRL); |
| 755 | regs_buff[1107] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA0); |
| 756 | regs_buff[1108] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA1); |
| 757 | regs_buff[1109] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA2); |
| 758 | regs_buff[1110] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA3); |
| 759 | for (i = 0; i < 8; i++) |
Jesse Brandeburg | 98c00a1 | 2008-09-11 19:56:41 -0700 | [diff] [blame] | 760 | regs_buff[1111 + i] = IXGBE_READ_REG(hw, IXGBE_PCIE_DIAG(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 761 | regs_buff[1119] = IXGBE_READ_REG(hw, IXGBE_RFVAL); |
| 762 | regs_buff[1120] = IXGBE_READ_REG(hw, IXGBE_MDFTC1); |
| 763 | regs_buff[1121] = IXGBE_READ_REG(hw, IXGBE_MDFTC2); |
| 764 | regs_buff[1122] = IXGBE_READ_REG(hw, IXGBE_MDFTFIFO1); |
| 765 | regs_buff[1123] = IXGBE_READ_REG(hw, IXGBE_MDFTFIFO2); |
| 766 | regs_buff[1124] = IXGBE_READ_REG(hw, IXGBE_MDFTS); |
| 767 | regs_buff[1125] = IXGBE_READ_REG(hw, IXGBE_PCIEECCCTL); |
| 768 | regs_buff[1126] = IXGBE_READ_REG(hw, IXGBE_PBTXECC); |
| 769 | regs_buff[1127] = IXGBE_READ_REG(hw, IXGBE_PBRXECC); |
Emil Tantilov | 217995e | 2011-09-15 06:23:10 +0000 | [diff] [blame] | 770 | |
| 771 | /* 82599 X540 specific registers */ |
| 772 | regs_buff[1128] = IXGBE_READ_REG(hw, IXGBE_MFLCN); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 773 | } |
| 774 | |
| 775 | static int ixgbe_get_eeprom_len(struct net_device *netdev) |
| 776 | { |
| 777 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 778 | return adapter->hw.eeprom.word_size * 2; |
| 779 | } |
| 780 | |
| 781 | static int ixgbe_get_eeprom(struct net_device *netdev, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 782 | struct ethtool_eeprom *eeprom, u8 *bytes) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 783 | { |
| 784 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 785 | struct ixgbe_hw *hw = &adapter->hw; |
| 786 | u16 *eeprom_buff; |
| 787 | int first_word, last_word, eeprom_len; |
| 788 | int ret_val = 0; |
| 789 | u16 i; |
| 790 | |
| 791 | if (eeprom->len == 0) |
| 792 | return -EINVAL; |
| 793 | |
| 794 | eeprom->magic = hw->vendor_id | (hw->device_id << 16); |
| 795 | |
| 796 | first_word = eeprom->offset >> 1; |
| 797 | last_word = (eeprom->offset + eeprom->len - 1) >> 1; |
| 798 | eeprom_len = last_word - first_word + 1; |
| 799 | |
| 800 | eeprom_buff = kmalloc(sizeof(u16) * eeprom_len, GFP_KERNEL); |
| 801 | if (!eeprom_buff) |
| 802 | return -ENOMEM; |
| 803 | |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 804 | ret_val = hw->eeprom.ops.read_buffer(hw, first_word, eeprom_len, |
| 805 | eeprom_buff); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 806 | |
| 807 | /* Device's eeprom is always little-endian, word addressable */ |
| 808 | for (i = 0; i < eeprom_len; i++) |
| 809 | le16_to_cpus(&eeprom_buff[i]); |
| 810 | |
| 811 | memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len); |
| 812 | kfree(eeprom_buff); |
| 813 | |
| 814 | return ret_val; |
| 815 | } |
| 816 | |
Emil Tantilov | 2fa5eef | 2011-10-06 08:57:04 +0000 | [diff] [blame] | 817 | static int ixgbe_set_eeprom(struct net_device *netdev, |
| 818 | struct ethtool_eeprom *eeprom, u8 *bytes) |
| 819 | { |
| 820 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 821 | struct ixgbe_hw *hw = &adapter->hw; |
| 822 | u16 *eeprom_buff; |
| 823 | void *ptr; |
| 824 | int max_len, first_word, last_word, ret_val = 0; |
| 825 | u16 i; |
| 826 | |
| 827 | if (eeprom->len == 0) |
| 828 | return -EINVAL; |
| 829 | |
| 830 | if (eeprom->magic != (hw->vendor_id | (hw->device_id << 16))) |
| 831 | return -EINVAL; |
| 832 | |
| 833 | max_len = hw->eeprom.word_size * 2; |
| 834 | |
| 835 | first_word = eeprom->offset >> 1; |
| 836 | last_word = (eeprom->offset + eeprom->len - 1) >> 1; |
| 837 | eeprom_buff = kmalloc(max_len, GFP_KERNEL); |
| 838 | if (!eeprom_buff) |
| 839 | return -ENOMEM; |
| 840 | |
| 841 | ptr = eeprom_buff; |
| 842 | |
| 843 | if (eeprom->offset & 1) { |
| 844 | /* |
| 845 | * need read/modify/write of first changed EEPROM word |
| 846 | * only the second byte of the word is being modified |
| 847 | */ |
| 848 | ret_val = hw->eeprom.ops.read(hw, first_word, &eeprom_buff[0]); |
| 849 | if (ret_val) |
| 850 | goto err; |
| 851 | |
| 852 | ptr++; |
| 853 | } |
| 854 | if ((eeprom->offset + eeprom->len) & 1) { |
| 855 | /* |
| 856 | * need read/modify/write of last changed EEPROM word |
| 857 | * only the first byte of the word is being modified |
| 858 | */ |
| 859 | ret_val = hw->eeprom.ops.read(hw, last_word, |
| 860 | &eeprom_buff[last_word - first_word]); |
| 861 | if (ret_val) |
| 862 | goto err; |
| 863 | } |
| 864 | |
| 865 | /* Device's eeprom is always little-endian, word addressable */ |
| 866 | for (i = 0; i < last_word - first_word + 1; i++) |
| 867 | le16_to_cpus(&eeprom_buff[i]); |
| 868 | |
| 869 | memcpy(ptr, bytes, eeprom->len); |
| 870 | |
| 871 | for (i = 0; i < last_word - first_word + 1; i++) |
| 872 | cpu_to_le16s(&eeprom_buff[i]); |
| 873 | |
| 874 | ret_val = hw->eeprom.ops.write_buffer(hw, first_word, |
| 875 | last_word - first_word + 1, |
| 876 | eeprom_buff); |
| 877 | |
| 878 | /* Update the checksum */ |
| 879 | if (ret_val == 0) |
| 880 | hw->eeprom.ops.update_checksum(hw); |
| 881 | |
| 882 | err: |
| 883 | kfree(eeprom_buff); |
| 884 | return ret_val; |
| 885 | } |
| 886 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 887 | static void ixgbe_get_drvinfo(struct net_device *netdev, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 888 | struct ethtool_drvinfo *drvinfo) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 889 | { |
| 890 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Emil Tantilov | 15e5209 | 2011-09-29 05:01:29 +0000 | [diff] [blame] | 891 | u32 nvm_track_id; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 892 | |
Rick Jones | 612a94d | 2011-11-14 08:13:25 +0000 | [diff] [blame^] | 893 | strlcpy(drvinfo->driver, ixgbe_driver_name, sizeof(drvinfo->driver)); |
| 894 | strlcpy(drvinfo->version, ixgbe_driver_version, |
| 895 | sizeof(drvinfo->version)); |
Peter P Waskiewicz Jr | 34b0368 | 2009-02-05 23:54:42 -0800 | [diff] [blame] | 896 | |
Emil Tantilov | 15e5209 | 2011-09-29 05:01:29 +0000 | [diff] [blame] | 897 | nvm_track_id = (adapter->eeprom_verh << 16) | |
| 898 | adapter->eeprom_verl; |
Rick Jones | 612a94d | 2011-11-14 08:13:25 +0000 | [diff] [blame^] | 899 | snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), "0x%08x", |
Emil Tantilov | 15e5209 | 2011-09-29 05:01:29 +0000 | [diff] [blame] | 900 | nvm_track_id); |
Peter P Waskiewicz Jr | 34b0368 | 2009-02-05 23:54:42 -0800 | [diff] [blame] | 901 | |
Rick Jones | 612a94d | 2011-11-14 08:13:25 +0000 | [diff] [blame^] | 902 | strlcpy(drvinfo->bus_info, pci_name(adapter->pdev), |
| 903 | sizeof(drvinfo->bus_info)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 904 | drvinfo->n_stats = IXGBE_STATS_LEN; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 905 | drvinfo->testinfo_len = IXGBE_TEST_LEN; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 906 | drvinfo->regdump_len = ixgbe_get_regs_len(netdev); |
| 907 | } |
| 908 | |
| 909 | static void ixgbe_get_ringparam(struct net_device *netdev, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 910 | struct ethtool_ringparam *ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 911 | { |
| 912 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 913 | struct ixgbe_ring *tx_ring = adapter->tx_ring[0]; |
| 914 | struct ixgbe_ring *rx_ring = adapter->rx_ring[0]; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 915 | |
| 916 | ring->rx_max_pending = IXGBE_MAX_RXD; |
| 917 | ring->tx_max_pending = IXGBE_MAX_TXD; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 918 | ring->rx_pending = rx_ring->count; |
| 919 | ring->tx_pending = tx_ring->count; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 920 | } |
| 921 | |
| 922 | static int ixgbe_set_ringparam(struct net_device *netdev, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 923 | struct ethtool_ringparam *ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 924 | { |
| 925 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 926 | struct ixgbe_ring *temp_tx_ring, *temp_rx_ring; |
Alexander Duyck | 759884b | 2009-10-26 11:32:05 +0000 | [diff] [blame] | 927 | int i, err = 0; |
Jesse Brandeburg | c431f97 | 2008-09-11 19:59:16 -0700 | [diff] [blame] | 928 | u32 new_rx_count, new_tx_count; |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 929 | bool need_update = false; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 930 | |
| 931 | if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending)) |
| 932 | return -EINVAL; |
| 933 | |
| 934 | new_rx_count = max(ring->rx_pending, (u32)IXGBE_MIN_RXD); |
| 935 | new_rx_count = min(new_rx_count, (u32)IXGBE_MAX_RXD); |
| 936 | new_rx_count = ALIGN(new_rx_count, IXGBE_REQ_RX_DESCRIPTOR_MULTIPLE); |
| 937 | |
| 938 | new_tx_count = max(ring->tx_pending, (u32)IXGBE_MIN_TXD); |
| 939 | new_tx_count = min(new_tx_count, (u32)IXGBE_MAX_TXD); |
| 940 | new_tx_count = ALIGN(new_tx_count, IXGBE_REQ_TX_DESCRIPTOR_MULTIPLE); |
| 941 | |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 942 | if ((new_tx_count == adapter->tx_ring[0]->count) && |
| 943 | (new_rx_count == adapter->rx_ring[0]->count)) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 944 | /* nothing to do */ |
| 945 | return 0; |
| 946 | } |
| 947 | |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 948 | while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state)) |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 949 | usleep_range(1000, 2000); |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 950 | |
Alexander Duyck | 759884b | 2009-10-26 11:32:05 +0000 | [diff] [blame] | 951 | if (!netif_running(adapter->netdev)) { |
| 952 | for (i = 0; i < adapter->num_tx_queues; i++) |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 953 | adapter->tx_ring[i]->count = new_tx_count; |
Alexander Duyck | 759884b | 2009-10-26 11:32:05 +0000 | [diff] [blame] | 954 | for (i = 0; i < adapter->num_rx_queues; i++) |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 955 | adapter->rx_ring[i]->count = new_rx_count; |
Alexander Duyck | 759884b | 2009-10-26 11:32:05 +0000 | [diff] [blame] | 956 | adapter->tx_ring_count = new_tx_count; |
| 957 | adapter->rx_ring_count = new_rx_count; |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 958 | goto clear_reset; |
Alexander Duyck | 759884b | 2009-10-26 11:32:05 +0000 | [diff] [blame] | 959 | } |
| 960 | |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 961 | temp_tx_ring = vmalloc(adapter->num_tx_queues * sizeof(struct ixgbe_ring)); |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 962 | if (!temp_tx_ring) { |
| 963 | err = -ENOMEM; |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 964 | goto clear_reset; |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 965 | } |
| 966 | |
| 967 | if (new_tx_count != adapter->tx_ring_count) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 968 | for (i = 0; i < adapter->num_tx_queues; i++) { |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 969 | memcpy(&temp_tx_ring[i], adapter->tx_ring[i], |
| 970 | sizeof(struct ixgbe_ring)); |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 971 | temp_tx_ring[i].count = new_tx_count; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 972 | err = ixgbe_setup_tx_resources(&temp_tx_ring[i]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 973 | if (err) { |
Jesse Brandeburg | c431f97 | 2008-09-11 19:59:16 -0700 | [diff] [blame] | 974 | while (i) { |
| 975 | i--; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 976 | ixgbe_free_tx_resources(&temp_tx_ring[i]); |
Jesse Brandeburg | c431f97 | 2008-09-11 19:59:16 -0700 | [diff] [blame] | 977 | } |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 978 | goto clear_reset; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 979 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 980 | } |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 981 | need_update = true; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 982 | } |
| 983 | |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 984 | temp_rx_ring = vmalloc(adapter->num_rx_queues * sizeof(struct ixgbe_ring)); |
| 985 | if (!temp_rx_ring) { |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 986 | err = -ENOMEM; |
| 987 | goto err_setup; |
Peter P Waskiewicz Jr | d3fa4721 | 2008-12-26 01:36:33 -0800 | [diff] [blame] | 988 | } |
Jesse Brandeburg | c431f97 | 2008-09-11 19:59:16 -0700 | [diff] [blame] | 989 | |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 990 | if (new_rx_count != adapter->rx_ring_count) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 991 | for (i = 0; i < adapter->num_rx_queues; i++) { |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 992 | memcpy(&temp_rx_ring[i], adapter->rx_ring[i], |
| 993 | sizeof(struct ixgbe_ring)); |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 994 | temp_rx_ring[i].count = new_rx_count; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 995 | err = ixgbe_setup_rx_resources(&temp_rx_ring[i]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 996 | if (err) { |
Jesse Brandeburg | c431f97 | 2008-09-11 19:59:16 -0700 | [diff] [blame] | 997 | while (i) { |
| 998 | i--; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 999 | ixgbe_free_rx_resources(&temp_rx_ring[i]); |
Jesse Brandeburg | c431f97 | 2008-09-11 19:59:16 -0700 | [diff] [blame] | 1000 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1001 | goto err_setup; |
| 1002 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1003 | } |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 1004 | need_update = true; |
| 1005 | } |
Jesse Brandeburg | c431f97 | 2008-09-11 19:59:16 -0700 | [diff] [blame] | 1006 | |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 1007 | /* if rings need to be updated, here's the place to do it in one shot */ |
| 1008 | if (need_update) { |
Alexander Duyck | 759884b | 2009-10-26 11:32:05 +0000 | [diff] [blame] | 1009 | ixgbe_down(adapter); |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 1010 | |
| 1011 | /* tx */ |
| 1012 | if (new_tx_count != adapter->tx_ring_count) { |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 1013 | for (i = 0; i < adapter->num_tx_queues; i++) { |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1014 | ixgbe_free_tx_resources(adapter->tx_ring[i]); |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 1015 | memcpy(adapter->tx_ring[i], &temp_tx_ring[i], |
| 1016 | sizeof(struct ixgbe_ring)); |
| 1017 | } |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 1018 | adapter->tx_ring_count = new_tx_count; |
| 1019 | } |
| 1020 | |
| 1021 | /* rx */ |
| 1022 | if (new_rx_count != adapter->rx_ring_count) { |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 1023 | for (i = 0; i < adapter->num_rx_queues; i++) { |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1024 | ixgbe_free_rx_resources(adapter->rx_ring[i]); |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 1025 | memcpy(adapter->rx_ring[i], &temp_rx_ring[i], |
| 1026 | sizeof(struct ixgbe_ring)); |
| 1027 | } |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 1028 | adapter->rx_ring_count = new_rx_count; |
| 1029 | } |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 1030 | ixgbe_up(adapter); |
Alexander Duyck | 759884b | 2009-10-26 11:32:05 +0000 | [diff] [blame] | 1031 | } |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 1032 | |
| 1033 | vfree(temp_rx_ring); |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 1034 | err_setup: |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 1035 | vfree(temp_tx_ring); |
| 1036 | clear_reset: |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 1037 | clear_bit(__IXGBE_RESETTING, &adapter->state); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1038 | return err; |
| 1039 | } |
| 1040 | |
Jeff Garzik | b9f2c04 | 2007-10-03 18:07:32 -0700 | [diff] [blame] | 1041 | static int ixgbe_get_sset_count(struct net_device *netdev, int sset) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1042 | { |
Jeff Garzik | b9f2c04 | 2007-10-03 18:07:32 -0700 | [diff] [blame] | 1043 | switch (sset) { |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1044 | case ETH_SS_TEST: |
| 1045 | return IXGBE_TEST_LEN; |
Jeff Garzik | b9f2c04 | 2007-10-03 18:07:32 -0700 | [diff] [blame] | 1046 | case ETH_SS_STATS: |
| 1047 | return IXGBE_STATS_LEN; |
| 1048 | default: |
| 1049 | return -EOPNOTSUPP; |
| 1050 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1051 | } |
| 1052 | |
| 1053 | static void ixgbe_get_ethtool_stats(struct net_device *netdev, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1054 | struct ethtool_stats *stats, u64 *data) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1055 | { |
| 1056 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 1057 | struct rtnl_link_stats64 temp; |
| 1058 | const struct rtnl_link_stats64 *net_stats; |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 1059 | unsigned int start; |
| 1060 | struct ixgbe_ring *ring; |
| 1061 | int i, j; |
Ajit Khaparde | 29c3a05 | 2009-10-13 01:47:33 +0000 | [diff] [blame] | 1062 | char *p = NULL; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1063 | |
| 1064 | ixgbe_update_stats(adapter); |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 1065 | net_stats = dev_get_stats(netdev, &temp); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1066 | for (i = 0; i < IXGBE_GLOBAL_STATS_LEN; i++) { |
Ajit Khaparde | 29c3a05 | 2009-10-13 01:47:33 +0000 | [diff] [blame] | 1067 | switch (ixgbe_gstrings_stats[i].type) { |
| 1068 | case NETDEV_STATS: |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 1069 | p = (char *) net_stats + |
Ajit Khaparde | 29c3a05 | 2009-10-13 01:47:33 +0000 | [diff] [blame] | 1070 | ixgbe_gstrings_stats[i].stat_offset; |
| 1071 | break; |
| 1072 | case IXGBE_STATS: |
| 1073 | p = (char *) adapter + |
| 1074 | ixgbe_gstrings_stats[i].stat_offset; |
| 1075 | break; |
| 1076 | } |
| 1077 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1078 | data[i] = (ixgbe_gstrings_stats[i].sizeof_stat == |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1079 | sizeof(u64)) ? *(u64 *)p : *(u32 *)p; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1080 | } |
| 1081 | for (j = 0; j < adapter->num_tx_queues; j++) { |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 1082 | ring = adapter->tx_ring[j]; |
| 1083 | do { |
| 1084 | start = u64_stats_fetch_begin_bh(&ring->syncp); |
| 1085 | data[i] = ring->stats.packets; |
| 1086 | data[i+1] = ring->stats.bytes; |
| 1087 | } while (u64_stats_fetch_retry_bh(&ring->syncp, start)); |
| 1088 | i += 2; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1089 | } |
| 1090 | for (j = 0; j < adapter->num_rx_queues; j++) { |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 1091 | ring = adapter->rx_ring[j]; |
| 1092 | do { |
| 1093 | start = u64_stats_fetch_begin_bh(&ring->syncp); |
| 1094 | data[i] = ring->stats.packets; |
| 1095 | data[i+1] = ring->stats.bytes; |
| 1096 | } while (u64_stats_fetch_retry_bh(&ring->syncp, start)); |
| 1097 | i += 2; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1098 | } |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1099 | if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) { |
| 1100 | for (j = 0; j < MAX_TX_PACKET_BUFFERS; j++) { |
| 1101 | data[i++] = adapter->stats.pxontxc[j]; |
| 1102 | data[i++] = adapter->stats.pxofftxc[j]; |
| 1103 | } |
| 1104 | for (j = 0; j < MAX_RX_PACKET_BUFFERS; j++) { |
| 1105 | data[i++] = adapter->stats.pxonrxc[j]; |
| 1106 | data[i++] = adapter->stats.pxoffrxc[j]; |
| 1107 | } |
| 1108 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1109 | } |
| 1110 | |
| 1111 | static void ixgbe_get_strings(struct net_device *netdev, u32 stringset, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1112 | u8 *data) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1113 | { |
| 1114 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1115 | char *p = (char *)data; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1116 | int i; |
| 1117 | |
| 1118 | switch (stringset) { |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1119 | case ETH_SS_TEST: |
| 1120 | memcpy(data, *ixgbe_gstrings_test, |
| 1121 | IXGBE_TEST_LEN * ETH_GSTRING_LEN); |
| 1122 | break; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1123 | case ETH_SS_STATS: |
| 1124 | for (i = 0; i < IXGBE_GLOBAL_STATS_LEN; i++) { |
| 1125 | memcpy(p, ixgbe_gstrings_stats[i].stat_string, |
| 1126 | ETH_GSTRING_LEN); |
| 1127 | p += ETH_GSTRING_LEN; |
| 1128 | } |
| 1129 | for (i = 0; i < adapter->num_tx_queues; i++) { |
| 1130 | sprintf(p, "tx_queue_%u_packets", i); |
| 1131 | p += ETH_GSTRING_LEN; |
| 1132 | sprintf(p, "tx_queue_%u_bytes", i); |
| 1133 | p += ETH_GSTRING_LEN; |
| 1134 | } |
| 1135 | for (i = 0; i < adapter->num_rx_queues; i++) { |
| 1136 | sprintf(p, "rx_queue_%u_packets", i); |
| 1137 | p += ETH_GSTRING_LEN; |
| 1138 | sprintf(p, "rx_queue_%u_bytes", i); |
| 1139 | p += ETH_GSTRING_LEN; |
| 1140 | } |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1141 | if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) { |
| 1142 | for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) { |
| 1143 | sprintf(p, "tx_pb_%u_pxon", i); |
Don Skidmore | bfb8cc3 | 2008-12-21 20:11:04 -0800 | [diff] [blame] | 1144 | p += ETH_GSTRING_LEN; |
| 1145 | sprintf(p, "tx_pb_%u_pxoff", i); |
| 1146 | p += ETH_GSTRING_LEN; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1147 | } |
| 1148 | for (i = 0; i < MAX_RX_PACKET_BUFFERS; i++) { |
Don Skidmore | bfb8cc3 | 2008-12-21 20:11:04 -0800 | [diff] [blame] | 1149 | sprintf(p, "rx_pb_%u_pxon", i); |
| 1150 | p += ETH_GSTRING_LEN; |
| 1151 | sprintf(p, "rx_pb_%u_pxoff", i); |
| 1152 | p += ETH_GSTRING_LEN; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1153 | } |
| 1154 | } |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1155 | /* BUG_ON(p - data != IXGBE_STATS_LEN * ETH_GSTRING_LEN); */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1156 | break; |
| 1157 | } |
| 1158 | } |
| 1159 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1160 | static int ixgbe_link_test(struct ixgbe_adapter *adapter, u64 *data) |
| 1161 | { |
| 1162 | struct ixgbe_hw *hw = &adapter->hw; |
| 1163 | bool link_up; |
| 1164 | u32 link_speed = 0; |
| 1165 | *data = 0; |
| 1166 | |
| 1167 | hw->mac.ops.check_link(hw, &link_speed, &link_up, true); |
| 1168 | if (link_up) |
| 1169 | return *data; |
| 1170 | else |
| 1171 | *data = 1; |
| 1172 | return *data; |
| 1173 | } |
| 1174 | |
| 1175 | /* ethtool register test data */ |
| 1176 | struct ixgbe_reg_test { |
| 1177 | u16 reg; |
| 1178 | u8 array_len; |
| 1179 | u8 test_type; |
| 1180 | u32 mask; |
| 1181 | u32 write; |
| 1182 | }; |
| 1183 | |
| 1184 | /* In the hardware, registers are laid out either singly, in arrays |
| 1185 | * spaced 0x40 bytes apart, or in contiguous tables. We assume |
| 1186 | * most tests take place on arrays or single registers (handled |
| 1187 | * as a single-element array) and special-case the tables. |
| 1188 | * Table tests are always pattern tests. |
| 1189 | * |
| 1190 | * We also make provision for some required setup steps by specifying |
| 1191 | * registers to be written without any read-back testing. |
| 1192 | */ |
| 1193 | |
| 1194 | #define PATTERN_TEST 1 |
| 1195 | #define SET_READ_TEST 2 |
| 1196 | #define WRITE_NO_TEST 3 |
| 1197 | #define TABLE32_TEST 4 |
| 1198 | #define TABLE64_TEST_LO 5 |
| 1199 | #define TABLE64_TEST_HI 6 |
| 1200 | |
| 1201 | /* default 82599 register test */ |
Jeff Kirsher | 6674450 | 2010-12-01 19:59:50 +0000 | [diff] [blame] | 1202 | static const struct ixgbe_reg_test reg_test_82599[] = { |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1203 | { IXGBE_FCRTL_82599(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 }, |
| 1204 | { IXGBE_FCRTH_82599(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 }, |
| 1205 | { IXGBE_PFCTOP, 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1206 | { IXGBE_VLNCTRL, 1, PATTERN_TEST, 0x00000000, 0x00000000 }, |
| 1207 | { IXGBE_RDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFF80 }, |
| 1208 | { IXGBE_RDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1209 | { IXGBE_RDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF }, |
| 1210 | { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, IXGBE_RXDCTL_ENABLE }, |
| 1211 | { IXGBE_RDT(0), 4, PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, |
| 1212 | { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, 0 }, |
| 1213 | { IXGBE_FCRTH(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 }, |
| 1214 | { IXGBE_FCTTV(0), 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1215 | { IXGBE_TDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, |
| 1216 | { IXGBE_TDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1217 | { IXGBE_TDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFF80 }, |
| 1218 | { IXGBE_RXCTRL, 1, SET_READ_TEST, 0x00000001, 0x00000001 }, |
| 1219 | { IXGBE_RAL(0), 16, TABLE64_TEST_LO, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1220 | { IXGBE_RAL(0), 16, TABLE64_TEST_HI, 0x8001FFFF, 0x800CFFFF }, |
| 1221 | { IXGBE_MTA(0), 128, TABLE32_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1222 | { 0, 0, 0, 0 } |
| 1223 | }; |
| 1224 | |
| 1225 | /* default 82598 register test */ |
Jeff Kirsher | 6674450 | 2010-12-01 19:59:50 +0000 | [diff] [blame] | 1226 | static const struct ixgbe_reg_test reg_test_82598[] = { |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1227 | { IXGBE_FCRTL(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 }, |
| 1228 | { IXGBE_FCRTH(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 }, |
| 1229 | { IXGBE_PFCTOP, 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1230 | { IXGBE_VLNCTRL, 1, PATTERN_TEST, 0x00000000, 0x00000000 }, |
| 1231 | { IXGBE_RDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, |
| 1232 | { IXGBE_RDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1233 | { IXGBE_RDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF }, |
| 1234 | /* Enable all four RX queues before testing. */ |
| 1235 | { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, IXGBE_RXDCTL_ENABLE }, |
| 1236 | /* RDH is read-only for 82598, only test RDT. */ |
| 1237 | { IXGBE_RDT(0), 4, PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, |
| 1238 | { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, 0 }, |
| 1239 | { IXGBE_FCRTH(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 }, |
| 1240 | { IXGBE_FCTTV(0), 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1241 | { IXGBE_TIPG, 1, PATTERN_TEST, 0x000000FF, 0x000000FF }, |
| 1242 | { IXGBE_TDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, |
| 1243 | { IXGBE_TDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1244 | { IXGBE_TDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF }, |
| 1245 | { IXGBE_RXCTRL, 1, SET_READ_TEST, 0x00000003, 0x00000003 }, |
| 1246 | { IXGBE_DTXCTL, 1, SET_READ_TEST, 0x00000005, 0x00000005 }, |
| 1247 | { IXGBE_RAL(0), 16, TABLE64_TEST_LO, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1248 | { IXGBE_RAL(0), 16, TABLE64_TEST_HI, 0x800CFFFF, 0x800CFFFF }, |
| 1249 | { IXGBE_MTA(0), 128, TABLE32_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1250 | { 0, 0, 0, 0 } |
| 1251 | }; |
| 1252 | |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1253 | static bool reg_pattern_test(struct ixgbe_adapter *adapter, u64 *data, int reg, |
| 1254 | u32 mask, u32 write) |
| 1255 | { |
| 1256 | u32 pat, val, before; |
| 1257 | static const u32 test_pattern[] = { |
| 1258 | 0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF}; |
Jeff Kirsher | 6674450 | 2010-12-01 19:59:50 +0000 | [diff] [blame] | 1259 | |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1260 | for (pat = 0; pat < ARRAY_SIZE(test_pattern); pat++) { |
| 1261 | before = readl(adapter->hw.hw_addr + reg); |
| 1262 | writel((test_pattern[pat] & write), |
| 1263 | (adapter->hw.hw_addr + reg)); |
| 1264 | val = readl(adapter->hw.hw_addr + reg); |
| 1265 | if (val != (test_pattern[pat] & write & mask)) { |
| 1266 | e_err(drv, "pattern test reg %04X failed: got " |
| 1267 | "0x%08X expected 0x%08X\n", |
| 1268 | reg, val, (test_pattern[pat] & write & mask)); |
| 1269 | *data = reg; |
| 1270 | writel(before, adapter->hw.hw_addr + reg); |
| 1271 | return 1; |
| 1272 | } |
| 1273 | writel(before, adapter->hw.hw_addr + reg); |
| 1274 | } |
| 1275 | return 0; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1276 | } |
| 1277 | |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1278 | static bool reg_set_and_check(struct ixgbe_adapter *adapter, u64 *data, int reg, |
| 1279 | u32 mask, u32 write) |
| 1280 | { |
| 1281 | u32 val, before; |
| 1282 | before = readl(adapter->hw.hw_addr + reg); |
| 1283 | writel((write & mask), (adapter->hw.hw_addr + reg)); |
| 1284 | val = readl(adapter->hw.hw_addr + reg); |
| 1285 | if ((write & mask) != (val & mask)) { |
| 1286 | e_err(drv, "set/check reg %04X test failed: got 0x%08X " |
| 1287 | "expected 0x%08X\n", reg, (val & mask), (write & mask)); |
| 1288 | *data = reg; |
| 1289 | writel(before, (adapter->hw.hw_addr + reg)); |
| 1290 | return 1; |
| 1291 | } |
| 1292 | writel(before, (adapter->hw.hw_addr + reg)); |
| 1293 | return 0; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1294 | } |
| 1295 | |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1296 | #define REG_PATTERN_TEST(reg, mask, write) \ |
| 1297 | do { \ |
| 1298 | if (reg_pattern_test(adapter, data, reg, mask, write)) \ |
| 1299 | return 1; \ |
| 1300 | } while (0) \ |
| 1301 | |
| 1302 | |
| 1303 | #define REG_SET_AND_CHECK(reg, mask, write) \ |
| 1304 | do { \ |
| 1305 | if (reg_set_and_check(adapter, data, reg, mask, write)) \ |
| 1306 | return 1; \ |
| 1307 | } while (0) \ |
| 1308 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1309 | static int ixgbe_reg_test(struct ixgbe_adapter *adapter, u64 *data) |
| 1310 | { |
Jeff Kirsher | 6674450 | 2010-12-01 19:59:50 +0000 | [diff] [blame] | 1311 | const struct ixgbe_reg_test *test; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1312 | u32 value, before, after; |
| 1313 | u32 i, toggle; |
| 1314 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1315 | switch (adapter->hw.mac.type) { |
| 1316 | case ixgbe_mac_82598EB: |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1317 | toggle = 0x7FFFF3FF; |
| 1318 | test = reg_test_82598; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1319 | break; |
| 1320 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 1321 | case ixgbe_mac_X540: |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1322 | toggle = 0x7FFFF30F; |
| 1323 | test = reg_test_82599; |
| 1324 | break; |
| 1325 | default: |
| 1326 | *data = 1; |
| 1327 | return 1; |
| 1328 | break; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1329 | } |
| 1330 | |
| 1331 | /* |
| 1332 | * Because the status register is such a special case, |
| 1333 | * we handle it separately from the rest of the register |
| 1334 | * tests. Some bits are read-only, some toggle, and some |
| 1335 | * are writeable on newer MACs. |
| 1336 | */ |
| 1337 | before = IXGBE_READ_REG(&adapter->hw, IXGBE_STATUS); |
| 1338 | value = (IXGBE_READ_REG(&adapter->hw, IXGBE_STATUS) & toggle); |
| 1339 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_STATUS, toggle); |
| 1340 | after = IXGBE_READ_REG(&adapter->hw, IXGBE_STATUS) & toggle; |
| 1341 | if (value != after) { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 1342 | e_err(drv, "failed STATUS register test got: 0x%08X " |
| 1343 | "expected: 0x%08X\n", after, value); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1344 | *data = 1; |
| 1345 | return 1; |
| 1346 | } |
| 1347 | /* restore previous status */ |
| 1348 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_STATUS, before); |
| 1349 | |
| 1350 | /* |
| 1351 | * Perform the remainder of the register test, looping through |
| 1352 | * the test table until we either fail or reach the null entry. |
| 1353 | */ |
| 1354 | while (test->reg) { |
| 1355 | for (i = 0; i < test->array_len; i++) { |
| 1356 | switch (test->test_type) { |
| 1357 | case PATTERN_TEST: |
| 1358 | REG_PATTERN_TEST(test->reg + (i * 0x40), |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1359 | test->mask, |
| 1360 | test->write); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1361 | break; |
| 1362 | case SET_READ_TEST: |
| 1363 | REG_SET_AND_CHECK(test->reg + (i * 0x40), |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1364 | test->mask, |
| 1365 | test->write); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1366 | break; |
| 1367 | case WRITE_NO_TEST: |
| 1368 | writel(test->write, |
| 1369 | (adapter->hw.hw_addr + test->reg) |
| 1370 | + (i * 0x40)); |
| 1371 | break; |
| 1372 | case TABLE32_TEST: |
| 1373 | REG_PATTERN_TEST(test->reg + (i * 4), |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1374 | test->mask, |
| 1375 | test->write); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1376 | break; |
| 1377 | case TABLE64_TEST_LO: |
| 1378 | REG_PATTERN_TEST(test->reg + (i * 8), |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1379 | test->mask, |
| 1380 | test->write); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1381 | break; |
| 1382 | case TABLE64_TEST_HI: |
| 1383 | REG_PATTERN_TEST((test->reg + 4) + (i * 8), |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1384 | test->mask, |
| 1385 | test->write); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1386 | break; |
| 1387 | } |
| 1388 | } |
| 1389 | test++; |
| 1390 | } |
| 1391 | |
| 1392 | *data = 0; |
| 1393 | return 0; |
| 1394 | } |
| 1395 | |
| 1396 | static int ixgbe_eeprom_test(struct ixgbe_adapter *adapter, u64 *data) |
| 1397 | { |
| 1398 | struct ixgbe_hw *hw = &adapter->hw; |
| 1399 | if (hw->eeprom.ops.validate_checksum(hw, NULL)) |
| 1400 | *data = 1; |
| 1401 | else |
| 1402 | *data = 0; |
| 1403 | return *data; |
| 1404 | } |
| 1405 | |
| 1406 | static irqreturn_t ixgbe_test_intr(int irq, void *data) |
| 1407 | { |
| 1408 | struct net_device *netdev = (struct net_device *) data; |
| 1409 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 1410 | |
| 1411 | adapter->test_icr |= IXGBE_READ_REG(&adapter->hw, IXGBE_EICR); |
| 1412 | |
| 1413 | return IRQ_HANDLED; |
| 1414 | } |
| 1415 | |
| 1416 | static int ixgbe_intr_test(struct ixgbe_adapter *adapter, u64 *data) |
| 1417 | { |
| 1418 | struct net_device *netdev = adapter->netdev; |
| 1419 | u32 mask, i = 0, shared_int = true; |
| 1420 | u32 irq = adapter->pdev->irq; |
| 1421 | |
| 1422 | *data = 0; |
| 1423 | |
| 1424 | /* Hook up test interrupt handler just for this test */ |
| 1425 | if (adapter->msix_entries) { |
| 1426 | /* NOTE: we don't test MSI-X interrupts here, yet */ |
| 1427 | return 0; |
| 1428 | } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) { |
| 1429 | shared_int = false; |
Joe Perches | a0607fd | 2009-11-18 23:29:17 -0800 | [diff] [blame] | 1430 | if (request_irq(irq, ixgbe_test_intr, 0, netdev->name, |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1431 | netdev)) { |
| 1432 | *data = 1; |
| 1433 | return -1; |
| 1434 | } |
Joe Perches | a0607fd | 2009-11-18 23:29:17 -0800 | [diff] [blame] | 1435 | } else if (!request_irq(irq, ixgbe_test_intr, IRQF_PROBE_SHARED, |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1436 | netdev->name, netdev)) { |
| 1437 | shared_int = false; |
Joe Perches | a0607fd | 2009-11-18 23:29:17 -0800 | [diff] [blame] | 1438 | } else if (request_irq(irq, ixgbe_test_intr, IRQF_SHARED, |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1439 | netdev->name, netdev)) { |
| 1440 | *data = 1; |
| 1441 | return -1; |
| 1442 | } |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 1443 | e_info(hw, "testing %s interrupt\n", shared_int ? |
| 1444 | "shared" : "unshared"); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1445 | |
| 1446 | /* Disable all the interrupts */ |
| 1447 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFFFFFF); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 1448 | IXGBE_WRITE_FLUSH(&adapter->hw); |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 1449 | usleep_range(10000, 20000); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1450 | |
| 1451 | /* Test each interrupt */ |
| 1452 | for (; i < 10; i++) { |
| 1453 | /* Interrupt to test */ |
| 1454 | mask = 1 << i; |
| 1455 | |
| 1456 | if (!shared_int) { |
| 1457 | /* |
| 1458 | * Disable the interrupts to be reported in |
| 1459 | * the cause register and then force the same |
| 1460 | * interrupt and see if one gets posted. If |
| 1461 | * an interrupt was posted to the bus, the |
| 1462 | * test failed. |
| 1463 | */ |
| 1464 | adapter->test_icr = 0; |
| 1465 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, |
| 1466 | ~mask & 0x00007FFF); |
| 1467 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, |
| 1468 | ~mask & 0x00007FFF); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 1469 | IXGBE_WRITE_FLUSH(&adapter->hw); |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 1470 | usleep_range(10000, 20000); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1471 | |
| 1472 | if (adapter->test_icr & mask) { |
| 1473 | *data = 3; |
| 1474 | break; |
| 1475 | } |
| 1476 | } |
| 1477 | |
| 1478 | /* |
| 1479 | * Enable the interrupt to be reported in the cause |
| 1480 | * register and then force the same interrupt and see |
| 1481 | * if one gets posted. If an interrupt was not posted |
| 1482 | * to the bus, the test failed. |
| 1483 | */ |
| 1484 | adapter->test_icr = 0; |
| 1485 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask); |
| 1486 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 1487 | IXGBE_WRITE_FLUSH(&adapter->hw); |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 1488 | usleep_range(10000, 20000); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1489 | |
| 1490 | if (!(adapter->test_icr &mask)) { |
| 1491 | *data = 4; |
| 1492 | break; |
| 1493 | } |
| 1494 | |
| 1495 | if (!shared_int) { |
| 1496 | /* |
| 1497 | * Disable the other interrupts to be reported in |
| 1498 | * the cause register and then force the other |
| 1499 | * interrupts and see if any get posted. If |
| 1500 | * an interrupt was posted to the bus, the |
| 1501 | * test failed. |
| 1502 | */ |
| 1503 | adapter->test_icr = 0; |
| 1504 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, |
| 1505 | ~mask & 0x00007FFF); |
| 1506 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, |
| 1507 | ~mask & 0x00007FFF); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 1508 | IXGBE_WRITE_FLUSH(&adapter->hw); |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 1509 | usleep_range(10000, 20000); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1510 | |
| 1511 | if (adapter->test_icr) { |
| 1512 | *data = 5; |
| 1513 | break; |
| 1514 | } |
| 1515 | } |
| 1516 | } |
| 1517 | |
| 1518 | /* Disable all the interrupts */ |
| 1519 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFFFFFF); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 1520 | IXGBE_WRITE_FLUSH(&adapter->hw); |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 1521 | usleep_range(10000, 20000); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1522 | |
| 1523 | /* Unhook test interrupt handler */ |
| 1524 | free_irq(irq, netdev); |
| 1525 | |
| 1526 | return *data; |
| 1527 | } |
| 1528 | |
| 1529 | static void ixgbe_free_desc_rings(struct ixgbe_adapter *adapter) |
| 1530 | { |
| 1531 | struct ixgbe_ring *tx_ring = &adapter->test_tx_ring; |
| 1532 | struct ixgbe_ring *rx_ring = &adapter->test_rx_ring; |
| 1533 | struct ixgbe_hw *hw = &adapter->hw; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1534 | u32 reg_ctl; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1535 | |
| 1536 | /* shut down the DMA engines now so they can be reinitialized later */ |
| 1537 | |
| 1538 | /* first Rx */ |
| 1539 | reg_ctl = IXGBE_READ_REG(hw, IXGBE_RXCTRL); |
| 1540 | reg_ctl &= ~IXGBE_RXCTRL_RXEN; |
| 1541 | IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, reg_ctl); |
Yi Zou | 2d39d57 | 2011-01-06 14:29:56 +0000 | [diff] [blame] | 1542 | ixgbe_disable_rx_queue(adapter, rx_ring); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1543 | |
| 1544 | /* now Tx */ |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1545 | reg_ctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(tx_ring->reg_idx)); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1546 | reg_ctl &= ~IXGBE_TXDCTL_ENABLE; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1547 | IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(tx_ring->reg_idx), reg_ctl); |
| 1548 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1549 | switch (hw->mac.type) { |
| 1550 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 1551 | case ixgbe_mac_X540: |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1552 | reg_ctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL); |
| 1553 | reg_ctl &= ~IXGBE_DMATXCTL_TE; |
| 1554 | IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg_ctl); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1555 | break; |
| 1556 | default: |
| 1557 | break; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1558 | } |
| 1559 | |
| 1560 | ixgbe_reset(adapter); |
| 1561 | |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1562 | ixgbe_free_tx_resources(&adapter->test_tx_ring); |
| 1563 | ixgbe_free_rx_resources(&adapter->test_rx_ring); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1564 | } |
| 1565 | |
| 1566 | static int ixgbe_setup_desc_rings(struct ixgbe_adapter *adapter) |
| 1567 | { |
| 1568 | struct ixgbe_ring *tx_ring = &adapter->test_tx_ring; |
| 1569 | struct ixgbe_ring *rx_ring = &adapter->test_rx_ring; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1570 | u32 rctl, reg_data; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1571 | int ret_val; |
| 1572 | int err; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1573 | |
| 1574 | /* Setup Tx descriptor ring and Tx buffers */ |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1575 | tx_ring->count = IXGBE_DEFAULT_TXD; |
| 1576 | tx_ring->queue_index = 0; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1577 | tx_ring->dev = &adapter->pdev->dev; |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1578 | tx_ring->netdev = adapter->netdev; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1579 | tx_ring->reg_idx = adapter->tx_ring[0]->reg_idx; |
| 1580 | tx_ring->numa_node = adapter->node; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1581 | |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1582 | err = ixgbe_setup_tx_resources(tx_ring); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1583 | if (err) |
| 1584 | return 1; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1585 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1586 | switch (adapter->hw.mac.type) { |
| 1587 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 1588 | case ixgbe_mac_X540: |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1589 | reg_data = IXGBE_READ_REG(&adapter->hw, IXGBE_DMATXCTL); |
| 1590 | reg_data |= IXGBE_DMATXCTL_TE; |
| 1591 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_DMATXCTL, reg_data); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1592 | break; |
| 1593 | default: |
| 1594 | break; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1595 | } |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1596 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1597 | ixgbe_configure_tx_ring(adapter, tx_ring); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1598 | |
| 1599 | /* Setup Rx Descriptor ring and Rx buffers */ |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1600 | rx_ring->count = IXGBE_DEFAULT_RXD; |
| 1601 | rx_ring->queue_index = 0; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1602 | rx_ring->dev = &adapter->pdev->dev; |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1603 | rx_ring->netdev = adapter->netdev; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1604 | rx_ring->reg_idx = adapter->rx_ring[0]->reg_idx; |
Alexander Duyck | 919e78a | 2011-08-26 09:52:38 +0000 | [diff] [blame] | 1605 | rx_ring->rx_buf_len = IXGBE_RXBUFFER_2K; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1606 | rx_ring->numa_node = adapter->node; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1607 | |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1608 | err = ixgbe_setup_rx_resources(rx_ring); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1609 | if (err) { |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1610 | ret_val = 4; |
| 1611 | goto err_nomem; |
| 1612 | } |
| 1613 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1614 | rctl = IXGBE_READ_REG(&adapter->hw, IXGBE_RXCTRL); |
| 1615 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_RXCTRL, rctl & ~IXGBE_RXCTRL_RXEN); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1616 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1617 | ixgbe_configure_rx_ring(adapter, rx_ring); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1618 | |
| 1619 | rctl |= IXGBE_RXCTRL_RXEN | IXGBE_RXCTRL_DMBYPS; |
| 1620 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_RXCTRL, rctl); |
| 1621 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1622 | return 0; |
| 1623 | |
| 1624 | err_nomem: |
| 1625 | ixgbe_free_desc_rings(adapter); |
| 1626 | return ret_val; |
| 1627 | } |
| 1628 | |
| 1629 | static int ixgbe_setup_loopback_test(struct ixgbe_adapter *adapter) |
| 1630 | { |
| 1631 | struct ixgbe_hw *hw = &adapter->hw; |
| 1632 | u32 reg_data; |
| 1633 | |
Don Skidmore | e7fd925 | 2011-04-16 05:29:14 +0000 | [diff] [blame] | 1634 | /* X540 needs to set the MACC.FLU bit to force link up */ |
| 1635 | if (adapter->hw.mac.type == ixgbe_mac_X540) { |
Alexander Duyck | 35c7f8a | 2011-07-15 03:06:01 +0000 | [diff] [blame] | 1636 | reg_data = IXGBE_READ_REG(hw, IXGBE_MACC); |
Don Skidmore | e7fd925 | 2011-04-16 05:29:14 +0000 | [diff] [blame] | 1637 | reg_data |= IXGBE_MACC_FLU; |
Alexander Duyck | 35c7f8a | 2011-07-15 03:06:01 +0000 | [diff] [blame] | 1638 | IXGBE_WRITE_REG(hw, IXGBE_MACC, reg_data); |
Don Skidmore | e7fd925 | 2011-04-16 05:29:14 +0000 | [diff] [blame] | 1639 | } |
| 1640 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1641 | /* right now we only support MAC loopback in the driver */ |
Alexander Duyck | 35c7f8a | 2011-07-15 03:06:01 +0000 | [diff] [blame] | 1642 | reg_data = IXGBE_READ_REG(hw, IXGBE_HLREG0); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1643 | /* Setup MAC loopback */ |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1644 | reg_data |= IXGBE_HLREG0_LPBK; |
Alexander Duyck | 35c7f8a | 2011-07-15 03:06:01 +0000 | [diff] [blame] | 1645 | IXGBE_WRITE_REG(hw, IXGBE_HLREG0, reg_data); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1646 | |
Alexander Duyck | 35c7f8a | 2011-07-15 03:06:01 +0000 | [diff] [blame] | 1647 | reg_data = IXGBE_READ_REG(hw, IXGBE_FCTRL); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1648 | reg_data |= IXGBE_FCTRL_BAM | IXGBE_FCTRL_SBP | IXGBE_FCTRL_MPE; |
Alexander Duyck | 35c7f8a | 2011-07-15 03:06:01 +0000 | [diff] [blame] | 1649 | IXGBE_WRITE_REG(hw, IXGBE_FCTRL, reg_data); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1650 | |
Alexander Duyck | 35c7f8a | 2011-07-15 03:06:01 +0000 | [diff] [blame] | 1651 | reg_data = IXGBE_READ_REG(hw, IXGBE_AUTOC); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1652 | reg_data &= ~IXGBE_AUTOC_LMS_MASK; |
| 1653 | reg_data |= IXGBE_AUTOC_LMS_10G_LINK_NO_AN | IXGBE_AUTOC_FLU; |
Alexander Duyck | 35c7f8a | 2011-07-15 03:06:01 +0000 | [diff] [blame] | 1654 | IXGBE_WRITE_REG(hw, IXGBE_AUTOC, reg_data); |
| 1655 | IXGBE_WRITE_FLUSH(hw); |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 1656 | usleep_range(10000, 20000); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1657 | |
| 1658 | /* Disable Atlas Tx lanes; re-enabled in reset path */ |
| 1659 | if (hw->mac.type == ixgbe_mac_82598EB) { |
| 1660 | u8 atlas; |
| 1661 | |
| 1662 | hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, &atlas); |
| 1663 | atlas |= IXGBE_ATLAS_PDN_TX_REG_EN; |
| 1664 | hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, atlas); |
| 1665 | |
| 1666 | hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_10G, &atlas); |
| 1667 | atlas |= IXGBE_ATLAS_PDN_TX_10G_QL_ALL; |
| 1668 | hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_10G, atlas); |
| 1669 | |
| 1670 | hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_1G, &atlas); |
| 1671 | atlas |= IXGBE_ATLAS_PDN_TX_1G_QL_ALL; |
| 1672 | hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_1G, atlas); |
| 1673 | |
| 1674 | hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_AN, &atlas); |
| 1675 | atlas |= IXGBE_ATLAS_PDN_TX_AN_QL_ALL; |
| 1676 | hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_AN, atlas); |
| 1677 | } |
| 1678 | |
| 1679 | return 0; |
| 1680 | } |
| 1681 | |
| 1682 | static void ixgbe_loopback_cleanup(struct ixgbe_adapter *adapter) |
| 1683 | { |
| 1684 | u32 reg_data; |
| 1685 | |
| 1686 | reg_data = IXGBE_READ_REG(&adapter->hw, IXGBE_HLREG0); |
| 1687 | reg_data &= ~IXGBE_HLREG0_LPBK; |
| 1688 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_HLREG0, reg_data); |
| 1689 | } |
| 1690 | |
| 1691 | static void ixgbe_create_lbtest_frame(struct sk_buff *skb, |
| 1692 | unsigned int frame_size) |
| 1693 | { |
| 1694 | memset(skb->data, 0xFF, frame_size); |
| 1695 | frame_size &= ~1; |
| 1696 | memset(&skb->data[frame_size / 2], 0xAA, frame_size / 2 - 1); |
| 1697 | memset(&skb->data[frame_size / 2 + 10], 0xBE, 1); |
| 1698 | memset(&skb->data[frame_size / 2 + 12], 0xAF, 1); |
| 1699 | } |
| 1700 | |
| 1701 | static int ixgbe_check_lbtest_frame(struct sk_buff *skb, |
| 1702 | unsigned int frame_size) |
| 1703 | { |
| 1704 | frame_size &= ~1; |
| 1705 | if (*(skb->data + 3) == 0xFF) { |
| 1706 | if ((*(skb->data + frame_size / 2 + 10) == 0xBE) && |
| 1707 | (*(skb->data + frame_size / 2 + 12) == 0xAF)) { |
| 1708 | return 0; |
| 1709 | } |
| 1710 | } |
| 1711 | return 13; |
| 1712 | } |
| 1713 | |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1714 | static u16 ixgbe_clean_test_rings(struct ixgbe_ring *rx_ring, |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1715 | struct ixgbe_ring *tx_ring, |
| 1716 | unsigned int size) |
| 1717 | { |
| 1718 | union ixgbe_adv_rx_desc *rx_desc; |
| 1719 | struct ixgbe_rx_buffer *rx_buffer_info; |
| 1720 | struct ixgbe_tx_buffer *tx_buffer_info; |
| 1721 | const int bufsz = rx_ring->rx_buf_len; |
| 1722 | u32 staterr; |
| 1723 | u16 rx_ntc, tx_ntc, count = 0; |
| 1724 | |
| 1725 | /* initialize next to clean and descriptor values */ |
| 1726 | rx_ntc = rx_ring->next_to_clean; |
| 1727 | tx_ntc = tx_ring->next_to_clean; |
| 1728 | rx_desc = IXGBE_RX_DESC_ADV(rx_ring, rx_ntc); |
| 1729 | staterr = le32_to_cpu(rx_desc->wb.upper.status_error); |
| 1730 | |
| 1731 | while (staterr & IXGBE_RXD_STAT_DD) { |
| 1732 | /* check Rx buffer */ |
| 1733 | rx_buffer_info = &rx_ring->rx_buffer_info[rx_ntc]; |
| 1734 | |
| 1735 | /* unmap Rx buffer, will be remapped by alloc_rx_buffers */ |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1736 | dma_unmap_single(rx_ring->dev, |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1737 | rx_buffer_info->dma, |
| 1738 | bufsz, |
| 1739 | DMA_FROM_DEVICE); |
| 1740 | rx_buffer_info->dma = 0; |
| 1741 | |
| 1742 | /* verify contents of skb */ |
| 1743 | if (!ixgbe_check_lbtest_frame(rx_buffer_info->skb, size)) |
| 1744 | count++; |
| 1745 | |
| 1746 | /* unmap buffer on Tx side */ |
| 1747 | tx_buffer_info = &tx_ring->tx_buffer_info[tx_ntc]; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1748 | ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1749 | |
| 1750 | /* increment Rx/Tx next to clean counters */ |
| 1751 | rx_ntc++; |
| 1752 | if (rx_ntc == rx_ring->count) |
| 1753 | rx_ntc = 0; |
| 1754 | tx_ntc++; |
| 1755 | if (tx_ntc == tx_ring->count) |
| 1756 | tx_ntc = 0; |
| 1757 | |
| 1758 | /* fetch next descriptor */ |
| 1759 | rx_desc = IXGBE_RX_DESC_ADV(rx_ring, rx_ntc); |
| 1760 | staterr = le32_to_cpu(rx_desc->wb.upper.status_error); |
| 1761 | } |
| 1762 | |
| 1763 | /* re-map buffers to ring, store next to clean values */ |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1764 | ixgbe_alloc_rx_buffers(rx_ring, count); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1765 | rx_ring->next_to_clean = rx_ntc; |
| 1766 | tx_ring->next_to_clean = tx_ntc; |
| 1767 | |
| 1768 | return count; |
| 1769 | } |
| 1770 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1771 | static int ixgbe_run_loopback_test(struct ixgbe_adapter *adapter) |
| 1772 | { |
| 1773 | struct ixgbe_ring *tx_ring = &adapter->test_tx_ring; |
| 1774 | struct ixgbe_ring *rx_ring = &adapter->test_rx_ring; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1775 | int i, j, lc, good_cnt, ret_val = 0; |
| 1776 | unsigned int size = 1024; |
| 1777 | netdev_tx_t tx_ret_val; |
| 1778 | struct sk_buff *skb; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1779 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1780 | /* allocate test skb */ |
| 1781 | skb = alloc_skb(size, GFP_KERNEL); |
| 1782 | if (!skb) |
| 1783 | return 11; |
| 1784 | |
| 1785 | /* place data into test skb */ |
| 1786 | ixgbe_create_lbtest_frame(skb, size); |
| 1787 | skb_put(skb, size); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1788 | |
| 1789 | /* |
| 1790 | * Calculate the loop count based on the largest descriptor ring |
| 1791 | * The idea is to wrap the largest ring a number of times using 64 |
| 1792 | * send/receive pairs during each loop |
| 1793 | */ |
| 1794 | |
| 1795 | if (rx_ring->count <= tx_ring->count) |
| 1796 | lc = ((tx_ring->count / 64) * 2) + 1; |
| 1797 | else |
| 1798 | lc = ((rx_ring->count / 64) * 2) + 1; |
| 1799 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1800 | for (j = 0; j <= lc; j++) { |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1801 | /* reset count of good packets */ |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1802 | good_cnt = 0; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1803 | |
| 1804 | /* place 64 packets on the transmit queue*/ |
| 1805 | for (i = 0; i < 64; i++) { |
| 1806 | skb_get(skb); |
| 1807 | tx_ret_val = ixgbe_xmit_frame_ring(skb, |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1808 | adapter, |
| 1809 | tx_ring); |
| 1810 | if (tx_ret_val == NETDEV_TX_OK) |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1811 | good_cnt++; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1812 | } |
| 1813 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1814 | if (good_cnt != 64) { |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1815 | ret_val = 12; |
| 1816 | break; |
| 1817 | } |
| 1818 | |
| 1819 | /* allow 200 milliseconds for packets to go from Tx to Rx */ |
| 1820 | msleep(200); |
| 1821 | |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1822 | good_cnt = ixgbe_clean_test_rings(rx_ring, tx_ring, size); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1823 | if (good_cnt != 64) { |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1824 | ret_val = 13; |
| 1825 | break; |
| 1826 | } |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1827 | } |
| 1828 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1829 | /* free the original skb */ |
| 1830 | kfree_skb(skb); |
| 1831 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1832 | return ret_val; |
| 1833 | } |
| 1834 | |
| 1835 | static int ixgbe_loopback_test(struct ixgbe_adapter *adapter, u64 *data) |
| 1836 | { |
| 1837 | *data = ixgbe_setup_desc_rings(adapter); |
| 1838 | if (*data) |
| 1839 | goto out; |
| 1840 | *data = ixgbe_setup_loopback_test(adapter); |
| 1841 | if (*data) |
| 1842 | goto err_loopback; |
| 1843 | *data = ixgbe_run_loopback_test(adapter); |
| 1844 | ixgbe_loopback_cleanup(adapter); |
| 1845 | |
| 1846 | err_loopback: |
| 1847 | ixgbe_free_desc_rings(adapter); |
| 1848 | out: |
| 1849 | return *data; |
| 1850 | } |
| 1851 | |
| 1852 | static void ixgbe_diag_test(struct net_device *netdev, |
| 1853 | struct ethtool_test *eth_test, u64 *data) |
| 1854 | { |
| 1855 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 1856 | bool if_running = netif_running(netdev); |
| 1857 | |
| 1858 | set_bit(__IXGBE_TESTING, &adapter->state); |
| 1859 | if (eth_test->flags == ETH_TEST_FL_OFFLINE) { |
| 1860 | /* Offline tests */ |
| 1861 | |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 1862 | e_info(hw, "offline testing starting\n"); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1863 | |
| 1864 | /* Link test performed before hardware reset so autoneg doesn't |
| 1865 | * interfere with test result */ |
| 1866 | if (ixgbe_link_test(adapter, &data[4])) |
| 1867 | eth_test->flags |= ETH_TEST_FL_FAILED; |
| 1868 | |
Greg Rose | e7d481a | 2010-03-25 17:06:48 +0000 | [diff] [blame] | 1869 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) { |
| 1870 | int i; |
| 1871 | for (i = 0; i < adapter->num_vfs; i++) { |
| 1872 | if (adapter->vfinfo[i].clear_to_send) { |
| 1873 | netdev_warn(netdev, "%s", |
| 1874 | "offline diagnostic is not " |
| 1875 | "supported when VFs are " |
| 1876 | "present\n"); |
| 1877 | data[0] = 1; |
| 1878 | data[1] = 1; |
| 1879 | data[2] = 1; |
| 1880 | data[3] = 1; |
| 1881 | eth_test->flags |= ETH_TEST_FL_FAILED; |
| 1882 | clear_bit(__IXGBE_TESTING, |
| 1883 | &adapter->state); |
| 1884 | goto skip_ol_tests; |
| 1885 | } |
| 1886 | } |
| 1887 | } |
| 1888 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1889 | if (if_running) |
| 1890 | /* indicate we're in test mode */ |
| 1891 | dev_close(netdev); |
| 1892 | else |
| 1893 | ixgbe_reset(adapter); |
| 1894 | |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 1895 | e_info(hw, "register testing starting\n"); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1896 | if (ixgbe_reg_test(adapter, &data[0])) |
| 1897 | eth_test->flags |= ETH_TEST_FL_FAILED; |
| 1898 | |
| 1899 | ixgbe_reset(adapter); |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 1900 | e_info(hw, "eeprom testing starting\n"); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1901 | if (ixgbe_eeprom_test(adapter, &data[1])) |
| 1902 | eth_test->flags |= ETH_TEST_FL_FAILED; |
| 1903 | |
| 1904 | ixgbe_reset(adapter); |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 1905 | e_info(hw, "interrupt testing starting\n"); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1906 | if (ixgbe_intr_test(adapter, &data[2])) |
| 1907 | eth_test->flags |= ETH_TEST_FL_FAILED; |
| 1908 | |
Greg Rose | bdbec4b | 2010-01-09 02:27:05 +0000 | [diff] [blame] | 1909 | /* If SRIOV or VMDq is enabled then skip MAC |
| 1910 | * loopback diagnostic. */ |
| 1911 | if (adapter->flags & (IXGBE_FLAG_SRIOV_ENABLED | |
| 1912 | IXGBE_FLAG_VMDQ_ENABLED)) { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 1913 | e_info(hw, "Skip MAC loopback diagnostic in VT " |
| 1914 | "mode\n"); |
Greg Rose | bdbec4b | 2010-01-09 02:27:05 +0000 | [diff] [blame] | 1915 | data[3] = 0; |
| 1916 | goto skip_loopback; |
| 1917 | } |
| 1918 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1919 | ixgbe_reset(adapter); |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 1920 | e_info(hw, "loopback testing starting\n"); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1921 | if (ixgbe_loopback_test(adapter, &data[3])) |
| 1922 | eth_test->flags |= ETH_TEST_FL_FAILED; |
| 1923 | |
Greg Rose | bdbec4b | 2010-01-09 02:27:05 +0000 | [diff] [blame] | 1924 | skip_loopback: |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1925 | ixgbe_reset(adapter); |
| 1926 | |
| 1927 | clear_bit(__IXGBE_TESTING, &adapter->state); |
| 1928 | if (if_running) |
| 1929 | dev_open(netdev); |
| 1930 | } else { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 1931 | e_info(hw, "online testing starting\n"); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1932 | /* Online tests */ |
| 1933 | if (ixgbe_link_test(adapter, &data[4])) |
| 1934 | eth_test->flags |= ETH_TEST_FL_FAILED; |
| 1935 | |
| 1936 | /* Online tests aren't run; pass by default */ |
| 1937 | data[0] = 0; |
| 1938 | data[1] = 0; |
| 1939 | data[2] = 0; |
| 1940 | data[3] = 0; |
| 1941 | |
| 1942 | clear_bit(__IXGBE_TESTING, &adapter->state); |
| 1943 | } |
Greg Rose | e7d481a | 2010-03-25 17:06:48 +0000 | [diff] [blame] | 1944 | skip_ol_tests: |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1945 | msleep_interruptible(4 * 1000); |
| 1946 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1947 | |
Alexander Duyck | d6c519e | 2009-04-08 13:20:50 +0000 | [diff] [blame] | 1948 | static int ixgbe_wol_exclusion(struct ixgbe_adapter *adapter, |
| 1949 | struct ethtool_wolinfo *wol) |
| 1950 | { |
| 1951 | struct ixgbe_hw *hw = &adapter->hw; |
| 1952 | int retval = 1; |
Emil Tantilov | c23f5b6 | 2011-08-16 07:34:18 +0000 | [diff] [blame] | 1953 | u16 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK; |
Alexander Duyck | d6c519e | 2009-04-08 13:20:50 +0000 | [diff] [blame] | 1954 | |
Don Skidmore | 0b077fe | 2010-12-03 03:32:13 +0000 | [diff] [blame] | 1955 | /* WOL not supported except for the following */ |
Alexander Duyck | d6c519e | 2009-04-08 13:20:50 +0000 | [diff] [blame] | 1956 | switch(hw->device_id) { |
Don Skidmore | 0b077fe | 2010-12-03 03:32:13 +0000 | [diff] [blame] | 1957 | case IXGBE_DEV_ID_82599_SFP: |
| 1958 | /* Only this subdevice supports WOL */ |
| 1959 | if (hw->subsystem_device_id != IXGBE_SUBDEV_ID_82599_SFP) { |
| 1960 | wol->supported = 0; |
| 1961 | break; |
| 1962 | } |
| 1963 | retval = 0; |
| 1964 | break; |
Alexander Duyck | 50d6c68 | 2010-11-16 19:27:05 -0800 | [diff] [blame] | 1965 | case IXGBE_DEV_ID_82599_COMBO_BACKPLANE: |
| 1966 | /* All except this subdevice support WOL */ |
| 1967 | if (hw->subsystem_device_id == |
| 1968 | IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ) { |
| 1969 | wol->supported = 0; |
| 1970 | break; |
| 1971 | } |
Don Skidmore | 0b077fe | 2010-12-03 03:32:13 +0000 | [diff] [blame] | 1972 | retval = 0; |
| 1973 | break; |
Alexander Duyck | d6c519e | 2009-04-08 13:20:50 +0000 | [diff] [blame] | 1974 | case IXGBE_DEV_ID_82599_KX4: |
| 1975 | retval = 0; |
| 1976 | break; |
Emil Tantilov | c23f5b6 | 2011-08-16 07:34:18 +0000 | [diff] [blame] | 1977 | case IXGBE_DEV_ID_X540T: |
| 1978 | /* check eeprom to see if enabled wol */ |
| 1979 | if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) || |
| 1980 | ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) && |
| 1981 | (hw->bus.func == 0))) { |
| 1982 | retval = 0; |
| 1983 | break; |
| 1984 | } |
| 1985 | |
| 1986 | /* All others not supported */ |
| 1987 | wol->supported = 0; |
| 1988 | break; |
Alexander Duyck | d6c519e | 2009-04-08 13:20:50 +0000 | [diff] [blame] | 1989 | default: |
| 1990 | wol->supported = 0; |
Alexander Duyck | d6c519e | 2009-04-08 13:20:50 +0000 | [diff] [blame] | 1991 | } |
| 1992 | |
| 1993 | return retval; |
| 1994 | } |
| 1995 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1996 | static void ixgbe_get_wol(struct net_device *netdev, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1997 | struct ethtool_wolinfo *wol) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1998 | { |
PJ Waskiewicz | e63d976 | 2009-03-19 01:23:46 +0000 | [diff] [blame] | 1999 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 2000 | |
| 2001 | wol->supported = WAKE_UCAST | WAKE_MCAST | |
| 2002 | WAKE_BCAST | WAKE_MAGIC; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2003 | wol->wolopts = 0; |
| 2004 | |
Alexander Duyck | d6c519e | 2009-04-08 13:20:50 +0000 | [diff] [blame] | 2005 | if (ixgbe_wol_exclusion(adapter, wol) || |
| 2006 | !device_can_wakeup(&adapter->pdev->dev)) |
PJ Waskiewicz | e63d976 | 2009-03-19 01:23:46 +0000 | [diff] [blame] | 2007 | return; |
| 2008 | |
| 2009 | if (adapter->wol & IXGBE_WUFC_EX) |
| 2010 | wol->wolopts |= WAKE_UCAST; |
| 2011 | if (adapter->wol & IXGBE_WUFC_MC) |
| 2012 | wol->wolopts |= WAKE_MCAST; |
| 2013 | if (adapter->wol & IXGBE_WUFC_BC) |
| 2014 | wol->wolopts |= WAKE_BCAST; |
| 2015 | if (adapter->wol & IXGBE_WUFC_MAG) |
| 2016 | wol->wolopts |= WAKE_MAGIC; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2017 | } |
| 2018 | |
PJ Waskiewicz | e63d976 | 2009-03-19 01:23:46 +0000 | [diff] [blame] | 2019 | static int ixgbe_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol) |
| 2020 | { |
| 2021 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 2022 | |
| 2023 | if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE)) |
| 2024 | return -EOPNOTSUPP; |
| 2025 | |
Alexander Duyck | d6c519e | 2009-04-08 13:20:50 +0000 | [diff] [blame] | 2026 | if (ixgbe_wol_exclusion(adapter, wol)) |
| 2027 | return wol->wolopts ? -EOPNOTSUPP : 0; |
| 2028 | |
PJ Waskiewicz | e63d976 | 2009-03-19 01:23:46 +0000 | [diff] [blame] | 2029 | adapter->wol = 0; |
| 2030 | |
| 2031 | if (wol->wolopts & WAKE_UCAST) |
| 2032 | adapter->wol |= IXGBE_WUFC_EX; |
| 2033 | if (wol->wolopts & WAKE_MCAST) |
| 2034 | adapter->wol |= IXGBE_WUFC_MC; |
| 2035 | if (wol->wolopts & WAKE_BCAST) |
| 2036 | adapter->wol |= IXGBE_WUFC_BC; |
| 2037 | if (wol->wolopts & WAKE_MAGIC) |
| 2038 | adapter->wol |= IXGBE_WUFC_MAG; |
| 2039 | |
| 2040 | device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol); |
| 2041 | |
| 2042 | return 0; |
| 2043 | } |
| 2044 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2045 | static int ixgbe_nway_reset(struct net_device *netdev) |
| 2046 | { |
| 2047 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 2048 | |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 2049 | if (netif_running(netdev)) |
| 2050 | ixgbe_reinit_locked(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2051 | |
| 2052 | return 0; |
| 2053 | } |
| 2054 | |
Emil Tantilov | 66e6961 | 2011-04-16 06:12:51 +0000 | [diff] [blame] | 2055 | static int ixgbe_set_phys_id(struct net_device *netdev, |
| 2056 | enum ethtool_phys_id_state state) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2057 | { |
| 2058 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2059 | struct ixgbe_hw *hw = &adapter->hw; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2060 | |
Emil Tantilov | 66e6961 | 2011-04-16 06:12:51 +0000 | [diff] [blame] | 2061 | switch (state) { |
| 2062 | case ETHTOOL_ID_ACTIVE: |
| 2063 | adapter->led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); |
| 2064 | return 2; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2065 | |
Emil Tantilov | 66e6961 | 2011-04-16 06:12:51 +0000 | [diff] [blame] | 2066 | case ETHTOOL_ID_ON: |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2067 | hw->mac.ops.led_on(hw, IXGBE_LED_ON); |
Emil Tantilov | 66e6961 | 2011-04-16 06:12:51 +0000 | [diff] [blame] | 2068 | break; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2069 | |
Emil Tantilov | 66e6961 | 2011-04-16 06:12:51 +0000 | [diff] [blame] | 2070 | case ETHTOOL_ID_OFF: |
| 2071 | hw->mac.ops.led_off(hw, IXGBE_LED_ON); |
| 2072 | break; |
| 2073 | |
| 2074 | case ETHTOOL_ID_INACTIVE: |
| 2075 | /* Restore LED settings */ |
| 2076 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_LEDCTL, adapter->led_reg); |
| 2077 | break; |
| 2078 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2079 | |
| 2080 | return 0; |
| 2081 | } |
| 2082 | |
| 2083 | static int ixgbe_get_coalesce(struct net_device *netdev, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 2084 | struct ethtool_coalesce *ec) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2085 | { |
| 2086 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 2087 | |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2088 | ec->tx_max_coalesced_frames_irq = adapter->tx_work_limit; |
Jesse Brandeburg | 30efa5a | 2008-09-11 19:58:14 -0700 | [diff] [blame] | 2089 | |
| 2090 | /* only valid if in constant ITR mode */ |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2091 | if (adapter->rx_itr_setting <= 1) |
| 2092 | ec->rx_coalesce_usecs = adapter->rx_itr_setting; |
| 2093 | else |
| 2094 | ec->rx_coalesce_usecs = adapter->rx_itr_setting >> 2; |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 2095 | |
Shannon Nelson | cfb3f91 | 2009-11-24 18:51:06 +0000 | [diff] [blame] | 2096 | /* if in mixed tx/rx queues per vector mode, report only rx settings */ |
Alexander Duyck | 08c8833 | 2011-06-11 01:45:03 +0000 | [diff] [blame] | 2097 | if (adapter->q_vector[0]->tx.count && adapter->q_vector[0]->rx.count) |
Shannon Nelson | cfb3f91 | 2009-11-24 18:51:06 +0000 | [diff] [blame] | 2098 | return 0; |
| 2099 | |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 2100 | /* only valid if in constant ITR mode */ |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2101 | if (adapter->tx_itr_setting <= 1) |
| 2102 | ec->tx_coalesce_usecs = adapter->tx_itr_setting; |
| 2103 | else |
| 2104 | ec->tx_coalesce_usecs = adapter->tx_itr_setting >> 2; |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 2105 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2106 | return 0; |
| 2107 | } |
| 2108 | |
Alexander Duyck | 80fba3f | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2109 | /* |
| 2110 | * this function must be called before setting the new value of |
| 2111 | * rx_itr_setting |
| 2112 | */ |
| 2113 | static bool ixgbe_update_rsc(struct ixgbe_adapter *adapter, |
| 2114 | struct ethtool_coalesce *ec) |
| 2115 | { |
| 2116 | struct net_device *netdev = adapter->netdev; |
| 2117 | |
| 2118 | if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)) |
| 2119 | return false; |
| 2120 | |
| 2121 | /* if interrupt rate is too high then disable RSC */ |
| 2122 | if (ec->rx_coalesce_usecs != 1 && |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2123 | ec->rx_coalesce_usecs <= (IXGBE_MIN_RSC_ITR >> 2)) { |
Alexander Duyck | 80fba3f | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2124 | if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) { |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2125 | e_info(probe, "rx-usecs set too low, disabling RSC\n"); |
Alexander Duyck | 80fba3f | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2126 | adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED; |
| 2127 | return true; |
| 2128 | } |
| 2129 | } else { |
| 2130 | /* check the feature flag value and enable RSC if necessary */ |
| 2131 | if ((netdev->features & NETIF_F_LRO) && |
| 2132 | !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) { |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2133 | e_info(probe, "rx-usecs set to %d, re-enabling RSC\n", |
Alexander Duyck | 80fba3f | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2134 | ec->rx_coalesce_usecs); |
| 2135 | adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED; |
| 2136 | return true; |
| 2137 | } |
| 2138 | } |
| 2139 | return false; |
| 2140 | } |
| 2141 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2142 | static int ixgbe_set_coalesce(struct net_device *netdev, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 2143 | struct ethtool_coalesce *ec) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2144 | { |
| 2145 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Don Skidmore | 237057a | 2009-08-11 13:18:14 +0000 | [diff] [blame] | 2146 | struct ixgbe_q_vector *q_vector; |
Jesse Brandeburg | 30efa5a | 2008-09-11 19:58:14 -0700 | [diff] [blame] | 2147 | int i; |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2148 | int num_vectors; |
| 2149 | u16 tx_itr_param, rx_itr_param; |
Jesse Brandeburg | ef02119 | 2010-04-27 01:37:41 +0000 | [diff] [blame] | 2150 | bool need_reset = false; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2151 | |
Shannon Nelson | cfb3f91 | 2009-11-24 18:51:06 +0000 | [diff] [blame] | 2152 | /* don't accept tx specific changes if we've got mixed RxTx vectors */ |
Alexander Duyck | 08c8833 | 2011-06-11 01:45:03 +0000 | [diff] [blame] | 2153 | if (adapter->q_vector[0]->tx.count && adapter->q_vector[0]->rx.count |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2154 | && ec->tx_coalesce_usecs) |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 2155 | return -EINVAL; |
| 2156 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2157 | if (ec->tx_max_coalesced_frames_irq) |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2158 | adapter->tx_work_limit = ec->tx_max_coalesced_frames_irq; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2159 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2160 | if ((ec->rx_coalesce_usecs > (IXGBE_MAX_EITR >> 2)) || |
| 2161 | (ec->tx_coalesce_usecs > (IXGBE_MAX_EITR >> 2))) |
| 2162 | return -EINVAL; |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 2163 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2164 | /* check the old value and enable RSC if necessary */ |
| 2165 | need_reset = ixgbe_update_rsc(adapter, ec); |
Alexander Duyck | 80fba3f | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2166 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2167 | if (ec->rx_coalesce_usecs > 1) |
| 2168 | adapter->rx_itr_setting = ec->rx_coalesce_usecs << 2; |
| 2169 | else |
| 2170 | adapter->rx_itr_setting = ec->rx_coalesce_usecs; |
Jesse Brandeburg | 30efa5a | 2008-09-11 19:58:14 -0700 | [diff] [blame] | 2171 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2172 | if (adapter->rx_itr_setting == 1) |
| 2173 | rx_itr_param = IXGBE_20K_ITR; |
| 2174 | else |
| 2175 | rx_itr_param = adapter->rx_itr_setting; |
Alexander Duyck | 80fba3f | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2176 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2177 | if (ec->tx_coalesce_usecs > 1) |
| 2178 | adapter->tx_itr_setting = ec->tx_coalesce_usecs << 2; |
| 2179 | else |
| 2180 | adapter->tx_itr_setting = ec->tx_coalesce_usecs; |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 2181 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2182 | if (adapter->tx_itr_setting == 1) |
| 2183 | tx_itr_param = IXGBE_10K_ITR; |
| 2184 | else |
| 2185 | tx_itr_param = adapter->tx_itr_setting; |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 2186 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2187 | if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) |
| 2188 | num_vectors = adapter->num_msix_vectors - NON_Q_VECTORS; |
| 2189 | else |
| 2190 | num_vectors = 1; |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 2191 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2192 | for (i = 0; i < num_vectors; i++) { |
| 2193 | q_vector = adapter->q_vector[i]; |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2194 | q_vector->tx.work_limit = adapter->tx_work_limit; |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2195 | if (q_vector->tx.count && !q_vector->rx.count) |
| 2196 | /* tx only */ |
| 2197 | q_vector->itr = tx_itr_param; |
| 2198 | else |
| 2199 | /* rx only or mixed */ |
| 2200 | q_vector->itr = rx_itr_param; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2201 | ixgbe_write_eitr(q_vector); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2202 | } |
| 2203 | |
Jesse Brandeburg | ef02119 | 2010-04-27 01:37:41 +0000 | [diff] [blame] | 2204 | /* |
| 2205 | * do reset here at the end to make sure EITR==0 case is handled |
| 2206 | * correctly w.r.t stopping tx, and changing TXDCTL.WTHRESH settings |
| 2207 | * also locks in RSC enable/disable which requires reset |
| 2208 | */ |
Emil Tantilov | c988ee8 | 2011-05-13 02:22:45 +0000 | [diff] [blame] | 2209 | if (need_reset) |
| 2210 | ixgbe_do_reset(netdev); |
Jesse Brandeburg | ef02119 | 2010-04-27 01:37:41 +0000 | [diff] [blame] | 2211 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2212 | return 0; |
| 2213 | } |
| 2214 | |
Alexander Duyck | 3e05334 | 2011-05-11 07:18:47 +0000 | [diff] [blame] | 2215 | static int ixgbe_get_ethtool_fdir_entry(struct ixgbe_adapter *adapter, |
| 2216 | struct ethtool_rxnfc *cmd) |
| 2217 | { |
| 2218 | union ixgbe_atr_input *mask = &adapter->fdir_mask; |
| 2219 | struct ethtool_rx_flow_spec *fsp = |
| 2220 | (struct ethtool_rx_flow_spec *)&cmd->fs; |
| 2221 | struct hlist_node *node, *node2; |
| 2222 | struct ixgbe_fdir_filter *rule = NULL; |
| 2223 | |
| 2224 | /* report total rule count */ |
| 2225 | cmd->data = (1024 << adapter->fdir_pballoc) - 2; |
| 2226 | |
| 2227 | hlist_for_each_entry_safe(rule, node, node2, |
| 2228 | &adapter->fdir_filter_list, fdir_node) { |
| 2229 | if (fsp->location <= rule->sw_idx) |
| 2230 | break; |
| 2231 | } |
| 2232 | |
| 2233 | if (!rule || fsp->location != rule->sw_idx) |
| 2234 | return -EINVAL; |
| 2235 | |
| 2236 | /* fill out the flow spec entry */ |
| 2237 | |
| 2238 | /* set flow type field */ |
| 2239 | switch (rule->filter.formatted.flow_type) { |
| 2240 | case IXGBE_ATR_FLOW_TYPE_TCPV4: |
| 2241 | fsp->flow_type = TCP_V4_FLOW; |
| 2242 | break; |
| 2243 | case IXGBE_ATR_FLOW_TYPE_UDPV4: |
| 2244 | fsp->flow_type = UDP_V4_FLOW; |
| 2245 | break; |
| 2246 | case IXGBE_ATR_FLOW_TYPE_SCTPV4: |
| 2247 | fsp->flow_type = SCTP_V4_FLOW; |
| 2248 | break; |
| 2249 | case IXGBE_ATR_FLOW_TYPE_IPV4: |
| 2250 | fsp->flow_type = IP_USER_FLOW; |
| 2251 | fsp->h_u.usr_ip4_spec.ip_ver = ETH_RX_NFC_IP4; |
| 2252 | fsp->h_u.usr_ip4_spec.proto = 0; |
| 2253 | fsp->m_u.usr_ip4_spec.proto = 0; |
| 2254 | break; |
| 2255 | default: |
| 2256 | return -EINVAL; |
| 2257 | } |
| 2258 | |
| 2259 | fsp->h_u.tcp_ip4_spec.psrc = rule->filter.formatted.src_port; |
| 2260 | fsp->m_u.tcp_ip4_spec.psrc = mask->formatted.src_port; |
| 2261 | fsp->h_u.tcp_ip4_spec.pdst = rule->filter.formatted.dst_port; |
| 2262 | fsp->m_u.tcp_ip4_spec.pdst = mask->formatted.dst_port; |
| 2263 | fsp->h_u.tcp_ip4_spec.ip4src = rule->filter.formatted.src_ip[0]; |
| 2264 | fsp->m_u.tcp_ip4_spec.ip4src = mask->formatted.src_ip[0]; |
| 2265 | fsp->h_u.tcp_ip4_spec.ip4dst = rule->filter.formatted.dst_ip[0]; |
| 2266 | fsp->m_u.tcp_ip4_spec.ip4dst = mask->formatted.dst_ip[0]; |
| 2267 | fsp->h_ext.vlan_tci = rule->filter.formatted.vlan_id; |
| 2268 | fsp->m_ext.vlan_tci = mask->formatted.vlan_id; |
| 2269 | fsp->h_ext.vlan_etype = rule->filter.formatted.flex_bytes; |
| 2270 | fsp->m_ext.vlan_etype = mask->formatted.flex_bytes; |
| 2271 | fsp->h_ext.data[1] = htonl(rule->filter.formatted.vm_pool); |
| 2272 | fsp->m_ext.data[1] = htonl(mask->formatted.vm_pool); |
| 2273 | fsp->flow_type |= FLOW_EXT; |
| 2274 | |
| 2275 | /* record action */ |
| 2276 | if (rule->action == IXGBE_FDIR_DROP_QUEUE) |
| 2277 | fsp->ring_cookie = RX_CLS_FLOW_DISC; |
| 2278 | else |
| 2279 | fsp->ring_cookie = rule->action; |
| 2280 | |
| 2281 | return 0; |
| 2282 | } |
| 2283 | |
| 2284 | static int ixgbe_get_ethtool_fdir_all(struct ixgbe_adapter *adapter, |
| 2285 | struct ethtool_rxnfc *cmd, |
| 2286 | u32 *rule_locs) |
| 2287 | { |
| 2288 | struct hlist_node *node, *node2; |
| 2289 | struct ixgbe_fdir_filter *rule; |
| 2290 | int cnt = 0; |
| 2291 | |
| 2292 | /* report total rule count */ |
| 2293 | cmd->data = (1024 << adapter->fdir_pballoc) - 2; |
| 2294 | |
| 2295 | hlist_for_each_entry_safe(rule, node, node2, |
| 2296 | &adapter->fdir_filter_list, fdir_node) { |
| 2297 | if (cnt == cmd->rule_cnt) |
| 2298 | return -EMSGSIZE; |
| 2299 | rule_locs[cnt] = rule->sw_idx; |
| 2300 | cnt++; |
| 2301 | } |
| 2302 | |
Ben Hutchings | 473e64e | 2011-09-06 13:52:47 +0000 | [diff] [blame] | 2303 | cmd->rule_cnt = cnt; |
| 2304 | |
Alexander Duyck | 3e05334 | 2011-05-11 07:18:47 +0000 | [diff] [blame] | 2305 | return 0; |
| 2306 | } |
| 2307 | |
Alexander Duyck | 91cd94b | 2011-05-11 07:18:41 +0000 | [diff] [blame] | 2308 | static int ixgbe_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd, |
Ben Hutchings | 815c7db | 2011-09-06 13:49:12 +0000 | [diff] [blame] | 2309 | u32 *rule_locs) |
Alexander Duyck | 91cd94b | 2011-05-11 07:18:41 +0000 | [diff] [blame] | 2310 | { |
| 2311 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 2312 | int ret = -EOPNOTSUPP; |
| 2313 | |
| 2314 | switch (cmd->cmd) { |
| 2315 | case ETHTOOL_GRXRINGS: |
| 2316 | cmd->data = adapter->num_rx_queues; |
| 2317 | ret = 0; |
| 2318 | break; |
Alexander Duyck | 3e05334 | 2011-05-11 07:18:47 +0000 | [diff] [blame] | 2319 | case ETHTOOL_GRXCLSRLCNT: |
| 2320 | cmd->rule_cnt = adapter->fdir_filter_count; |
| 2321 | ret = 0; |
| 2322 | break; |
| 2323 | case ETHTOOL_GRXCLSRULE: |
| 2324 | ret = ixgbe_get_ethtool_fdir_entry(adapter, cmd); |
| 2325 | break; |
| 2326 | case ETHTOOL_GRXCLSRLALL: |
Ben Hutchings | 815c7db | 2011-09-06 13:49:12 +0000 | [diff] [blame] | 2327 | ret = ixgbe_get_ethtool_fdir_all(adapter, cmd, rule_locs); |
Alexander Duyck | 3e05334 | 2011-05-11 07:18:47 +0000 | [diff] [blame] | 2328 | break; |
Alexander Duyck | 91cd94b | 2011-05-11 07:18:41 +0000 | [diff] [blame] | 2329 | default: |
| 2330 | break; |
| 2331 | } |
| 2332 | |
| 2333 | return ret; |
| 2334 | } |
| 2335 | |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 2336 | static int ixgbe_update_ethtool_fdir_entry(struct ixgbe_adapter *adapter, |
| 2337 | struct ixgbe_fdir_filter *input, |
| 2338 | u16 sw_idx) |
| 2339 | { |
| 2340 | struct ixgbe_hw *hw = &adapter->hw; |
| 2341 | struct hlist_node *node, *node2, *parent; |
| 2342 | struct ixgbe_fdir_filter *rule; |
| 2343 | int err = -EINVAL; |
| 2344 | |
| 2345 | parent = NULL; |
| 2346 | rule = NULL; |
| 2347 | |
| 2348 | hlist_for_each_entry_safe(rule, node, node2, |
| 2349 | &adapter->fdir_filter_list, fdir_node) { |
| 2350 | /* hash found, or no matching entry */ |
| 2351 | if (rule->sw_idx >= sw_idx) |
| 2352 | break; |
| 2353 | parent = node; |
| 2354 | } |
| 2355 | |
| 2356 | /* if there is an old rule occupying our place remove it */ |
| 2357 | if (rule && (rule->sw_idx == sw_idx)) { |
| 2358 | if (!input || (rule->filter.formatted.bkt_hash != |
| 2359 | input->filter.formatted.bkt_hash)) { |
| 2360 | err = ixgbe_fdir_erase_perfect_filter_82599(hw, |
| 2361 | &rule->filter, |
| 2362 | sw_idx); |
| 2363 | } |
| 2364 | |
| 2365 | hlist_del(&rule->fdir_node); |
| 2366 | kfree(rule); |
| 2367 | adapter->fdir_filter_count--; |
| 2368 | } |
| 2369 | |
| 2370 | /* |
| 2371 | * If no input this was a delete, err should be 0 if a rule was |
| 2372 | * successfully found and removed from the list else -EINVAL |
| 2373 | */ |
| 2374 | if (!input) |
| 2375 | return err; |
| 2376 | |
| 2377 | /* initialize node and set software index */ |
| 2378 | INIT_HLIST_NODE(&input->fdir_node); |
| 2379 | |
| 2380 | /* add filter to the list */ |
| 2381 | if (parent) |
| 2382 | hlist_add_after(parent, &input->fdir_node); |
| 2383 | else |
| 2384 | hlist_add_head(&input->fdir_node, |
| 2385 | &adapter->fdir_filter_list); |
| 2386 | |
| 2387 | /* update counts */ |
| 2388 | adapter->fdir_filter_count++; |
| 2389 | |
| 2390 | return 0; |
| 2391 | } |
| 2392 | |
| 2393 | static int ixgbe_flowspec_to_flow_type(struct ethtool_rx_flow_spec *fsp, |
| 2394 | u8 *flow_type) |
| 2395 | { |
| 2396 | switch (fsp->flow_type & ~FLOW_EXT) { |
| 2397 | case TCP_V4_FLOW: |
| 2398 | *flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4; |
| 2399 | break; |
| 2400 | case UDP_V4_FLOW: |
| 2401 | *flow_type = IXGBE_ATR_FLOW_TYPE_UDPV4; |
| 2402 | break; |
| 2403 | case SCTP_V4_FLOW: |
| 2404 | *flow_type = IXGBE_ATR_FLOW_TYPE_SCTPV4; |
| 2405 | break; |
| 2406 | case IP_USER_FLOW: |
| 2407 | switch (fsp->h_u.usr_ip4_spec.proto) { |
| 2408 | case IPPROTO_TCP: |
| 2409 | *flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4; |
| 2410 | break; |
| 2411 | case IPPROTO_UDP: |
| 2412 | *flow_type = IXGBE_ATR_FLOW_TYPE_UDPV4; |
| 2413 | break; |
| 2414 | case IPPROTO_SCTP: |
| 2415 | *flow_type = IXGBE_ATR_FLOW_TYPE_SCTPV4; |
| 2416 | break; |
| 2417 | case 0: |
| 2418 | if (!fsp->m_u.usr_ip4_spec.proto) { |
| 2419 | *flow_type = IXGBE_ATR_FLOW_TYPE_IPV4; |
| 2420 | break; |
| 2421 | } |
| 2422 | default: |
| 2423 | return 0; |
| 2424 | } |
| 2425 | break; |
| 2426 | default: |
| 2427 | return 0; |
| 2428 | } |
| 2429 | |
| 2430 | return 1; |
| 2431 | } |
| 2432 | |
| 2433 | static int ixgbe_add_ethtool_fdir_entry(struct ixgbe_adapter *adapter, |
| 2434 | struct ethtool_rxnfc *cmd) |
| 2435 | { |
| 2436 | struct ethtool_rx_flow_spec *fsp = |
| 2437 | (struct ethtool_rx_flow_spec *)&cmd->fs; |
| 2438 | struct ixgbe_hw *hw = &adapter->hw; |
| 2439 | struct ixgbe_fdir_filter *input; |
| 2440 | union ixgbe_atr_input mask; |
| 2441 | int err; |
| 2442 | |
| 2443 | if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) |
| 2444 | return -EOPNOTSUPP; |
| 2445 | |
| 2446 | /* |
| 2447 | * Don't allow programming if the action is a queue greater than |
| 2448 | * the number of online Rx queues. |
| 2449 | */ |
| 2450 | if ((fsp->ring_cookie != RX_CLS_FLOW_DISC) && |
| 2451 | (fsp->ring_cookie >= adapter->num_rx_queues)) |
| 2452 | return -EINVAL; |
| 2453 | |
| 2454 | /* Don't allow indexes to exist outside of available space */ |
| 2455 | if (fsp->location >= ((1024 << adapter->fdir_pballoc) - 2)) { |
| 2456 | e_err(drv, "Location out of range\n"); |
| 2457 | return -EINVAL; |
| 2458 | } |
| 2459 | |
| 2460 | input = kzalloc(sizeof(*input), GFP_ATOMIC); |
| 2461 | if (!input) |
| 2462 | return -ENOMEM; |
| 2463 | |
| 2464 | memset(&mask, 0, sizeof(union ixgbe_atr_input)); |
| 2465 | |
| 2466 | /* set SW index */ |
| 2467 | input->sw_idx = fsp->location; |
| 2468 | |
| 2469 | /* record flow type */ |
| 2470 | if (!ixgbe_flowspec_to_flow_type(fsp, |
| 2471 | &input->filter.formatted.flow_type)) { |
| 2472 | e_err(drv, "Unrecognized flow type\n"); |
| 2473 | goto err_out; |
| 2474 | } |
| 2475 | |
| 2476 | mask.formatted.flow_type = IXGBE_ATR_L4TYPE_IPV6_MASK | |
| 2477 | IXGBE_ATR_L4TYPE_MASK; |
| 2478 | |
| 2479 | if (input->filter.formatted.flow_type == IXGBE_ATR_FLOW_TYPE_IPV4) |
| 2480 | mask.formatted.flow_type &= IXGBE_ATR_L4TYPE_IPV6_MASK; |
| 2481 | |
| 2482 | /* Copy input into formatted structures */ |
| 2483 | input->filter.formatted.src_ip[0] = fsp->h_u.tcp_ip4_spec.ip4src; |
| 2484 | mask.formatted.src_ip[0] = fsp->m_u.tcp_ip4_spec.ip4src; |
| 2485 | input->filter.formatted.dst_ip[0] = fsp->h_u.tcp_ip4_spec.ip4dst; |
| 2486 | mask.formatted.dst_ip[0] = fsp->m_u.tcp_ip4_spec.ip4dst; |
| 2487 | input->filter.formatted.src_port = fsp->h_u.tcp_ip4_spec.psrc; |
| 2488 | mask.formatted.src_port = fsp->m_u.tcp_ip4_spec.psrc; |
| 2489 | input->filter.formatted.dst_port = fsp->h_u.tcp_ip4_spec.pdst; |
| 2490 | mask.formatted.dst_port = fsp->m_u.tcp_ip4_spec.pdst; |
| 2491 | |
| 2492 | if (fsp->flow_type & FLOW_EXT) { |
| 2493 | input->filter.formatted.vm_pool = |
| 2494 | (unsigned char)ntohl(fsp->h_ext.data[1]); |
| 2495 | mask.formatted.vm_pool = |
| 2496 | (unsigned char)ntohl(fsp->m_ext.data[1]); |
| 2497 | input->filter.formatted.vlan_id = fsp->h_ext.vlan_tci; |
| 2498 | mask.formatted.vlan_id = fsp->m_ext.vlan_tci; |
| 2499 | input->filter.formatted.flex_bytes = |
| 2500 | fsp->h_ext.vlan_etype; |
| 2501 | mask.formatted.flex_bytes = fsp->m_ext.vlan_etype; |
| 2502 | } |
| 2503 | |
| 2504 | /* determine if we need to drop or route the packet */ |
| 2505 | if (fsp->ring_cookie == RX_CLS_FLOW_DISC) |
| 2506 | input->action = IXGBE_FDIR_DROP_QUEUE; |
| 2507 | else |
| 2508 | input->action = fsp->ring_cookie; |
| 2509 | |
| 2510 | spin_lock(&adapter->fdir_perfect_lock); |
| 2511 | |
| 2512 | if (hlist_empty(&adapter->fdir_filter_list)) { |
| 2513 | /* save mask and program input mask into HW */ |
| 2514 | memcpy(&adapter->fdir_mask, &mask, sizeof(mask)); |
| 2515 | err = ixgbe_fdir_set_input_mask_82599(hw, &mask); |
| 2516 | if (err) { |
| 2517 | e_err(drv, "Error writing mask\n"); |
| 2518 | goto err_out_w_lock; |
| 2519 | } |
| 2520 | } else if (memcmp(&adapter->fdir_mask, &mask, sizeof(mask))) { |
| 2521 | e_err(drv, "Only one mask supported per port\n"); |
| 2522 | goto err_out_w_lock; |
| 2523 | } |
| 2524 | |
| 2525 | /* apply mask and compute/store hash */ |
| 2526 | ixgbe_atr_compute_perfect_hash_82599(&input->filter, &mask); |
| 2527 | |
| 2528 | /* program filters to filter memory */ |
| 2529 | err = ixgbe_fdir_write_perfect_filter_82599(hw, |
| 2530 | &input->filter, input->sw_idx, |
Alexander Duyck | 1f4d518 | 2011-05-14 01:16:02 +0000 | [diff] [blame] | 2531 | (input->action == IXGBE_FDIR_DROP_QUEUE) ? |
| 2532 | IXGBE_FDIR_DROP_QUEUE : |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 2533 | adapter->rx_ring[input->action]->reg_idx); |
| 2534 | if (err) |
| 2535 | goto err_out_w_lock; |
| 2536 | |
| 2537 | ixgbe_update_ethtool_fdir_entry(adapter, input, input->sw_idx); |
| 2538 | |
| 2539 | spin_unlock(&adapter->fdir_perfect_lock); |
| 2540 | |
| 2541 | return err; |
| 2542 | err_out_w_lock: |
| 2543 | spin_unlock(&adapter->fdir_perfect_lock); |
| 2544 | err_out: |
| 2545 | kfree(input); |
| 2546 | return -EINVAL; |
| 2547 | } |
| 2548 | |
| 2549 | static int ixgbe_del_ethtool_fdir_entry(struct ixgbe_adapter *adapter, |
| 2550 | struct ethtool_rxnfc *cmd) |
| 2551 | { |
| 2552 | struct ethtool_rx_flow_spec *fsp = |
| 2553 | (struct ethtool_rx_flow_spec *)&cmd->fs; |
| 2554 | int err; |
| 2555 | |
| 2556 | spin_lock(&adapter->fdir_perfect_lock); |
| 2557 | err = ixgbe_update_ethtool_fdir_entry(adapter, NULL, fsp->location); |
| 2558 | spin_unlock(&adapter->fdir_perfect_lock); |
| 2559 | |
| 2560 | return err; |
| 2561 | } |
| 2562 | |
| 2563 | static int ixgbe_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd) |
| 2564 | { |
| 2565 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 2566 | int ret = -EOPNOTSUPP; |
| 2567 | |
| 2568 | switch (cmd->cmd) { |
| 2569 | case ETHTOOL_SRXCLSRLINS: |
| 2570 | ret = ixgbe_add_ethtool_fdir_entry(adapter, cmd); |
| 2571 | break; |
| 2572 | case ETHTOOL_SRXCLSRLDEL: |
| 2573 | ret = ixgbe_del_ethtool_fdir_entry(adapter, cmd); |
| 2574 | break; |
| 2575 | default: |
| 2576 | break; |
| 2577 | } |
| 2578 | |
| 2579 | return ret; |
| 2580 | } |
| 2581 | |
Jesse Brandeburg | b980497 | 2008-09-11 20:00:29 -0700 | [diff] [blame] | 2582 | static const struct ethtool_ops ixgbe_ethtool_ops = { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2583 | .get_settings = ixgbe_get_settings, |
| 2584 | .set_settings = ixgbe_set_settings, |
| 2585 | .get_drvinfo = ixgbe_get_drvinfo, |
| 2586 | .get_regs_len = ixgbe_get_regs_len, |
| 2587 | .get_regs = ixgbe_get_regs, |
| 2588 | .get_wol = ixgbe_get_wol, |
PJ Waskiewicz | e63d976 | 2009-03-19 01:23:46 +0000 | [diff] [blame] | 2589 | .set_wol = ixgbe_set_wol, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2590 | .nway_reset = ixgbe_nway_reset, |
| 2591 | .get_link = ethtool_op_get_link, |
| 2592 | .get_eeprom_len = ixgbe_get_eeprom_len, |
| 2593 | .get_eeprom = ixgbe_get_eeprom, |
Emil Tantilov | 2fa5eef | 2011-10-06 08:57:04 +0000 | [diff] [blame] | 2594 | .set_eeprom = ixgbe_set_eeprom, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2595 | .get_ringparam = ixgbe_get_ringparam, |
| 2596 | .set_ringparam = ixgbe_set_ringparam, |
| 2597 | .get_pauseparam = ixgbe_get_pauseparam, |
| 2598 | .set_pauseparam = ixgbe_set_pauseparam, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2599 | .get_msglevel = ixgbe_get_msglevel, |
| 2600 | .set_msglevel = ixgbe_set_msglevel, |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 2601 | .self_test = ixgbe_diag_test, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2602 | .get_strings = ixgbe_get_strings, |
Emil Tantilov | 66e6961 | 2011-04-16 06:12:51 +0000 | [diff] [blame] | 2603 | .set_phys_id = ixgbe_set_phys_id, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 2604 | .get_sset_count = ixgbe_get_sset_count, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2605 | .get_ethtool_stats = ixgbe_get_ethtool_stats, |
| 2606 | .get_coalesce = ixgbe_get_coalesce, |
| 2607 | .set_coalesce = ixgbe_set_coalesce, |
Alexander Duyck | 91cd94b | 2011-05-11 07:18:41 +0000 | [diff] [blame] | 2608 | .get_rxnfc = ixgbe_get_rxnfc, |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 2609 | .set_rxnfc = ixgbe_set_rxnfc, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2610 | }; |
| 2611 | |
| 2612 | void ixgbe_set_ethtool_ops(struct net_device *netdev) |
| 2613 | { |
| 2614 | SET_ETHTOOL_OPS(netdev, &ixgbe_ethtool_ops); |
| 2615 | } |