Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | |
| 3 | Intel 10 Gigabit PCI Express Linux driver |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 4 | Copyright(c) 1999 - 2016 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: |
Jacob Keller | b89aae7 | 2014-02-22 01:23:50 +0000 | [diff] [blame] | 23 | Linux NICS <linux.nics@intel.com> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 24 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| 25 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 26 | |
| 27 | *******************************************************************************/ |
| 28 | |
| 29 | /* ethtool support for ixgbe */ |
| 30 | |
Alexey Dobriyan | a6b7a40 | 2011-06-06 10:43:46 +0000 | [diff] [blame] | 31 | #include <linux/interrupt.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 32 | #include <linux/types.h> |
| 33 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/slab.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 35 | #include <linux/pci.h> |
| 36 | #include <linux/netdevice.h> |
| 37 | #include <linux/ethtool.h> |
| 38 | #include <linux/vmalloc.h> |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 39 | #include <linux/highmem.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 40 | #include <linux/uaccess.h> |
| 41 | |
| 42 | #include "ixgbe.h" |
Aurélien Guillaume | 71858ac | 2013-01-17 06:55:24 +0000 | [diff] [blame] | 43 | #include "ixgbe_phy.h" |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 44 | |
| 45 | |
| 46 | #define IXGBE_ALL_RAR_ENTRIES 16 |
| 47 | |
Ajit Khaparde | 29c3a05 | 2009-10-13 01:47:33 +0000 | [diff] [blame] | 48 | enum {NETDEV_STATS, IXGBE_STATS}; |
| 49 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 50 | struct ixgbe_stats { |
| 51 | char stat_string[ETH_GSTRING_LEN]; |
Ajit Khaparde | 29c3a05 | 2009-10-13 01:47:33 +0000 | [diff] [blame] | 52 | int type; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 53 | int sizeof_stat; |
| 54 | int stat_offset; |
| 55 | }; |
| 56 | |
Ajit Khaparde | 29c3a05 | 2009-10-13 01:47:33 +0000 | [diff] [blame] | 57 | #define IXGBE_STAT(m) IXGBE_STATS, \ |
| 58 | sizeof(((struct ixgbe_adapter *)0)->m), \ |
| 59 | offsetof(struct ixgbe_adapter, m) |
| 60 | #define IXGBE_NETDEV_STAT(m) NETDEV_STATS, \ |
Eric Dumazet | 55bad82 | 2010-07-23 13:44:21 +0000 | [diff] [blame] | 61 | sizeof(((struct rtnl_link_stats64 *)0)->m), \ |
| 62 | offsetof(struct rtnl_link_stats64, m) |
Ajit Khaparde | 29c3a05 | 2009-10-13 01:47:33 +0000 | [diff] [blame] | 63 | |
Stephen Hemminger | 1bba2e8 | 2012-01-05 06:29:54 +0000 | [diff] [blame] | 64 | static const struct ixgbe_stats ixgbe_gstrings_stats[] = { |
Eric Dumazet | 55bad82 | 2010-07-23 13:44:21 +0000 | [diff] [blame] | 65 | {"rx_packets", IXGBE_NETDEV_STAT(rx_packets)}, |
| 66 | {"tx_packets", IXGBE_NETDEV_STAT(tx_packets)}, |
| 67 | {"rx_bytes", IXGBE_NETDEV_STAT(rx_bytes)}, |
| 68 | {"tx_bytes", IXGBE_NETDEV_STAT(tx_bytes)}, |
Ben Greear | aad7191 | 2009-09-30 12:08:16 +0000 | [diff] [blame] | 69 | {"rx_pkts_nic", IXGBE_STAT(stats.gprc)}, |
| 70 | {"tx_pkts_nic", IXGBE_STAT(stats.gptc)}, |
| 71 | {"rx_bytes_nic", IXGBE_STAT(stats.gorc)}, |
| 72 | {"tx_bytes_nic", IXGBE_STAT(stats.gotc)}, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 73 | {"lsc_int", IXGBE_STAT(lsc_int)}, |
| 74 | {"tx_busy", IXGBE_STAT(tx_busy)}, |
| 75 | {"non_eop_descs", IXGBE_STAT(non_eop_descs)}, |
Eric Dumazet | 55bad82 | 2010-07-23 13:44:21 +0000 | [diff] [blame] | 76 | {"rx_errors", IXGBE_NETDEV_STAT(rx_errors)}, |
| 77 | {"tx_errors", IXGBE_NETDEV_STAT(tx_errors)}, |
| 78 | {"rx_dropped", IXGBE_NETDEV_STAT(rx_dropped)}, |
| 79 | {"tx_dropped", IXGBE_NETDEV_STAT(tx_dropped)}, |
| 80 | {"multicast", IXGBE_NETDEV_STAT(multicast)}, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 81 | {"broadcast", IXGBE_STAT(stats.bprc)}, |
| 82 | {"rx_no_buffer_count", IXGBE_STAT(stats.rnbc[0]) }, |
Eric Dumazet | 55bad82 | 2010-07-23 13:44:21 +0000 | [diff] [blame] | 83 | {"collisions", IXGBE_NETDEV_STAT(collisions)}, |
| 84 | {"rx_over_errors", IXGBE_NETDEV_STAT(rx_over_errors)}, |
| 85 | {"rx_crc_errors", IXGBE_NETDEV_STAT(rx_crc_errors)}, |
| 86 | {"rx_frame_errors", IXGBE_NETDEV_STAT(rx_frame_errors)}, |
Mallikarjuna R Chilakala | 94b982b | 2009-11-23 06:32:06 +0000 | [diff] [blame] | 87 | {"hw_rsc_aggregated", IXGBE_STAT(rsc_total_count)}, |
| 88 | {"hw_rsc_flushed", IXGBE_STAT(rsc_total_flush)}, |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 89 | {"fdir_match", IXGBE_STAT(stats.fdirmatch)}, |
| 90 | {"fdir_miss", IXGBE_STAT(stats.fdirmiss)}, |
Alexander Duyck | d034acf | 2011-04-27 09:25:34 +0000 | [diff] [blame] | 91 | {"fdir_overflow", IXGBE_STAT(fdir_overflow)}, |
Eric Dumazet | 55bad82 | 2010-07-23 13:44:21 +0000 | [diff] [blame] | 92 | {"rx_fifo_errors", IXGBE_NETDEV_STAT(rx_fifo_errors)}, |
| 93 | {"rx_missed_errors", IXGBE_NETDEV_STAT(rx_missed_errors)}, |
| 94 | {"tx_aborted_errors", IXGBE_NETDEV_STAT(tx_aborted_errors)}, |
| 95 | {"tx_carrier_errors", IXGBE_NETDEV_STAT(tx_carrier_errors)}, |
| 96 | {"tx_fifo_errors", IXGBE_NETDEV_STAT(tx_fifo_errors)}, |
| 97 | {"tx_heartbeat_errors", IXGBE_NETDEV_STAT(tx_heartbeat_errors)}, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 98 | {"tx_timeout_count", IXGBE_STAT(tx_timeout_count)}, |
| 99 | {"tx_restart_queue", IXGBE_STAT(restart_queue)}, |
| 100 | {"rx_long_length_errors", IXGBE_STAT(stats.roc)}, |
| 101 | {"rx_short_length_errors", IXGBE_STAT(stats.ruc)}, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 102 | {"tx_flow_control_xon", IXGBE_STAT(stats.lxontxc)}, |
| 103 | {"rx_flow_control_xon", IXGBE_STAT(stats.lxonrxc)}, |
| 104 | {"tx_flow_control_xoff", IXGBE_STAT(stats.lxofftxc)}, |
| 105 | {"rx_flow_control_xoff", IXGBE_STAT(stats.lxoffrxc)}, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 106 | {"rx_csum_offload_errors", IXGBE_STAT(hw_csum_rx_error)}, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 107 | {"alloc_rx_page_failed", IXGBE_STAT(alloc_rx_page_failed)}, |
| 108 | {"alloc_rx_buff_failed", IXGBE_STAT(alloc_rx_buff_failed)}, |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 109 | {"rx_no_dma_resources", IXGBE_STAT(hw_rx_no_dma_resources)}, |
Emil Tantilov | 58f6bcf | 2011-04-21 08:43:43 +0000 | [diff] [blame] | 110 | {"os2bmc_rx_by_bmc", IXGBE_STAT(stats.o2bgptc)}, |
| 111 | {"os2bmc_tx_by_bmc", IXGBE_STAT(stats.b2ospc)}, |
| 112 | {"os2bmc_tx_by_host", IXGBE_STAT(stats.o2bspc)}, |
| 113 | {"os2bmc_rx_by_host", IXGBE_STAT(stats.b2ogprc)}, |
Yi Zou | 6d45522 | 2009-05-13 13:12:16 +0000 | [diff] [blame] | 114 | #ifdef IXGBE_FCOE |
| 115 | {"fcoe_bad_fccrc", IXGBE_STAT(stats.fccrc)}, |
| 116 | {"rx_fcoe_dropped", IXGBE_STAT(stats.fcoerpdc)}, |
| 117 | {"rx_fcoe_packets", IXGBE_STAT(stats.fcoeprc)}, |
| 118 | {"rx_fcoe_dwords", IXGBE_STAT(stats.fcoedwrc)}, |
Amir Hanania | 7b859eb | 2011-08-31 02:07:55 +0000 | [diff] [blame] | 119 | {"fcoe_noddp", IXGBE_STAT(stats.fcoe_noddp)}, |
| 120 | {"fcoe_noddp_ext_buff", IXGBE_STAT(stats.fcoe_noddp_ext_buff)}, |
Yi Zou | 6d45522 | 2009-05-13 13:12:16 +0000 | [diff] [blame] | 121 | {"tx_fcoe_packets", IXGBE_STAT(stats.fcoeptc)}, |
| 122 | {"tx_fcoe_dwords", IXGBE_STAT(stats.fcoedwtc)}, |
| 123 | #endif /* IXGBE_FCOE */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 124 | }; |
| 125 | |
John Fastabend | 9cc00b5 | 2012-01-28 03:32:17 +0000 | [diff] [blame] | 126 | /* ixgbe allocates num_tx_queues and num_rx_queues symmetrically so |
| 127 | * we set the num_rx_queues to evaluate to num_tx_queues. This is |
| 128 | * used because we do not have a good way to get the max number of |
| 129 | * rx queues with CONFIG_RPS disabled. |
| 130 | */ |
| 131 | #define IXGBE_NUM_RX_QUEUES netdev->num_tx_queues |
| 132 | |
| 133 | #define IXGBE_QUEUE_STATS_LEN ( \ |
| 134 | (netdev->num_tx_queues + IXGBE_NUM_RX_QUEUES) * \ |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 135 | (sizeof(struct ixgbe_queue_stats) / sizeof(u64))) |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 136 | #define IXGBE_GLOBAL_STATS_LEN ARRAY_SIZE(ixgbe_gstrings_stats) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 137 | #define IXGBE_PB_STATS_LEN ( \ |
John Fastabend | 9cc00b5 | 2012-01-28 03:32:17 +0000 | [diff] [blame] | 138 | (sizeof(((struct ixgbe_adapter *)0)->stats.pxonrxc) + \ |
| 139 | sizeof(((struct ixgbe_adapter *)0)->stats.pxontxc) + \ |
| 140 | sizeof(((struct ixgbe_adapter *)0)->stats.pxoffrxc) + \ |
| 141 | sizeof(((struct ixgbe_adapter *)0)->stats.pxofftxc)) \ |
| 142 | / sizeof(u64)) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 143 | #define IXGBE_STATS_LEN (IXGBE_GLOBAL_STATS_LEN + \ |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 144 | IXGBE_PB_STATS_LEN + \ |
| 145 | IXGBE_QUEUE_STATS_LEN) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 146 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 147 | static const char ixgbe_gstrings_test[][ETH_GSTRING_LEN] = { |
| 148 | "Register test (offline)", "Eeprom test (offline)", |
| 149 | "Interrupt test (offline)", "Loopback test (offline)", |
| 150 | "Link test (on/offline)" |
| 151 | }; |
| 152 | #define IXGBE_TEST_LEN sizeof(ixgbe_gstrings_test) / ETH_GSTRING_LEN |
| 153 | |
Veola Nazareth | 695b816 | 2015-11-11 16:22:59 -0700 | [diff] [blame] | 154 | /* currently supported speeds for 10G */ |
| 155 | #define ADVRTSD_MSK_10G (SUPPORTED_10000baseT_Full | \ |
| 156 | SUPPORTED_10000baseKX4_Full | \ |
| 157 | SUPPORTED_10000baseKR_Full) |
| 158 | |
| 159 | #define ixgbe_isbackplane(type) ((type) == ixgbe_media_type_backplane) |
| 160 | |
| 161 | static u32 ixgbe_get_supported_10gtypes(struct ixgbe_hw *hw) |
| 162 | { |
| 163 | if (!ixgbe_isbackplane(hw->phy.media_type)) |
| 164 | return SUPPORTED_10000baseT_Full; |
| 165 | |
| 166 | switch (hw->device_id) { |
| 167 | case IXGBE_DEV_ID_82598: |
| 168 | case IXGBE_DEV_ID_82599_KX4: |
| 169 | case IXGBE_DEV_ID_82599_KX4_MEZZ: |
| 170 | case IXGBE_DEV_ID_X550EM_X_KX4: |
| 171 | return SUPPORTED_10000baseKX4_Full; |
| 172 | case IXGBE_DEV_ID_82598_BX: |
| 173 | case IXGBE_DEV_ID_82599_KR: |
| 174 | case IXGBE_DEV_ID_X550EM_X_KR: |
| 175 | return SUPPORTED_10000baseKR_Full; |
| 176 | default: |
| 177 | return SUPPORTED_10000baseKX4_Full | |
| 178 | SUPPORTED_10000baseKR_Full; |
| 179 | } |
| 180 | } |
| 181 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 182 | static int ixgbe_get_settings(struct net_device *netdev, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 183 | struct ethtool_cmd *ecmd) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 184 | { |
| 185 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Ayyappan Veeraiyan | 735441f | 2008-02-01 15:58:54 -0800 | [diff] [blame] | 186 | struct ixgbe_hw *hw = &adapter->hw; |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 187 | ixgbe_link_speed supported_link; |
Josh Hay | fd0326f | 2012-12-15 03:28:30 +0000 | [diff] [blame] | 188 | bool autoneg = false; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 189 | |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 190 | hw->mac.ops.get_link_capabilities(hw, &supported_link, &autoneg); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 191 | |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 192 | /* set the supported link speeds */ |
| 193 | if (supported_link & IXGBE_LINK_SPEED_10GB_FULL) |
Veola Nazareth | 695b816 | 2015-11-11 16:22:59 -0700 | [diff] [blame] | 194 | ecmd->supported |= ixgbe_get_supported_10gtypes(hw); |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 195 | if (supported_link & IXGBE_LINK_SPEED_1GB_FULL) |
| 196 | ecmd->supported |= SUPPORTED_1000baseT_Full; |
| 197 | if (supported_link & IXGBE_LINK_SPEED_100_FULL) |
Veola Nazareth | 695b816 | 2015-11-11 16:22:59 -0700 | [diff] [blame] | 198 | ecmd->supported |= ixgbe_isbackplane(hw->phy.media_type) ? |
| 199 | SUPPORTED_1000baseKX_Full : |
| 200 | SUPPORTED_1000baseT_Full; |
Atita Shirwaikar | 1b1c0a4 | 2011-01-05 02:00:55 +0000 | [diff] [blame] | 201 | |
Veola Nazareth | 695b816 | 2015-11-11 16:22:59 -0700 | [diff] [blame] | 202 | /* default advertised speed if phy.autoneg_advertised isn't set */ |
| 203 | ecmd->advertising = ecmd->supported; |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 204 | /* set the advertised speeds */ |
| 205 | if (hw->phy.autoneg_advertised) { |
Veola Nazareth | 695b816 | 2015-11-11 16:22:59 -0700 | [diff] [blame] | 206 | ecmd->advertising = 0; |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 207 | if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_100_FULL) |
| 208 | ecmd->advertising |= ADVERTISED_100baseT_Full; |
| 209 | if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_10GB_FULL) |
Veola Nazareth | 695b816 | 2015-11-11 16:22:59 -0700 | [diff] [blame] | 210 | ecmd->advertising |= ecmd->supported & ADVRTSD_MSK_10G; |
| 211 | if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_1GB_FULL) { |
| 212 | if (ecmd->supported & SUPPORTED_1000baseKX_Full) |
| 213 | ecmd->advertising |= ADVERTISED_1000baseKX_Full; |
| 214 | else |
| 215 | ecmd->advertising |= ADVERTISED_1000baseT_Full; |
| 216 | } |
Ayyappan Veeraiyan | 735441f | 2008-02-01 15:58:54 -0800 | [diff] [blame] | 217 | } else { |
Emil Tantilov | ed33ff6 | 2013-08-30 07:55:24 +0000 | [diff] [blame] | 218 | if (hw->phy.multispeed_fiber && !autoneg) { |
| 219 | if (supported_link & IXGBE_LINK_SPEED_10GB_FULL) |
| 220 | ecmd->advertising = ADVERTISED_10000baseT_Full; |
| 221 | } |
Ayyappan Veeraiyan | 735441f | 2008-02-01 15:58:54 -0800 | [diff] [blame] | 222 | } |
| 223 | |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 224 | if (autoneg) { |
| 225 | ecmd->supported |= SUPPORTED_Autoneg; |
| 226 | ecmd->advertising |= ADVERTISED_Autoneg; |
| 227 | ecmd->autoneg = AUTONEG_ENABLE; |
| 228 | } else |
| 229 | ecmd->autoneg = AUTONEG_DISABLE; |
| 230 | |
| 231 | ecmd->transceiver = XCVR_EXTERNAL; |
| 232 | |
| 233 | /* Determine the remaining settings based on the PHY type. */ |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 234 | switch (adapter->hw.phy.type) { |
| 235 | case ixgbe_phy_tn: |
Don Skidmore | fe15e8e1 | 2010-11-16 19:27:16 -0800 | [diff] [blame] | 236 | case ixgbe_phy_aq: |
Don Skidmore | c2c78d5 | 2015-06-09 16:04:59 -0700 | [diff] [blame] | 237 | case ixgbe_phy_x550em_ext_t: |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 238 | case ixgbe_phy_cu_unknown: |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 239 | ecmd->supported |= SUPPORTED_TP; |
| 240 | ecmd->advertising |= ADVERTISED_TP; |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 241 | ecmd->port = PORT_TP; |
| 242 | break; |
| 243 | case ixgbe_phy_qt: |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 244 | ecmd->supported |= SUPPORTED_FIBRE; |
| 245 | ecmd->advertising |= ADVERTISED_FIBRE; |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 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: |
Emil Tantilov | af56b4d | 2015-11-09 15:07:12 -0800 | [diff] [blame] | 255 | case ixgbe_phy_qsfp_passive_unknown: |
| 256 | case ixgbe_phy_qsfp_active_unknown: |
| 257 | case ixgbe_phy_qsfp_intel: |
| 258 | case ixgbe_phy_qsfp_unknown: |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 259 | /* SFP+ devices, further checking needed */ |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 260 | switch (adapter->hw.phy.sfp_type) { |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 261 | case ixgbe_sfp_type_da_cu: |
| 262 | case ixgbe_sfp_type_da_cu_core0: |
| 263 | case ixgbe_sfp_type_da_cu_core1: |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 264 | ecmd->supported |= SUPPORTED_FIBRE; |
| 265 | ecmd->advertising |= ADVERTISED_FIBRE; |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 266 | ecmd->port = PORT_DA; |
| 267 | break; |
| 268 | case ixgbe_sfp_type_sr: |
| 269 | case ixgbe_sfp_type_lr: |
| 270 | case ixgbe_sfp_type_srlr_core0: |
| 271 | case ixgbe_sfp_type_srlr_core1: |
Don Skidmore | 345be20 | 2013-04-11 06:23:34 +0000 | [diff] [blame] | 272 | case ixgbe_sfp_type_1g_sx_core0: |
| 273 | case ixgbe_sfp_type_1g_sx_core1: |
| 274 | case ixgbe_sfp_type_1g_lx_core0: |
| 275 | case ixgbe_sfp_type_1g_lx_core1: |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 276 | ecmd->supported |= SUPPORTED_FIBRE; |
| 277 | ecmd->advertising |= ADVERTISED_FIBRE; |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 278 | ecmd->port = PORT_FIBRE; |
| 279 | break; |
| 280 | case ixgbe_sfp_type_not_present: |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 281 | ecmd->supported |= SUPPORTED_FIBRE; |
| 282 | ecmd->advertising |= ADVERTISED_FIBRE; |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 283 | ecmd->port = PORT_NONE; |
| 284 | break; |
Don Skidmore | cb836a9 | 2010-06-29 18:30:59 +0000 | [diff] [blame] | 285 | case ixgbe_sfp_type_1g_cu_core0: |
| 286 | case ixgbe_sfp_type_1g_cu_core1: |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 287 | ecmd->supported |= SUPPORTED_TP; |
| 288 | ecmd->advertising |= ADVERTISED_TP; |
Don Skidmore | cb836a9 | 2010-06-29 18:30:59 +0000 | [diff] [blame] | 289 | ecmd->port = PORT_TP; |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 290 | break; |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 291 | case ixgbe_sfp_type_unknown: |
| 292 | default: |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 293 | ecmd->supported |= SUPPORTED_FIBRE; |
| 294 | ecmd->advertising |= ADVERTISED_FIBRE; |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 295 | ecmd->port = PORT_OTHER; |
| 296 | break; |
| 297 | } |
| 298 | break; |
| 299 | case ixgbe_phy_xaui: |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 300 | ecmd->supported |= SUPPORTED_FIBRE; |
| 301 | ecmd->advertising |= ADVERTISED_FIBRE; |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 302 | ecmd->port = PORT_NONE; |
| 303 | break; |
| 304 | case ixgbe_phy_unknown: |
| 305 | case ixgbe_phy_generic: |
| 306 | case ixgbe_phy_sfp_unsupported: |
| 307 | default: |
Jacob Keller | db01896 | 2012-06-08 06:59:17 +0000 | [diff] [blame] | 308 | ecmd->supported |= SUPPORTED_FIBRE; |
| 309 | ecmd->advertising |= ADVERTISED_FIBRE; |
PJ Waskiewicz | 3b8626b | 2009-11-25 00:11:54 +0000 | [diff] [blame] | 310 | ecmd->port = PORT_OTHER; |
| 311 | break; |
| 312 | } |
| 313 | |
Emil Tantilov | 0e4d422 | 2015-12-03 15:20:06 -0800 | [diff] [blame] | 314 | if (netif_carrier_ok(netdev)) { |
| 315 | switch (adapter->link_speed) { |
Atita Shirwaikar | 1b1c0a4 | 2011-01-05 02:00:55 +0000 | [diff] [blame] | 316 | case IXGBE_LINK_SPEED_10GB_FULL: |
David Decotigny | 7073949 | 2011-04-27 18:32:40 +0000 | [diff] [blame] | 317 | ethtool_cmd_speed_set(ecmd, SPEED_10000); |
Atita Shirwaikar | 1b1c0a4 | 2011-01-05 02:00:55 +0000 | [diff] [blame] | 318 | break; |
Mark Rustad | 454adb0 | 2015-07-10 14:19:22 -0700 | [diff] [blame] | 319 | case IXGBE_LINK_SPEED_2_5GB_FULL: |
| 320 | ethtool_cmd_speed_set(ecmd, SPEED_2500); |
| 321 | break; |
Atita Shirwaikar | 1b1c0a4 | 2011-01-05 02:00:55 +0000 | [diff] [blame] | 322 | case IXGBE_LINK_SPEED_1GB_FULL: |
David Decotigny | 7073949 | 2011-04-27 18:32:40 +0000 | [diff] [blame] | 323 | ethtool_cmd_speed_set(ecmd, SPEED_1000); |
Atita Shirwaikar | 1b1c0a4 | 2011-01-05 02:00:55 +0000 | [diff] [blame] | 324 | break; |
| 325 | case IXGBE_LINK_SPEED_100_FULL: |
David Decotigny | 7073949 | 2011-04-27 18:32:40 +0000 | [diff] [blame] | 326 | ethtool_cmd_speed_set(ecmd, SPEED_100); |
Atita Shirwaikar | 1b1c0a4 | 2011-01-05 02:00:55 +0000 | [diff] [blame] | 327 | break; |
| 328 | default: |
| 329 | break; |
| 330 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 331 | ecmd->duplex = DUPLEX_FULL; |
| 332 | } else { |
Jiri Pirko | 537fae0 | 2014-06-06 14:17:00 +0200 | [diff] [blame] | 333 | ethtool_cmd_speed_set(ecmd, SPEED_UNKNOWN); |
| 334 | ecmd->duplex = DUPLEX_UNKNOWN; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 335 | } |
| 336 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 337 | return 0; |
| 338 | } |
| 339 | |
| 340 | static int ixgbe_set_settings(struct net_device *netdev, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 341 | struct ethtool_cmd *ecmd) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 342 | { |
| 343 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Ayyappan Veeraiyan | 735441f | 2008-02-01 15:58:54 -0800 | [diff] [blame] | 344 | struct ixgbe_hw *hw = &adapter->hw; |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 345 | u32 advertised, old; |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 346 | s32 err = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 347 | |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 348 | if ((hw->phy.media_type == ixgbe_media_type_copper) || |
Mallikarjuna R Chilakala | a380137 | 2009-06-30 11:44:16 +0000 | [diff] [blame] | 349 | (hw->phy.multispeed_fiber)) { |
Emil Tantilov | abcc80d | 2011-07-29 06:46:10 +0000 | [diff] [blame] | 350 | /* |
| 351 | * this function does not support duplex forcing, but can |
| 352 | * limit the advertising of the adapter to the specified speed |
| 353 | */ |
Emil Tantilov | abcc80d | 2011-07-29 06:46:10 +0000 | [diff] [blame] | 354 | if (ecmd->advertising & ~ecmd->supported) |
| 355 | return -EINVAL; |
| 356 | |
Emil Tantilov | ed33ff6 | 2013-08-30 07:55:24 +0000 | [diff] [blame] | 357 | /* only allow one speed at a time if no autoneg */ |
| 358 | if (!ecmd->autoneg && hw->phy.multispeed_fiber) { |
| 359 | if (ecmd->advertising == |
| 360 | (ADVERTISED_10000baseT_Full | |
| 361 | ADVERTISED_1000baseT_Full)) |
| 362 | return -EINVAL; |
| 363 | } |
| 364 | |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 365 | old = hw->phy.autoneg_advertised; |
| 366 | advertised = 0; |
| 367 | if (ecmd->advertising & ADVERTISED_10000baseT_Full) |
| 368 | advertised |= IXGBE_LINK_SPEED_10GB_FULL; |
| 369 | |
| 370 | if (ecmd->advertising & ADVERTISED_1000baseT_Full) |
| 371 | advertised |= IXGBE_LINK_SPEED_1GB_FULL; |
| 372 | |
Emil Tantilov | 2b642ca | 2011-03-04 09:06:10 +0000 | [diff] [blame] | 373 | if (ecmd->advertising & ADVERTISED_100baseT_Full) |
| 374 | advertised |= IXGBE_LINK_SPEED_100_FULL; |
| 375 | |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 376 | if (old == advertised) |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 377 | return err; |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 378 | /* this sets the link speed and restarts auto-neg */ |
Emil Tantilov | e3215f0 | 2014-10-28 05:50:03 +0000 | [diff] [blame] | 379 | while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state)) |
| 380 | usleep_range(1000, 2000); |
| 381 | |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 382 | hw->mac.autotry_restart = true; |
Josh Hay | fd0326f | 2012-12-15 03:28:30 +0000 | [diff] [blame] | 383 | err = hw->mac.ops.setup_link(hw, advertised, true); |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 384 | if (err) { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 385 | e_info(probe, "setup link failed with code %d\n", err); |
Josh Hay | fd0326f | 2012-12-15 03:28:30 +0000 | [diff] [blame] | 386 | hw->mac.ops.setup_link(hw, old, true); |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 387 | } |
Emil Tantilov | e3215f0 | 2014-10-28 05:50:03 +0000 | [diff] [blame] | 388 | clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state); |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 389 | } else { |
| 390 | /* in this case we currently only support 10Gb/FULL */ |
David Decotigny | 25db033 | 2011-04-27 18:32:39 +0000 | [diff] [blame] | 391 | u32 speed = ethtool_cmd_speed(ecmd); |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 392 | if ((ecmd->autoneg == AUTONEG_ENABLE) || |
Mallikarjuna R Chilakala | a380137 | 2009-06-30 11:44:16 +0000 | [diff] [blame] | 393 | (ecmd->advertising != ADVERTISED_10000baseT_Full) || |
David Decotigny | 25db033 | 2011-04-27 18:32:39 +0000 | [diff] [blame] | 394 | (speed + ecmd->duplex != SPEED_10000 + DUPLEX_FULL)) |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 395 | return -EINVAL; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 396 | } |
| 397 | |
Mallikarjuna R Chilakala | 7476601 | 2009-06-04 11:11:34 +0000 | [diff] [blame] | 398 | return err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | static void ixgbe_get_pauseparam(struct net_device *netdev, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 402 | struct ethtool_pauseparam *pause) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 403 | { |
| 404 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 405 | struct ixgbe_hw *hw = &adapter->hw; |
| 406 | |
Don Skidmore | 73d80953d | 2013-07-31 02:19:24 +0000 | [diff] [blame] | 407 | if (ixgbe_device_supports_autoneg_fc(hw) && |
| 408 | !hw->fc.disable_fc_autoneg) |
Don Skidmore | 71fd570 | 2009-03-31 21:35:05 +0000 | [diff] [blame] | 409 | pause->autoneg = 1; |
Don Skidmore | 73d80953d | 2013-07-31 02:19:24 +0000 | [diff] [blame] | 410 | else |
| 411 | pause->autoneg = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 412 | |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 413 | if (hw->fc.current_mode == ixgbe_fc_rx_pause) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 414 | pause->rx_pause = 1; |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 415 | } else if (hw->fc.current_mode == ixgbe_fc_tx_pause) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 416 | pause->tx_pause = 1; |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 417 | } else if (hw->fc.current_mode == ixgbe_fc_full) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 418 | pause->rx_pause = 1; |
| 419 | pause->tx_pause = 1; |
| 420 | } |
| 421 | } |
| 422 | |
| 423 | static int ixgbe_set_pauseparam(struct net_device *netdev, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 424 | struct ethtool_pauseparam *pause) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 425 | { |
| 426 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 427 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 428 | struct ixgbe_fc_info fc = hw->fc; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 429 | |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 430 | /* 82598 does no support link flow control with DCB enabled */ |
| 431 | if ((hw->mac.type == ixgbe_mac_82598EB) && |
| 432 | (adapter->flags & IXGBE_FLAG_DCB_ENABLED)) |
Peter P Waskiewicz Jr | 264857b | 2009-05-17 12:35:16 +0000 | [diff] [blame] | 433 | return -EINVAL; |
| 434 | |
Jacob Keller | db2adc2 | 2012-10-24 07:26:02 +0000 | [diff] [blame] | 435 | /* some devices do not support autoneg of link flow control */ |
| 436 | if ((pause->autoneg == AUTONEG_ENABLE) && |
Don Skidmore | 73d80953d | 2013-07-31 02:19:24 +0000 | [diff] [blame] | 437 | !ixgbe_device_supports_autoneg_fc(hw)) |
Jacob Keller | db2adc2 | 2012-10-24 07:26:02 +0000 | [diff] [blame] | 438 | return -EINVAL; |
| 439 | |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 440 | fc.disable_fc_autoneg = (pause->autoneg != AUTONEG_ENABLE); |
Don Skidmore | 71fd570 | 2009-03-31 21:35:05 +0000 | [diff] [blame] | 441 | |
Don Skidmore | 1c4f0ef | 2010-04-27 11:31:06 +0000 | [diff] [blame] | 442 | if ((pause->rx_pause && pause->tx_pause) || pause->autoneg) |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 443 | fc.requested_mode = ixgbe_fc_full; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 444 | else if (pause->rx_pause && !pause->tx_pause) |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 445 | fc.requested_mode = ixgbe_fc_rx_pause; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 446 | else if (!pause->rx_pause && pause->tx_pause) |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 447 | fc.requested_mode = ixgbe_fc_tx_pause; |
Ayyappan Veeraiyan | 9c83b070 | 2008-02-01 15:58:59 -0800 | [diff] [blame] | 448 | else |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 449 | fc.requested_mode = ixgbe_fc_none; |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 450 | |
| 451 | /* if the thing changed then we'll update and use new autoneg */ |
| 452 | if (memcmp(&fc, &hw->fc, sizeof(struct ixgbe_fc_info))) { |
| 453 | hw->fc = fc; |
| 454 | if (netif_running(netdev)) |
| 455 | ixgbe_reinit_locked(adapter); |
| 456 | else |
| 457 | ixgbe_reset(adapter); |
| 458 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 459 | |
| 460 | return 0; |
| 461 | } |
| 462 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 463 | static u32 ixgbe_get_msglevel(struct net_device *netdev) |
| 464 | { |
| 465 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 466 | return adapter->msg_enable; |
| 467 | } |
| 468 | |
| 469 | static void ixgbe_set_msglevel(struct net_device *netdev, u32 data) |
| 470 | { |
| 471 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 472 | adapter->msg_enable = data; |
| 473 | } |
| 474 | |
| 475 | static int ixgbe_get_regs_len(struct net_device *netdev) |
| 476 | { |
Leonardo Potenza | 51e409f | 2013-10-01 04:33:52 -0700 | [diff] [blame] | 477 | #define IXGBE_REGS_LEN 1139 |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 478 | return IXGBE_REGS_LEN * sizeof(u32); |
| 479 | } |
| 480 | |
| 481 | #define IXGBE_GET_STAT(_A_, _R_) _A_->stats._R_ |
| 482 | |
| 483 | static void ixgbe_get_regs(struct net_device *netdev, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 484 | struct ethtool_regs *regs, void *p) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 485 | { |
| 486 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 487 | struct ixgbe_hw *hw = &adapter->hw; |
| 488 | u32 *regs_buff = p; |
| 489 | u8 i; |
| 490 | |
| 491 | memset(p, 0, IXGBE_REGS_LEN * sizeof(u32)); |
| 492 | |
Emil Tantilov | c4a56de | 2013-04-19 09:31:17 +0000 | [diff] [blame] | 493 | regs->version = hw->mac.type << 24 | hw->revision_id << 16 | |
| 494 | hw->device_id; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 495 | |
| 496 | /* General Registers */ |
| 497 | regs_buff[0] = IXGBE_READ_REG(hw, IXGBE_CTRL); |
| 498 | regs_buff[1] = IXGBE_READ_REG(hw, IXGBE_STATUS); |
| 499 | regs_buff[2] = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT); |
| 500 | regs_buff[3] = IXGBE_READ_REG(hw, IXGBE_ESDP); |
| 501 | regs_buff[4] = IXGBE_READ_REG(hw, IXGBE_EODSDP); |
| 502 | regs_buff[5] = IXGBE_READ_REG(hw, IXGBE_LEDCTL); |
| 503 | regs_buff[6] = IXGBE_READ_REG(hw, IXGBE_FRTIMER); |
| 504 | regs_buff[7] = IXGBE_READ_REG(hw, IXGBE_TCPTIMER); |
| 505 | |
| 506 | /* NVM Register */ |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 507 | regs_buff[8] = IXGBE_READ_REG(hw, IXGBE_EEC(hw)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 508 | regs_buff[9] = IXGBE_READ_REG(hw, IXGBE_EERD); |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 509 | regs_buff[10] = IXGBE_READ_REG(hw, IXGBE_FLA(hw)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 510 | regs_buff[11] = IXGBE_READ_REG(hw, IXGBE_EEMNGCTL); |
| 511 | regs_buff[12] = IXGBE_READ_REG(hw, IXGBE_EEMNGDATA); |
| 512 | regs_buff[13] = IXGBE_READ_REG(hw, IXGBE_FLMNGCTL); |
| 513 | regs_buff[14] = IXGBE_READ_REG(hw, IXGBE_FLMNGDATA); |
| 514 | regs_buff[15] = IXGBE_READ_REG(hw, IXGBE_FLMNGCNT); |
| 515 | regs_buff[16] = IXGBE_READ_REG(hw, IXGBE_FLOP); |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 516 | regs_buff[17] = IXGBE_READ_REG(hw, IXGBE_GRC(hw)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 517 | |
| 518 | /* Interrupt */ |
Jesse Brandeburg | 98c00a1 | 2008-09-11 19:56:41 -0700 | [diff] [blame] | 519 | /* don't read EICR because it can clear interrupt causes, instead |
| 520 | * read EICS which is a shadow but doesn't clear EICR */ |
| 521 | regs_buff[18] = IXGBE_READ_REG(hw, IXGBE_EICS); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 522 | regs_buff[19] = IXGBE_READ_REG(hw, IXGBE_EICS); |
| 523 | regs_buff[20] = IXGBE_READ_REG(hw, IXGBE_EIMS); |
| 524 | regs_buff[21] = IXGBE_READ_REG(hw, IXGBE_EIMC); |
| 525 | regs_buff[22] = IXGBE_READ_REG(hw, IXGBE_EIAC); |
| 526 | regs_buff[23] = IXGBE_READ_REG(hw, IXGBE_EIAM); |
| 527 | regs_buff[24] = IXGBE_READ_REG(hw, IXGBE_EITR(0)); |
| 528 | regs_buff[25] = IXGBE_READ_REG(hw, IXGBE_IVAR(0)); |
| 529 | regs_buff[26] = IXGBE_READ_REG(hw, IXGBE_MSIXT); |
| 530 | regs_buff[27] = IXGBE_READ_REG(hw, IXGBE_MSIXPBA); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 531 | regs_buff[28] = IXGBE_READ_REG(hw, IXGBE_PBACL(0)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 532 | regs_buff[29] = IXGBE_READ_REG(hw, IXGBE_GPIE); |
| 533 | |
| 534 | /* Flow Control */ |
| 535 | regs_buff[30] = IXGBE_READ_REG(hw, IXGBE_PFCTOP); |
Preethi Banala | 45a88df | 2016-04-21 11:40:35 -0700 | [diff] [blame^] | 536 | for (i = 0; i < 4; i++) |
| 537 | regs_buff[31 + i] = IXGBE_READ_REG(hw, IXGBE_FCTTV(i)); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 538 | for (i = 0; i < 8; i++) { |
| 539 | switch (hw->mac.type) { |
| 540 | case ixgbe_mac_82598EB: |
| 541 | regs_buff[35 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTL(i)); |
| 542 | regs_buff[43 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTH(i)); |
| 543 | break; |
| 544 | case ixgbe_mac_82599EB: |
Emil Tantilov | 80bb25e | 2011-07-27 04:16:29 +0000 | [diff] [blame] | 545 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 546 | case ixgbe_mac_X550: |
| 547 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 548 | case ixgbe_mac_x550em_a: |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 549 | regs_buff[35 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTL_82599(i)); |
| 550 | regs_buff[43 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i)); |
| 551 | break; |
| 552 | default: |
| 553 | break; |
| 554 | } |
| 555 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 556 | regs_buff[51] = IXGBE_READ_REG(hw, IXGBE_FCRTV); |
| 557 | regs_buff[52] = IXGBE_READ_REG(hw, IXGBE_TFCS); |
| 558 | |
| 559 | /* Receive DMA */ |
| 560 | for (i = 0; i < 64; i++) |
| 561 | regs_buff[53 + i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i)); |
| 562 | for (i = 0; i < 64; i++) |
| 563 | regs_buff[117 + i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i)); |
| 564 | for (i = 0; i < 64; i++) |
| 565 | regs_buff[181 + i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i)); |
| 566 | for (i = 0; i < 64; i++) |
| 567 | regs_buff[245 + i] = IXGBE_READ_REG(hw, IXGBE_RDH(i)); |
| 568 | for (i = 0; i < 64; i++) |
| 569 | regs_buff[309 + i] = IXGBE_READ_REG(hw, IXGBE_RDT(i)); |
| 570 | for (i = 0; i < 64; i++) |
| 571 | regs_buff[373 + i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i)); |
| 572 | for (i = 0; i < 16; i++) |
| 573 | regs_buff[437 + i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i)); |
| 574 | for (i = 0; i < 16; i++) |
| 575 | regs_buff[453 + i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i)); |
| 576 | regs_buff[469] = IXGBE_READ_REG(hw, IXGBE_RDRXCTL); |
| 577 | for (i = 0; i < 8; i++) |
| 578 | regs_buff[470 + i] = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i)); |
| 579 | regs_buff[478] = IXGBE_READ_REG(hw, IXGBE_RXCTRL); |
| 580 | regs_buff[479] = IXGBE_READ_REG(hw, IXGBE_DROPEN); |
| 581 | |
| 582 | /* Receive */ |
| 583 | regs_buff[480] = IXGBE_READ_REG(hw, IXGBE_RXCSUM); |
| 584 | regs_buff[481] = IXGBE_READ_REG(hw, IXGBE_RFCTL); |
| 585 | for (i = 0; i < 16; i++) |
| 586 | regs_buff[482 + i] = IXGBE_READ_REG(hw, IXGBE_RAL(i)); |
| 587 | for (i = 0; i < 16; i++) |
| 588 | regs_buff[498 + i] = IXGBE_READ_REG(hw, IXGBE_RAH(i)); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 589 | regs_buff[514] = IXGBE_READ_REG(hw, IXGBE_PSRTYPE(0)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 590 | regs_buff[515] = IXGBE_READ_REG(hw, IXGBE_FCTRL); |
| 591 | regs_buff[516] = IXGBE_READ_REG(hw, IXGBE_VLNCTRL); |
| 592 | regs_buff[517] = IXGBE_READ_REG(hw, IXGBE_MCSTCTRL); |
| 593 | regs_buff[518] = IXGBE_READ_REG(hw, IXGBE_MRQC); |
| 594 | regs_buff[519] = IXGBE_READ_REG(hw, IXGBE_VMD_CTL); |
| 595 | for (i = 0; i < 8; i++) |
| 596 | regs_buff[520 + i] = IXGBE_READ_REG(hw, IXGBE_IMIR(i)); |
| 597 | for (i = 0; i < 8; i++) |
| 598 | regs_buff[528 + i] = IXGBE_READ_REG(hw, IXGBE_IMIREXT(i)); |
| 599 | regs_buff[536] = IXGBE_READ_REG(hw, IXGBE_IMIRVP); |
| 600 | |
| 601 | /* Transmit */ |
| 602 | for (i = 0; i < 32; i++) |
| 603 | regs_buff[537 + i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i)); |
| 604 | for (i = 0; i < 32; i++) |
| 605 | regs_buff[569 + i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i)); |
| 606 | for (i = 0; i < 32; i++) |
| 607 | regs_buff[601 + i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i)); |
| 608 | for (i = 0; i < 32; i++) |
| 609 | regs_buff[633 + i] = IXGBE_READ_REG(hw, IXGBE_TDH(i)); |
| 610 | for (i = 0; i < 32; i++) |
| 611 | regs_buff[665 + i] = IXGBE_READ_REG(hw, IXGBE_TDT(i)); |
| 612 | for (i = 0; i < 32; i++) |
| 613 | regs_buff[697 + i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i)); |
| 614 | for (i = 0; i < 32; i++) |
| 615 | regs_buff[729 + i] = IXGBE_READ_REG(hw, IXGBE_TDWBAL(i)); |
| 616 | for (i = 0; i < 32; i++) |
| 617 | regs_buff[761 + i] = IXGBE_READ_REG(hw, IXGBE_TDWBAH(i)); |
| 618 | regs_buff[793] = IXGBE_READ_REG(hw, IXGBE_DTXCTL); |
| 619 | for (i = 0; i < 16; i++) |
| 620 | regs_buff[794 + i] = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(i)); |
| 621 | regs_buff[810] = IXGBE_READ_REG(hw, IXGBE_TIPG); |
| 622 | for (i = 0; i < 8; i++) |
| 623 | regs_buff[811 + i] = IXGBE_READ_REG(hw, IXGBE_TXPBSIZE(i)); |
| 624 | regs_buff[819] = IXGBE_READ_REG(hw, IXGBE_MNGTXMAP); |
| 625 | |
| 626 | /* Wake Up */ |
| 627 | regs_buff[820] = IXGBE_READ_REG(hw, IXGBE_WUC); |
| 628 | regs_buff[821] = IXGBE_READ_REG(hw, IXGBE_WUFC); |
| 629 | regs_buff[822] = IXGBE_READ_REG(hw, IXGBE_WUS); |
| 630 | regs_buff[823] = IXGBE_READ_REG(hw, IXGBE_IPAV); |
| 631 | regs_buff[824] = IXGBE_READ_REG(hw, IXGBE_IP4AT); |
| 632 | regs_buff[825] = IXGBE_READ_REG(hw, IXGBE_IP6AT); |
| 633 | regs_buff[826] = IXGBE_READ_REG(hw, IXGBE_WUPL); |
| 634 | regs_buff[827] = IXGBE_READ_REG(hw, IXGBE_WUPM); |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 635 | regs_buff[828] = IXGBE_READ_REG(hw, IXGBE_FHFT(0)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 636 | |
Alexander Duyck | 673ac60 | 2010-11-16 19:27:05 -0800 | [diff] [blame] | 637 | /* DCB */ |
Leonardo Potenza | 51e409f | 2013-10-01 04:33:52 -0700 | [diff] [blame] | 638 | regs_buff[829] = IXGBE_READ_REG(hw, IXGBE_RMCS); /* same as FCCFG */ |
| 639 | regs_buff[831] = IXGBE_READ_REG(hw, IXGBE_PDPMCS); /* same as RTTPCS */ |
| 640 | |
| 641 | switch (hw->mac.type) { |
| 642 | case ixgbe_mac_82598EB: |
| 643 | regs_buff[830] = IXGBE_READ_REG(hw, IXGBE_DPMCS); |
| 644 | regs_buff[832] = IXGBE_READ_REG(hw, IXGBE_RUPPBMR); |
| 645 | for (i = 0; i < 8; i++) |
| 646 | regs_buff[833 + i] = |
| 647 | IXGBE_READ_REG(hw, IXGBE_RT2CR(i)); |
| 648 | for (i = 0; i < 8; i++) |
| 649 | regs_buff[841 + i] = |
| 650 | IXGBE_READ_REG(hw, IXGBE_RT2SR(i)); |
| 651 | for (i = 0; i < 8; i++) |
| 652 | regs_buff[849 + i] = |
| 653 | IXGBE_READ_REG(hw, IXGBE_TDTQ2TCCR(i)); |
| 654 | for (i = 0; i < 8; i++) |
| 655 | regs_buff[857 + i] = |
| 656 | IXGBE_READ_REG(hw, IXGBE_TDTQ2TCSR(i)); |
| 657 | break; |
| 658 | case ixgbe_mac_82599EB: |
| 659 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 660 | case ixgbe_mac_X550: |
| 661 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 662 | case ixgbe_mac_x550em_a: |
Leonardo Potenza | 51e409f | 2013-10-01 04:33:52 -0700 | [diff] [blame] | 663 | regs_buff[830] = IXGBE_READ_REG(hw, IXGBE_RTTDCS); |
| 664 | regs_buff[832] = IXGBE_READ_REG(hw, IXGBE_RTRPCS); |
| 665 | for (i = 0; i < 8; i++) |
| 666 | regs_buff[833 + i] = |
| 667 | IXGBE_READ_REG(hw, IXGBE_RTRPT4C(i)); |
| 668 | for (i = 0; i < 8; i++) |
| 669 | regs_buff[841 + i] = |
| 670 | IXGBE_READ_REG(hw, IXGBE_RTRPT4S(i)); |
| 671 | for (i = 0; i < 8; i++) |
| 672 | regs_buff[849 + i] = |
| 673 | IXGBE_READ_REG(hw, IXGBE_RTTDT2C(i)); |
| 674 | for (i = 0; i < 8; i++) |
| 675 | regs_buff[857 + i] = |
| 676 | IXGBE_READ_REG(hw, IXGBE_RTTDT2S(i)); |
| 677 | break; |
| 678 | default: |
| 679 | break; |
| 680 | } |
| 681 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 682 | for (i = 0; i < 8; i++) |
Leonardo Potenza | 51e409f | 2013-10-01 04:33:52 -0700 | [diff] [blame] | 683 | regs_buff[865 + i] = |
| 684 | IXGBE_READ_REG(hw, IXGBE_TDPT2TCCR(i)); /* same as RTTPT2C */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 685 | for (i = 0; i < 8; i++) |
Leonardo Potenza | 51e409f | 2013-10-01 04:33:52 -0700 | [diff] [blame] | 686 | regs_buff[873 + i] = |
| 687 | IXGBE_READ_REG(hw, IXGBE_TDPT2TCSR(i)); /* same as RTTPT2S */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 688 | |
| 689 | /* Statistics */ |
| 690 | regs_buff[881] = IXGBE_GET_STAT(adapter, crcerrs); |
| 691 | regs_buff[882] = IXGBE_GET_STAT(adapter, illerrc); |
| 692 | regs_buff[883] = IXGBE_GET_STAT(adapter, errbc); |
| 693 | regs_buff[884] = IXGBE_GET_STAT(adapter, mspdc); |
| 694 | for (i = 0; i < 8; i++) |
| 695 | regs_buff[885 + i] = IXGBE_GET_STAT(adapter, mpc[i]); |
| 696 | regs_buff[893] = IXGBE_GET_STAT(adapter, mlfc); |
| 697 | regs_buff[894] = IXGBE_GET_STAT(adapter, mrfc); |
| 698 | regs_buff[895] = IXGBE_GET_STAT(adapter, rlec); |
| 699 | regs_buff[896] = IXGBE_GET_STAT(adapter, lxontxc); |
| 700 | regs_buff[897] = IXGBE_GET_STAT(adapter, lxonrxc); |
| 701 | regs_buff[898] = IXGBE_GET_STAT(adapter, lxofftxc); |
| 702 | regs_buff[899] = IXGBE_GET_STAT(adapter, lxoffrxc); |
| 703 | for (i = 0; i < 8; i++) |
| 704 | regs_buff[900 + i] = IXGBE_GET_STAT(adapter, pxontxc[i]); |
| 705 | for (i = 0; i < 8; i++) |
| 706 | regs_buff[908 + i] = IXGBE_GET_STAT(adapter, pxonrxc[i]); |
| 707 | for (i = 0; i < 8; i++) |
| 708 | regs_buff[916 + i] = IXGBE_GET_STAT(adapter, pxofftxc[i]); |
| 709 | for (i = 0; i < 8; i++) |
| 710 | regs_buff[924 + i] = IXGBE_GET_STAT(adapter, pxoffrxc[i]); |
| 711 | regs_buff[932] = IXGBE_GET_STAT(adapter, prc64); |
| 712 | regs_buff[933] = IXGBE_GET_STAT(adapter, prc127); |
| 713 | regs_buff[934] = IXGBE_GET_STAT(adapter, prc255); |
| 714 | regs_buff[935] = IXGBE_GET_STAT(adapter, prc511); |
| 715 | regs_buff[936] = IXGBE_GET_STAT(adapter, prc1023); |
| 716 | regs_buff[937] = IXGBE_GET_STAT(adapter, prc1522); |
| 717 | regs_buff[938] = IXGBE_GET_STAT(adapter, gprc); |
| 718 | regs_buff[939] = IXGBE_GET_STAT(adapter, bprc); |
| 719 | regs_buff[940] = IXGBE_GET_STAT(adapter, mprc); |
| 720 | regs_buff[941] = IXGBE_GET_STAT(adapter, gptc); |
Preethi Banala | 4c4f802 | 2016-04-21 11:40:24 -0700 | [diff] [blame] | 721 | regs_buff[942] = (u32)IXGBE_GET_STAT(adapter, gorc); |
| 722 | regs_buff[943] = (u32)(IXGBE_GET_STAT(adapter, gorc) >> 32); |
| 723 | regs_buff[944] = (u32)IXGBE_GET_STAT(adapter, gotc); |
| 724 | regs_buff[945] = (u32)(IXGBE_GET_STAT(adapter, gotc) >> 32); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 725 | for (i = 0; i < 8; i++) |
| 726 | regs_buff[946 + i] = IXGBE_GET_STAT(adapter, rnbc[i]); |
| 727 | regs_buff[954] = IXGBE_GET_STAT(adapter, ruc); |
| 728 | regs_buff[955] = IXGBE_GET_STAT(adapter, rfc); |
| 729 | regs_buff[956] = IXGBE_GET_STAT(adapter, roc); |
| 730 | regs_buff[957] = IXGBE_GET_STAT(adapter, rjc); |
| 731 | regs_buff[958] = IXGBE_GET_STAT(adapter, mngprc); |
| 732 | regs_buff[959] = IXGBE_GET_STAT(adapter, mngpdc); |
| 733 | regs_buff[960] = IXGBE_GET_STAT(adapter, mngptc); |
Preethi Banala | 4c4f802 | 2016-04-21 11:40:24 -0700 | [diff] [blame] | 734 | regs_buff[961] = (u32)IXGBE_GET_STAT(adapter, tor); |
| 735 | regs_buff[962] = (u32)(IXGBE_GET_STAT(adapter, tor) >> 32); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 736 | regs_buff[963] = IXGBE_GET_STAT(adapter, tpr); |
| 737 | regs_buff[964] = IXGBE_GET_STAT(adapter, tpt); |
| 738 | regs_buff[965] = IXGBE_GET_STAT(adapter, ptc64); |
| 739 | regs_buff[966] = IXGBE_GET_STAT(adapter, ptc127); |
| 740 | regs_buff[967] = IXGBE_GET_STAT(adapter, ptc255); |
| 741 | regs_buff[968] = IXGBE_GET_STAT(adapter, ptc511); |
| 742 | regs_buff[969] = IXGBE_GET_STAT(adapter, ptc1023); |
| 743 | regs_buff[970] = IXGBE_GET_STAT(adapter, ptc1522); |
| 744 | regs_buff[971] = IXGBE_GET_STAT(adapter, mptc); |
| 745 | regs_buff[972] = IXGBE_GET_STAT(adapter, bptc); |
| 746 | regs_buff[973] = IXGBE_GET_STAT(adapter, xec); |
| 747 | for (i = 0; i < 16; i++) |
| 748 | regs_buff[974 + i] = IXGBE_GET_STAT(adapter, qprc[i]); |
| 749 | for (i = 0; i < 16; i++) |
| 750 | regs_buff[990 + i] = IXGBE_GET_STAT(adapter, qptc[i]); |
| 751 | for (i = 0; i < 16; i++) |
| 752 | regs_buff[1006 + i] = IXGBE_GET_STAT(adapter, qbrc[i]); |
| 753 | for (i = 0; i < 16; i++) |
| 754 | regs_buff[1022 + i] = IXGBE_GET_STAT(adapter, qbtc[i]); |
| 755 | |
| 756 | /* MAC */ |
| 757 | regs_buff[1038] = IXGBE_READ_REG(hw, IXGBE_PCS1GCFIG); |
| 758 | regs_buff[1039] = IXGBE_READ_REG(hw, IXGBE_PCS1GLCTL); |
| 759 | regs_buff[1040] = IXGBE_READ_REG(hw, IXGBE_PCS1GLSTA); |
| 760 | regs_buff[1041] = IXGBE_READ_REG(hw, IXGBE_PCS1GDBG0); |
| 761 | regs_buff[1042] = IXGBE_READ_REG(hw, IXGBE_PCS1GDBG1); |
| 762 | regs_buff[1043] = IXGBE_READ_REG(hw, IXGBE_PCS1GANA); |
| 763 | regs_buff[1044] = IXGBE_READ_REG(hw, IXGBE_PCS1GANLP); |
| 764 | regs_buff[1045] = IXGBE_READ_REG(hw, IXGBE_PCS1GANNP); |
| 765 | regs_buff[1046] = IXGBE_READ_REG(hw, IXGBE_PCS1GANLPNP); |
| 766 | regs_buff[1047] = IXGBE_READ_REG(hw, IXGBE_HLREG0); |
| 767 | regs_buff[1048] = IXGBE_READ_REG(hw, IXGBE_HLREG1); |
| 768 | regs_buff[1049] = IXGBE_READ_REG(hw, IXGBE_PAP); |
| 769 | regs_buff[1050] = IXGBE_READ_REG(hw, IXGBE_MACA); |
| 770 | regs_buff[1051] = IXGBE_READ_REG(hw, IXGBE_APAE); |
| 771 | regs_buff[1052] = IXGBE_READ_REG(hw, IXGBE_ARD); |
| 772 | regs_buff[1053] = IXGBE_READ_REG(hw, IXGBE_AIS); |
| 773 | regs_buff[1054] = IXGBE_READ_REG(hw, IXGBE_MSCA); |
| 774 | regs_buff[1055] = IXGBE_READ_REG(hw, IXGBE_MSRWD); |
| 775 | regs_buff[1056] = IXGBE_READ_REG(hw, IXGBE_MLADD); |
| 776 | regs_buff[1057] = IXGBE_READ_REG(hw, IXGBE_MHADD); |
| 777 | regs_buff[1058] = IXGBE_READ_REG(hw, IXGBE_TREG); |
| 778 | regs_buff[1059] = IXGBE_READ_REG(hw, IXGBE_PCSS1); |
| 779 | regs_buff[1060] = IXGBE_READ_REG(hw, IXGBE_PCSS2); |
| 780 | regs_buff[1061] = IXGBE_READ_REG(hw, IXGBE_XPCSS); |
| 781 | regs_buff[1062] = IXGBE_READ_REG(hw, IXGBE_SERDESC); |
| 782 | regs_buff[1063] = IXGBE_READ_REG(hw, IXGBE_MACS); |
| 783 | regs_buff[1064] = IXGBE_READ_REG(hw, IXGBE_AUTOC); |
| 784 | regs_buff[1065] = IXGBE_READ_REG(hw, IXGBE_LINKS); |
| 785 | regs_buff[1066] = IXGBE_READ_REG(hw, IXGBE_AUTOC2); |
| 786 | regs_buff[1067] = IXGBE_READ_REG(hw, IXGBE_AUTOC3); |
| 787 | regs_buff[1068] = IXGBE_READ_REG(hw, IXGBE_ANLP1); |
| 788 | regs_buff[1069] = IXGBE_READ_REG(hw, IXGBE_ANLP2); |
| 789 | regs_buff[1070] = IXGBE_READ_REG(hw, IXGBE_ATLASCTL); |
| 790 | |
| 791 | /* Diagnostic */ |
| 792 | regs_buff[1071] = IXGBE_READ_REG(hw, IXGBE_RDSTATCTL); |
| 793 | for (i = 0; i < 8; i++) |
Jesse Brandeburg | 98c00a1 | 2008-09-11 19:56:41 -0700 | [diff] [blame] | 794 | regs_buff[1072 + i] = IXGBE_READ_REG(hw, IXGBE_RDSTAT(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 795 | regs_buff[1080] = IXGBE_READ_REG(hw, IXGBE_RDHMPN); |
Jesse Brandeburg | 98c00a1 | 2008-09-11 19:56:41 -0700 | [diff] [blame] | 796 | for (i = 0; i < 4; i++) |
| 797 | regs_buff[1081 + i] = IXGBE_READ_REG(hw, IXGBE_RIC_DW(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 798 | regs_buff[1085] = IXGBE_READ_REG(hw, IXGBE_RDPROBE); |
| 799 | regs_buff[1086] = IXGBE_READ_REG(hw, IXGBE_TDSTATCTL); |
| 800 | for (i = 0; i < 8; i++) |
Jesse Brandeburg | 98c00a1 | 2008-09-11 19:56:41 -0700 | [diff] [blame] | 801 | regs_buff[1087 + i] = IXGBE_READ_REG(hw, IXGBE_TDSTAT(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 802 | regs_buff[1095] = IXGBE_READ_REG(hw, IXGBE_TDHMPN); |
Jesse Brandeburg | 98c00a1 | 2008-09-11 19:56:41 -0700 | [diff] [blame] | 803 | for (i = 0; i < 4; i++) |
| 804 | regs_buff[1096 + i] = IXGBE_READ_REG(hw, IXGBE_TIC_DW(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 805 | regs_buff[1100] = IXGBE_READ_REG(hw, IXGBE_TDPROBE); |
| 806 | regs_buff[1101] = IXGBE_READ_REG(hw, IXGBE_TXBUFCTRL); |
Preethi Banala | 45a88df | 2016-04-21 11:40:35 -0700 | [diff] [blame^] | 807 | for (i = 0; i < 4; i++) |
| 808 | regs_buff[1102 + i] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 809 | regs_buff[1106] = IXGBE_READ_REG(hw, IXGBE_RXBUFCTRL); |
Preethi Banala | 45a88df | 2016-04-21 11:40:35 -0700 | [diff] [blame^] | 810 | for (i = 0; i < 4; i++) |
| 811 | regs_buff[1107 + i] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 812 | for (i = 0; i < 8; i++) |
Jesse Brandeburg | 98c00a1 | 2008-09-11 19:56:41 -0700 | [diff] [blame] | 813 | regs_buff[1111 + i] = IXGBE_READ_REG(hw, IXGBE_PCIE_DIAG(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 814 | regs_buff[1119] = IXGBE_READ_REG(hw, IXGBE_RFVAL); |
| 815 | regs_buff[1120] = IXGBE_READ_REG(hw, IXGBE_MDFTC1); |
| 816 | regs_buff[1121] = IXGBE_READ_REG(hw, IXGBE_MDFTC2); |
| 817 | regs_buff[1122] = IXGBE_READ_REG(hw, IXGBE_MDFTFIFO1); |
| 818 | regs_buff[1123] = IXGBE_READ_REG(hw, IXGBE_MDFTFIFO2); |
| 819 | regs_buff[1124] = IXGBE_READ_REG(hw, IXGBE_MDFTS); |
| 820 | regs_buff[1125] = IXGBE_READ_REG(hw, IXGBE_PCIEECCCTL); |
| 821 | regs_buff[1126] = IXGBE_READ_REG(hw, IXGBE_PBTXECC); |
| 822 | regs_buff[1127] = IXGBE_READ_REG(hw, IXGBE_PBRXECC); |
Emil Tantilov | 217995e | 2011-09-15 06:23:10 +0000 | [diff] [blame] | 823 | |
| 824 | /* 82599 X540 specific registers */ |
| 825 | regs_buff[1128] = IXGBE_READ_REG(hw, IXGBE_MFLCN); |
Leonardo Potenza | 51e409f | 2013-10-01 04:33:52 -0700 | [diff] [blame] | 826 | |
| 827 | /* 82599 X540 specific DCB registers */ |
| 828 | regs_buff[1129] = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC); |
| 829 | regs_buff[1130] = IXGBE_READ_REG(hw, IXGBE_RTTUP2TC); |
| 830 | for (i = 0; i < 4; i++) |
| 831 | regs_buff[1131 + i] = IXGBE_READ_REG(hw, IXGBE_TXLLQ(i)); |
| 832 | regs_buff[1135] = IXGBE_READ_REG(hw, IXGBE_RTTBCNRM); |
| 833 | /* same as RTTQCNRM */ |
| 834 | regs_buff[1136] = IXGBE_READ_REG(hw, IXGBE_RTTBCNRD); |
| 835 | /* same as RTTQCNRR */ |
| 836 | |
| 837 | /* X540 specific DCB registers */ |
| 838 | regs_buff[1137] = IXGBE_READ_REG(hw, IXGBE_RTTQCNCR); |
| 839 | regs_buff[1138] = IXGBE_READ_REG(hw, IXGBE_RTTQCNTG); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 840 | } |
| 841 | |
| 842 | static int ixgbe_get_eeprom_len(struct net_device *netdev) |
| 843 | { |
| 844 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 845 | return adapter->hw.eeprom.word_size * 2; |
| 846 | } |
| 847 | |
| 848 | static int ixgbe_get_eeprom(struct net_device *netdev, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 849 | struct ethtool_eeprom *eeprom, u8 *bytes) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 850 | { |
| 851 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 852 | struct ixgbe_hw *hw = &adapter->hw; |
| 853 | u16 *eeprom_buff; |
| 854 | int first_word, last_word, eeprom_len; |
| 855 | int ret_val = 0; |
| 856 | u16 i; |
| 857 | |
| 858 | if (eeprom->len == 0) |
| 859 | return -EINVAL; |
| 860 | |
| 861 | eeprom->magic = hw->vendor_id | (hw->device_id << 16); |
| 862 | |
| 863 | first_word = eeprom->offset >> 1; |
| 864 | last_word = (eeprom->offset + eeprom->len - 1) >> 1; |
| 865 | eeprom_len = last_word - first_word + 1; |
| 866 | |
| 867 | eeprom_buff = kmalloc(sizeof(u16) * eeprom_len, GFP_KERNEL); |
| 868 | if (!eeprom_buff) |
| 869 | return -ENOMEM; |
| 870 | |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 871 | ret_val = hw->eeprom.ops.read_buffer(hw, first_word, eeprom_len, |
| 872 | eeprom_buff); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 873 | |
| 874 | /* Device's eeprom is always little-endian, word addressable */ |
| 875 | for (i = 0; i < eeprom_len; i++) |
| 876 | le16_to_cpus(&eeprom_buff[i]); |
| 877 | |
| 878 | memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len); |
| 879 | kfree(eeprom_buff); |
| 880 | |
| 881 | return ret_val; |
| 882 | } |
| 883 | |
Emil Tantilov | 2fa5eef | 2011-10-06 08:57:04 +0000 | [diff] [blame] | 884 | static int ixgbe_set_eeprom(struct net_device *netdev, |
| 885 | struct ethtool_eeprom *eeprom, u8 *bytes) |
| 886 | { |
| 887 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 888 | struct ixgbe_hw *hw = &adapter->hw; |
| 889 | u16 *eeprom_buff; |
| 890 | void *ptr; |
| 891 | int max_len, first_word, last_word, ret_val = 0; |
| 892 | u16 i; |
| 893 | |
| 894 | if (eeprom->len == 0) |
| 895 | return -EINVAL; |
| 896 | |
| 897 | if (eeprom->magic != (hw->vendor_id | (hw->device_id << 16))) |
| 898 | return -EINVAL; |
| 899 | |
| 900 | max_len = hw->eeprom.word_size * 2; |
| 901 | |
| 902 | first_word = eeprom->offset >> 1; |
| 903 | last_word = (eeprom->offset + eeprom->len - 1) >> 1; |
| 904 | eeprom_buff = kmalloc(max_len, GFP_KERNEL); |
| 905 | if (!eeprom_buff) |
| 906 | return -ENOMEM; |
| 907 | |
| 908 | ptr = eeprom_buff; |
| 909 | |
| 910 | if (eeprom->offset & 1) { |
| 911 | /* |
| 912 | * need read/modify/write of first changed EEPROM word |
| 913 | * only the second byte of the word is being modified |
| 914 | */ |
| 915 | ret_val = hw->eeprom.ops.read(hw, first_word, &eeprom_buff[0]); |
| 916 | if (ret_val) |
| 917 | goto err; |
| 918 | |
| 919 | ptr++; |
| 920 | } |
| 921 | if ((eeprom->offset + eeprom->len) & 1) { |
| 922 | /* |
| 923 | * need read/modify/write of last changed EEPROM word |
| 924 | * only the first byte of the word is being modified |
| 925 | */ |
| 926 | ret_val = hw->eeprom.ops.read(hw, last_word, |
| 927 | &eeprom_buff[last_word - first_word]); |
| 928 | if (ret_val) |
| 929 | goto err; |
| 930 | } |
| 931 | |
| 932 | /* Device's eeprom is always little-endian, word addressable */ |
| 933 | for (i = 0; i < last_word - first_word + 1; i++) |
| 934 | le16_to_cpus(&eeprom_buff[i]); |
| 935 | |
| 936 | memcpy(ptr, bytes, eeprom->len); |
| 937 | |
| 938 | for (i = 0; i < last_word - first_word + 1; i++) |
| 939 | cpu_to_le16s(&eeprom_buff[i]); |
| 940 | |
| 941 | ret_val = hw->eeprom.ops.write_buffer(hw, first_word, |
| 942 | last_word - first_word + 1, |
| 943 | eeprom_buff); |
| 944 | |
| 945 | /* Update the checksum */ |
| 946 | if (ret_val == 0) |
| 947 | hw->eeprom.ops.update_checksum(hw); |
| 948 | |
| 949 | err: |
| 950 | kfree(eeprom_buff); |
| 951 | return ret_val; |
| 952 | } |
| 953 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 954 | static void ixgbe_get_drvinfo(struct net_device *netdev, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 955 | struct ethtool_drvinfo *drvinfo) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 956 | { |
| 957 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Emil Tantilov | 15e5209 | 2011-09-29 05:01:29 +0000 | [diff] [blame] | 958 | u32 nvm_track_id; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 959 | |
Rick Jones | 612a94d | 2011-11-14 08:13:25 +0000 | [diff] [blame] | 960 | strlcpy(drvinfo->driver, ixgbe_driver_name, sizeof(drvinfo->driver)); |
| 961 | strlcpy(drvinfo->version, ixgbe_driver_version, |
| 962 | sizeof(drvinfo->version)); |
Peter P Waskiewicz Jr | 34b0368 | 2009-02-05 23:54:42 -0800 | [diff] [blame] | 963 | |
Emil Tantilov | 15e5209 | 2011-09-29 05:01:29 +0000 | [diff] [blame] | 964 | nvm_track_id = (adapter->eeprom_verh << 16) | |
| 965 | adapter->eeprom_verl; |
Rick Jones | 612a94d | 2011-11-14 08:13:25 +0000 | [diff] [blame] | 966 | snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), "0x%08x", |
Emil Tantilov | 15e5209 | 2011-09-29 05:01:29 +0000 | [diff] [blame] | 967 | nvm_track_id); |
Peter P Waskiewicz Jr | 34b0368 | 2009-02-05 23:54:42 -0800 | [diff] [blame] | 968 | |
Rick Jones | 612a94d | 2011-11-14 08:13:25 +0000 | [diff] [blame] | 969 | strlcpy(drvinfo->bus_info, pci_name(adapter->pdev), |
| 970 | sizeof(drvinfo->bus_info)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 971 | } |
| 972 | |
| 973 | static void ixgbe_get_ringparam(struct net_device *netdev, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 974 | struct ethtool_ringparam *ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 975 | { |
| 976 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 977 | struct ixgbe_ring *tx_ring = adapter->tx_ring[0]; |
| 978 | struct ixgbe_ring *rx_ring = adapter->rx_ring[0]; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 979 | |
| 980 | ring->rx_max_pending = IXGBE_MAX_RXD; |
| 981 | ring->tx_max_pending = IXGBE_MAX_TXD; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 982 | ring->rx_pending = rx_ring->count; |
| 983 | ring->tx_pending = tx_ring->count; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 984 | } |
| 985 | |
| 986 | static int ixgbe_set_ringparam(struct net_device *netdev, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 987 | struct ethtool_ringparam *ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 988 | { |
| 989 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Alexander Duyck | 1f4702a | 2012-09-12 07:09:51 +0000 | [diff] [blame] | 990 | struct ixgbe_ring *temp_ring; |
Alexander Duyck | 759884b | 2009-10-26 11:32:05 +0000 | [diff] [blame] | 991 | int i, err = 0; |
Jesse Brandeburg | c431f97 | 2008-09-11 19:59:16 -0700 | [diff] [blame] | 992 | u32 new_rx_count, new_tx_count; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 993 | |
| 994 | if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending)) |
| 995 | return -EINVAL; |
| 996 | |
Alexander Duyck | 1f4702a | 2012-09-12 07:09:51 +0000 | [diff] [blame] | 997 | new_tx_count = clamp_t(u32, ring->tx_pending, |
| 998 | IXGBE_MIN_TXD, IXGBE_MAX_TXD); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 999 | new_tx_count = ALIGN(new_tx_count, IXGBE_REQ_TX_DESCRIPTOR_MULTIPLE); |
| 1000 | |
Alexander Duyck | 1f4702a | 2012-09-12 07:09:51 +0000 | [diff] [blame] | 1001 | new_rx_count = clamp_t(u32, ring->rx_pending, |
| 1002 | IXGBE_MIN_RXD, IXGBE_MAX_RXD); |
| 1003 | new_rx_count = ALIGN(new_rx_count, IXGBE_REQ_RX_DESCRIPTOR_MULTIPLE); |
| 1004 | |
| 1005 | if ((new_tx_count == adapter->tx_ring_count) && |
| 1006 | (new_rx_count == adapter->rx_ring_count)) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1007 | /* nothing to do */ |
| 1008 | return 0; |
| 1009 | } |
| 1010 | |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 1011 | while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state)) |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 1012 | usleep_range(1000, 2000); |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 1013 | |
Alexander Duyck | 759884b | 2009-10-26 11:32:05 +0000 | [diff] [blame] | 1014 | if (!netif_running(adapter->netdev)) { |
| 1015 | for (i = 0; i < adapter->num_tx_queues; i++) |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 1016 | adapter->tx_ring[i]->count = new_tx_count; |
Alexander Duyck | 759884b | 2009-10-26 11:32:05 +0000 | [diff] [blame] | 1017 | for (i = 0; i < adapter->num_rx_queues; i++) |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 1018 | adapter->rx_ring[i]->count = new_rx_count; |
Alexander Duyck | 759884b | 2009-10-26 11:32:05 +0000 | [diff] [blame] | 1019 | adapter->tx_ring_count = new_tx_count; |
| 1020 | adapter->rx_ring_count = new_rx_count; |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 1021 | goto clear_reset; |
Alexander Duyck | 759884b | 2009-10-26 11:32:05 +0000 | [diff] [blame] | 1022 | } |
| 1023 | |
Alexander Duyck | 1f4702a | 2012-09-12 07:09:51 +0000 | [diff] [blame] | 1024 | /* allocate temporary buffer to store rings in */ |
| 1025 | i = max_t(int, adapter->num_tx_queues, adapter->num_rx_queues); |
| 1026 | temp_ring = vmalloc(i * sizeof(struct ixgbe_ring)); |
| 1027 | |
| 1028 | if (!temp_ring) { |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 1029 | err = -ENOMEM; |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 1030 | goto clear_reset; |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 1031 | } |
| 1032 | |
Alexander Duyck | 1f4702a | 2012-09-12 07:09:51 +0000 | [diff] [blame] | 1033 | ixgbe_down(adapter); |
| 1034 | |
| 1035 | /* |
| 1036 | * Setup new Tx resources and free the old Tx resources in that order. |
| 1037 | * We can then assign the new resources to the rings via a memcpy. |
| 1038 | * The advantage to this approach is that we are guaranteed to still |
| 1039 | * have resources even in the case of an allocation failure. |
| 1040 | */ |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 1041 | if (new_tx_count != adapter->tx_ring_count) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1042 | for (i = 0; i < adapter->num_tx_queues; i++) { |
Alexander Duyck | 1f4702a | 2012-09-12 07:09:51 +0000 | [diff] [blame] | 1043 | memcpy(&temp_ring[i], adapter->tx_ring[i], |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 1044 | sizeof(struct ixgbe_ring)); |
Alexander Duyck | 1f4702a | 2012-09-12 07:09:51 +0000 | [diff] [blame] | 1045 | |
| 1046 | temp_ring[i].count = new_tx_count; |
| 1047 | err = ixgbe_setup_tx_resources(&temp_ring[i]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1048 | if (err) { |
Jesse Brandeburg | c431f97 | 2008-09-11 19:59:16 -0700 | [diff] [blame] | 1049 | while (i) { |
| 1050 | i--; |
Alexander Duyck | 1f4702a | 2012-09-12 07:09:51 +0000 | [diff] [blame] | 1051 | ixgbe_free_tx_resources(&temp_ring[i]); |
Jesse Brandeburg | c431f97 | 2008-09-11 19:59:16 -0700 | [diff] [blame] | 1052 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1053 | goto err_setup; |
| 1054 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1055 | } |
Jesse Brandeburg | c431f97 | 2008-09-11 19:59:16 -0700 | [diff] [blame] | 1056 | |
Alexander Duyck | 1f4702a | 2012-09-12 07:09:51 +0000 | [diff] [blame] | 1057 | for (i = 0; i < adapter->num_tx_queues; i++) { |
| 1058 | ixgbe_free_tx_resources(adapter->tx_ring[i]); |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 1059 | |
Alexander Duyck | 1f4702a | 2012-09-12 07:09:51 +0000 | [diff] [blame] | 1060 | memcpy(adapter->tx_ring[i], &temp_ring[i], |
| 1061 | sizeof(struct ixgbe_ring)); |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 1062 | } |
| 1063 | |
Alexander Duyck | 1f4702a | 2012-09-12 07:09:51 +0000 | [diff] [blame] | 1064 | adapter->tx_ring_count = new_tx_count; |
Alexander Duyck | 759884b | 2009-10-26 11:32:05 +0000 | [diff] [blame] | 1065 | } |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 1066 | |
Alexander Duyck | 1f4702a | 2012-09-12 07:09:51 +0000 | [diff] [blame] | 1067 | /* Repeat the process for the Rx rings if needed */ |
| 1068 | if (new_rx_count != adapter->rx_ring_count) { |
| 1069 | for (i = 0; i < adapter->num_rx_queues; i++) { |
| 1070 | memcpy(&temp_ring[i], adapter->rx_ring[i], |
| 1071 | sizeof(struct ixgbe_ring)); |
| 1072 | |
| 1073 | temp_ring[i].count = new_rx_count; |
| 1074 | err = ixgbe_setup_rx_resources(&temp_ring[i]); |
| 1075 | if (err) { |
| 1076 | while (i) { |
| 1077 | i--; |
| 1078 | ixgbe_free_rx_resources(&temp_ring[i]); |
| 1079 | } |
| 1080 | goto err_setup; |
| 1081 | } |
| 1082 | |
| 1083 | } |
| 1084 | |
| 1085 | for (i = 0; i < adapter->num_rx_queues; i++) { |
| 1086 | ixgbe_free_rx_resources(adapter->rx_ring[i]); |
| 1087 | |
| 1088 | memcpy(adapter->rx_ring[i], &temp_ring[i], |
| 1089 | sizeof(struct ixgbe_ring)); |
| 1090 | } |
| 1091 | |
| 1092 | adapter->rx_ring_count = new_rx_count; |
| 1093 | } |
| 1094 | |
Mallikarjuna R Chilakala | f9ed885 | 2009-03-31 21:35:24 +0000 | [diff] [blame] | 1095 | err_setup: |
Alexander Duyck | 1f4702a | 2012-09-12 07:09:51 +0000 | [diff] [blame] | 1096 | ixgbe_up(adapter); |
| 1097 | vfree(temp_ring); |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 1098 | clear_reset: |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 1099 | clear_bit(__IXGBE_RESETTING, &adapter->state); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1100 | return err; |
| 1101 | } |
| 1102 | |
Jeff Garzik | b9f2c04 | 2007-10-03 18:07:32 -0700 | [diff] [blame] | 1103 | static int ixgbe_get_sset_count(struct net_device *netdev, int sset) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1104 | { |
Jeff Garzik | b9f2c04 | 2007-10-03 18:07:32 -0700 | [diff] [blame] | 1105 | switch (sset) { |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1106 | case ETH_SS_TEST: |
| 1107 | return IXGBE_TEST_LEN; |
Jeff Garzik | b9f2c04 | 2007-10-03 18:07:32 -0700 | [diff] [blame] | 1108 | case ETH_SS_STATS: |
| 1109 | return IXGBE_STATS_LEN; |
| 1110 | default: |
| 1111 | return -EOPNOTSUPP; |
| 1112 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1113 | } |
| 1114 | |
| 1115 | static void ixgbe_get_ethtool_stats(struct net_device *netdev, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 1116 | struct ethtool_stats *stats, u64 *data) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1117 | { |
| 1118 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 1119 | struct rtnl_link_stats64 temp; |
| 1120 | const struct rtnl_link_stats64 *net_stats; |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 1121 | unsigned int start; |
| 1122 | struct ixgbe_ring *ring; |
| 1123 | int i, j; |
Ajit Khaparde | 29c3a05 | 2009-10-13 01:47:33 +0000 | [diff] [blame] | 1124 | char *p = NULL; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1125 | |
| 1126 | ixgbe_update_stats(adapter); |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 1127 | net_stats = dev_get_stats(netdev, &temp); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1128 | for (i = 0; i < IXGBE_GLOBAL_STATS_LEN; i++) { |
Ajit Khaparde | 29c3a05 | 2009-10-13 01:47:33 +0000 | [diff] [blame] | 1129 | switch (ixgbe_gstrings_stats[i].type) { |
| 1130 | case NETDEV_STATS: |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 1131 | p = (char *) net_stats + |
Ajit Khaparde | 29c3a05 | 2009-10-13 01:47:33 +0000 | [diff] [blame] | 1132 | ixgbe_gstrings_stats[i].stat_offset; |
| 1133 | break; |
| 1134 | case IXGBE_STATS: |
| 1135 | p = (char *) adapter + |
| 1136 | ixgbe_gstrings_stats[i].stat_offset; |
| 1137 | break; |
Josh Hay | f752be9 | 2013-01-04 03:34:36 +0000 | [diff] [blame] | 1138 | default: |
| 1139 | data[i] = 0; |
| 1140 | continue; |
Ajit Khaparde | 29c3a05 | 2009-10-13 01:47:33 +0000 | [diff] [blame] | 1141 | } |
| 1142 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1143 | data[i] = (ixgbe_gstrings_stats[i].sizeof_stat == |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 1144 | sizeof(u64)) ? *(u64 *)p : *(u32 *)p; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1145 | } |
Don Skidmore | bd8a1b1 | 2013-06-28 05:35:50 +0000 | [diff] [blame] | 1146 | for (j = 0; j < netdev->num_tx_queues; j++) { |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 1147 | ring = adapter->tx_ring[j]; |
John Fastabend | 9cc00b5 | 2012-01-28 03:32:17 +0000 | [diff] [blame] | 1148 | if (!ring) { |
| 1149 | data[i] = 0; |
| 1150 | data[i+1] = 0; |
| 1151 | i += 2; |
Jacob Keller | b464003 | 2013-10-01 04:33:54 -0700 | [diff] [blame] | 1152 | #ifdef BP_EXTENDED_STATS |
Eliezer Tamir | 7e15b90 | 2013-06-10 11:40:31 +0300 | [diff] [blame] | 1153 | data[i] = 0; |
| 1154 | data[i+1] = 0; |
| 1155 | data[i+2] = 0; |
| 1156 | i += 3; |
| 1157 | #endif |
John Fastabend | 9cc00b5 | 2012-01-28 03:32:17 +0000 | [diff] [blame] | 1158 | continue; |
| 1159 | } |
| 1160 | |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 1161 | do { |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 1162 | start = u64_stats_fetch_begin_irq(&ring->syncp); |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 1163 | data[i] = ring->stats.packets; |
| 1164 | data[i+1] = ring->stats.bytes; |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 1165 | } while (u64_stats_fetch_retry_irq(&ring->syncp, start)); |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 1166 | i += 2; |
Jacob Keller | b464003 | 2013-10-01 04:33:54 -0700 | [diff] [blame] | 1167 | #ifdef BP_EXTENDED_STATS |
Eliezer Tamir | 7e15b90 | 2013-06-10 11:40:31 +0300 | [diff] [blame] | 1168 | data[i] = ring->stats.yields; |
| 1169 | data[i+1] = ring->stats.misses; |
| 1170 | data[i+2] = ring->stats.cleaned; |
| 1171 | i += 3; |
| 1172 | #endif |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1173 | } |
John Fastabend | 9cc00b5 | 2012-01-28 03:32:17 +0000 | [diff] [blame] | 1174 | for (j = 0; j < IXGBE_NUM_RX_QUEUES; j++) { |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 1175 | ring = adapter->rx_ring[j]; |
John Fastabend | 9cc00b5 | 2012-01-28 03:32:17 +0000 | [diff] [blame] | 1176 | if (!ring) { |
| 1177 | data[i] = 0; |
| 1178 | data[i+1] = 0; |
| 1179 | i += 2; |
Jacob Keller | b464003 | 2013-10-01 04:33:54 -0700 | [diff] [blame] | 1180 | #ifdef BP_EXTENDED_STATS |
Eliezer Tamir | 7e15b90 | 2013-06-10 11:40:31 +0300 | [diff] [blame] | 1181 | data[i] = 0; |
| 1182 | data[i+1] = 0; |
| 1183 | data[i+2] = 0; |
| 1184 | i += 3; |
| 1185 | #endif |
John Fastabend | 9cc00b5 | 2012-01-28 03:32:17 +0000 | [diff] [blame] | 1186 | continue; |
| 1187 | } |
| 1188 | |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 1189 | do { |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 1190 | start = u64_stats_fetch_begin_irq(&ring->syncp); |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 1191 | data[i] = ring->stats.packets; |
| 1192 | data[i+1] = ring->stats.bytes; |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 1193 | } while (u64_stats_fetch_retry_irq(&ring->syncp, start)); |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 1194 | i += 2; |
Jacob Keller | b464003 | 2013-10-01 04:33:54 -0700 | [diff] [blame] | 1195 | #ifdef BP_EXTENDED_STATS |
Eliezer Tamir | 7e15b90 | 2013-06-10 11:40:31 +0300 | [diff] [blame] | 1196 | data[i] = ring->stats.yields; |
| 1197 | data[i+1] = ring->stats.misses; |
| 1198 | data[i+2] = ring->stats.cleaned; |
| 1199 | i += 3; |
| 1200 | #endif |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1201 | } |
John Fastabend | 9cc00b5 | 2012-01-28 03:32:17 +0000 | [diff] [blame] | 1202 | |
| 1203 | for (j = 0; j < IXGBE_MAX_PACKET_BUFFERS; j++) { |
| 1204 | data[i++] = adapter->stats.pxontxc[j]; |
| 1205 | data[i++] = adapter->stats.pxofftxc[j]; |
| 1206 | } |
| 1207 | for (j = 0; j < IXGBE_MAX_PACKET_BUFFERS; j++) { |
| 1208 | data[i++] = adapter->stats.pxonrxc[j]; |
| 1209 | data[i++] = adapter->stats.pxoffrxc[j]; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1210 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1211 | } |
| 1212 | |
| 1213 | static void ixgbe_get_strings(struct net_device *netdev, u32 stringset, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 1214 | u8 *data) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1215 | { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1216 | char *p = (char *)data; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1217 | int i; |
| 1218 | |
| 1219 | switch (stringset) { |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1220 | case ETH_SS_TEST: |
Josh Hay | d2c47b6 | 2013-01-04 03:34:42 +0000 | [diff] [blame] | 1221 | for (i = 0; i < IXGBE_TEST_LEN; i++) { |
| 1222 | memcpy(data, ixgbe_gstrings_test[i], ETH_GSTRING_LEN); |
| 1223 | data += ETH_GSTRING_LEN; |
| 1224 | } |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1225 | break; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1226 | case ETH_SS_STATS: |
| 1227 | for (i = 0; i < IXGBE_GLOBAL_STATS_LEN; i++) { |
| 1228 | memcpy(p, ixgbe_gstrings_stats[i].stat_string, |
| 1229 | ETH_GSTRING_LEN); |
| 1230 | p += ETH_GSTRING_LEN; |
| 1231 | } |
John Fastabend | 9cc00b5 | 2012-01-28 03:32:17 +0000 | [diff] [blame] | 1232 | for (i = 0; i < netdev->num_tx_queues; i++) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1233 | sprintf(p, "tx_queue_%u_packets", i); |
| 1234 | p += ETH_GSTRING_LEN; |
| 1235 | sprintf(p, "tx_queue_%u_bytes", i); |
| 1236 | p += ETH_GSTRING_LEN; |
Jacob Keller | b464003 | 2013-10-01 04:33:54 -0700 | [diff] [blame] | 1237 | #ifdef BP_EXTENDED_STATS |
| 1238 | sprintf(p, "tx_queue_%u_bp_napi_yield", i); |
Eliezer Tamir | 7e15b90 | 2013-06-10 11:40:31 +0300 | [diff] [blame] | 1239 | p += ETH_GSTRING_LEN; |
Jacob Keller | b464003 | 2013-10-01 04:33:54 -0700 | [diff] [blame] | 1240 | sprintf(p, "tx_queue_%u_bp_misses", i); |
Eliezer Tamir | 7e15b90 | 2013-06-10 11:40:31 +0300 | [diff] [blame] | 1241 | p += ETH_GSTRING_LEN; |
Jacob Keller | b464003 | 2013-10-01 04:33:54 -0700 | [diff] [blame] | 1242 | sprintf(p, "tx_queue_%u_bp_cleaned", i); |
Eliezer Tamir | 7e15b90 | 2013-06-10 11:40:31 +0300 | [diff] [blame] | 1243 | p += ETH_GSTRING_LEN; |
Jacob Keller | b464003 | 2013-10-01 04:33:54 -0700 | [diff] [blame] | 1244 | #endif /* BP_EXTENDED_STATS */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1245 | } |
John Fastabend | 9cc00b5 | 2012-01-28 03:32:17 +0000 | [diff] [blame] | 1246 | for (i = 0; i < IXGBE_NUM_RX_QUEUES; i++) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1247 | sprintf(p, "rx_queue_%u_packets", i); |
| 1248 | p += ETH_GSTRING_LEN; |
| 1249 | sprintf(p, "rx_queue_%u_bytes", i); |
| 1250 | p += ETH_GSTRING_LEN; |
Jacob Keller | b464003 | 2013-10-01 04:33:54 -0700 | [diff] [blame] | 1251 | #ifdef BP_EXTENDED_STATS |
| 1252 | sprintf(p, "rx_queue_%u_bp_poll_yield", i); |
Eliezer Tamir | 7e15b90 | 2013-06-10 11:40:31 +0300 | [diff] [blame] | 1253 | p += ETH_GSTRING_LEN; |
Jacob Keller | b464003 | 2013-10-01 04:33:54 -0700 | [diff] [blame] | 1254 | sprintf(p, "rx_queue_%u_bp_misses", i); |
Eliezer Tamir | 7e15b90 | 2013-06-10 11:40:31 +0300 | [diff] [blame] | 1255 | p += ETH_GSTRING_LEN; |
Jacob Keller | b464003 | 2013-10-01 04:33:54 -0700 | [diff] [blame] | 1256 | sprintf(p, "rx_queue_%u_bp_cleaned", i); |
Eliezer Tamir | 7e15b90 | 2013-06-10 11:40:31 +0300 | [diff] [blame] | 1257 | p += ETH_GSTRING_LEN; |
Jacob Keller | b464003 | 2013-10-01 04:33:54 -0700 | [diff] [blame] | 1258 | #endif /* BP_EXTENDED_STATS */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1259 | } |
John Fastabend | 9cc00b5 | 2012-01-28 03:32:17 +0000 | [diff] [blame] | 1260 | for (i = 0; i < IXGBE_MAX_PACKET_BUFFERS; i++) { |
| 1261 | sprintf(p, "tx_pb_%u_pxon", i); |
| 1262 | p += ETH_GSTRING_LEN; |
| 1263 | sprintf(p, "tx_pb_%u_pxoff", i); |
| 1264 | p += ETH_GSTRING_LEN; |
| 1265 | } |
| 1266 | for (i = 0; i < IXGBE_MAX_PACKET_BUFFERS; i++) { |
| 1267 | sprintf(p, "rx_pb_%u_pxon", i); |
| 1268 | p += ETH_GSTRING_LEN; |
| 1269 | sprintf(p, "rx_pb_%u_pxoff", i); |
| 1270 | p += ETH_GSTRING_LEN; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1271 | } |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1272 | /* BUG_ON(p - data != IXGBE_STATS_LEN * ETH_GSTRING_LEN); */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1273 | break; |
| 1274 | } |
| 1275 | } |
| 1276 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1277 | static int ixgbe_link_test(struct ixgbe_adapter *adapter, u64 *data) |
| 1278 | { |
| 1279 | struct ixgbe_hw *hw = &adapter->hw; |
| 1280 | bool link_up; |
| 1281 | u32 link_speed = 0; |
Mark Rustad | 0edd2bd | 2014-02-28 15:48:56 -0800 | [diff] [blame] | 1282 | |
| 1283 | if (ixgbe_removed(hw->hw_addr)) { |
| 1284 | *data = 1; |
| 1285 | return 1; |
| 1286 | } |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1287 | *data = 0; |
| 1288 | |
| 1289 | hw->mac.ops.check_link(hw, &link_speed, &link_up, true); |
| 1290 | if (link_up) |
| 1291 | return *data; |
| 1292 | else |
| 1293 | *data = 1; |
| 1294 | return *data; |
| 1295 | } |
| 1296 | |
| 1297 | /* ethtool register test data */ |
| 1298 | struct ixgbe_reg_test { |
| 1299 | u16 reg; |
| 1300 | u8 array_len; |
| 1301 | u8 test_type; |
| 1302 | u32 mask; |
| 1303 | u32 write; |
| 1304 | }; |
| 1305 | |
| 1306 | /* In the hardware, registers are laid out either singly, in arrays |
| 1307 | * spaced 0x40 bytes apart, or in contiguous tables. We assume |
| 1308 | * most tests take place on arrays or single registers (handled |
| 1309 | * as a single-element array) and special-case the tables. |
| 1310 | * Table tests are always pattern tests. |
| 1311 | * |
| 1312 | * We also make provision for some required setup steps by specifying |
| 1313 | * registers to be written without any read-back testing. |
| 1314 | */ |
| 1315 | |
| 1316 | #define PATTERN_TEST 1 |
| 1317 | #define SET_READ_TEST 2 |
| 1318 | #define WRITE_NO_TEST 3 |
| 1319 | #define TABLE32_TEST 4 |
| 1320 | #define TABLE64_TEST_LO 5 |
| 1321 | #define TABLE64_TEST_HI 6 |
| 1322 | |
| 1323 | /* default 82599 register test */ |
Jeff Kirsher | 6674450 | 2010-12-01 19:59:50 +0000 | [diff] [blame] | 1324 | static const struct ixgbe_reg_test reg_test_82599[] = { |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1325 | { IXGBE_FCRTL_82599(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 }, |
| 1326 | { IXGBE_FCRTH_82599(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 }, |
| 1327 | { IXGBE_PFCTOP, 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1328 | { IXGBE_VLNCTRL, 1, PATTERN_TEST, 0x00000000, 0x00000000 }, |
| 1329 | { IXGBE_RDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFF80 }, |
| 1330 | { IXGBE_RDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1331 | { IXGBE_RDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF }, |
| 1332 | { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, IXGBE_RXDCTL_ENABLE }, |
| 1333 | { IXGBE_RDT(0), 4, PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, |
| 1334 | { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, 0 }, |
| 1335 | { IXGBE_FCRTH(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 }, |
| 1336 | { IXGBE_FCTTV(0), 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1337 | { IXGBE_TDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, |
| 1338 | { IXGBE_TDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1339 | { IXGBE_TDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFF80 }, |
| 1340 | { IXGBE_RXCTRL, 1, SET_READ_TEST, 0x00000001, 0x00000001 }, |
| 1341 | { IXGBE_RAL(0), 16, TABLE64_TEST_LO, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1342 | { IXGBE_RAL(0), 16, TABLE64_TEST_HI, 0x8001FFFF, 0x800CFFFF }, |
| 1343 | { IXGBE_MTA(0), 128, TABLE32_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
Mark Rustad | ca8dfe2 | 2014-07-24 06:19:24 +0000 | [diff] [blame] | 1344 | { .reg = 0 } |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1345 | }; |
| 1346 | |
| 1347 | /* default 82598 register test */ |
Jeff Kirsher | 6674450 | 2010-12-01 19:59:50 +0000 | [diff] [blame] | 1348 | static const struct ixgbe_reg_test reg_test_82598[] = { |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1349 | { IXGBE_FCRTL(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 }, |
| 1350 | { IXGBE_FCRTH(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 }, |
| 1351 | { IXGBE_PFCTOP, 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1352 | { IXGBE_VLNCTRL, 1, PATTERN_TEST, 0x00000000, 0x00000000 }, |
| 1353 | { IXGBE_RDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, |
| 1354 | { IXGBE_RDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1355 | { IXGBE_RDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF }, |
| 1356 | /* Enable all four RX queues before testing. */ |
| 1357 | { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, IXGBE_RXDCTL_ENABLE }, |
| 1358 | /* RDH is read-only for 82598, only test RDT. */ |
| 1359 | { IXGBE_RDT(0), 4, PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, |
| 1360 | { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, 0 }, |
| 1361 | { IXGBE_FCRTH(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 }, |
| 1362 | { IXGBE_FCTTV(0), 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1363 | { IXGBE_TIPG, 1, PATTERN_TEST, 0x000000FF, 0x000000FF }, |
| 1364 | { IXGBE_TDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, |
| 1365 | { IXGBE_TDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1366 | { IXGBE_TDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF }, |
| 1367 | { IXGBE_RXCTRL, 1, SET_READ_TEST, 0x00000003, 0x00000003 }, |
| 1368 | { IXGBE_DTXCTL, 1, SET_READ_TEST, 0x00000005, 0x00000005 }, |
| 1369 | { IXGBE_RAL(0), 16, TABLE64_TEST_LO, 0xFFFFFFFF, 0xFFFFFFFF }, |
| 1370 | { IXGBE_RAL(0), 16, TABLE64_TEST_HI, 0x800CFFFF, 0x800CFFFF }, |
| 1371 | { IXGBE_MTA(0), 128, TABLE32_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, |
Mark Rustad | ca8dfe2 | 2014-07-24 06:19:24 +0000 | [diff] [blame] | 1372 | { .reg = 0 } |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1373 | }; |
| 1374 | |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1375 | static bool reg_pattern_test(struct ixgbe_adapter *adapter, u64 *data, int reg, |
| 1376 | u32 mask, u32 write) |
| 1377 | { |
| 1378 | u32 pat, val, before; |
| 1379 | static const u32 test_pattern[] = { |
| 1380 | 0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF}; |
Jeff Kirsher | 6674450 | 2010-12-01 19:59:50 +0000 | [diff] [blame] | 1381 | |
Mark Rustad | b0483c8 | 2014-01-14 18:53:17 -0800 | [diff] [blame] | 1382 | if (ixgbe_removed(adapter->hw.hw_addr)) { |
| 1383 | *data = 1; |
Joe Perches | 4e833c5 | 2015-03-29 18:25:12 -0700 | [diff] [blame] | 1384 | return true; |
Mark Rustad | b0483c8 | 2014-01-14 18:53:17 -0800 | [diff] [blame] | 1385 | } |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1386 | for (pat = 0; pat < ARRAY_SIZE(test_pattern); pat++) { |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1387 | before = ixgbe_read_reg(&adapter->hw, reg); |
| 1388 | ixgbe_write_reg(&adapter->hw, reg, test_pattern[pat] & write); |
| 1389 | val = ixgbe_read_reg(&adapter->hw, reg); |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1390 | if (val != (test_pattern[pat] & write & mask)) { |
Jacob Keller | 6ec1b71 | 2014-04-09 06:03:13 +0000 | [diff] [blame] | 1391 | e_err(drv, "pattern test reg %04X failed: got 0x%08X expected 0x%08X\n", |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1392 | reg, val, (test_pattern[pat] & write & mask)); |
| 1393 | *data = reg; |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1394 | ixgbe_write_reg(&adapter->hw, reg, before); |
| 1395 | return true; |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1396 | } |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1397 | ixgbe_write_reg(&adapter->hw, reg, before); |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1398 | } |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1399 | return false; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1400 | } |
| 1401 | |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1402 | static bool reg_set_and_check(struct ixgbe_adapter *adapter, u64 *data, int reg, |
| 1403 | u32 mask, u32 write) |
| 1404 | { |
| 1405 | u32 val, before; |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1406 | |
Mark Rustad | b0483c8 | 2014-01-14 18:53:17 -0800 | [diff] [blame] | 1407 | if (ixgbe_removed(adapter->hw.hw_addr)) { |
| 1408 | *data = 1; |
Joe Perches | 4e833c5 | 2015-03-29 18:25:12 -0700 | [diff] [blame] | 1409 | return true; |
Mark Rustad | b0483c8 | 2014-01-14 18:53:17 -0800 | [diff] [blame] | 1410 | } |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1411 | before = ixgbe_read_reg(&adapter->hw, reg); |
| 1412 | ixgbe_write_reg(&adapter->hw, reg, write & mask); |
| 1413 | val = ixgbe_read_reg(&adapter->hw, reg); |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1414 | if ((write & mask) != (val & mask)) { |
Jacob Keller | 6ec1b71 | 2014-04-09 06:03:13 +0000 | [diff] [blame] | 1415 | e_err(drv, "set/check reg %04X test failed: got 0x%08X expected 0x%08X\n", |
| 1416 | reg, (val & mask), (write & mask)); |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1417 | *data = reg; |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1418 | ixgbe_write_reg(&adapter->hw, reg, before); |
| 1419 | return true; |
Emil Tantilov | 95a4601 | 2011-04-14 07:46:41 +0000 | [diff] [blame] | 1420 | } |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1421 | ixgbe_write_reg(&adapter->hw, reg, before); |
| 1422 | return false; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1423 | } |
| 1424 | |
| 1425 | static int ixgbe_reg_test(struct ixgbe_adapter *adapter, u64 *data) |
| 1426 | { |
Jeff Kirsher | 6674450 | 2010-12-01 19:59:50 +0000 | [diff] [blame] | 1427 | const struct ixgbe_reg_test *test; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1428 | u32 value, before, after; |
| 1429 | u32 i, toggle; |
| 1430 | |
Mark Rustad | b0483c8 | 2014-01-14 18:53:17 -0800 | [diff] [blame] | 1431 | if (ixgbe_removed(adapter->hw.hw_addr)) { |
| 1432 | e_err(drv, "Adapter removed - register test blocked\n"); |
| 1433 | *data = 1; |
| 1434 | return 1; |
| 1435 | } |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1436 | switch (adapter->hw.mac.type) { |
| 1437 | case ixgbe_mac_82598EB: |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1438 | toggle = 0x7FFFF3FF; |
| 1439 | test = reg_test_82598; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1440 | break; |
| 1441 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 1442 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 1443 | case ixgbe_mac_X550: |
| 1444 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 1445 | case ixgbe_mac_x550em_a: |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1446 | toggle = 0x7FFFF30F; |
| 1447 | test = reg_test_82599; |
| 1448 | break; |
| 1449 | default: |
| 1450 | *data = 1; |
| 1451 | return 1; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1452 | } |
| 1453 | |
| 1454 | /* |
| 1455 | * Because the status register is such a special case, |
| 1456 | * we handle it separately from the rest of the register |
| 1457 | * tests. Some bits are read-only, some toggle, and some |
| 1458 | * are writeable on newer MACs. |
| 1459 | */ |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1460 | before = ixgbe_read_reg(&adapter->hw, IXGBE_STATUS); |
| 1461 | value = (ixgbe_read_reg(&adapter->hw, IXGBE_STATUS) & toggle); |
| 1462 | ixgbe_write_reg(&adapter->hw, IXGBE_STATUS, toggle); |
| 1463 | after = ixgbe_read_reg(&adapter->hw, IXGBE_STATUS) & toggle; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1464 | if (value != after) { |
Jacob Keller | 6ec1b71 | 2014-04-09 06:03:13 +0000 | [diff] [blame] | 1465 | e_err(drv, "failed STATUS register test got: 0x%08X expected: 0x%08X\n", |
| 1466 | after, value); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1467 | *data = 1; |
| 1468 | return 1; |
| 1469 | } |
| 1470 | /* restore previous status */ |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1471 | ixgbe_write_reg(&adapter->hw, IXGBE_STATUS, before); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1472 | |
| 1473 | /* |
| 1474 | * Perform the remainder of the register test, looping through |
| 1475 | * the test table until we either fail or reach the null entry. |
| 1476 | */ |
| 1477 | while (test->reg) { |
| 1478 | for (i = 0; i < test->array_len; i++) { |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1479 | bool b = false; |
| 1480 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1481 | switch (test->test_type) { |
| 1482 | case PATTERN_TEST: |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1483 | b = reg_pattern_test(adapter, data, |
| 1484 | test->reg + (i * 0x40), |
| 1485 | test->mask, |
| 1486 | test->write); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1487 | break; |
| 1488 | case SET_READ_TEST: |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1489 | b = reg_set_and_check(adapter, data, |
| 1490 | test->reg + (i * 0x40), |
| 1491 | test->mask, |
| 1492 | test->write); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1493 | break; |
| 1494 | case WRITE_NO_TEST: |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1495 | ixgbe_write_reg(&adapter->hw, |
| 1496 | test->reg + (i * 0x40), |
| 1497 | test->write); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1498 | break; |
| 1499 | case TABLE32_TEST: |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1500 | b = reg_pattern_test(adapter, data, |
| 1501 | test->reg + (i * 4), |
| 1502 | test->mask, |
| 1503 | test->write); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1504 | break; |
| 1505 | case TABLE64_TEST_LO: |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1506 | b = reg_pattern_test(adapter, data, |
| 1507 | test->reg + (i * 8), |
| 1508 | test->mask, |
| 1509 | test->write); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1510 | break; |
| 1511 | case TABLE64_TEST_HI: |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1512 | b = reg_pattern_test(adapter, data, |
| 1513 | (test->reg + 4) + (i * 8), |
| 1514 | test->mask, |
| 1515 | test->write); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1516 | break; |
| 1517 | } |
Mark Rustad | 49bde31 | 2014-01-14 18:53:14 -0800 | [diff] [blame] | 1518 | if (b) |
| 1519 | return 1; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1520 | } |
| 1521 | test++; |
| 1522 | } |
| 1523 | |
| 1524 | *data = 0; |
| 1525 | return 0; |
| 1526 | } |
| 1527 | |
| 1528 | static int ixgbe_eeprom_test(struct ixgbe_adapter *adapter, u64 *data) |
| 1529 | { |
| 1530 | struct ixgbe_hw *hw = &adapter->hw; |
| 1531 | if (hw->eeprom.ops.validate_checksum(hw, NULL)) |
| 1532 | *data = 1; |
| 1533 | else |
| 1534 | *data = 0; |
| 1535 | return *data; |
| 1536 | } |
| 1537 | |
| 1538 | static irqreturn_t ixgbe_test_intr(int irq, void *data) |
| 1539 | { |
| 1540 | struct net_device *netdev = (struct net_device *) data; |
| 1541 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 1542 | |
| 1543 | adapter->test_icr |= IXGBE_READ_REG(&adapter->hw, IXGBE_EICR); |
| 1544 | |
| 1545 | return IRQ_HANDLED; |
| 1546 | } |
| 1547 | |
| 1548 | static int ixgbe_intr_test(struct ixgbe_adapter *adapter, u64 *data) |
| 1549 | { |
| 1550 | struct net_device *netdev = adapter->netdev; |
| 1551 | u32 mask, i = 0, shared_int = true; |
| 1552 | u32 irq = adapter->pdev->irq; |
| 1553 | |
| 1554 | *data = 0; |
| 1555 | |
| 1556 | /* Hook up test interrupt handler just for this test */ |
| 1557 | if (adapter->msix_entries) { |
| 1558 | /* NOTE: we don't test MSI-X interrupts here, yet */ |
| 1559 | return 0; |
| 1560 | } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) { |
| 1561 | shared_int = false; |
Joe Perches | a0607fd | 2009-11-18 23:29:17 -0800 | [diff] [blame] | 1562 | if (request_irq(irq, ixgbe_test_intr, 0, netdev->name, |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1563 | netdev)) { |
| 1564 | *data = 1; |
| 1565 | return -1; |
| 1566 | } |
Joe Perches | a0607fd | 2009-11-18 23:29:17 -0800 | [diff] [blame] | 1567 | } else if (!request_irq(irq, ixgbe_test_intr, IRQF_PROBE_SHARED, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 1568 | netdev->name, netdev)) { |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1569 | shared_int = false; |
Joe Perches | a0607fd | 2009-11-18 23:29:17 -0800 | [diff] [blame] | 1570 | } else if (request_irq(irq, ixgbe_test_intr, IRQF_SHARED, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 1571 | netdev->name, netdev)) { |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1572 | *data = 1; |
| 1573 | return -1; |
| 1574 | } |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 1575 | e_info(hw, "testing %s interrupt\n", shared_int ? |
| 1576 | "shared" : "unshared"); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1577 | |
| 1578 | /* Disable all the interrupts */ |
| 1579 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFFFFFF); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 1580 | IXGBE_WRITE_FLUSH(&adapter->hw); |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 1581 | usleep_range(10000, 20000); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1582 | |
| 1583 | /* Test each interrupt */ |
| 1584 | for (; i < 10; i++) { |
| 1585 | /* Interrupt to test */ |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 1586 | mask = BIT(i); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1587 | |
| 1588 | if (!shared_int) { |
| 1589 | /* |
| 1590 | * Disable the interrupts to be reported in |
| 1591 | * the cause register and then force the same |
| 1592 | * interrupt and see if one gets posted. If |
| 1593 | * an interrupt was posted to the bus, the |
| 1594 | * test failed. |
| 1595 | */ |
| 1596 | adapter->test_icr = 0; |
| 1597 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 1598 | ~mask & 0x00007FFF); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1599 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 1600 | ~mask & 0x00007FFF); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 1601 | IXGBE_WRITE_FLUSH(&adapter->hw); |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 1602 | usleep_range(10000, 20000); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1603 | |
| 1604 | if (adapter->test_icr & mask) { |
| 1605 | *data = 3; |
| 1606 | break; |
| 1607 | } |
| 1608 | } |
| 1609 | |
| 1610 | /* |
| 1611 | * Enable the interrupt to be reported in the cause |
| 1612 | * register and then force the same interrupt and see |
| 1613 | * if one gets posted. If an interrupt was not posted |
| 1614 | * to the bus, the test failed. |
| 1615 | */ |
| 1616 | adapter->test_icr = 0; |
| 1617 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask); |
| 1618 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 1619 | IXGBE_WRITE_FLUSH(&adapter->hw); |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 1620 | usleep_range(10000, 20000); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1621 | |
Jacob Keller | 8105ecd | 2014-04-09 06:03:16 +0000 | [diff] [blame] | 1622 | if (!(adapter->test_icr & mask)) { |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1623 | *data = 4; |
| 1624 | break; |
| 1625 | } |
| 1626 | |
| 1627 | if (!shared_int) { |
| 1628 | /* |
| 1629 | * Disable the other interrupts to be reported in |
| 1630 | * the cause register and then force the other |
| 1631 | * interrupts and see if any get posted. If |
| 1632 | * an interrupt was posted to the bus, the |
| 1633 | * test failed. |
| 1634 | */ |
| 1635 | adapter->test_icr = 0; |
| 1636 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 1637 | ~mask & 0x00007FFF); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1638 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 1639 | ~mask & 0x00007FFF); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 1640 | IXGBE_WRITE_FLUSH(&adapter->hw); |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 1641 | usleep_range(10000, 20000); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1642 | |
| 1643 | if (adapter->test_icr) { |
| 1644 | *data = 5; |
| 1645 | break; |
| 1646 | } |
| 1647 | } |
| 1648 | } |
| 1649 | |
| 1650 | /* Disable all the interrupts */ |
| 1651 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFFFFFF); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 1652 | IXGBE_WRITE_FLUSH(&adapter->hw); |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 1653 | usleep_range(10000, 20000); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1654 | |
| 1655 | /* Unhook test interrupt handler */ |
| 1656 | free_irq(irq, netdev); |
| 1657 | |
| 1658 | return *data; |
| 1659 | } |
| 1660 | |
| 1661 | static void ixgbe_free_desc_rings(struct ixgbe_adapter *adapter) |
| 1662 | { |
| 1663 | struct ixgbe_ring *tx_ring = &adapter->test_tx_ring; |
| 1664 | struct ixgbe_ring *rx_ring = &adapter->test_rx_ring; |
| 1665 | struct ixgbe_hw *hw = &adapter->hw; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1666 | u32 reg_ctl; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1667 | |
| 1668 | /* shut down the DMA engines now so they can be reinitialized later */ |
| 1669 | |
| 1670 | /* first Rx */ |
Don Skidmore | 1f9ac57 | 2015-03-13 13:54:30 -0700 | [diff] [blame] | 1671 | hw->mac.ops.disable_rx(hw); |
Yi Zou | 2d39d57 | 2011-01-06 14:29:56 +0000 | [diff] [blame] | 1672 | ixgbe_disable_rx_queue(adapter, rx_ring); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1673 | |
| 1674 | /* now Tx */ |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1675 | 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] | 1676 | reg_ctl &= ~IXGBE_TXDCTL_ENABLE; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1677 | IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(tx_ring->reg_idx), reg_ctl); |
| 1678 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1679 | switch (hw->mac.type) { |
| 1680 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 1681 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 1682 | case ixgbe_mac_X550: |
| 1683 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 1684 | case ixgbe_mac_x550em_a: |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1685 | reg_ctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL); |
| 1686 | reg_ctl &= ~IXGBE_DMATXCTL_TE; |
| 1687 | IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg_ctl); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1688 | break; |
| 1689 | default: |
| 1690 | break; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1691 | } |
| 1692 | |
| 1693 | ixgbe_reset(adapter); |
| 1694 | |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1695 | ixgbe_free_tx_resources(&adapter->test_tx_ring); |
| 1696 | ixgbe_free_rx_resources(&adapter->test_rx_ring); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1697 | } |
| 1698 | |
| 1699 | static int ixgbe_setup_desc_rings(struct ixgbe_adapter *adapter) |
| 1700 | { |
| 1701 | struct ixgbe_ring *tx_ring = &adapter->test_tx_ring; |
| 1702 | struct ixgbe_ring *rx_ring = &adapter->test_rx_ring; |
Don Skidmore | 1f9ac57 | 2015-03-13 13:54:30 -0700 | [diff] [blame] | 1703 | struct ixgbe_hw *hw = &adapter->hw; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1704 | u32 rctl, reg_data; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1705 | int ret_val; |
| 1706 | int err; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1707 | |
| 1708 | /* Setup Tx descriptor ring and Tx buffers */ |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1709 | tx_ring->count = IXGBE_DEFAULT_TXD; |
| 1710 | tx_ring->queue_index = 0; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1711 | tx_ring->dev = &adapter->pdev->dev; |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1712 | tx_ring->netdev = adapter->netdev; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1713 | tx_ring->reg_idx = adapter->tx_ring[0]->reg_idx; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1714 | |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1715 | err = ixgbe_setup_tx_resources(tx_ring); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1716 | if (err) |
| 1717 | return 1; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1718 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1719 | switch (adapter->hw.mac.type) { |
| 1720 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 1721 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 1722 | case ixgbe_mac_X550: |
| 1723 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 1724 | case ixgbe_mac_x550em_a: |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1725 | reg_data = IXGBE_READ_REG(&adapter->hw, IXGBE_DMATXCTL); |
| 1726 | reg_data |= IXGBE_DMATXCTL_TE; |
| 1727 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_DMATXCTL, reg_data); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1728 | break; |
| 1729 | default: |
| 1730 | break; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1731 | } |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1732 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1733 | ixgbe_configure_tx_ring(adapter, tx_ring); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1734 | |
| 1735 | /* Setup Rx Descriptor ring and Rx buffers */ |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1736 | rx_ring->count = IXGBE_DEFAULT_RXD; |
| 1737 | rx_ring->queue_index = 0; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1738 | rx_ring->dev = &adapter->pdev->dev; |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1739 | rx_ring->netdev = adapter->netdev; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1740 | rx_ring->reg_idx = adapter->rx_ring[0]->reg_idx; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1741 | |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1742 | err = ixgbe_setup_rx_resources(rx_ring); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1743 | if (err) { |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1744 | ret_val = 4; |
| 1745 | goto err_nomem; |
| 1746 | } |
| 1747 | |
Don Skidmore | 1f9ac57 | 2015-03-13 13:54:30 -0700 | [diff] [blame] | 1748 | hw->mac.ops.disable_rx(hw); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1749 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1750 | ixgbe_configure_rx_ring(adapter, rx_ring); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1751 | |
Don Skidmore | 1f9ac57 | 2015-03-13 13:54:30 -0700 | [diff] [blame] | 1752 | rctl = IXGBE_READ_REG(&adapter->hw, IXGBE_RXCTRL); |
| 1753 | rctl |= IXGBE_RXCTRL_DMBYPS; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1754 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_RXCTRL, rctl); |
| 1755 | |
Don Skidmore | 1f9ac57 | 2015-03-13 13:54:30 -0700 | [diff] [blame] | 1756 | hw->mac.ops.enable_rx(hw); |
| 1757 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1758 | return 0; |
| 1759 | |
| 1760 | err_nomem: |
| 1761 | ixgbe_free_desc_rings(adapter); |
| 1762 | return ret_val; |
| 1763 | } |
| 1764 | |
| 1765 | static int ixgbe_setup_loopback_test(struct ixgbe_adapter *adapter) |
| 1766 | { |
| 1767 | struct ixgbe_hw *hw = &adapter->hw; |
| 1768 | u32 reg_data; |
| 1769 | |
Don Skidmore | e7fd925 | 2011-04-16 05:29:14 +0000 | [diff] [blame] | 1770 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1771 | /* Setup MAC loopback */ |
Emil Tantilov | 26b4742 | 2013-04-12 02:10:25 +0000 | [diff] [blame] | 1772 | reg_data = IXGBE_READ_REG(hw, IXGBE_HLREG0); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1773 | reg_data |= IXGBE_HLREG0_LPBK; |
Alexander Duyck | 35c7f8a | 2011-07-15 03:06:01 +0000 | [diff] [blame] | 1774 | IXGBE_WRITE_REG(hw, IXGBE_HLREG0, reg_data); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1775 | |
Alexander Duyck | 35c7f8a | 2011-07-15 03:06:01 +0000 | [diff] [blame] | 1776 | reg_data = IXGBE_READ_REG(hw, IXGBE_FCTRL); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1777 | reg_data |= IXGBE_FCTRL_BAM | IXGBE_FCTRL_SBP | IXGBE_FCTRL_MPE; |
Alexander Duyck | 35c7f8a | 2011-07-15 03:06:01 +0000 | [diff] [blame] | 1778 | IXGBE_WRITE_REG(hw, IXGBE_FCTRL, reg_data); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1779 | |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 1780 | /* X540 and X550 needs to set the MACC.FLU bit to force link up */ |
| 1781 | switch (adapter->hw.mac.type) { |
| 1782 | case ixgbe_mac_X540: |
| 1783 | case ixgbe_mac_X550: |
| 1784 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 1785 | case ixgbe_mac_x550em_a: |
Emil Tantilov | 26b4742 | 2013-04-12 02:10:25 +0000 | [diff] [blame] | 1786 | reg_data = IXGBE_READ_REG(hw, IXGBE_MACC); |
| 1787 | reg_data |= IXGBE_MACC_FLU; |
| 1788 | IXGBE_WRITE_REG(hw, IXGBE_MACC, reg_data); |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 1789 | break; |
| 1790 | default: |
Emil Tantilov | 26b4742 | 2013-04-12 02:10:25 +0000 | [diff] [blame] | 1791 | if (hw->mac.orig_autoc) { |
| 1792 | reg_data = hw->mac.orig_autoc | IXGBE_AUTOC_FLU; |
| 1793 | IXGBE_WRITE_REG(hw, IXGBE_AUTOC, reg_data); |
| 1794 | } else { |
| 1795 | return 10; |
| 1796 | } |
| 1797 | } |
Alexander Duyck | 35c7f8a | 2011-07-15 03:06:01 +0000 | [diff] [blame] | 1798 | IXGBE_WRITE_FLUSH(hw); |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 1799 | usleep_range(10000, 20000); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1800 | |
| 1801 | /* Disable Atlas Tx lanes; re-enabled in reset path */ |
| 1802 | if (hw->mac.type == ixgbe_mac_82598EB) { |
| 1803 | u8 atlas; |
| 1804 | |
| 1805 | hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, &atlas); |
| 1806 | atlas |= IXGBE_ATLAS_PDN_TX_REG_EN; |
| 1807 | hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, atlas); |
| 1808 | |
| 1809 | hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_10G, &atlas); |
| 1810 | atlas |= IXGBE_ATLAS_PDN_TX_10G_QL_ALL; |
| 1811 | hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_10G, atlas); |
| 1812 | |
| 1813 | hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_1G, &atlas); |
| 1814 | atlas |= IXGBE_ATLAS_PDN_TX_1G_QL_ALL; |
| 1815 | hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_1G, atlas); |
| 1816 | |
| 1817 | hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_AN, &atlas); |
| 1818 | atlas |= IXGBE_ATLAS_PDN_TX_AN_QL_ALL; |
| 1819 | hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_AN, atlas); |
| 1820 | } |
| 1821 | |
| 1822 | return 0; |
| 1823 | } |
| 1824 | |
| 1825 | static void ixgbe_loopback_cleanup(struct ixgbe_adapter *adapter) |
| 1826 | { |
| 1827 | u32 reg_data; |
| 1828 | |
| 1829 | reg_data = IXGBE_READ_REG(&adapter->hw, IXGBE_HLREG0); |
| 1830 | reg_data &= ~IXGBE_HLREG0_LPBK; |
| 1831 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_HLREG0, reg_data); |
| 1832 | } |
| 1833 | |
| 1834 | static void ixgbe_create_lbtest_frame(struct sk_buff *skb, |
Alexander Duyck | 3832b26 | 2012-02-08 07:50:09 +0000 | [diff] [blame] | 1835 | unsigned int frame_size) |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1836 | { |
| 1837 | memset(skb->data, 0xFF, frame_size); |
Alexander Duyck | 3832b26 | 2012-02-08 07:50:09 +0000 | [diff] [blame] | 1838 | frame_size >>= 1; |
| 1839 | memset(&skb->data[frame_size], 0xAA, frame_size / 2 - 1); |
| 1840 | memset(&skb->data[frame_size + 10], 0xBE, 1); |
| 1841 | memset(&skb->data[frame_size + 12], 0xAF, 1); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1842 | } |
| 1843 | |
Alexander Duyck | 3832b26 | 2012-02-08 07:50:09 +0000 | [diff] [blame] | 1844 | static bool ixgbe_check_lbtest_frame(struct ixgbe_rx_buffer *rx_buffer, |
| 1845 | unsigned int frame_size) |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1846 | { |
Alexander Duyck | 3832b26 | 2012-02-08 07:50:09 +0000 | [diff] [blame] | 1847 | unsigned char *data; |
| 1848 | bool match = true; |
| 1849 | |
| 1850 | frame_size >>= 1; |
| 1851 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1852 | data = kmap(rx_buffer->page) + rx_buffer->page_offset; |
Alexander Duyck | 3832b26 | 2012-02-08 07:50:09 +0000 | [diff] [blame] | 1853 | |
| 1854 | if (data[3] != 0xFF || |
| 1855 | data[frame_size + 10] != 0xBE || |
| 1856 | data[frame_size + 12] != 0xAF) |
| 1857 | match = false; |
| 1858 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1859 | kunmap(rx_buffer->page); |
| 1860 | |
Alexander Duyck | 3832b26 | 2012-02-08 07:50:09 +0000 | [diff] [blame] | 1861 | return match; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1862 | } |
| 1863 | |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1864 | static u16 ixgbe_clean_test_rings(struct ixgbe_ring *rx_ring, |
Alexander Duyck | 3832b26 | 2012-02-08 07:50:09 +0000 | [diff] [blame] | 1865 | struct ixgbe_ring *tx_ring, |
| 1866 | unsigned int size) |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1867 | { |
| 1868 | union ixgbe_adv_rx_desc *rx_desc; |
Alexander Duyck | 3832b26 | 2012-02-08 07:50:09 +0000 | [diff] [blame] | 1869 | struct ixgbe_rx_buffer *rx_buffer; |
| 1870 | struct ixgbe_tx_buffer *tx_buffer; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1871 | u16 rx_ntc, tx_ntc, count = 0; |
| 1872 | |
| 1873 | /* initialize next to clean and descriptor values */ |
| 1874 | rx_ntc = rx_ring->next_to_clean; |
| 1875 | tx_ntc = tx_ring->next_to_clean; |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 1876 | rx_desc = IXGBE_RX_DESC(rx_ring, rx_ntc); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1877 | |
Alexander Duyck | 3832b26 | 2012-02-08 07:50:09 +0000 | [diff] [blame] | 1878 | while (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD)) { |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1879 | /* check Rx buffer */ |
Alexander Duyck | 3832b26 | 2012-02-08 07:50:09 +0000 | [diff] [blame] | 1880 | rx_buffer = &rx_ring->rx_buffer_info[rx_ntc]; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1881 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1882 | /* sync Rx buffer for CPU read */ |
| 1883 | dma_sync_single_for_cpu(rx_ring->dev, |
| 1884 | rx_buffer->dma, |
| 1885 | ixgbe_rx_bufsz(rx_ring), |
| 1886 | DMA_FROM_DEVICE); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1887 | |
| 1888 | /* verify contents of skb */ |
Alexander Duyck | 3832b26 | 2012-02-08 07:50:09 +0000 | [diff] [blame] | 1889 | if (ixgbe_check_lbtest_frame(rx_buffer, size)) |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1890 | count++; |
| 1891 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1892 | /* sync Rx buffer for device write */ |
| 1893 | dma_sync_single_for_device(rx_ring->dev, |
| 1894 | rx_buffer->dma, |
| 1895 | ixgbe_rx_bufsz(rx_ring), |
| 1896 | DMA_FROM_DEVICE); |
| 1897 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1898 | /* unmap buffer on Tx side */ |
Alexander Duyck | 3832b26 | 2012-02-08 07:50:09 +0000 | [diff] [blame] | 1899 | tx_buffer = &tx_ring->tx_buffer_info[tx_ntc]; |
| 1900 | ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1901 | |
| 1902 | /* increment Rx/Tx next to clean counters */ |
| 1903 | rx_ntc++; |
| 1904 | if (rx_ntc == rx_ring->count) |
| 1905 | rx_ntc = 0; |
| 1906 | tx_ntc++; |
| 1907 | if (tx_ntc == tx_ring->count) |
| 1908 | tx_ntc = 0; |
| 1909 | |
| 1910 | /* fetch next descriptor */ |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 1911 | rx_desc = IXGBE_RX_DESC(rx_ring, rx_ntc); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1912 | } |
| 1913 | |
John Fastabend | dad8a3b | 2012-04-23 12:22:39 +0000 | [diff] [blame] | 1914 | netdev_tx_reset_queue(txring_txq(tx_ring)); |
| 1915 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1916 | /* re-map buffers to ring, store next to clean values */ |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1917 | ixgbe_alloc_rx_buffers(rx_ring, count); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1918 | rx_ring->next_to_clean = rx_ntc; |
| 1919 | tx_ring->next_to_clean = tx_ntc; |
| 1920 | |
| 1921 | return count; |
| 1922 | } |
| 1923 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1924 | static int ixgbe_run_loopback_test(struct ixgbe_adapter *adapter) |
| 1925 | { |
| 1926 | struct ixgbe_ring *tx_ring = &adapter->test_tx_ring; |
| 1927 | struct ixgbe_ring *rx_ring = &adapter->test_rx_ring; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1928 | int i, j, lc, good_cnt, ret_val = 0; |
| 1929 | unsigned int size = 1024; |
| 1930 | netdev_tx_t tx_ret_val; |
| 1931 | struct sk_buff *skb; |
Emil Tantilov | 91ffdc8 | 2013-07-23 01:56:58 +0000 | [diff] [blame] | 1932 | u32 flags_orig = adapter->flags; |
| 1933 | |
| 1934 | /* DCB can modify the frames on Tx */ |
| 1935 | adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1936 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1937 | /* allocate test skb */ |
| 1938 | skb = alloc_skb(size, GFP_KERNEL); |
| 1939 | if (!skb) |
| 1940 | return 11; |
| 1941 | |
| 1942 | /* place data into test skb */ |
| 1943 | ixgbe_create_lbtest_frame(skb, size); |
| 1944 | skb_put(skb, size); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1945 | |
| 1946 | /* |
| 1947 | * Calculate the loop count based on the largest descriptor ring |
| 1948 | * The idea is to wrap the largest ring a number of times using 64 |
| 1949 | * send/receive pairs during each loop |
| 1950 | */ |
| 1951 | |
| 1952 | if (rx_ring->count <= tx_ring->count) |
| 1953 | lc = ((tx_ring->count / 64) * 2) + 1; |
| 1954 | else |
| 1955 | lc = ((rx_ring->count / 64) * 2) + 1; |
| 1956 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1957 | for (j = 0; j <= lc; j++) { |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1958 | /* reset count of good packets */ |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1959 | good_cnt = 0; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1960 | |
| 1961 | /* place 64 packets on the transmit queue*/ |
| 1962 | for (i = 0; i < 64; i++) { |
| 1963 | skb_get(skb); |
| 1964 | tx_ret_val = ixgbe_xmit_frame_ring(skb, |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1965 | adapter, |
| 1966 | tx_ring); |
| 1967 | if (tx_ret_val == NETDEV_TX_OK) |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1968 | good_cnt++; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1969 | } |
| 1970 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1971 | if (good_cnt != 64) { |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1972 | ret_val = 12; |
| 1973 | break; |
| 1974 | } |
| 1975 | |
| 1976 | /* allow 200 milliseconds for packets to go from Tx to Rx */ |
| 1977 | msleep(200); |
| 1978 | |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1979 | good_cnt = ixgbe_clean_test_rings(rx_ring, tx_ring, size); |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1980 | if (good_cnt != 64) { |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1981 | ret_val = 13; |
| 1982 | break; |
| 1983 | } |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1984 | } |
| 1985 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1986 | /* free the original skb */ |
| 1987 | kfree_skb(skb); |
Emil Tantilov | 91ffdc8 | 2013-07-23 01:56:58 +0000 | [diff] [blame] | 1988 | adapter->flags = flags_orig; |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 1989 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 1990 | return ret_val; |
| 1991 | } |
| 1992 | |
| 1993 | static int ixgbe_loopback_test(struct ixgbe_adapter *adapter, u64 *data) |
| 1994 | { |
| 1995 | *data = ixgbe_setup_desc_rings(adapter); |
| 1996 | if (*data) |
| 1997 | goto out; |
| 1998 | *data = ixgbe_setup_loopback_test(adapter); |
| 1999 | if (*data) |
| 2000 | goto err_loopback; |
| 2001 | *data = ixgbe_run_loopback_test(adapter); |
| 2002 | ixgbe_loopback_cleanup(adapter); |
| 2003 | |
| 2004 | err_loopback: |
| 2005 | ixgbe_free_desc_rings(adapter); |
| 2006 | out: |
| 2007 | return *data; |
| 2008 | } |
| 2009 | |
| 2010 | static void ixgbe_diag_test(struct net_device *netdev, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 2011 | struct ethtool_test *eth_test, u64 *data) |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 2012 | { |
| 2013 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 2014 | bool if_running = netif_running(netdev); |
| 2015 | |
Mark Rustad | b0483c8 | 2014-01-14 18:53:17 -0800 | [diff] [blame] | 2016 | if (ixgbe_removed(adapter->hw.hw_addr)) { |
| 2017 | e_err(hw, "Adapter removed - test blocked\n"); |
| 2018 | data[0] = 1; |
| 2019 | data[1] = 1; |
| 2020 | data[2] = 1; |
| 2021 | data[3] = 1; |
Mark Rustad | 0edd2bd | 2014-02-28 15:48:56 -0800 | [diff] [blame] | 2022 | data[4] = 1; |
Mark Rustad | b0483c8 | 2014-01-14 18:53:17 -0800 | [diff] [blame] | 2023 | eth_test->flags |= ETH_TEST_FL_FAILED; |
| 2024 | return; |
| 2025 | } |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 2026 | set_bit(__IXGBE_TESTING, &adapter->state); |
| 2027 | if (eth_test->flags == ETH_TEST_FL_OFFLINE) { |
Emil Tantilov | 4ec375b | 2013-07-10 02:47:24 +0000 | [diff] [blame] | 2028 | struct ixgbe_hw *hw = &adapter->hw; |
| 2029 | |
Greg Rose | e7d481a | 2010-03-25 17:06:48 +0000 | [diff] [blame] | 2030 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) { |
| 2031 | int i; |
| 2032 | for (i = 0; i < adapter->num_vfs; i++) { |
| 2033 | if (adapter->vfinfo[i].clear_to_send) { |
Jacob Keller | 6ec1b71 | 2014-04-09 06:03:13 +0000 | [diff] [blame] | 2034 | netdev_warn(netdev, "offline diagnostic is not supported when VFs are present\n"); |
Greg Rose | e7d481a | 2010-03-25 17:06:48 +0000 | [diff] [blame] | 2035 | data[0] = 1; |
| 2036 | data[1] = 1; |
| 2037 | data[2] = 1; |
| 2038 | data[3] = 1; |
Mark Rustad | 0edd2bd | 2014-02-28 15:48:56 -0800 | [diff] [blame] | 2039 | data[4] = 1; |
Greg Rose | e7d481a | 2010-03-25 17:06:48 +0000 | [diff] [blame] | 2040 | eth_test->flags |= ETH_TEST_FL_FAILED; |
| 2041 | clear_bit(__IXGBE_TESTING, |
| 2042 | &adapter->state); |
| 2043 | goto skip_ol_tests; |
| 2044 | } |
| 2045 | } |
| 2046 | } |
| 2047 | |
Jacob Keller | dfcc461 | 2012-11-08 07:07:08 +0000 | [diff] [blame] | 2048 | /* Offline tests */ |
| 2049 | e_info(hw, "offline testing starting\n"); |
| 2050 | |
Jacob Keller | dfcc461 | 2012-11-08 07:07:08 +0000 | [diff] [blame] | 2051 | /* Link test performed before hardware reset so autoneg doesn't |
| 2052 | * interfere with test result |
| 2053 | */ |
| 2054 | if (ixgbe_link_test(adapter, &data[4])) |
| 2055 | eth_test->flags |= ETH_TEST_FL_FAILED; |
| 2056 | |
Emil Tantilov | 4ec375b | 2013-07-10 02:47:24 +0000 | [diff] [blame] | 2057 | if (if_running) |
| 2058 | /* indicate we're in test mode */ |
Stefan Assmann | 6c211fe1 | 2016-02-03 09:20:48 +0100 | [diff] [blame] | 2059 | ixgbe_close(netdev); |
Emil Tantilov | 4ec375b | 2013-07-10 02:47:24 +0000 | [diff] [blame] | 2060 | else |
| 2061 | ixgbe_reset(adapter); |
| 2062 | |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 2063 | e_info(hw, "register testing starting\n"); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 2064 | if (ixgbe_reg_test(adapter, &data[0])) |
| 2065 | eth_test->flags |= ETH_TEST_FL_FAILED; |
| 2066 | |
| 2067 | ixgbe_reset(adapter); |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 2068 | e_info(hw, "eeprom testing starting\n"); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 2069 | if (ixgbe_eeprom_test(adapter, &data[1])) |
| 2070 | eth_test->flags |= ETH_TEST_FL_FAILED; |
| 2071 | |
| 2072 | ixgbe_reset(adapter); |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 2073 | e_info(hw, "interrupt testing starting\n"); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 2074 | if (ixgbe_intr_test(adapter, &data[2])) |
| 2075 | eth_test->flags |= ETH_TEST_FL_FAILED; |
| 2076 | |
Greg Rose | bdbec4b | 2010-01-09 02:27:05 +0000 | [diff] [blame] | 2077 | /* If SRIOV or VMDq is enabled then skip MAC |
| 2078 | * loopback diagnostic. */ |
| 2079 | if (adapter->flags & (IXGBE_FLAG_SRIOV_ENABLED | |
| 2080 | IXGBE_FLAG_VMDQ_ENABLED)) { |
Jacob Keller | 6ec1b71 | 2014-04-09 06:03:13 +0000 | [diff] [blame] | 2081 | e_info(hw, "Skip MAC loopback diagnostic in VT mode\n"); |
Greg Rose | bdbec4b | 2010-01-09 02:27:05 +0000 | [diff] [blame] | 2082 | data[3] = 0; |
| 2083 | goto skip_loopback; |
| 2084 | } |
| 2085 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 2086 | ixgbe_reset(adapter); |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 2087 | e_info(hw, "loopback testing starting\n"); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 2088 | if (ixgbe_loopback_test(adapter, &data[3])) |
| 2089 | eth_test->flags |= ETH_TEST_FL_FAILED; |
| 2090 | |
Greg Rose | bdbec4b | 2010-01-09 02:27:05 +0000 | [diff] [blame] | 2091 | skip_loopback: |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 2092 | ixgbe_reset(adapter); |
| 2093 | |
Jacob Keller | dfcc461 | 2012-11-08 07:07:08 +0000 | [diff] [blame] | 2094 | /* clear testing bit and return adapter to previous state */ |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 2095 | clear_bit(__IXGBE_TESTING, &adapter->state); |
| 2096 | if (if_running) |
Stefan Assmann | 6c211fe1 | 2016-02-03 09:20:48 +0100 | [diff] [blame] | 2097 | ixgbe_open(netdev); |
Emil Tantilov | 4ec375b | 2013-07-10 02:47:24 +0000 | [diff] [blame] | 2098 | else if (hw->mac.ops.disable_tx_laser) |
| 2099 | hw->mac.ops.disable_tx_laser(hw); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 2100 | } else { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 2101 | e_info(hw, "online testing starting\n"); |
Jacob Keller | dfcc461 | 2012-11-08 07:07:08 +0000 | [diff] [blame] | 2102 | |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 2103 | /* Online tests */ |
| 2104 | if (ixgbe_link_test(adapter, &data[4])) |
| 2105 | eth_test->flags |= ETH_TEST_FL_FAILED; |
| 2106 | |
Jacob Keller | dfcc461 | 2012-11-08 07:07:08 +0000 | [diff] [blame] | 2107 | /* Offline tests aren't run; pass by default */ |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 2108 | data[0] = 0; |
| 2109 | data[1] = 0; |
| 2110 | data[2] = 0; |
| 2111 | data[3] = 0; |
| 2112 | |
| 2113 | clear_bit(__IXGBE_TESTING, &adapter->state); |
| 2114 | } |
Jacob Keller | dfcc461 | 2012-11-08 07:07:08 +0000 | [diff] [blame] | 2115 | |
Greg Rose | e7d481a | 2010-03-25 17:06:48 +0000 | [diff] [blame] | 2116 | skip_ol_tests: |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 2117 | msleep_interruptible(4 * 1000); |
| 2118 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2119 | |
Alexander Duyck | d6c519e | 2009-04-08 13:20:50 +0000 | [diff] [blame] | 2120 | static int ixgbe_wol_exclusion(struct ixgbe_adapter *adapter, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 2121 | struct ethtool_wolinfo *wol) |
Alexander Duyck | d6c519e | 2009-04-08 13:20:50 +0000 | [diff] [blame] | 2122 | { |
| 2123 | struct ixgbe_hw *hw = &adapter->hw; |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 2124 | int retval = 0; |
Alexander Duyck | d6c519e | 2009-04-08 13:20:50 +0000 | [diff] [blame] | 2125 | |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 2126 | /* WOL not supported for all devices */ |
| 2127 | if (!ixgbe_wol_supported(adapter, hw->device_id, |
| 2128 | hw->subsystem_device_id)) { |
| 2129 | retval = 1; |
Alexander Duyck | d6c519e | 2009-04-08 13:20:50 +0000 | [diff] [blame] | 2130 | wol->supported = 0; |
Alexander Duyck | d6c519e | 2009-04-08 13:20:50 +0000 | [diff] [blame] | 2131 | } |
| 2132 | |
| 2133 | return retval; |
| 2134 | } |
| 2135 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2136 | static void ixgbe_get_wol(struct net_device *netdev, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 2137 | struct ethtool_wolinfo *wol) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2138 | { |
PJ Waskiewicz | e63d976 | 2009-03-19 01:23:46 +0000 | [diff] [blame] | 2139 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 2140 | |
| 2141 | wol->supported = WAKE_UCAST | WAKE_MCAST | |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 2142 | WAKE_BCAST | WAKE_MAGIC; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2143 | wol->wolopts = 0; |
| 2144 | |
Alexander Duyck | d6c519e | 2009-04-08 13:20:50 +0000 | [diff] [blame] | 2145 | if (ixgbe_wol_exclusion(adapter, wol) || |
| 2146 | !device_can_wakeup(&adapter->pdev->dev)) |
PJ Waskiewicz | e63d976 | 2009-03-19 01:23:46 +0000 | [diff] [blame] | 2147 | return; |
| 2148 | |
| 2149 | if (adapter->wol & IXGBE_WUFC_EX) |
| 2150 | wol->wolopts |= WAKE_UCAST; |
| 2151 | if (adapter->wol & IXGBE_WUFC_MC) |
| 2152 | wol->wolopts |= WAKE_MCAST; |
| 2153 | if (adapter->wol & IXGBE_WUFC_BC) |
| 2154 | wol->wolopts |= WAKE_BCAST; |
| 2155 | if (adapter->wol & IXGBE_WUFC_MAG) |
| 2156 | wol->wolopts |= WAKE_MAGIC; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2157 | } |
| 2158 | |
PJ Waskiewicz | e63d976 | 2009-03-19 01:23:46 +0000 | [diff] [blame] | 2159 | static int ixgbe_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol) |
| 2160 | { |
| 2161 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 2162 | |
| 2163 | if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE)) |
| 2164 | return -EOPNOTSUPP; |
| 2165 | |
Alexander Duyck | d6c519e | 2009-04-08 13:20:50 +0000 | [diff] [blame] | 2166 | if (ixgbe_wol_exclusion(adapter, wol)) |
| 2167 | return wol->wolopts ? -EOPNOTSUPP : 0; |
| 2168 | |
PJ Waskiewicz | e63d976 | 2009-03-19 01:23:46 +0000 | [diff] [blame] | 2169 | adapter->wol = 0; |
| 2170 | |
| 2171 | if (wol->wolopts & WAKE_UCAST) |
| 2172 | adapter->wol |= IXGBE_WUFC_EX; |
| 2173 | if (wol->wolopts & WAKE_MCAST) |
| 2174 | adapter->wol |= IXGBE_WUFC_MC; |
| 2175 | if (wol->wolopts & WAKE_BCAST) |
| 2176 | adapter->wol |= IXGBE_WUFC_BC; |
| 2177 | if (wol->wolopts & WAKE_MAGIC) |
| 2178 | adapter->wol |= IXGBE_WUFC_MAG; |
| 2179 | |
| 2180 | device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol); |
| 2181 | |
| 2182 | return 0; |
| 2183 | } |
| 2184 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2185 | static int ixgbe_nway_reset(struct net_device *netdev) |
| 2186 | { |
| 2187 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 2188 | |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 2189 | if (netif_running(netdev)) |
| 2190 | ixgbe_reinit_locked(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2191 | |
| 2192 | return 0; |
| 2193 | } |
| 2194 | |
Emil Tantilov | 66e6961 | 2011-04-16 06:12:51 +0000 | [diff] [blame] | 2195 | static int ixgbe_set_phys_id(struct net_device *netdev, |
| 2196 | enum ethtool_phys_id_state state) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2197 | { |
| 2198 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2199 | struct ixgbe_hw *hw = &adapter->hw; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2200 | |
Emil Tantilov | 66e6961 | 2011-04-16 06:12:51 +0000 | [diff] [blame] | 2201 | switch (state) { |
| 2202 | case ETHTOOL_ID_ACTIVE: |
| 2203 | adapter->led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); |
| 2204 | return 2; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2205 | |
Emil Tantilov | 66e6961 | 2011-04-16 06:12:51 +0000 | [diff] [blame] | 2206 | case ETHTOOL_ID_ON: |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2207 | hw->mac.ops.led_on(hw, IXGBE_LED_ON); |
Emil Tantilov | 66e6961 | 2011-04-16 06:12:51 +0000 | [diff] [blame] | 2208 | break; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2209 | |
Emil Tantilov | 66e6961 | 2011-04-16 06:12:51 +0000 | [diff] [blame] | 2210 | case ETHTOOL_ID_OFF: |
| 2211 | hw->mac.ops.led_off(hw, IXGBE_LED_ON); |
| 2212 | break; |
| 2213 | |
| 2214 | case ETHTOOL_ID_INACTIVE: |
| 2215 | /* Restore LED settings */ |
| 2216 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_LEDCTL, adapter->led_reg); |
| 2217 | break; |
| 2218 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2219 | |
| 2220 | return 0; |
| 2221 | } |
| 2222 | |
| 2223 | static int ixgbe_get_coalesce(struct net_device *netdev, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 2224 | struct ethtool_coalesce *ec) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2225 | { |
| 2226 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 2227 | |
Jesse Brandeburg | 30efa5a | 2008-09-11 19:58:14 -0700 | [diff] [blame] | 2228 | /* only valid if in constant ITR mode */ |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2229 | if (adapter->rx_itr_setting <= 1) |
| 2230 | ec->rx_coalesce_usecs = adapter->rx_itr_setting; |
| 2231 | else |
| 2232 | ec->rx_coalesce_usecs = adapter->rx_itr_setting >> 2; |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 2233 | |
Shannon Nelson | cfb3f91 | 2009-11-24 18:51:06 +0000 | [diff] [blame] | 2234 | /* 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] | 2235 | 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] | 2236 | return 0; |
| 2237 | |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 2238 | /* only valid if in constant ITR mode */ |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2239 | if (adapter->tx_itr_setting <= 1) |
| 2240 | ec->tx_coalesce_usecs = adapter->tx_itr_setting; |
| 2241 | else |
| 2242 | ec->tx_coalesce_usecs = adapter->tx_itr_setting >> 2; |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 2243 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2244 | return 0; |
| 2245 | } |
| 2246 | |
Alexander Duyck | 80fba3f | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2247 | /* |
| 2248 | * this function must be called before setting the new value of |
| 2249 | * rx_itr_setting |
| 2250 | */ |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 2251 | static bool ixgbe_update_rsc(struct ixgbe_adapter *adapter) |
Alexander Duyck | 80fba3f | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2252 | { |
| 2253 | struct net_device *netdev = adapter->netdev; |
| 2254 | |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 2255 | /* nothing to do if LRO or RSC are not enabled */ |
| 2256 | if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) || |
| 2257 | !(netdev->features & NETIF_F_LRO)) |
Alexander Duyck | 80fba3f | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2258 | return false; |
| 2259 | |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 2260 | /* check the feature flag value and enable RSC if necessary */ |
| 2261 | if (adapter->rx_itr_setting == 1 || |
| 2262 | adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) { |
| 2263 | if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) { |
Alexander Duyck | 80fba3f | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2264 | adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED; |
Jacob Keller | 6ec1b71 | 2014-04-09 06:03:13 +0000 | [diff] [blame] | 2265 | e_info(probe, "rx-usecs value high enough to re-enable RSC\n"); |
Alexander Duyck | 80fba3f | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2266 | return true; |
| 2267 | } |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 2268 | /* if interrupt rate is too high then disable RSC */ |
| 2269 | } else if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) { |
| 2270 | adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED; |
| 2271 | e_info(probe, "rx-usecs set too low, disabling RSC\n"); |
| 2272 | return true; |
Alexander Duyck | 80fba3f | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2273 | } |
| 2274 | return false; |
| 2275 | } |
| 2276 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2277 | static int ixgbe_set_coalesce(struct net_device *netdev, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 2278 | struct ethtool_coalesce *ec) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2279 | { |
| 2280 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Don Skidmore | 237057a | 2009-08-11 13:18:14 +0000 | [diff] [blame] | 2281 | struct ixgbe_q_vector *q_vector; |
Jesse Brandeburg | 30efa5a | 2008-09-11 19:58:14 -0700 | [diff] [blame] | 2282 | int i; |
Emil Tantilov | 67da097 | 2013-01-25 06:19:20 +0000 | [diff] [blame] | 2283 | u16 tx_itr_param, rx_itr_param, tx_itr_prev; |
Jesse Brandeburg | ef02119 | 2010-04-27 01:37:41 +0000 | [diff] [blame] | 2284 | bool need_reset = false; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2285 | |
Emil Tantilov | 67da097 | 2013-01-25 06:19:20 +0000 | [diff] [blame] | 2286 | if (adapter->q_vector[0]->tx.count && adapter->q_vector[0]->rx.count) { |
| 2287 | /* reject Tx specific changes in case of mixed RxTx vectors */ |
| 2288 | if (ec->tx_coalesce_usecs) |
| 2289 | return -EINVAL; |
| 2290 | tx_itr_prev = adapter->rx_itr_setting; |
| 2291 | } else { |
| 2292 | tx_itr_prev = adapter->tx_itr_setting; |
| 2293 | } |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 2294 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2295 | if ((ec->rx_coalesce_usecs > (IXGBE_MAX_EITR >> 2)) || |
| 2296 | (ec->tx_coalesce_usecs > (IXGBE_MAX_EITR >> 2))) |
| 2297 | return -EINVAL; |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 2298 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2299 | if (ec->rx_coalesce_usecs > 1) |
| 2300 | adapter->rx_itr_setting = ec->rx_coalesce_usecs << 2; |
| 2301 | else |
| 2302 | adapter->rx_itr_setting = ec->rx_coalesce_usecs; |
Jesse Brandeburg | 30efa5a | 2008-09-11 19:58:14 -0700 | [diff] [blame] | 2303 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2304 | if (adapter->rx_itr_setting == 1) |
| 2305 | rx_itr_param = IXGBE_20K_ITR; |
| 2306 | else |
| 2307 | rx_itr_param = adapter->rx_itr_setting; |
Alexander Duyck | 80fba3f | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2308 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2309 | if (ec->tx_coalesce_usecs > 1) |
| 2310 | adapter->tx_itr_setting = ec->tx_coalesce_usecs << 2; |
| 2311 | else |
| 2312 | adapter->tx_itr_setting = ec->tx_coalesce_usecs; |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 2313 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2314 | if (adapter->tx_itr_setting == 1) |
Alexander Duyck | 8ac34f1 | 2015-07-30 15:19:28 -0700 | [diff] [blame] | 2315 | tx_itr_param = IXGBE_12K_ITR; |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2316 | else |
| 2317 | tx_itr_param = adapter->tx_itr_setting; |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 2318 | |
Emil Tantilov | 67da097 | 2013-01-25 06:19:20 +0000 | [diff] [blame] | 2319 | /* mixed Rx/Tx */ |
| 2320 | if (adapter->q_vector[0]->tx.count && adapter->q_vector[0]->rx.count) |
| 2321 | adapter->tx_itr_setting = adapter->rx_itr_setting; |
| 2322 | |
Emil Tantilov | 67da097 | 2013-01-25 06:19:20 +0000 | [diff] [blame] | 2323 | /* detect ITR changes that require update of TXDCTL.WTHRESH */ |
Emil Tantilov | 2e01038 | 2013-10-22 08:21:04 +0000 | [diff] [blame] | 2324 | if ((adapter->tx_itr_setting != 1) && |
Emil Tantilov | 67da097 | 2013-01-25 06:19:20 +0000 | [diff] [blame] | 2325 | (adapter->tx_itr_setting < IXGBE_100K_ITR)) { |
| 2326 | if ((tx_itr_prev == 1) || |
Emil Tantilov | 2e01038 | 2013-10-22 08:21:04 +0000 | [diff] [blame] | 2327 | (tx_itr_prev >= IXGBE_100K_ITR)) |
Emil Tantilov | 67da097 | 2013-01-25 06:19:20 +0000 | [diff] [blame] | 2328 | need_reset = true; |
| 2329 | } else { |
Emil Tantilov | 2e01038 | 2013-10-22 08:21:04 +0000 | [diff] [blame] | 2330 | if ((tx_itr_prev != 1) && |
Emil Tantilov | 67da097 | 2013-01-25 06:19:20 +0000 | [diff] [blame] | 2331 | (tx_itr_prev < IXGBE_100K_ITR)) |
| 2332 | need_reset = true; |
| 2333 | } |
Emil Tantilov | ffefa9f | 2014-09-18 08:05:02 +0000 | [diff] [blame] | 2334 | |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 2335 | /* check the old value and enable RSC if necessary */ |
Emil Tantilov | 67da097 | 2013-01-25 06:19:20 +0000 | [diff] [blame] | 2336 | need_reset |= ixgbe_update_rsc(adapter); |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 2337 | |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 2338 | for (i = 0; i < adapter->num_q_vectors; i++) { |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2339 | q_vector = adapter->q_vector[i]; |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2340 | if (q_vector->tx.count && !q_vector->rx.count) |
| 2341 | /* tx only */ |
| 2342 | q_vector->itr = tx_itr_param; |
| 2343 | else |
| 2344 | /* rx only or mixed */ |
| 2345 | q_vector->itr = rx_itr_param; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2346 | ixgbe_write_eitr(q_vector); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2347 | } |
| 2348 | |
Jesse Brandeburg | ef02119 | 2010-04-27 01:37:41 +0000 | [diff] [blame] | 2349 | /* |
| 2350 | * do reset here at the end to make sure EITR==0 case is handled |
| 2351 | * correctly w.r.t stopping tx, and changing TXDCTL.WTHRESH settings |
| 2352 | * also locks in RSC enable/disable which requires reset |
| 2353 | */ |
Emil Tantilov | c988ee8 | 2011-05-13 02:22:45 +0000 | [diff] [blame] | 2354 | if (need_reset) |
| 2355 | ixgbe_do_reset(netdev); |
Jesse Brandeburg | ef02119 | 2010-04-27 01:37:41 +0000 | [diff] [blame] | 2356 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2357 | return 0; |
| 2358 | } |
| 2359 | |
Alexander Duyck | 3e05334 | 2011-05-11 07:18:47 +0000 | [diff] [blame] | 2360 | static int ixgbe_get_ethtool_fdir_entry(struct ixgbe_adapter *adapter, |
| 2361 | struct ethtool_rxnfc *cmd) |
| 2362 | { |
| 2363 | union ixgbe_atr_input *mask = &adapter->fdir_mask; |
| 2364 | struct ethtool_rx_flow_spec *fsp = |
| 2365 | (struct ethtool_rx_flow_spec *)&cmd->fs; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2366 | struct hlist_node *node2; |
Alexander Duyck | 3e05334 | 2011-05-11 07:18:47 +0000 | [diff] [blame] | 2367 | struct ixgbe_fdir_filter *rule = NULL; |
| 2368 | |
| 2369 | /* report total rule count */ |
| 2370 | cmd->data = (1024 << adapter->fdir_pballoc) - 2; |
| 2371 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2372 | hlist_for_each_entry_safe(rule, node2, |
Alexander Duyck | 3e05334 | 2011-05-11 07:18:47 +0000 | [diff] [blame] | 2373 | &adapter->fdir_filter_list, fdir_node) { |
| 2374 | if (fsp->location <= rule->sw_idx) |
| 2375 | break; |
| 2376 | } |
| 2377 | |
| 2378 | if (!rule || fsp->location != rule->sw_idx) |
| 2379 | return -EINVAL; |
| 2380 | |
| 2381 | /* fill out the flow spec entry */ |
| 2382 | |
| 2383 | /* set flow type field */ |
| 2384 | switch (rule->filter.formatted.flow_type) { |
| 2385 | case IXGBE_ATR_FLOW_TYPE_TCPV4: |
| 2386 | fsp->flow_type = TCP_V4_FLOW; |
| 2387 | break; |
| 2388 | case IXGBE_ATR_FLOW_TYPE_UDPV4: |
| 2389 | fsp->flow_type = UDP_V4_FLOW; |
| 2390 | break; |
| 2391 | case IXGBE_ATR_FLOW_TYPE_SCTPV4: |
| 2392 | fsp->flow_type = SCTP_V4_FLOW; |
| 2393 | break; |
| 2394 | case IXGBE_ATR_FLOW_TYPE_IPV4: |
| 2395 | fsp->flow_type = IP_USER_FLOW; |
| 2396 | fsp->h_u.usr_ip4_spec.ip_ver = ETH_RX_NFC_IP4; |
| 2397 | fsp->h_u.usr_ip4_spec.proto = 0; |
| 2398 | fsp->m_u.usr_ip4_spec.proto = 0; |
| 2399 | break; |
| 2400 | default: |
| 2401 | return -EINVAL; |
| 2402 | } |
| 2403 | |
| 2404 | fsp->h_u.tcp_ip4_spec.psrc = rule->filter.formatted.src_port; |
| 2405 | fsp->m_u.tcp_ip4_spec.psrc = mask->formatted.src_port; |
| 2406 | fsp->h_u.tcp_ip4_spec.pdst = rule->filter.formatted.dst_port; |
| 2407 | fsp->m_u.tcp_ip4_spec.pdst = mask->formatted.dst_port; |
| 2408 | fsp->h_u.tcp_ip4_spec.ip4src = rule->filter.formatted.src_ip[0]; |
| 2409 | fsp->m_u.tcp_ip4_spec.ip4src = mask->formatted.src_ip[0]; |
| 2410 | fsp->h_u.tcp_ip4_spec.ip4dst = rule->filter.formatted.dst_ip[0]; |
| 2411 | fsp->m_u.tcp_ip4_spec.ip4dst = mask->formatted.dst_ip[0]; |
| 2412 | fsp->h_ext.vlan_tci = rule->filter.formatted.vlan_id; |
| 2413 | fsp->m_ext.vlan_tci = mask->formatted.vlan_id; |
| 2414 | fsp->h_ext.vlan_etype = rule->filter.formatted.flex_bytes; |
| 2415 | fsp->m_ext.vlan_etype = mask->formatted.flex_bytes; |
| 2416 | fsp->h_ext.data[1] = htonl(rule->filter.formatted.vm_pool); |
| 2417 | fsp->m_ext.data[1] = htonl(mask->formatted.vm_pool); |
| 2418 | fsp->flow_type |= FLOW_EXT; |
| 2419 | |
| 2420 | /* record action */ |
| 2421 | if (rule->action == IXGBE_FDIR_DROP_QUEUE) |
| 2422 | fsp->ring_cookie = RX_CLS_FLOW_DISC; |
| 2423 | else |
| 2424 | fsp->ring_cookie = rule->action; |
| 2425 | |
| 2426 | return 0; |
| 2427 | } |
| 2428 | |
| 2429 | static int ixgbe_get_ethtool_fdir_all(struct ixgbe_adapter *adapter, |
| 2430 | struct ethtool_rxnfc *cmd, |
| 2431 | u32 *rule_locs) |
| 2432 | { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2433 | struct hlist_node *node2; |
Alexander Duyck | 3e05334 | 2011-05-11 07:18:47 +0000 | [diff] [blame] | 2434 | struct ixgbe_fdir_filter *rule; |
| 2435 | int cnt = 0; |
| 2436 | |
| 2437 | /* report total rule count */ |
| 2438 | cmd->data = (1024 << adapter->fdir_pballoc) - 2; |
| 2439 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2440 | hlist_for_each_entry_safe(rule, node2, |
Alexander Duyck | 3e05334 | 2011-05-11 07:18:47 +0000 | [diff] [blame] | 2441 | &adapter->fdir_filter_list, fdir_node) { |
| 2442 | if (cnt == cmd->rule_cnt) |
| 2443 | return -EMSGSIZE; |
| 2444 | rule_locs[cnt] = rule->sw_idx; |
| 2445 | cnt++; |
| 2446 | } |
| 2447 | |
Ben Hutchings | 473e64e | 2011-09-06 13:52:47 +0000 | [diff] [blame] | 2448 | cmd->rule_cnt = cnt; |
| 2449 | |
Alexander Duyck | 3e05334 | 2011-05-11 07:18:47 +0000 | [diff] [blame] | 2450 | return 0; |
| 2451 | } |
| 2452 | |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 2453 | static int ixgbe_get_rss_hash_opts(struct ixgbe_adapter *adapter, |
| 2454 | struct ethtool_rxnfc *cmd) |
| 2455 | { |
| 2456 | cmd->data = 0; |
| 2457 | |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 2458 | /* Report default options for RSS on ixgbe */ |
| 2459 | switch (cmd->flow_type) { |
| 2460 | case TCP_V4_FLOW: |
| 2461 | cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3; |
Jacob Keller | 3bf2379 | 2014-04-09 06:03:17 +0000 | [diff] [blame] | 2462 | /* fallthrough */ |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 2463 | case UDP_V4_FLOW: |
| 2464 | if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP) |
| 2465 | cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3; |
Jacob Keller | 3bf2379 | 2014-04-09 06:03:17 +0000 | [diff] [blame] | 2466 | /* fallthrough */ |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 2467 | case SCTP_V4_FLOW: |
| 2468 | case AH_ESP_V4_FLOW: |
| 2469 | case AH_V4_FLOW: |
| 2470 | case ESP_V4_FLOW: |
| 2471 | case IPV4_FLOW: |
| 2472 | cmd->data |= RXH_IP_SRC | RXH_IP_DST; |
| 2473 | break; |
| 2474 | case TCP_V6_FLOW: |
| 2475 | cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3; |
Jacob Keller | 3bf2379 | 2014-04-09 06:03:17 +0000 | [diff] [blame] | 2476 | /* fallthrough */ |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 2477 | case UDP_V6_FLOW: |
| 2478 | if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP) |
| 2479 | cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3; |
Jacob Keller | 3bf2379 | 2014-04-09 06:03:17 +0000 | [diff] [blame] | 2480 | /* fallthrough */ |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 2481 | case SCTP_V6_FLOW: |
| 2482 | case AH_ESP_V6_FLOW: |
| 2483 | case AH_V6_FLOW: |
| 2484 | case ESP_V6_FLOW: |
| 2485 | case IPV6_FLOW: |
| 2486 | cmd->data |= RXH_IP_SRC | RXH_IP_DST; |
| 2487 | break; |
| 2488 | default: |
| 2489 | return -EINVAL; |
| 2490 | } |
| 2491 | |
| 2492 | return 0; |
| 2493 | } |
| 2494 | |
Alexander Duyck | 91cd94b | 2011-05-11 07:18:41 +0000 | [diff] [blame] | 2495 | 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] | 2496 | u32 *rule_locs) |
Alexander Duyck | 91cd94b | 2011-05-11 07:18:41 +0000 | [diff] [blame] | 2497 | { |
| 2498 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 2499 | int ret = -EOPNOTSUPP; |
| 2500 | |
| 2501 | switch (cmd->cmd) { |
| 2502 | case ETHTOOL_GRXRINGS: |
| 2503 | cmd->data = adapter->num_rx_queues; |
| 2504 | ret = 0; |
| 2505 | break; |
Alexander Duyck | 3e05334 | 2011-05-11 07:18:47 +0000 | [diff] [blame] | 2506 | case ETHTOOL_GRXCLSRLCNT: |
| 2507 | cmd->rule_cnt = adapter->fdir_filter_count; |
| 2508 | ret = 0; |
| 2509 | break; |
| 2510 | case ETHTOOL_GRXCLSRULE: |
| 2511 | ret = ixgbe_get_ethtool_fdir_entry(adapter, cmd); |
| 2512 | break; |
| 2513 | case ETHTOOL_GRXCLSRLALL: |
Ben Hutchings | 815c7db | 2011-09-06 13:49:12 +0000 | [diff] [blame] | 2514 | ret = ixgbe_get_ethtool_fdir_all(adapter, cmd, rule_locs); |
Alexander Duyck | 3e05334 | 2011-05-11 07:18:47 +0000 | [diff] [blame] | 2515 | break; |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 2516 | case ETHTOOL_GRXFH: |
| 2517 | ret = ixgbe_get_rss_hash_opts(adapter, cmd); |
| 2518 | break; |
Alexander Duyck | 91cd94b | 2011-05-11 07:18:41 +0000 | [diff] [blame] | 2519 | default: |
| 2520 | break; |
| 2521 | } |
| 2522 | |
| 2523 | return ret; |
| 2524 | } |
| 2525 | |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 2526 | int ixgbe_update_ethtool_fdir_entry(struct ixgbe_adapter *adapter, |
| 2527 | struct ixgbe_fdir_filter *input, |
| 2528 | u16 sw_idx) |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 2529 | { |
| 2530 | struct ixgbe_hw *hw = &adapter->hw; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2531 | struct hlist_node *node2; |
| 2532 | struct ixgbe_fdir_filter *rule, *parent; |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 2533 | int err = -EINVAL; |
| 2534 | |
| 2535 | parent = NULL; |
| 2536 | rule = NULL; |
| 2537 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2538 | hlist_for_each_entry_safe(rule, node2, |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 2539 | &adapter->fdir_filter_list, fdir_node) { |
| 2540 | /* hash found, or no matching entry */ |
| 2541 | if (rule->sw_idx >= sw_idx) |
| 2542 | break; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2543 | parent = rule; |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 2544 | } |
| 2545 | |
| 2546 | /* if there is an old rule occupying our place remove it */ |
| 2547 | if (rule && (rule->sw_idx == sw_idx)) { |
| 2548 | if (!input || (rule->filter.formatted.bkt_hash != |
| 2549 | input->filter.formatted.bkt_hash)) { |
| 2550 | err = ixgbe_fdir_erase_perfect_filter_82599(hw, |
| 2551 | &rule->filter, |
| 2552 | sw_idx); |
| 2553 | } |
| 2554 | |
| 2555 | hlist_del(&rule->fdir_node); |
| 2556 | kfree(rule); |
| 2557 | adapter->fdir_filter_count--; |
| 2558 | } |
| 2559 | |
| 2560 | /* |
| 2561 | * If no input this was a delete, err should be 0 if a rule was |
| 2562 | * successfully found and removed from the list else -EINVAL |
| 2563 | */ |
| 2564 | if (!input) |
| 2565 | return err; |
| 2566 | |
| 2567 | /* initialize node and set software index */ |
| 2568 | INIT_HLIST_NODE(&input->fdir_node); |
| 2569 | |
| 2570 | /* add filter to the list */ |
| 2571 | if (parent) |
Ken Helias | 1d02328 | 2014-08-06 16:09:16 -0700 | [diff] [blame] | 2572 | hlist_add_behind(&input->fdir_node, &parent->fdir_node); |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 2573 | else |
| 2574 | hlist_add_head(&input->fdir_node, |
| 2575 | &adapter->fdir_filter_list); |
| 2576 | |
| 2577 | /* update counts */ |
| 2578 | adapter->fdir_filter_count++; |
| 2579 | |
| 2580 | return 0; |
| 2581 | } |
| 2582 | |
| 2583 | static int ixgbe_flowspec_to_flow_type(struct ethtool_rx_flow_spec *fsp, |
| 2584 | u8 *flow_type) |
| 2585 | { |
| 2586 | switch (fsp->flow_type & ~FLOW_EXT) { |
| 2587 | case TCP_V4_FLOW: |
| 2588 | *flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4; |
| 2589 | break; |
| 2590 | case UDP_V4_FLOW: |
| 2591 | *flow_type = IXGBE_ATR_FLOW_TYPE_UDPV4; |
| 2592 | break; |
| 2593 | case SCTP_V4_FLOW: |
| 2594 | *flow_type = IXGBE_ATR_FLOW_TYPE_SCTPV4; |
| 2595 | break; |
| 2596 | case IP_USER_FLOW: |
| 2597 | switch (fsp->h_u.usr_ip4_spec.proto) { |
| 2598 | case IPPROTO_TCP: |
| 2599 | *flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4; |
| 2600 | break; |
| 2601 | case IPPROTO_UDP: |
| 2602 | *flow_type = IXGBE_ATR_FLOW_TYPE_UDPV4; |
| 2603 | break; |
| 2604 | case IPPROTO_SCTP: |
| 2605 | *flow_type = IXGBE_ATR_FLOW_TYPE_SCTPV4; |
| 2606 | break; |
| 2607 | case 0: |
| 2608 | if (!fsp->m_u.usr_ip4_spec.proto) { |
| 2609 | *flow_type = IXGBE_ATR_FLOW_TYPE_IPV4; |
| 2610 | break; |
| 2611 | } |
| 2612 | default: |
| 2613 | return 0; |
| 2614 | } |
| 2615 | break; |
| 2616 | default: |
| 2617 | return 0; |
| 2618 | } |
| 2619 | |
| 2620 | return 1; |
| 2621 | } |
| 2622 | |
| 2623 | static int ixgbe_add_ethtool_fdir_entry(struct ixgbe_adapter *adapter, |
| 2624 | struct ethtool_rxnfc *cmd) |
| 2625 | { |
| 2626 | struct ethtool_rx_flow_spec *fsp = |
| 2627 | (struct ethtool_rx_flow_spec *)&cmd->fs; |
| 2628 | struct ixgbe_hw *hw = &adapter->hw; |
| 2629 | struct ixgbe_fdir_filter *input; |
| 2630 | union ixgbe_atr_input mask; |
John Fastabend | 7aac842 | 2015-05-26 08:23:33 -0700 | [diff] [blame] | 2631 | u8 queue; |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 2632 | int err; |
| 2633 | |
| 2634 | if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) |
| 2635 | return -EOPNOTSUPP; |
| 2636 | |
John Fastabend | 7aac842 | 2015-05-26 08:23:33 -0700 | [diff] [blame] | 2637 | /* ring_cookie is a masked into a set of queues and ixgbe pools or |
| 2638 | * we use the drop index. |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 2639 | */ |
John Fastabend | 7aac842 | 2015-05-26 08:23:33 -0700 | [diff] [blame] | 2640 | if (fsp->ring_cookie == RX_CLS_FLOW_DISC) { |
| 2641 | queue = IXGBE_FDIR_DROP_QUEUE; |
| 2642 | } else { |
| 2643 | u32 ring = ethtool_get_flow_spec_ring(fsp->ring_cookie); |
| 2644 | u8 vf = ethtool_get_flow_spec_ring_vf(fsp->ring_cookie); |
| 2645 | |
| 2646 | if (!vf && (ring >= adapter->num_rx_queues)) |
| 2647 | return -EINVAL; |
| 2648 | else if (vf && |
| 2649 | ((vf > adapter->num_vfs) || |
| 2650 | ring >= adapter->num_rx_queues_per_pool)) |
| 2651 | return -EINVAL; |
| 2652 | |
| 2653 | /* Map the ring onto the absolute queue index */ |
| 2654 | if (!vf) |
| 2655 | queue = adapter->rx_ring[ring]->reg_idx; |
| 2656 | else |
| 2657 | queue = ((vf - 1) * |
| 2658 | adapter->num_rx_queues_per_pool) + ring; |
| 2659 | } |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 2660 | |
| 2661 | /* Don't allow indexes to exist outside of available space */ |
| 2662 | if (fsp->location >= ((1024 << adapter->fdir_pballoc) - 2)) { |
| 2663 | e_err(drv, "Location out of range\n"); |
| 2664 | return -EINVAL; |
| 2665 | } |
| 2666 | |
| 2667 | input = kzalloc(sizeof(*input), GFP_ATOMIC); |
| 2668 | if (!input) |
| 2669 | return -ENOMEM; |
| 2670 | |
| 2671 | memset(&mask, 0, sizeof(union ixgbe_atr_input)); |
| 2672 | |
| 2673 | /* set SW index */ |
| 2674 | input->sw_idx = fsp->location; |
| 2675 | |
| 2676 | /* record flow type */ |
| 2677 | if (!ixgbe_flowspec_to_flow_type(fsp, |
| 2678 | &input->filter.formatted.flow_type)) { |
| 2679 | e_err(drv, "Unrecognized flow type\n"); |
| 2680 | goto err_out; |
| 2681 | } |
| 2682 | |
| 2683 | mask.formatted.flow_type = IXGBE_ATR_L4TYPE_IPV6_MASK | |
| 2684 | IXGBE_ATR_L4TYPE_MASK; |
| 2685 | |
| 2686 | if (input->filter.formatted.flow_type == IXGBE_ATR_FLOW_TYPE_IPV4) |
| 2687 | mask.formatted.flow_type &= IXGBE_ATR_L4TYPE_IPV6_MASK; |
| 2688 | |
| 2689 | /* Copy input into formatted structures */ |
| 2690 | input->filter.formatted.src_ip[0] = fsp->h_u.tcp_ip4_spec.ip4src; |
| 2691 | mask.formatted.src_ip[0] = fsp->m_u.tcp_ip4_spec.ip4src; |
| 2692 | input->filter.formatted.dst_ip[0] = fsp->h_u.tcp_ip4_spec.ip4dst; |
| 2693 | mask.formatted.dst_ip[0] = fsp->m_u.tcp_ip4_spec.ip4dst; |
| 2694 | input->filter.formatted.src_port = fsp->h_u.tcp_ip4_spec.psrc; |
| 2695 | mask.formatted.src_port = fsp->m_u.tcp_ip4_spec.psrc; |
| 2696 | input->filter.formatted.dst_port = fsp->h_u.tcp_ip4_spec.pdst; |
| 2697 | mask.formatted.dst_port = fsp->m_u.tcp_ip4_spec.pdst; |
| 2698 | |
| 2699 | if (fsp->flow_type & FLOW_EXT) { |
| 2700 | input->filter.formatted.vm_pool = |
| 2701 | (unsigned char)ntohl(fsp->h_ext.data[1]); |
| 2702 | mask.formatted.vm_pool = |
| 2703 | (unsigned char)ntohl(fsp->m_ext.data[1]); |
| 2704 | input->filter.formatted.vlan_id = fsp->h_ext.vlan_tci; |
| 2705 | mask.formatted.vlan_id = fsp->m_ext.vlan_tci; |
| 2706 | input->filter.formatted.flex_bytes = |
| 2707 | fsp->h_ext.vlan_etype; |
| 2708 | mask.formatted.flex_bytes = fsp->m_ext.vlan_etype; |
| 2709 | } |
| 2710 | |
| 2711 | /* determine if we need to drop or route the packet */ |
| 2712 | if (fsp->ring_cookie == RX_CLS_FLOW_DISC) |
| 2713 | input->action = IXGBE_FDIR_DROP_QUEUE; |
| 2714 | else |
| 2715 | input->action = fsp->ring_cookie; |
| 2716 | |
| 2717 | spin_lock(&adapter->fdir_perfect_lock); |
| 2718 | |
| 2719 | if (hlist_empty(&adapter->fdir_filter_list)) { |
| 2720 | /* save mask and program input mask into HW */ |
| 2721 | memcpy(&adapter->fdir_mask, &mask, sizeof(mask)); |
| 2722 | err = ixgbe_fdir_set_input_mask_82599(hw, &mask); |
| 2723 | if (err) { |
| 2724 | e_err(drv, "Error writing mask\n"); |
| 2725 | goto err_out_w_lock; |
| 2726 | } |
| 2727 | } else if (memcmp(&adapter->fdir_mask, &mask, sizeof(mask))) { |
| 2728 | e_err(drv, "Only one mask supported per port\n"); |
| 2729 | goto err_out_w_lock; |
| 2730 | } |
| 2731 | |
| 2732 | /* apply mask and compute/store hash */ |
| 2733 | ixgbe_atr_compute_perfect_hash_82599(&input->filter, &mask); |
| 2734 | |
| 2735 | /* program filters to filter memory */ |
| 2736 | err = ixgbe_fdir_write_perfect_filter_82599(hw, |
John Fastabend | 7aac842 | 2015-05-26 08:23:33 -0700 | [diff] [blame] | 2737 | &input->filter, input->sw_idx, queue); |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 2738 | if (err) |
| 2739 | goto err_out_w_lock; |
| 2740 | |
| 2741 | ixgbe_update_ethtool_fdir_entry(adapter, input, input->sw_idx); |
| 2742 | |
| 2743 | spin_unlock(&adapter->fdir_perfect_lock); |
| 2744 | |
| 2745 | return err; |
| 2746 | err_out_w_lock: |
| 2747 | spin_unlock(&adapter->fdir_perfect_lock); |
| 2748 | err_out: |
| 2749 | kfree(input); |
| 2750 | return -EINVAL; |
| 2751 | } |
| 2752 | |
| 2753 | static int ixgbe_del_ethtool_fdir_entry(struct ixgbe_adapter *adapter, |
| 2754 | struct ethtool_rxnfc *cmd) |
| 2755 | { |
| 2756 | struct ethtool_rx_flow_spec *fsp = |
| 2757 | (struct ethtool_rx_flow_spec *)&cmd->fs; |
| 2758 | int err; |
| 2759 | |
| 2760 | spin_lock(&adapter->fdir_perfect_lock); |
| 2761 | err = ixgbe_update_ethtool_fdir_entry(adapter, NULL, fsp->location); |
| 2762 | spin_unlock(&adapter->fdir_perfect_lock); |
| 2763 | |
| 2764 | return err; |
| 2765 | } |
| 2766 | |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 2767 | #define UDP_RSS_FLAGS (IXGBE_FLAG2_RSS_FIELD_IPV4_UDP | \ |
| 2768 | IXGBE_FLAG2_RSS_FIELD_IPV6_UDP) |
| 2769 | static int ixgbe_set_rss_hash_opt(struct ixgbe_adapter *adapter, |
| 2770 | struct ethtool_rxnfc *nfc) |
| 2771 | { |
| 2772 | u32 flags2 = adapter->flags2; |
| 2773 | |
| 2774 | /* |
| 2775 | * RSS does not support anything other than hashing |
| 2776 | * to queues on src and dst IPs and ports |
| 2777 | */ |
| 2778 | if (nfc->data & ~(RXH_IP_SRC | RXH_IP_DST | |
| 2779 | RXH_L4_B_0_1 | RXH_L4_B_2_3)) |
| 2780 | return -EINVAL; |
| 2781 | |
| 2782 | switch (nfc->flow_type) { |
| 2783 | case TCP_V4_FLOW: |
| 2784 | case TCP_V6_FLOW: |
| 2785 | if (!(nfc->data & RXH_IP_SRC) || |
| 2786 | !(nfc->data & RXH_IP_DST) || |
| 2787 | !(nfc->data & RXH_L4_B_0_1) || |
| 2788 | !(nfc->data & RXH_L4_B_2_3)) |
| 2789 | return -EINVAL; |
| 2790 | break; |
| 2791 | case UDP_V4_FLOW: |
| 2792 | if (!(nfc->data & RXH_IP_SRC) || |
| 2793 | !(nfc->data & RXH_IP_DST)) |
| 2794 | return -EINVAL; |
| 2795 | switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) { |
| 2796 | case 0: |
| 2797 | flags2 &= ~IXGBE_FLAG2_RSS_FIELD_IPV4_UDP; |
| 2798 | break; |
| 2799 | case (RXH_L4_B_0_1 | RXH_L4_B_2_3): |
| 2800 | flags2 |= IXGBE_FLAG2_RSS_FIELD_IPV4_UDP; |
| 2801 | break; |
| 2802 | default: |
| 2803 | return -EINVAL; |
| 2804 | } |
| 2805 | break; |
| 2806 | case UDP_V6_FLOW: |
| 2807 | if (!(nfc->data & RXH_IP_SRC) || |
| 2808 | !(nfc->data & RXH_IP_DST)) |
| 2809 | return -EINVAL; |
| 2810 | switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) { |
| 2811 | case 0: |
| 2812 | flags2 &= ~IXGBE_FLAG2_RSS_FIELD_IPV6_UDP; |
| 2813 | break; |
| 2814 | case (RXH_L4_B_0_1 | RXH_L4_B_2_3): |
| 2815 | flags2 |= IXGBE_FLAG2_RSS_FIELD_IPV6_UDP; |
| 2816 | break; |
| 2817 | default: |
| 2818 | return -EINVAL; |
| 2819 | } |
| 2820 | break; |
| 2821 | case AH_ESP_V4_FLOW: |
| 2822 | case AH_V4_FLOW: |
| 2823 | case ESP_V4_FLOW: |
| 2824 | case SCTP_V4_FLOW: |
| 2825 | case AH_ESP_V6_FLOW: |
| 2826 | case AH_V6_FLOW: |
| 2827 | case ESP_V6_FLOW: |
| 2828 | case SCTP_V6_FLOW: |
| 2829 | if (!(nfc->data & RXH_IP_SRC) || |
| 2830 | !(nfc->data & RXH_IP_DST) || |
| 2831 | (nfc->data & RXH_L4_B_0_1) || |
| 2832 | (nfc->data & RXH_L4_B_2_3)) |
| 2833 | return -EINVAL; |
| 2834 | break; |
| 2835 | default: |
| 2836 | return -EINVAL; |
| 2837 | } |
| 2838 | |
| 2839 | /* if we changed something we need to update flags */ |
| 2840 | if (flags2 != adapter->flags2) { |
| 2841 | struct ixgbe_hw *hw = &adapter->hw; |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 2842 | u32 mrqc; |
| 2843 | unsigned int pf_pool = adapter->num_vfs; |
| 2844 | |
| 2845 | if ((hw->mac.type >= ixgbe_mac_X550) && |
| 2846 | (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)) |
| 2847 | mrqc = IXGBE_READ_REG(hw, IXGBE_PFVFMRQC(pf_pool)); |
| 2848 | else |
| 2849 | mrqc = IXGBE_READ_REG(hw, IXGBE_MRQC); |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 2850 | |
| 2851 | if ((flags2 & UDP_RSS_FLAGS) && |
| 2852 | !(adapter->flags2 & UDP_RSS_FLAGS)) |
Jacob Keller | 6ec1b71 | 2014-04-09 06:03:13 +0000 | [diff] [blame] | 2853 | e_warn(drv, "enabling UDP RSS: fragmented packets may arrive out of order to the stack above\n"); |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 2854 | |
| 2855 | adapter->flags2 = flags2; |
| 2856 | |
| 2857 | /* Perform hash on these packet types */ |
| 2858 | mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4 |
| 2859 | | IXGBE_MRQC_RSS_FIELD_IPV4_TCP |
| 2860 | | IXGBE_MRQC_RSS_FIELD_IPV6 |
| 2861 | | IXGBE_MRQC_RSS_FIELD_IPV6_TCP; |
| 2862 | |
| 2863 | mrqc &= ~(IXGBE_MRQC_RSS_FIELD_IPV4_UDP | |
| 2864 | IXGBE_MRQC_RSS_FIELD_IPV6_UDP); |
| 2865 | |
| 2866 | if (flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP) |
| 2867 | mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP; |
| 2868 | |
| 2869 | if (flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP) |
| 2870 | mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP; |
| 2871 | |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 2872 | if ((hw->mac.type >= ixgbe_mac_X550) && |
| 2873 | (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)) |
| 2874 | IXGBE_WRITE_REG(hw, IXGBE_PFVFMRQC(pf_pool), mrqc); |
| 2875 | else |
| 2876 | IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc); |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 2877 | } |
| 2878 | |
| 2879 | return 0; |
| 2880 | } |
| 2881 | |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 2882 | static int ixgbe_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd) |
| 2883 | { |
| 2884 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 2885 | int ret = -EOPNOTSUPP; |
| 2886 | |
| 2887 | switch (cmd->cmd) { |
| 2888 | case ETHTOOL_SRXCLSRLINS: |
| 2889 | ret = ixgbe_add_ethtool_fdir_entry(adapter, cmd); |
| 2890 | break; |
| 2891 | case ETHTOOL_SRXCLSRLDEL: |
| 2892 | ret = ixgbe_del_ethtool_fdir_entry(adapter, cmd); |
| 2893 | break; |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 2894 | case ETHTOOL_SRXFH: |
| 2895 | ret = ixgbe_set_rss_hash_opt(adapter, cmd); |
| 2896 | break; |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 2897 | default: |
| 2898 | break; |
| 2899 | } |
| 2900 | |
| 2901 | return ret; |
| 2902 | } |
| 2903 | |
Tom Barbette | 1c7cf07 | 2015-06-26 15:40:18 +0200 | [diff] [blame] | 2904 | static int ixgbe_rss_indir_tbl_max(struct ixgbe_adapter *adapter) |
| 2905 | { |
| 2906 | if (adapter->hw.mac.type < ixgbe_mac_X550) |
| 2907 | return 16; |
| 2908 | else |
| 2909 | return 64; |
| 2910 | } |
| 2911 | |
Vlad Zolotarov | 7f276ef | 2015-03-30 21:18:58 +0300 | [diff] [blame] | 2912 | static u32 ixgbe_get_rxfh_key_size(struct net_device *netdev) |
| 2913 | { |
| 2914 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 2915 | |
| 2916 | return sizeof(adapter->rss_key); |
| 2917 | } |
| 2918 | |
| 2919 | static u32 ixgbe_rss_indir_size(struct net_device *netdev) |
| 2920 | { |
| 2921 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 2922 | |
| 2923 | return ixgbe_rss_indir_tbl_entries(adapter); |
| 2924 | } |
| 2925 | |
| 2926 | static void ixgbe_get_reta(struct ixgbe_adapter *adapter, u32 *indir) |
| 2927 | { |
| 2928 | int i, reta_size = ixgbe_rss_indir_tbl_entries(adapter); |
| 2929 | |
| 2930 | for (i = 0; i < reta_size; i++) |
| 2931 | indir[i] = adapter->rss_indir_tbl[i]; |
| 2932 | } |
| 2933 | |
| 2934 | static int ixgbe_get_rxfh(struct net_device *netdev, u32 *indir, u8 *key, |
| 2935 | u8 *hfunc) |
| 2936 | { |
| 2937 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 2938 | |
| 2939 | if (hfunc) |
| 2940 | *hfunc = ETH_RSS_HASH_TOP; |
| 2941 | |
| 2942 | if (indir) |
| 2943 | ixgbe_get_reta(adapter, indir); |
| 2944 | |
| 2945 | if (key) |
| 2946 | memcpy(key, adapter->rss_key, ixgbe_get_rxfh_key_size(netdev)); |
| 2947 | |
| 2948 | return 0; |
| 2949 | } |
| 2950 | |
Tom Barbette | 1c7cf07 | 2015-06-26 15:40:18 +0200 | [diff] [blame] | 2951 | static int ixgbe_set_rxfh(struct net_device *netdev, const u32 *indir, |
| 2952 | const u8 *key, const u8 hfunc) |
| 2953 | { |
| 2954 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 2955 | int i; |
| 2956 | u32 reta_entries = ixgbe_rss_indir_tbl_entries(adapter); |
| 2957 | |
| 2958 | if (hfunc) |
| 2959 | return -EINVAL; |
| 2960 | |
| 2961 | /* Fill out the redirection table */ |
| 2962 | if (indir) { |
| 2963 | int max_queues = min_t(int, adapter->num_rx_queues, |
| 2964 | ixgbe_rss_indir_tbl_max(adapter)); |
| 2965 | |
| 2966 | /*Allow at least 2 queues w/ SR-IOV.*/ |
| 2967 | if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && |
| 2968 | (max_queues < 2)) |
| 2969 | max_queues = 2; |
| 2970 | |
| 2971 | /* Verify user input. */ |
| 2972 | for (i = 0; i < reta_entries; i++) |
| 2973 | if (indir[i] >= max_queues) |
| 2974 | return -EINVAL; |
| 2975 | |
| 2976 | for (i = 0; i < reta_entries; i++) |
| 2977 | adapter->rss_indir_tbl[i] = indir[i]; |
| 2978 | } |
| 2979 | |
| 2980 | /* Fill out the rss hash key */ |
| 2981 | if (key) |
| 2982 | memcpy(adapter->rss_key, key, ixgbe_get_rxfh_key_size(netdev)); |
| 2983 | |
| 2984 | ixgbe_store_reta(adapter); |
| 2985 | |
| 2986 | return 0; |
| 2987 | } |
| 2988 | |
Jacob Keller | e3aac88 | 2012-05-04 02:56:12 +0000 | [diff] [blame] | 2989 | static int ixgbe_get_ts_info(struct net_device *dev, |
| 2990 | struct ethtool_ts_info *info) |
| 2991 | { |
| 2992 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 2993 | |
| 2994 | switch (adapter->hw.mac.type) { |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 2995 | case ixgbe_mac_X550: |
| 2996 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 2997 | case ixgbe_mac_x550em_a: |
Jacob Keller | e3aac88 | 2012-05-04 02:56:12 +0000 | [diff] [blame] | 2998 | case ixgbe_mac_X540: |
| 2999 | case ixgbe_mac_82599EB: |
| 3000 | info->so_timestamping = |
Jacob Keller | 50f8d35 | 2012-10-31 22:30:54 +0000 | [diff] [blame] | 3001 | SOF_TIMESTAMPING_TX_SOFTWARE | |
| 3002 | SOF_TIMESTAMPING_RX_SOFTWARE | |
| 3003 | SOF_TIMESTAMPING_SOFTWARE | |
Jacob Keller | e3aac88 | 2012-05-04 02:56:12 +0000 | [diff] [blame] | 3004 | SOF_TIMESTAMPING_TX_HARDWARE | |
| 3005 | SOF_TIMESTAMPING_RX_HARDWARE | |
| 3006 | SOF_TIMESTAMPING_RAW_HARDWARE; |
| 3007 | |
| 3008 | if (adapter->ptp_clock) |
| 3009 | info->phc_index = ptp_clock_index(adapter->ptp_clock); |
| 3010 | else |
| 3011 | info->phc_index = -1; |
| 3012 | |
| 3013 | info->tx_types = |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 3014 | BIT(HWTSTAMP_TX_OFF) | |
| 3015 | BIT(HWTSTAMP_TX_ON); |
Jacob Keller | e3aac88 | 2012-05-04 02:56:12 +0000 | [diff] [blame] | 3016 | |
| 3017 | info->rx_filters = |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 3018 | BIT(HWTSTAMP_FILTER_NONE) | |
| 3019 | BIT(HWTSTAMP_FILTER_PTP_V1_L4_SYNC) | |
| 3020 | BIT(HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ) | |
| 3021 | BIT(HWTSTAMP_FILTER_PTP_V2_EVENT); |
Jacob Keller | e3aac88 | 2012-05-04 02:56:12 +0000 | [diff] [blame] | 3022 | break; |
Jacob Keller | e3aac88 | 2012-05-04 02:56:12 +0000 | [diff] [blame] | 3023 | default: |
| 3024 | return ethtool_op_get_ts_info(dev, info); |
Jacob Keller | e3aac88 | 2012-05-04 02:56:12 +0000 | [diff] [blame] | 3025 | } |
| 3026 | return 0; |
| 3027 | } |
| 3028 | |
Alexander Duyck | 5348c9d | 2013-01-12 06:33:52 +0000 | [diff] [blame] | 3029 | static unsigned int ixgbe_max_channels(struct ixgbe_adapter *adapter) |
| 3030 | { |
| 3031 | unsigned int max_combined; |
| 3032 | u8 tcs = netdev_get_num_tc(adapter->netdev); |
| 3033 | |
| 3034 | if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) { |
| 3035 | /* We only support one q_vector without MSI-X */ |
| 3036 | max_combined = 1; |
| 3037 | } else if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) { |
| 3038 | /* SR-IOV currently only allows one queue on the PF */ |
| 3039 | max_combined = 1; |
| 3040 | } else if (tcs > 1) { |
| 3041 | /* For DCB report channels per traffic class */ |
| 3042 | if (adapter->hw.mac.type == ixgbe_mac_82598EB) { |
| 3043 | /* 8 TC w/ 4 queues per TC */ |
| 3044 | max_combined = 4; |
| 3045 | } else if (tcs > 4) { |
| 3046 | /* 8 TC w/ 8 queues per TC */ |
| 3047 | max_combined = 8; |
| 3048 | } else { |
| 3049 | /* 4 TC w/ 16 queues per TC */ |
| 3050 | max_combined = 16; |
| 3051 | } |
| 3052 | } else if (adapter->atr_sample_rate) { |
| 3053 | /* support up to 64 queues with ATR */ |
| 3054 | max_combined = IXGBE_MAX_FDIR_INDICES; |
| 3055 | } else { |
| 3056 | /* support up to 16 queues with RSS */ |
Don Skidmore | 0f9b232 | 2014-11-18 09:35:08 +0000 | [diff] [blame] | 3057 | max_combined = ixgbe_max_rss_indices(adapter); |
Alexander Duyck | 5348c9d | 2013-01-12 06:33:52 +0000 | [diff] [blame] | 3058 | } |
| 3059 | |
| 3060 | return max_combined; |
| 3061 | } |
| 3062 | |
| 3063 | static void ixgbe_get_channels(struct net_device *dev, |
| 3064 | struct ethtool_channels *ch) |
| 3065 | { |
| 3066 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 3067 | |
| 3068 | /* report maximum channels */ |
| 3069 | ch->max_combined = ixgbe_max_channels(adapter); |
| 3070 | |
| 3071 | /* report info for other vector */ |
| 3072 | if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) { |
| 3073 | ch->max_other = NON_Q_VECTORS; |
| 3074 | ch->other_count = NON_Q_VECTORS; |
| 3075 | } |
| 3076 | |
| 3077 | /* record RSS queues */ |
| 3078 | ch->combined_count = adapter->ring_feature[RING_F_RSS].indices; |
| 3079 | |
| 3080 | /* nothing else to report if RSS is disabled */ |
| 3081 | if (ch->combined_count == 1) |
| 3082 | return; |
| 3083 | |
| 3084 | /* we do not support ATR queueing if SR-IOV is enabled */ |
| 3085 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) |
| 3086 | return; |
| 3087 | |
| 3088 | /* same thing goes for being DCB enabled */ |
| 3089 | if (netdev_get_num_tc(dev) > 1) |
| 3090 | return; |
| 3091 | |
| 3092 | /* if ATR is disabled we can exit */ |
| 3093 | if (!adapter->atr_sample_rate) |
| 3094 | return; |
| 3095 | |
| 3096 | /* report flow director queues as maximum channels */ |
| 3097 | ch->combined_count = adapter->ring_feature[RING_F_FDIR].indices; |
| 3098 | } |
| 3099 | |
Alexander Duyck | 4c696ca | 2013-01-17 08:39:33 +0000 | [diff] [blame] | 3100 | static int ixgbe_set_channels(struct net_device *dev, |
| 3101 | struct ethtool_channels *ch) |
| 3102 | { |
| 3103 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 3104 | unsigned int count = ch->combined_count; |
Don Skidmore | 0f9b232 | 2014-11-18 09:35:08 +0000 | [diff] [blame] | 3105 | u8 max_rss_indices = ixgbe_max_rss_indices(adapter); |
Alexander Duyck | 4c696ca | 2013-01-17 08:39:33 +0000 | [diff] [blame] | 3106 | |
| 3107 | /* verify they are not requesting separate vectors */ |
| 3108 | if (!count || ch->rx_count || ch->tx_count) |
| 3109 | return -EINVAL; |
| 3110 | |
| 3111 | /* verify other_count has not changed */ |
| 3112 | if (ch->other_count != NON_Q_VECTORS) |
| 3113 | return -EINVAL; |
| 3114 | |
| 3115 | /* verify the number of channels does not exceed hardware limits */ |
| 3116 | if (count > ixgbe_max_channels(adapter)) |
| 3117 | return -EINVAL; |
| 3118 | |
| 3119 | /* update feature limits from largest to smallest supported values */ |
| 3120 | adapter->ring_feature[RING_F_FDIR].limit = count; |
| 3121 | |
Don Skidmore | 0f9b232 | 2014-11-18 09:35:08 +0000 | [diff] [blame] | 3122 | /* cap RSS limit */ |
| 3123 | if (count > max_rss_indices) |
| 3124 | count = max_rss_indices; |
Alexander Duyck | 4c696ca | 2013-01-17 08:39:33 +0000 | [diff] [blame] | 3125 | adapter->ring_feature[RING_F_RSS].limit = count; |
| 3126 | |
| 3127 | #ifdef IXGBE_FCOE |
| 3128 | /* cap FCoE limit at 8 */ |
| 3129 | if (count > IXGBE_FCRETA_SIZE) |
| 3130 | count = IXGBE_FCRETA_SIZE; |
| 3131 | adapter->ring_feature[RING_F_FCOE].limit = count; |
| 3132 | |
| 3133 | #endif |
| 3134 | /* use setup TC to update any traffic class queue mapping */ |
| 3135 | return ixgbe_setup_tc(dev, netdev_get_num_tc(dev)); |
| 3136 | } |
| 3137 | |
Aurélien Guillaume | 71858ac | 2013-01-17 06:55:24 +0000 | [diff] [blame] | 3138 | static int ixgbe_get_module_info(struct net_device *dev, |
| 3139 | struct ethtool_modinfo *modinfo) |
| 3140 | { |
| 3141 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 3142 | struct ixgbe_hw *hw = &adapter->hw; |
Mark Rustad | a1e869d | 2015-04-10 10:36:36 -0700 | [diff] [blame] | 3143 | s32 status; |
Aurélien Guillaume | 71858ac | 2013-01-17 06:55:24 +0000 | [diff] [blame] | 3144 | u8 sff8472_rev, addr_mode; |
Aurélien Guillaume | 71858ac | 2013-01-17 06:55:24 +0000 | [diff] [blame] | 3145 | bool page_swap = false; |
| 3146 | |
Aurélien Guillaume | 71858ac | 2013-01-17 06:55:24 +0000 | [diff] [blame] | 3147 | /* Check whether we support SFF-8472 or not */ |
| 3148 | status = hw->phy.ops.read_i2c_eeprom(hw, |
| 3149 | IXGBE_SFF_SFF_8472_COMP, |
| 3150 | &sff8472_rev); |
Mark Rustad | a1e869d | 2015-04-10 10:36:36 -0700 | [diff] [blame] | 3151 | if (status) |
Emil Tantilov | a4b6fc6 | 2013-05-29 06:23:10 +0000 | [diff] [blame] | 3152 | return -EIO; |
Aurélien Guillaume | 71858ac | 2013-01-17 06:55:24 +0000 | [diff] [blame] | 3153 | |
| 3154 | /* addressing mode is not supported */ |
| 3155 | status = hw->phy.ops.read_i2c_eeprom(hw, |
| 3156 | IXGBE_SFF_SFF_8472_SWAP, |
| 3157 | &addr_mode); |
Mark Rustad | a1e869d | 2015-04-10 10:36:36 -0700 | [diff] [blame] | 3158 | if (status) |
Emil Tantilov | a4b6fc6 | 2013-05-29 06:23:10 +0000 | [diff] [blame] | 3159 | return -EIO; |
Aurélien Guillaume | 71858ac | 2013-01-17 06:55:24 +0000 | [diff] [blame] | 3160 | |
| 3161 | if (addr_mode & IXGBE_SFF_ADDRESSING_MODE) { |
| 3162 | e_err(drv, "Address change required to access page 0xA2, but not supported. Please report the module type to the driver maintainers.\n"); |
| 3163 | page_swap = true; |
| 3164 | } |
| 3165 | |
| 3166 | if (sff8472_rev == IXGBE_SFF_SFF_8472_UNSUP || page_swap) { |
| 3167 | /* We have a SFP, but it does not support SFF-8472 */ |
| 3168 | modinfo->type = ETH_MODULE_SFF_8079; |
| 3169 | modinfo->eeprom_len = ETH_MODULE_SFF_8079_LEN; |
| 3170 | } else { |
| 3171 | /* We have a SFP which supports a revision of SFF-8472. */ |
| 3172 | modinfo->type = ETH_MODULE_SFF_8472; |
| 3173 | modinfo->eeprom_len = ETH_MODULE_SFF_8472_LEN; |
| 3174 | } |
| 3175 | |
Emil Tantilov | a4b6fc6 | 2013-05-29 06:23:10 +0000 | [diff] [blame] | 3176 | return 0; |
Aurélien Guillaume | 71858ac | 2013-01-17 06:55:24 +0000 | [diff] [blame] | 3177 | } |
| 3178 | |
| 3179 | static int ixgbe_get_module_eeprom(struct net_device *dev, |
| 3180 | struct ethtool_eeprom *ee, |
| 3181 | u8 *data) |
| 3182 | { |
| 3183 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 3184 | struct ixgbe_hw *hw = &adapter->hw; |
Mark Rustad | a1e869d | 2015-04-10 10:36:36 -0700 | [diff] [blame] | 3185 | s32 status = IXGBE_ERR_PHY_ADDR_INVALID; |
Aurélien Guillaume | 71858ac | 2013-01-17 06:55:24 +0000 | [diff] [blame] | 3186 | u8 databyte = 0xFF; |
| 3187 | int i = 0; |
Aurélien Guillaume | 71858ac | 2013-01-17 06:55:24 +0000 | [diff] [blame] | 3188 | |
Emil Tantilov | a4b6fc6 | 2013-05-29 06:23:10 +0000 | [diff] [blame] | 3189 | if (ee->len == 0) |
| 3190 | return -EINVAL; |
Aurélien Guillaume | 71858ac | 2013-01-17 06:55:24 +0000 | [diff] [blame] | 3191 | |
Emil Tantilov | 31c7d2b | 2013-08-13 04:59:29 +0000 | [diff] [blame] | 3192 | for (i = ee->offset; i < ee->offset + ee->len; i++) { |
Emil Tantilov | a4b6fc6 | 2013-05-29 06:23:10 +0000 | [diff] [blame] | 3193 | /* I2C reads can take long time */ |
| 3194 | if (test_bit(__IXGBE_IN_SFP_INIT, &adapter->state)) |
| 3195 | return -EBUSY; |
Aurélien Guillaume | 71858ac | 2013-01-17 06:55:24 +0000 | [diff] [blame] | 3196 | |
Emil Tantilov | a4b6fc6 | 2013-05-29 06:23:10 +0000 | [diff] [blame] | 3197 | if (i < ETH_MODULE_SFF_8079_LEN) |
Emil Tantilov | 31c7d2b | 2013-08-13 04:59:29 +0000 | [diff] [blame] | 3198 | status = hw->phy.ops.read_i2c_eeprom(hw, i, &databyte); |
Emil Tantilov | a4b6fc6 | 2013-05-29 06:23:10 +0000 | [diff] [blame] | 3199 | else |
| 3200 | status = hw->phy.ops.read_i2c_sff8472(hw, i, &databyte); |
| 3201 | |
Mark Rustad | a1e869d | 2015-04-10 10:36:36 -0700 | [diff] [blame] | 3202 | if (status) |
Emil Tantilov | 31c7d2b | 2013-08-13 04:59:29 +0000 | [diff] [blame] | 3203 | return -EIO; |
Emil Tantilov | a4b6fc6 | 2013-05-29 06:23:10 +0000 | [diff] [blame] | 3204 | |
| 3205 | data[i - ee->offset] = databyte; |
Aurélien Guillaume | 71858ac | 2013-01-17 06:55:24 +0000 | [diff] [blame] | 3206 | } |
| 3207 | |
Emil Tantilov | 31c7d2b | 2013-08-13 04:59:29 +0000 | [diff] [blame] | 3208 | return 0; |
Aurélien Guillaume | 71858ac | 2013-01-17 06:55:24 +0000 | [diff] [blame] | 3209 | } |
| 3210 | |
Jesse Brandeburg | b980497 | 2008-09-11 20:00:29 -0700 | [diff] [blame] | 3211 | static const struct ethtool_ops ixgbe_ethtool_ops = { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3212 | .get_settings = ixgbe_get_settings, |
| 3213 | .set_settings = ixgbe_set_settings, |
| 3214 | .get_drvinfo = ixgbe_get_drvinfo, |
| 3215 | .get_regs_len = ixgbe_get_regs_len, |
| 3216 | .get_regs = ixgbe_get_regs, |
| 3217 | .get_wol = ixgbe_get_wol, |
PJ Waskiewicz | e63d976 | 2009-03-19 01:23:46 +0000 | [diff] [blame] | 3218 | .set_wol = ixgbe_set_wol, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3219 | .nway_reset = ixgbe_nway_reset, |
| 3220 | .get_link = ethtool_op_get_link, |
| 3221 | .get_eeprom_len = ixgbe_get_eeprom_len, |
| 3222 | .get_eeprom = ixgbe_get_eeprom, |
Emil Tantilov | 2fa5eef | 2011-10-06 08:57:04 +0000 | [diff] [blame] | 3223 | .set_eeprom = ixgbe_set_eeprom, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3224 | .get_ringparam = ixgbe_get_ringparam, |
| 3225 | .set_ringparam = ixgbe_set_ringparam, |
| 3226 | .get_pauseparam = ixgbe_get_pauseparam, |
| 3227 | .set_pauseparam = ixgbe_set_pauseparam, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3228 | .get_msglevel = ixgbe_get_msglevel, |
| 3229 | .set_msglevel = ixgbe_set_msglevel, |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 3230 | .self_test = ixgbe_diag_test, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3231 | .get_strings = ixgbe_get_strings, |
Emil Tantilov | 66e6961 | 2011-04-16 06:12:51 +0000 | [diff] [blame] | 3232 | .set_phys_id = ixgbe_set_phys_id, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 3233 | .get_sset_count = ixgbe_get_sset_count, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3234 | .get_ethtool_stats = ixgbe_get_ethtool_stats, |
| 3235 | .get_coalesce = ixgbe_get_coalesce, |
| 3236 | .set_coalesce = ixgbe_set_coalesce, |
Alexander Duyck | 91cd94b | 2011-05-11 07:18:41 +0000 | [diff] [blame] | 3237 | .get_rxnfc = ixgbe_get_rxnfc, |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 3238 | .set_rxnfc = ixgbe_set_rxnfc, |
Vlad Zolotarov | 7f276ef | 2015-03-30 21:18:58 +0300 | [diff] [blame] | 3239 | .get_rxfh_indir_size = ixgbe_rss_indir_size, |
| 3240 | .get_rxfh_key_size = ixgbe_get_rxfh_key_size, |
| 3241 | .get_rxfh = ixgbe_get_rxfh, |
Tom Barbette | 1c7cf07 | 2015-06-26 15:40:18 +0200 | [diff] [blame] | 3242 | .set_rxfh = ixgbe_set_rxfh, |
Alexander Duyck | 5348c9d | 2013-01-12 06:33:52 +0000 | [diff] [blame] | 3243 | .get_channels = ixgbe_get_channels, |
Alexander Duyck | 4c696ca | 2013-01-17 08:39:33 +0000 | [diff] [blame] | 3244 | .set_channels = ixgbe_set_channels, |
Jacob Keller | e3aac88 | 2012-05-04 02:56:12 +0000 | [diff] [blame] | 3245 | .get_ts_info = ixgbe_get_ts_info, |
Aurélien Guillaume | 71858ac | 2013-01-17 06:55:24 +0000 | [diff] [blame] | 3246 | .get_module_info = ixgbe_get_module_info, |
| 3247 | .get_module_eeprom = ixgbe_get_module_eeprom, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3248 | }; |
| 3249 | |
| 3250 | void ixgbe_set_ethtool_ops(struct net_device *netdev) |
| 3251 | { |
Wilfried Klaebe | 7ad24ea | 2014-05-11 00:12:32 +0000 | [diff] [blame] | 3252 | netdev->ethtool_ops = &ixgbe_ethtool_ops; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3253 | } |