blob: 52b58e37d863574619f7cec4f4cc10f252bf9e8d [file] [log] [blame]
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Shannon Nelson66fc3602016-01-13 16:51:42 -08004 * Copyright(c) 2013 - 2016 Intel Corporation.
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00005 *
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 *
Greg Rosedc641b72013-12-18 13:45:51 +000015 * You should have received a copy of the GNU General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +000017 *
18 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
21 * Contact Information:
22 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 ******************************************************************************/
26
27/* ethtool support for i40e */
28
29#include "i40e.h"
30#include "i40e_diag.h"
31
32struct i40e_stats {
33 char stat_string[ETH_GSTRING_LEN];
34 int sizeof_stat;
35 int stat_offset;
36};
37
38#define I40E_STAT(_type, _name, _stat) { \
39 .stat_string = _name, \
40 .sizeof_stat = FIELD_SIZEOF(_type, _stat), \
41 .stat_offset = offsetof(_type, _stat) \
42}
Shannon Nelsonfad177d2014-11-11 20:07:27 +000043
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +000044#define I40E_NETDEV_STAT(_net_stat) \
Shannon Nelsonfad177d2014-11-11 20:07:27 +000045 I40E_STAT(struct rtnl_link_stats64, #_net_stat, _net_stat)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +000046#define I40E_PF_STAT(_name, _stat) \
47 I40E_STAT(struct i40e_pf, _name, _stat)
48#define I40E_VSI_STAT(_name, _stat) \
49 I40E_STAT(struct i40e_vsi, _name, _stat)
Shannon Nelson8eab9cf2014-04-23 04:49:55 +000050#define I40E_VEB_STAT(_name, _stat) \
51 I40E_STAT(struct i40e_veb, _name, _stat)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +000052
53static const struct i40e_stats i40e_gstrings_net_stats[] = {
54 I40E_NETDEV_STAT(rx_packets),
55 I40E_NETDEV_STAT(tx_packets),
56 I40E_NETDEV_STAT(rx_bytes),
57 I40E_NETDEV_STAT(tx_bytes),
58 I40E_NETDEV_STAT(rx_errors),
59 I40E_NETDEV_STAT(tx_errors),
60 I40E_NETDEV_STAT(rx_dropped),
61 I40E_NETDEV_STAT(tx_dropped),
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +000062 I40E_NETDEV_STAT(collisions),
63 I40E_NETDEV_STAT(rx_length_errors),
64 I40E_NETDEV_STAT(rx_crc_errors),
65};
66
Shannon Nelson8eab9cf2014-04-23 04:49:55 +000067static const struct i40e_stats i40e_gstrings_veb_stats[] = {
68 I40E_VEB_STAT("rx_bytes", stats.rx_bytes),
69 I40E_VEB_STAT("tx_bytes", stats.tx_bytes),
70 I40E_VEB_STAT("rx_unicast", stats.rx_unicast),
71 I40E_VEB_STAT("tx_unicast", stats.tx_unicast),
72 I40E_VEB_STAT("rx_multicast", stats.rx_multicast),
73 I40E_VEB_STAT("tx_multicast", stats.tx_multicast),
74 I40E_VEB_STAT("rx_broadcast", stats.rx_broadcast),
75 I40E_VEB_STAT("tx_broadcast", stats.tx_broadcast),
76 I40E_VEB_STAT("rx_discards", stats.rx_discards),
77 I40E_VEB_STAT("tx_discards", stats.tx_discards),
78 I40E_VEB_STAT("tx_errors", stats.tx_errors),
79 I40E_VEB_STAT("rx_unknown_protocol", stats.rx_unknown_protocol),
80};
81
Shannon Nelson41a9e552014-04-23 04:50:20 +000082static const struct i40e_stats i40e_gstrings_misc_stats[] = {
Shannon Nelson418631d2014-04-23 04:50:07 +000083 I40E_VSI_STAT("rx_unicast", eth_stats.rx_unicast),
84 I40E_VSI_STAT("tx_unicast", eth_stats.tx_unicast),
85 I40E_VSI_STAT("rx_multicast", eth_stats.rx_multicast),
86 I40E_VSI_STAT("tx_multicast", eth_stats.tx_multicast),
Shannon Nelson41a9e552014-04-23 04:50:20 +000087 I40E_VSI_STAT("rx_broadcast", eth_stats.rx_broadcast),
88 I40E_VSI_STAT("tx_broadcast", eth_stats.tx_broadcast),
Shannon Nelson418631d2014-04-23 04:50:07 +000089 I40E_VSI_STAT("rx_unknown_protocol", eth_stats.rx_unknown_protocol),
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -040090 I40E_VSI_STAT("tx_linearize", tx_linearize),
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -040091 I40E_VSI_STAT("tx_force_wb", tx_force_wb),
Anjali Singhai Jaindd353102016-01-15 14:33:12 -080092 I40E_VSI_STAT("tx_lost_interrupt", tx_lost_interrupt),
Jesse Brandeburgc40918c2016-01-04 10:33:10 -080093 I40E_VSI_STAT("rx_alloc_fail", rx_buf_failed),
94 I40E_VSI_STAT("rx_pg_alloc_fail", rx_page_failed),
Shannon Nelson41a9e552014-04-23 04:50:20 +000095};
96
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +000097/* These PF_STATs might look like duplicates of some NETDEV_STATs,
98 * but they are separate. This device supports Virtualization, and
99 * as such might have several netdevs supporting VMDq and FCoE going
100 * through a single port. The NETDEV_STATs are for individual netdevs
101 * seen at the top of the stack, and the PF_STATs are for the physical
102 * function at the bottom of the stack hosting those netdevs.
103 *
104 * The PF_STATs are appended to the netdev stats only when ethtool -S
105 * is queried on the base PF netdev, not on the VMDq or FCoE netdev.
106 */
107static struct i40e_stats i40e_gstrings_stats[] = {
108 I40E_PF_STAT("rx_bytes", stats.eth.rx_bytes),
109 I40E_PF_STAT("tx_bytes", stats.eth.tx_bytes),
Shannon Nelson532d2832014-04-23 04:50:09 +0000110 I40E_PF_STAT("rx_unicast", stats.eth.rx_unicast),
111 I40E_PF_STAT("tx_unicast", stats.eth.tx_unicast),
112 I40E_PF_STAT("rx_multicast", stats.eth.rx_multicast),
113 I40E_PF_STAT("tx_multicast", stats.eth.tx_multicast),
114 I40E_PF_STAT("rx_broadcast", stats.eth.rx_broadcast),
115 I40E_PF_STAT("tx_broadcast", stats.eth.tx_broadcast),
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000116 I40E_PF_STAT("tx_errors", stats.eth.tx_errors),
117 I40E_PF_STAT("rx_dropped", stats.eth.rx_discards),
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000118 I40E_PF_STAT("tx_dropped_link_down", stats.tx_dropped_link_down),
Shannon Nelson9f7c9442015-07-10 19:35:57 -0400119 I40E_PF_STAT("rx_crc_errors", stats.crc_errors),
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000120 I40E_PF_STAT("illegal_bytes", stats.illegal_bytes),
121 I40E_PF_STAT("mac_local_faults", stats.mac_local_faults),
122 I40E_PF_STAT("mac_remote_faults", stats.mac_remote_faults),
Jesse Brandeburga47a15f2014-02-06 05:51:09 +0000123 I40E_PF_STAT("tx_timeout", tx_timeout_count),
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000124 I40E_PF_STAT("rx_csum_bad", hw_csum_rx_error),
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000125 I40E_PF_STAT("rx_length_errors", stats.rx_length_errors),
126 I40E_PF_STAT("link_xon_rx", stats.link_xon_rx),
127 I40E_PF_STAT("link_xoff_rx", stats.link_xoff_rx),
128 I40E_PF_STAT("link_xon_tx", stats.link_xon_tx),
129 I40E_PF_STAT("link_xoff_tx", stats.link_xoff_tx),
130 I40E_PF_STAT("rx_size_64", stats.rx_size_64),
131 I40E_PF_STAT("rx_size_127", stats.rx_size_127),
132 I40E_PF_STAT("rx_size_255", stats.rx_size_255),
133 I40E_PF_STAT("rx_size_511", stats.rx_size_511),
134 I40E_PF_STAT("rx_size_1023", stats.rx_size_1023),
135 I40E_PF_STAT("rx_size_1522", stats.rx_size_1522),
136 I40E_PF_STAT("rx_size_big", stats.rx_size_big),
137 I40E_PF_STAT("tx_size_64", stats.tx_size_64),
138 I40E_PF_STAT("tx_size_127", stats.tx_size_127),
139 I40E_PF_STAT("tx_size_255", stats.tx_size_255),
140 I40E_PF_STAT("tx_size_511", stats.tx_size_511),
141 I40E_PF_STAT("tx_size_1023", stats.tx_size_1023),
142 I40E_PF_STAT("tx_size_1522", stats.tx_size_1522),
143 I40E_PF_STAT("tx_size_big", stats.tx_size_big),
144 I40E_PF_STAT("rx_undersize", stats.rx_undersize),
145 I40E_PF_STAT("rx_fragments", stats.rx_fragments),
146 I40E_PF_STAT("rx_oversize", stats.rx_oversize),
147 I40E_PF_STAT("rx_jabber", stats.rx_jabber),
148 I40E_PF_STAT("VF_admin_queue_requests", vf_aq_requests),
Mitch Williams1d0a4ad2015-12-23 12:05:48 -0800149 I40E_PF_STAT("arq_overflows", arq_overflows),
Jacob Kellerbeb0dff2014-01-11 05:43:19 +0000150 I40E_PF_STAT("rx_hwtstamp_cleared", rx_hwtstamp_cleared),
Anjali Singhai Jain60793f4a2014-07-09 07:46:23 +0000151 I40E_PF_STAT("fdir_flush_cnt", fd_flush_cnt),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +0000152 I40E_PF_STAT("fdir_atr_match", stats.fd_atr_match),
Anjali Singhai Jain60ccd452015-04-16 20:06:01 -0400153 I40E_PF_STAT("fdir_atr_tunnel_match", stats.fd_atr_tunnel_match),
Anjali Singhai Jaind0389e52015-04-22 19:34:05 -0400154 I40E_PF_STAT("fdir_atr_status", stats.fd_atr_status),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +0000155 I40E_PF_STAT("fdir_sb_match", stats.fd_sb_match),
Anjali Singhai Jaind0389e52015-04-22 19:34:05 -0400156 I40E_PF_STAT("fdir_sb_status", stats.fd_sb_status),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +0000157
Anjali Singhai Jainbee5af72014-03-06 08:59:50 +0000158 /* LPI stats */
159 I40E_PF_STAT("tx_lpi_status", stats.tx_lpi_status),
160 I40E_PF_STAT("rx_lpi_status", stats.rx_lpi_status),
161 I40E_PF_STAT("tx_lpi_count", stats.tx_lpi_count),
162 I40E_PF_STAT("rx_lpi_count", stats.rx_lpi_count),
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000163};
164
Vasu Dev38e00432014-08-01 13:27:03 -0700165#ifdef I40E_FCOE
166static const struct i40e_stats i40e_gstrings_fcoe_stats[] = {
167 I40E_VSI_STAT("fcoe_bad_fccrc", fcoe_stats.fcoe_bad_fccrc),
168 I40E_VSI_STAT("rx_fcoe_dropped", fcoe_stats.rx_fcoe_dropped),
169 I40E_VSI_STAT("rx_fcoe_packets", fcoe_stats.rx_fcoe_packets),
170 I40E_VSI_STAT("rx_fcoe_dwords", fcoe_stats.rx_fcoe_dwords),
171 I40E_VSI_STAT("fcoe_ddp_count", fcoe_stats.fcoe_ddp_count),
172 I40E_VSI_STAT("fcoe_last_error", fcoe_stats.fcoe_last_error),
173 I40E_VSI_STAT("tx_fcoe_packets", fcoe_stats.tx_fcoe_packets),
174 I40E_VSI_STAT("tx_fcoe_dwords", fcoe_stats.tx_fcoe_dwords),
175};
176
177#endif /* I40E_FCOE */
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000178#define I40E_QUEUE_STATS_LEN(n) \
Shannon Nelson31cd8402014-04-04 04:43:12 +0000179 (((struct i40e_netdev_priv *)netdev_priv((n)))->vsi->num_queue_pairs \
180 * 2 /* Tx and Rx together */ \
181 * (sizeof(struct i40e_queue_stats) / sizeof(u64)))
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000182#define I40E_GLOBAL_STATS_LEN ARRAY_SIZE(i40e_gstrings_stats)
183#define I40E_NETDEV_STATS_LEN ARRAY_SIZE(i40e_gstrings_net_stats)
Shannon Nelson41a9e552014-04-23 04:50:20 +0000184#define I40E_MISC_STATS_LEN ARRAY_SIZE(i40e_gstrings_misc_stats)
Vasu Dev38e00432014-08-01 13:27:03 -0700185#ifdef I40E_FCOE
186#define I40E_FCOE_STATS_LEN ARRAY_SIZE(i40e_gstrings_fcoe_stats)
187#define I40E_VSI_STATS_LEN(n) (I40E_NETDEV_STATS_LEN + \
188 I40E_FCOE_STATS_LEN + \
189 I40E_MISC_STATS_LEN + \
190 I40E_QUEUE_STATS_LEN((n)))
191#else
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000192#define I40E_VSI_STATS_LEN(n) (I40E_NETDEV_STATS_LEN + \
Shannon Nelson41a9e552014-04-23 04:50:20 +0000193 I40E_MISC_STATS_LEN + \
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000194 I40E_QUEUE_STATS_LEN((n)))
Vasu Dev38e00432014-08-01 13:27:03 -0700195#endif /* I40E_FCOE */
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000196#define I40E_PFC_STATS_LEN ( \
197 (FIELD_SIZEOF(struct i40e_pf, stats.priority_xoff_rx) + \
198 FIELD_SIZEOF(struct i40e_pf, stats.priority_xon_rx) + \
199 FIELD_SIZEOF(struct i40e_pf, stats.priority_xoff_tx) + \
200 FIELD_SIZEOF(struct i40e_pf, stats.priority_xon_tx) + \
201 FIELD_SIZEOF(struct i40e_pf, stats.priority_xon_2_xoff)) \
202 / sizeof(u64))
Neerav Parikhfe860af2015-07-10 19:36:02 -0400203#define I40E_VEB_TC_STATS_LEN ( \
204 (FIELD_SIZEOF(struct i40e_veb, tc_stats.tc_rx_packets) + \
205 FIELD_SIZEOF(struct i40e_veb, tc_stats.tc_rx_bytes) + \
206 FIELD_SIZEOF(struct i40e_veb, tc_stats.tc_tx_packets) + \
207 FIELD_SIZEOF(struct i40e_veb, tc_stats.tc_tx_bytes)) \
208 / sizeof(u64))
Shannon Nelson8eab9cf2014-04-23 04:49:55 +0000209#define I40E_VEB_STATS_LEN ARRAY_SIZE(i40e_gstrings_veb_stats)
Neerav Parikhfe860af2015-07-10 19:36:02 -0400210#define I40E_VEB_STATS_TOTAL (I40E_VEB_STATS_LEN + I40E_VEB_TC_STATS_LEN)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000211#define I40E_PF_STATS_LEN(n) (I40E_GLOBAL_STATS_LEN + \
212 I40E_PFC_STATS_LEN + \
213 I40E_VSI_STATS_LEN((n)))
214
215enum i40e_ethtool_test_id {
216 I40E_ETH_TEST_REG = 0,
217 I40E_ETH_TEST_EEPROM,
218 I40E_ETH_TEST_INTR,
219 I40E_ETH_TEST_LOOPBACK,
220 I40E_ETH_TEST_LINK,
221};
222
223static const char i40e_gstrings_test[][ETH_GSTRING_LEN] = {
224 "Register test (offline)",
225 "Eeprom test (offline)",
226 "Interrupt test (offline)",
227 "Loopback test (offline)",
228 "Link test (on/offline)"
229};
230
231#define I40E_TEST_LEN (sizeof(i40e_gstrings_test) / ETH_GSTRING_LEN)
232
Anjali Singhai Jainb5569892016-05-03 15:13:12 -0700233static const char i40e_priv_flags_strings_gl[][ETH_GSTRING_LEN] = {
234 "MFP",
235 "LinkPolling",
236 "flow-director-atr",
237 "veb-stats",
238 "hw-atr-eviction",
239 "vf-true-promisc-support",
240};
241
242#define I40E_PRIV_FLAGS_GL_STR_LEN ARRAY_SIZE(i40e_priv_flags_strings_gl)
243
Greg Rose7e45ab42015-02-06 08:52:19 +0000244static const char i40e_priv_flags_strings[][ETH_GSTRING_LEN] = {
245 "NPAR",
Shannon Nelson9ac77262015-08-27 11:42:40 -0400246 "LinkPolling",
Jesse Brandeburgef171782015-09-03 17:18:49 -0400247 "flow-director-atr",
Shannon Nelson1cdfd882015-09-28 14:12:34 -0400248 "veb-stats",
Anjali Singhai Jain72b74862016-01-08 17:50:21 -0800249 "hw-atr-eviction",
Greg Rose7e45ab42015-02-06 08:52:19 +0000250};
251
Shannon Nelson9ac77262015-08-27 11:42:40 -0400252#define I40E_PRIV_FLAGS_STR_LEN ARRAY_SIZE(i40e_priv_flags_strings)
Greg Rose7e45ab42015-02-06 08:52:19 +0000253
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000254/**
Shannon Nelsonf0d8c732014-12-11 07:06:32 +0000255 * i40e_partition_setting_complaint - generic complaint for MFP restriction
256 * @pf: the PF struct
257 **/
258static void i40e_partition_setting_complaint(struct i40e_pf *pf)
259{
260 dev_info(&pf->pdev->dev,
261 "The link settings are allowed to be changed only from the first partition of a given port. Please switch to the first partition in order to change the setting.\n");
262}
263
264/**
Catherine Sullivane8278452015-02-06 08:52:08 +0000265 * i40e_get_settings_link_up - Get the Link settings for when link is up
266 * @hw: hw structure
267 * @ecmd: ethtool command to fill in
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000268 * @netdev: network interface device structure
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000269 *
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000270 **/
Catherine Sullivane8278452015-02-06 08:52:08 +0000271static void i40e_get_settings_link_up(struct i40e_hw *hw,
272 struct ethtool_cmd *ecmd,
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400273 struct net_device *netdev,
274 struct i40e_pf *pf)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000275{
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000276 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000277 u32 link_speed = hw_link_info->link_speed;
278
Catherine Sullivane8278452015-02-06 08:52:08 +0000279 /* Initialize supported and advertised settings based on phy settings */
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000280 switch (hw_link_info->phy_type) {
281 case I40E_PHY_TYPE_40GBASE_CR4:
282 case I40E_PHY_TYPE_40GBASE_CR4_CU:
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000283 ecmd->supported = SUPPORTED_Autoneg |
284 SUPPORTED_40000baseCR4_Full;
285 ecmd->advertising = ADVERTISED_Autoneg |
286 ADVERTISED_40000baseCR4_Full;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000287 break;
Catherine Sullivane8278452015-02-06 08:52:08 +0000288 case I40E_PHY_TYPE_XLAUI:
289 case I40E_PHY_TYPE_XLPPI:
Catherine Sullivan180204c2015-02-26 16:14:58 +0000290 case I40E_PHY_TYPE_40GBASE_AOC:
Catherine Sullivane8278452015-02-06 08:52:08 +0000291 ecmd->supported = SUPPORTED_40000baseCR4_Full;
292 break;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000293 case I40E_PHY_TYPE_40GBASE_SR4:
294 ecmd->supported = SUPPORTED_40000baseSR4_Full;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000295 break;
296 case I40E_PHY_TYPE_40GBASE_LR4:
297 ecmd->supported = SUPPORTED_40000baseLR4_Full;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000298 break;
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000299 case I40E_PHY_TYPE_10GBASE_SR:
300 case I40E_PHY_TYPE_10GBASE_LR:
Catherine Sullivan124ed152014-07-12 07:28:12 +0000301 case I40E_PHY_TYPE_1000BASE_SX:
302 case I40E_PHY_TYPE_1000BASE_LX:
Catherine Sullivan0a862b42015-08-31 19:54:53 -0400303 ecmd->supported = SUPPORTED_10000baseT_Full;
304 if (hw_link_info->module_type[2] &
305 I40E_MODULE_TYPE_1000BASE_SX ||
306 hw_link_info->module_type[2] &
307 I40E_MODULE_TYPE_1000BASE_LX) {
308 ecmd->supported |= SUPPORTED_1000baseT_Full;
309 if (hw_link_info->requested_speeds &
310 I40E_LINK_SPEED_1GB)
311 ecmd->advertising |= ADVERTISED_1000baseT_Full;
312 }
Catherine Sullivane8278452015-02-06 08:52:08 +0000313 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB)
314 ecmd->advertising |= ADVERTISED_10000baseT_Full;
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000315 break;
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000316 case I40E_PHY_TYPE_10GBASE_T:
Catherine Sullivane8278452015-02-06 08:52:08 +0000317 case I40E_PHY_TYPE_1000BASE_T:
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000318 ecmd->supported = SUPPORTED_Autoneg |
Mitch Williams5960d332014-09-13 07:40:47 +0000319 SUPPORTED_10000baseT_Full |
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400320 SUPPORTED_1000baseT_Full;
Catherine Sullivane8278452015-02-06 08:52:08 +0000321 ecmd->advertising = ADVERTISED_Autoneg;
322 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB)
323 ecmd->advertising |= ADVERTISED_10000baseT_Full;
324 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_1GB)
325 ecmd->advertising |= ADVERTISED_1000baseT_Full;
Avinash Dayanand16badc32016-03-18 12:18:13 -0700326 /* adding 100baseT support for 10GBASET_PHY */
327 if (pf->flags & I40E_FLAG_HAVE_10GBASET_PHY) {
328 ecmd->supported |= SUPPORTED_100baseT_Full;
329 ecmd->advertising |= ADVERTISED_100baseT_Full |
330 ADVERTISED_1000baseT_Full |
331 ADVERTISED_10000baseT_Full;
332 }
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400333 break;
Catherine Sullivan48becae2015-09-28 14:12:41 -0400334 case I40E_PHY_TYPE_1000BASE_T_OPTICAL:
335 ecmd->supported = SUPPORTED_Autoneg |
336 SUPPORTED_1000baseT_Full;
337 ecmd->advertising = ADVERTISED_Autoneg |
338 ADVERTISED_1000baseT_Full;
339 break;
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400340 case I40E_PHY_TYPE_100BASE_TX:
341 ecmd->supported = SUPPORTED_Autoneg |
342 SUPPORTED_100baseT_Full;
Catherine Sullivane8278452015-02-06 08:52:08 +0000343 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_100MB)
344 ecmd->advertising |= ADVERTISED_100baseT_Full;
Avinash Dayanand16badc32016-03-18 12:18:13 -0700345 /* firmware detects 10G phy as 100M phy at 100M speed */
346 if (pf->flags & I40E_FLAG_HAVE_10GBASET_PHY) {
347 ecmd->supported |= SUPPORTED_10000baseT_Full |
348 SUPPORTED_1000baseT_Full;
349 ecmd->advertising |= ADVERTISED_Autoneg |
350 ADVERTISED_100baseT_Full |
351 ADVERTISED_1000baseT_Full |
352 ADVERTISED_10000baseT_Full;
353 }
Catherine Sullivane8278452015-02-06 08:52:08 +0000354 break;
355 case I40E_PHY_TYPE_10GBASE_CR1_CU:
356 case I40E_PHY_TYPE_10GBASE_CR1:
357 ecmd->supported = SUPPORTED_Autoneg |
358 SUPPORTED_10000baseT_Full;
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000359 ecmd->advertising = ADVERTISED_Autoneg |
Catherine Sullivane8278452015-02-06 08:52:08 +0000360 ADVERTISED_10000baseT_Full;
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000361 break;
362 case I40E_PHY_TYPE_XAUI:
363 case I40E_PHY_TYPE_XFI:
364 case I40E_PHY_TYPE_SFI:
365 case I40E_PHY_TYPE_10GBASE_SFPP_CU:
Catherine Sullivan180204c2015-02-26 16:14:58 +0000366 case I40E_PHY_TYPE_10GBASE_AOC:
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000367 ecmd->supported = SUPPORTED_10000baseT_Full;
368 break;
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000369 case I40E_PHY_TYPE_SGMII:
370 ecmd->supported = SUPPORTED_Autoneg |
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400371 SUPPORTED_1000baseT_Full;
Catherine Sullivane8278452015-02-06 08:52:08 +0000372 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_1GB)
373 ecmd->advertising |= ADVERTISED_1000baseT_Full;
Catherine Sullivan48b18042015-12-09 15:50:25 -0800374 if (pf->flags & I40E_FLAG_100M_SGMII_CAPABLE) {
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400375 ecmd->supported |= SUPPORTED_100baseT_Full;
376 if (hw_link_info->requested_speeds &
377 I40E_LINK_SPEED_100MB)
378 ecmd->advertising |= ADVERTISED_100baseT_Full;
379 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000380 break;
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -0400381 /* Backplane is set based on supported phy types in get_settings
382 * so don't set anything here but don't warn either
383 */
384 case I40E_PHY_TYPE_40GBASE_KR4:
385 case I40E_PHY_TYPE_20GBASE_KR2:
386 case I40E_PHY_TYPE_10GBASE_KR:
387 case I40E_PHY_TYPE_10GBASE_KX4:
388 case I40E_PHY_TYPE_1000BASE_KX:
389 break;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000390 default:
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000391 /* if we got here and link is up something bad is afoot */
Catherine Sullivan124ed152014-07-12 07:28:12 +0000392 netdev_info(netdev, "WARNING: Link is up but PHY type 0x%x is not recognized.\n",
393 hw_link_info->phy_type);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000394 }
395
Catherine Sullivane8278452015-02-06 08:52:08 +0000396 /* Set speed and duplex */
397 switch (link_speed) {
398 case I40E_LINK_SPEED_40GB:
Greg Roseedf5cff2015-04-07 19:45:41 -0400399 ethtool_cmd_speed_set(ecmd, SPEED_40000);
Catherine Sullivane8278452015-02-06 08:52:08 +0000400 break;
Jesse Brandeburgae24b402015-03-27 00:12:09 -0700401 case I40E_LINK_SPEED_20GB:
402 ethtool_cmd_speed_set(ecmd, SPEED_20000);
403 break;
Catherine Sullivane8278452015-02-06 08:52:08 +0000404 case I40E_LINK_SPEED_10GB:
405 ethtool_cmd_speed_set(ecmd, SPEED_10000);
406 break;
407 case I40E_LINK_SPEED_1GB:
408 ethtool_cmd_speed_set(ecmd, SPEED_1000);
409 break;
410 case I40E_LINK_SPEED_100MB:
411 ethtool_cmd_speed_set(ecmd, SPEED_100);
412 break;
413 default:
414 break;
415 }
416 ecmd->duplex = DUPLEX_FULL;
417}
418
419/**
420 * i40e_get_settings_link_down - Get the Link settings for when link is down
421 * @hw: hw structure
422 * @ecmd: ethtool command to fill in
423 *
424 * Reports link settings that can be determined when link is down
425 **/
426static void i40e_get_settings_link_down(struct i40e_hw *hw,
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400427 struct ethtool_cmd *ecmd,
428 struct i40e_pf *pf)
Catherine Sullivane8278452015-02-06 08:52:08 +0000429{
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -0400430 enum i40e_aq_capabilities_phy_type phy_types = hw->phy.phy_types;
Catherine Sullivane8278452015-02-06 08:52:08 +0000431
432 /* link is down and the driver needs to fall back on
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -0400433 * supported phy types to figure out what info to display
Catherine Sullivane8278452015-02-06 08:52:08 +0000434 */
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -0400435 ecmd->supported = 0x0;
436 ecmd->advertising = 0x0;
437 if (phy_types & I40E_CAP_PHY_TYPE_SGMII) {
438 ecmd->supported |= SUPPORTED_Autoneg |
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400439 SUPPORTED_1000baseT_Full;
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -0400440 ecmd->advertising |= ADVERTISED_Autoneg |
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400441 ADVERTISED_1000baseT_Full;
442 if (pf->hw.mac.type == I40E_MAC_X722) {
443 ecmd->supported |= SUPPORTED_100baseT_Full;
444 ecmd->advertising |= ADVERTISED_100baseT_Full;
Catherine Sullivanf8db54cc2015-12-22 14:25:14 -0800445 if (pf->flags & I40E_FLAG_100M_SGMII_CAPABLE) {
446 ecmd->supported |= SUPPORTED_100baseT_Full;
447 ecmd->advertising |= ADVERTISED_100baseT_Full;
448 }
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400449 }
Catherine Sullivane8278452015-02-06 08:52:08 +0000450 }
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -0400451 if (phy_types & I40E_CAP_PHY_TYPE_XAUI ||
452 phy_types & I40E_CAP_PHY_TYPE_XFI ||
453 phy_types & I40E_CAP_PHY_TYPE_SFI ||
454 phy_types & I40E_CAP_PHY_TYPE_10GBASE_SFPP_CU ||
455 phy_types & I40E_CAP_PHY_TYPE_10GBASE_AOC)
456 ecmd->supported |= SUPPORTED_10000baseT_Full;
457 if (phy_types & I40E_CAP_PHY_TYPE_10GBASE_CR1_CU ||
458 phy_types & I40E_CAP_PHY_TYPE_10GBASE_CR1 ||
459 phy_types & I40E_CAP_PHY_TYPE_10GBASE_T ||
460 phy_types & I40E_CAP_PHY_TYPE_10GBASE_SR ||
461 phy_types & I40E_CAP_PHY_TYPE_10GBASE_LR) {
462 ecmd->supported |= SUPPORTED_Autoneg |
463 SUPPORTED_10000baseT_Full;
464 ecmd->advertising |= ADVERTISED_Autoneg |
465 ADVERTISED_10000baseT_Full;
466 }
467 if (phy_types & I40E_CAP_PHY_TYPE_XLAUI ||
468 phy_types & I40E_CAP_PHY_TYPE_XLPPI ||
469 phy_types & I40E_CAP_PHY_TYPE_40GBASE_AOC)
470 ecmd->supported |= SUPPORTED_40000baseCR4_Full;
471 if (phy_types & I40E_CAP_PHY_TYPE_40GBASE_CR4_CU ||
472 phy_types & I40E_CAP_PHY_TYPE_40GBASE_CR4) {
473 ecmd->supported |= SUPPORTED_Autoneg |
474 SUPPORTED_40000baseCR4_Full;
475 ecmd->advertising |= ADVERTISED_Autoneg |
476 ADVERTISED_40000baseCR4_Full;
477 }
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400478 if ((phy_types & I40E_CAP_PHY_TYPE_100BASE_TX) &&
479 !(phy_types & I40E_CAP_PHY_TYPE_1000BASE_T)) {
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -0400480 ecmd->supported |= SUPPORTED_Autoneg |
481 SUPPORTED_100baseT_Full;
482 ecmd->advertising |= ADVERTISED_Autoneg |
483 ADVERTISED_100baseT_Full;
484 }
485 if (phy_types & I40E_CAP_PHY_TYPE_1000BASE_T ||
486 phy_types & I40E_CAP_PHY_TYPE_1000BASE_SX ||
487 phy_types & I40E_CAP_PHY_TYPE_1000BASE_LX ||
488 phy_types & I40E_CAP_PHY_TYPE_1000BASE_T_OPTICAL) {
489 ecmd->supported |= SUPPORTED_Autoneg |
490 SUPPORTED_1000baseT_Full;
491 ecmd->advertising |= ADVERTISED_Autoneg |
492 ADVERTISED_1000baseT_Full;
493 }
494 if (phy_types & I40E_CAP_PHY_TYPE_40GBASE_SR4)
495 ecmd->supported |= SUPPORTED_40000baseSR4_Full;
496 if (phy_types & I40E_CAP_PHY_TYPE_40GBASE_LR4)
497 ecmd->supported |= SUPPORTED_40000baseLR4_Full;
Catherine Sullivane8278452015-02-06 08:52:08 +0000498
499 /* With no link speed and duplex are unknown */
500 ethtool_cmd_speed_set(ecmd, SPEED_UNKNOWN);
501 ecmd->duplex = DUPLEX_UNKNOWN;
502}
503
504/**
505 * i40e_get_settings - Get Link Speed and Duplex settings
506 * @netdev: network interface device structure
507 * @ecmd: ethtool command
508 *
509 * Reports speed/duplex settings based on media_type
510 **/
511static int i40e_get_settings(struct net_device *netdev,
512 struct ethtool_cmd *ecmd)
513{
514 struct i40e_netdev_priv *np = netdev_priv(netdev);
515 struct i40e_pf *pf = np->vsi->back;
516 struct i40e_hw *hw = &pf->hw;
517 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
518 bool link_up = hw_link_info->link_info & I40E_AQ_LINK_UP;
519
520 if (link_up)
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400521 i40e_get_settings_link_up(hw, ecmd, netdev, pf);
Catherine Sullivane8278452015-02-06 08:52:08 +0000522 else
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400523 i40e_get_settings_link_down(hw, ecmd, pf);
Catherine Sullivane8278452015-02-06 08:52:08 +0000524
525 /* Now set the settings that don't rely on link being up/down */
526
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -0400527 /* For backplane, supported and advertised are only reliant on the
528 * phy types the NVM specifies are supported.
529 */
530 if (hw->device_id == I40E_DEV_ID_KX_B ||
531 hw->device_id == I40E_DEV_ID_KX_C ||
532 hw->device_id == I40E_DEV_ID_20G_KR2 ||
533 hw->device_id == I40E_DEV_ID_20G_KR2_A) {
534 ecmd->supported = SUPPORTED_Autoneg;
535 ecmd->advertising = ADVERTISED_Autoneg;
536 if (hw->phy.phy_types & I40E_CAP_PHY_TYPE_40GBASE_KR4) {
537 ecmd->supported |= SUPPORTED_40000baseKR4_Full;
538 ecmd->advertising |= ADVERTISED_40000baseKR4_Full;
539 }
540 if (hw->phy.phy_types & I40E_CAP_PHY_TYPE_20GBASE_KR2) {
541 ecmd->supported |= SUPPORTED_20000baseKR2_Full;
542 ecmd->advertising |= ADVERTISED_20000baseKR2_Full;
543 }
544 if (hw->phy.phy_types & I40E_CAP_PHY_TYPE_10GBASE_KR) {
545 ecmd->supported |= SUPPORTED_10000baseKR_Full;
546 ecmd->advertising |= ADVERTISED_10000baseKR_Full;
547 }
548 if (hw->phy.phy_types & I40E_CAP_PHY_TYPE_10GBASE_KX4) {
549 ecmd->supported |= SUPPORTED_10000baseKX4_Full;
550 ecmd->advertising |= ADVERTISED_10000baseKX4_Full;
551 }
552 if (hw->phy.phy_types & I40E_CAP_PHY_TYPE_1000BASE_KX) {
553 ecmd->supported |= SUPPORTED_1000baseKX_Full;
554 ecmd->advertising |= ADVERTISED_1000baseKX_Full;
555 }
556 }
557
Catherine Sullivane8278452015-02-06 08:52:08 +0000558 /* Set autoneg settings */
Jesse Brandeburgc9a3d472013-11-26 10:49:10 +0000559 ecmd->autoneg = ((hw_link_info->an_info & I40E_AQ_AN_COMPLETED) ?
560 AUTONEG_ENABLE : AUTONEG_DISABLE);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000561
Jesse Brandeburgc9a3d472013-11-26 10:49:10 +0000562 switch (hw->phy.media_type) {
563 case I40E_MEDIA_TYPE_BACKPLANE:
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000564 ecmd->supported |= SUPPORTED_Autoneg |
565 SUPPORTED_Backplane;
566 ecmd->advertising |= ADVERTISED_Autoneg |
567 ADVERTISED_Backplane;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000568 ecmd->port = PORT_NONE;
Jesse Brandeburgc9a3d472013-11-26 10:49:10 +0000569 break;
570 case I40E_MEDIA_TYPE_BASET:
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000571 ecmd->supported |= SUPPORTED_TP;
572 ecmd->advertising |= ADVERTISED_TP;
573 ecmd->port = PORT_TP;
Jesse Brandeburgc9a3d472013-11-26 10:49:10 +0000574 break;
575 case I40E_MEDIA_TYPE_DA:
576 case I40E_MEDIA_TYPE_CX4:
Jesse Brandeburgbe405eb2013-11-20 10:02:50 +0000577 ecmd->supported |= SUPPORTED_FIBRE;
578 ecmd->advertising |= ADVERTISED_FIBRE;
579 ecmd->port = PORT_DA;
Jesse Brandeburgc9a3d472013-11-26 10:49:10 +0000580 break;
581 case I40E_MEDIA_TYPE_FIBER:
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000582 ecmd->supported |= SUPPORTED_FIBRE;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000583 ecmd->port = PORT_FIBRE;
Jesse Brandeburgc9a3d472013-11-26 10:49:10 +0000584 break;
585 case I40E_MEDIA_TYPE_UNKNOWN:
586 default:
587 ecmd->port = PORT_OTHER;
588 break;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000589 }
590
Catherine Sullivane8278452015-02-06 08:52:08 +0000591 /* Set transceiver */
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000592 ecmd->transceiver = XCVR_EXTERNAL;
593
Catherine Sullivane8278452015-02-06 08:52:08 +0000594 /* Set flow control settings */
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000595 ecmd->supported |= SUPPORTED_Pause;
596
Catherine Sullivane8278452015-02-06 08:52:08 +0000597 switch (hw->fc.requested_mode) {
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000598 case I40E_FC_FULL:
599 ecmd->advertising |= ADVERTISED_Pause;
600 break;
601 case I40E_FC_TX_PAUSE:
602 ecmd->advertising |= ADVERTISED_Asym_Pause;
603 break;
604 case I40E_FC_RX_PAUSE:
605 ecmd->advertising |= (ADVERTISED_Pause |
606 ADVERTISED_Asym_Pause);
607 break;
608 default:
609 ecmd->advertising &= ~(ADVERTISED_Pause |
610 ADVERTISED_Asym_Pause);
611 break;
612 }
613
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000614 return 0;
615}
616
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000617/**
618 * i40e_set_settings - Set Speed and Duplex
619 * @netdev: network interface device structure
620 * @ecmd: ethtool command
621 *
622 * Set speed/duplex per media_types advertised/forced
623 **/
624static int i40e_set_settings(struct net_device *netdev,
625 struct ethtool_cmd *ecmd)
626{
627 struct i40e_netdev_priv *np = netdev_priv(netdev);
628 struct i40e_aq_get_phy_abilities_resp abilities;
629 struct i40e_aq_set_phy_config config;
630 struct i40e_pf *pf = np->vsi->back;
631 struct i40e_vsi *vsi = np->vsi;
632 struct i40e_hw *hw = &pf->hw;
633 struct ethtool_cmd safe_ecmd;
634 i40e_status status = 0;
635 bool change = false;
636 int err = 0;
637 u8 autoneg;
638 u32 advertise;
639
Shannon Nelsonf0d8c732014-12-11 07:06:32 +0000640 /* Changing port settings is not supported if this isn't the
641 * port's controlling PF
642 */
643 if (hw->partition_id != 1) {
644 i40e_partition_setting_complaint(pf);
645 return -EOPNOTSUPP;
646 }
647
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000648 if (vsi != pf->vsi[pf->lan_vsi])
649 return -EOPNOTSUPP;
650
651 if (hw->phy.media_type != I40E_MEDIA_TYPE_BASET &&
652 hw->phy.media_type != I40E_MEDIA_TYPE_FIBER &&
Catherine Sullivanc57e9f12014-07-12 07:28:13 +0000653 hw->phy.media_type != I40E_MEDIA_TYPE_BACKPLANE &&
654 hw->phy.link_info.link_info & I40E_AQ_LINK_UP)
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000655 return -EOPNOTSUPP;
656
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -0400657 if (hw->device_id == I40E_DEV_ID_KX_B ||
658 hw->device_id == I40E_DEV_ID_KX_C ||
659 hw->device_id == I40E_DEV_ID_20G_KR2 ||
660 hw->device_id == I40E_DEV_ID_20G_KR2_A) {
661 netdev_info(netdev, "Changing settings is not supported on backplane.\n");
662 return -EOPNOTSUPP;
663 }
664
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000665 /* get our own copy of the bits to check against */
666 memset(&safe_ecmd, 0, sizeof(struct ethtool_cmd));
667 i40e_get_settings(netdev, &safe_ecmd);
668
669 /* save autoneg and speed out of ecmd */
670 autoneg = ecmd->autoneg;
671 advertise = ecmd->advertising;
672
673 /* set autoneg and speed back to what they currently are */
674 ecmd->autoneg = safe_ecmd.autoneg;
675 ecmd->advertising = safe_ecmd.advertising;
676
677 ecmd->cmd = safe_ecmd.cmd;
678 /* If ecmd and safe_ecmd are not the same now, then they are
679 * trying to set something that we do not support
680 */
681 if (memcmp(ecmd, &safe_ecmd, sizeof(struct ethtool_cmd)))
682 return -EOPNOTSUPP;
683
684 while (test_bit(__I40E_CONFIG_BUSY, &vsi->state))
685 usleep_range(1000, 2000);
686
687 /* Get the current phy config */
688 status = i40e_aq_get_phy_capabilities(hw, false, false, &abilities,
689 NULL);
690 if (status)
691 return -EAGAIN;
692
Catherine Sullivan124ed152014-07-12 07:28:12 +0000693 /* Copy abilities to config in case autoneg is not
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000694 * set below
695 */
696 memset(&config, 0, sizeof(struct i40e_aq_set_phy_config));
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000697 config.abilities = abilities.abilities;
698
699 /* Check autoneg */
700 if (autoneg == AUTONEG_ENABLE) {
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000701 /* If autoneg was not already enabled */
702 if (!(hw->phy.link_info.an_info & I40E_AQ_AN_COMPLETED)) {
Catherine Sullivan3ce12ee2015-09-28 14:16:58 -0400703 /* If autoneg is not supported, return error */
704 if (!(safe_ecmd.supported & SUPPORTED_Autoneg)) {
705 netdev_info(netdev, "Autoneg not supported on this phy\n");
706 return -EINVAL;
707 }
708 /* Autoneg is allowed to change */
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000709 config.abilities = abilities.abilities |
710 I40E_AQ_PHY_ENABLE_AN;
711 change = true;
712 }
713 } else {
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000714 /* If autoneg is currently enabled */
715 if (hw->phy.link_info.an_info & I40E_AQ_AN_COMPLETED) {
Catherine Sullivan3ce12ee2015-09-28 14:16:58 -0400716 /* If autoneg is supported 10GBASE_T is the only PHY
717 * that can disable it, so otherwise return error
718 */
719 if (safe_ecmd.supported & SUPPORTED_Autoneg &&
720 hw->phy.link_info.phy_type !=
721 I40E_PHY_TYPE_10GBASE_T) {
722 netdev_info(netdev, "Autoneg cannot be disabled on this phy\n");
723 return -EINVAL;
724 }
725 /* Autoneg is allowed to change */
Mitch Williams5960d332014-09-13 07:40:47 +0000726 config.abilities = abilities.abilities &
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000727 ~I40E_AQ_PHY_ENABLE_AN;
728 change = true;
729 }
730 }
731
732 if (advertise & ~safe_ecmd.supported)
733 return -EINVAL;
734
735 if (advertise & ADVERTISED_100baseT_Full)
Catherine Sullivan124ed152014-07-12 07:28:12 +0000736 config.link_speed |= I40E_LINK_SPEED_100MB;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000737 if (advertise & ADVERTISED_1000baseT_Full ||
738 advertise & ADVERTISED_1000baseKX_Full)
Catherine Sullivan124ed152014-07-12 07:28:12 +0000739 config.link_speed |= I40E_LINK_SPEED_1GB;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000740 if (advertise & ADVERTISED_10000baseT_Full ||
741 advertise & ADVERTISED_10000baseKX4_Full ||
742 advertise & ADVERTISED_10000baseKR_Full)
Catherine Sullivan124ed152014-07-12 07:28:12 +0000743 config.link_speed |= I40E_LINK_SPEED_10GB;
Jesse Brandeburgae24b402015-03-27 00:12:09 -0700744 if (advertise & ADVERTISED_20000baseKR2_Full)
745 config.link_speed |= I40E_LINK_SPEED_20GB;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000746 if (advertise & ADVERTISED_40000baseKR4_Full ||
747 advertise & ADVERTISED_40000baseCR4_Full ||
748 advertise & ADVERTISED_40000baseSR4_Full ||
749 advertise & ADVERTISED_40000baseLR4_Full)
Catherine Sullivan124ed152014-07-12 07:28:12 +0000750 config.link_speed |= I40E_LINK_SPEED_40GB;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000751
Catherine Sullivan0002e112015-08-26 15:14:16 -0400752 /* If speed didn't get set, set it to what it currently is.
753 * This is needed because if advertise is 0 (as it is when autoneg
754 * is disabled) then speed won't get set.
755 */
756 if (!config.link_speed)
757 config.link_speed = abilities.link_speed;
758
Catherine Sullivan124ed152014-07-12 07:28:12 +0000759 if (change || (abilities.link_speed != config.link_speed)) {
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000760 /* copy over the rest of the abilities */
761 config.phy_type = abilities.phy_type;
762 config.eee_capability = abilities.eee_capability;
763 config.eeer = abilities.eeer_val;
764 config.low_power_ctrl = abilities.d3_lpan;
765
Catherine Sullivane8278452015-02-06 08:52:08 +0000766 /* save the requested speeds */
767 hw->phy.link_info.requested_speeds = config.link_speed;
Catherine Sullivan94128512014-07-12 07:28:16 +0000768 /* set link and auto negotiation so changes take effect */
769 config.abilities |= I40E_AQ_PHY_ENABLE_ATOMIC_LINK;
770 /* If link is up put link down */
771 if (hw->phy.link_info.link_info & I40E_AQ_LINK_UP) {
772 /* Tell the OS link is going down, the link will go
773 * back up when fw says it is ready asynchronously
774 */
Matt Jaredc156f852015-08-27 11:42:39 -0400775 i40e_print_link_message(vsi, false);
Catherine Sullivan94128512014-07-12 07:28:16 +0000776 netif_carrier_off(netdev);
777 netif_tx_stop_all_queues(netdev);
778 }
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000779
780 /* make the aq call */
781 status = i40e_aq_set_phy_config(hw, &config, NULL);
782 if (status) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -0400783 netdev_info(netdev, "Set phy config failed, err %s aq_err %s\n",
784 i40e_stat_str(hw, status),
785 i40e_aq_str(hw, hw->aq.asq_last_status));
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000786 return -EAGAIN;
787 }
788
Catherine Sullivan0a862b42015-08-31 19:54:53 -0400789 status = i40e_update_link_info(hw);
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000790 if (status)
Catherine Sullivan52e96892015-09-28 14:16:59 -0400791 netdev_dbg(netdev, "Updating link info failed with err %s aq_err %s\n",
792 i40e_stat_str(hw, status),
793 i40e_aq_str(hw, hw->aq.asq_last_status));
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000794
795 } else {
796 netdev_info(netdev, "Nothing changed, exiting without setting anything.\n");
797 }
798
799 return err;
800}
801
Jesse Brandeburga6599722014-06-04 08:45:25 +0000802static int i40e_nway_reset(struct net_device *netdev)
803{
804 /* restart autonegotiation */
805 struct i40e_netdev_priv *np = netdev_priv(netdev);
806 struct i40e_pf *pf = np->vsi->back;
807 struct i40e_hw *hw = &pf->hw;
808 bool link_up = hw->phy.link_info.link_info & I40E_AQ_LINK_UP;
809 i40e_status ret = 0;
810
811 ret = i40e_aq_set_link_restart_an(hw, link_up, NULL);
812 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -0400813 netdev_info(netdev, "link restart failed, err %s aq_err %s\n",
814 i40e_stat_str(hw, ret),
815 i40e_aq_str(hw, hw->aq.asq_last_status));
Jesse Brandeburga6599722014-06-04 08:45:25 +0000816 return -EIO;
817 }
818
819 return 0;
820}
821
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000822/**
823 * i40e_get_pauseparam - Get Flow Control status
824 * Return tx/rx-pause status
825 **/
826static void i40e_get_pauseparam(struct net_device *netdev,
827 struct ethtool_pauseparam *pause)
828{
829 struct i40e_netdev_priv *np = netdev_priv(netdev);
830 struct i40e_pf *pf = np->vsi->back;
831 struct i40e_hw *hw = &pf->hw;
832 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
Neerav Parikh4b7698c2014-11-12 00:18:57 +0000833 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000834
835 pause->autoneg =
836 ((hw_link_info->an_info & I40E_AQ_AN_COMPLETED) ?
837 AUTONEG_ENABLE : AUTONEG_DISABLE);
838
Neerav Parikh4b7698c2014-11-12 00:18:57 +0000839 /* PFC enabled so report LFC as off */
840 if (dcbx_cfg->pfc.pfcenable) {
841 pause->rx_pause = 0;
842 pause->tx_pause = 0;
843 return;
844 }
845
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +0000846 if (hw->fc.current_mode == I40E_FC_RX_PAUSE) {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000847 pause->rx_pause = 1;
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +0000848 } else if (hw->fc.current_mode == I40E_FC_TX_PAUSE) {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000849 pause->tx_pause = 1;
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +0000850 } else if (hw->fc.current_mode == I40E_FC_FULL) {
851 pause->rx_pause = 1;
852 pause->tx_pause = 1;
853 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000854}
855
Catherine Sullivan2becc352014-06-04 08:45:27 +0000856/**
857 * i40e_set_pauseparam - Set Flow Control parameter
858 * @netdev: network interface device structure
859 * @pause: return tx/rx flow control status
860 **/
861static int i40e_set_pauseparam(struct net_device *netdev,
862 struct ethtool_pauseparam *pause)
863{
864 struct i40e_netdev_priv *np = netdev_priv(netdev);
865 struct i40e_pf *pf = np->vsi->back;
866 struct i40e_vsi *vsi = np->vsi;
867 struct i40e_hw *hw = &pf->hw;
868 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
Neerav Parikh4b7698c2014-11-12 00:18:57 +0000869 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config;
Catherine Sullivan2becc352014-06-04 08:45:27 +0000870 bool link_up = hw_link_info->link_info & I40E_AQ_LINK_UP;
871 i40e_status status;
872 u8 aq_failures;
Catherine Sullivan7d62dac2014-07-09 07:46:18 +0000873 int err = 0;
Catherine Sullivan2becc352014-06-04 08:45:27 +0000874
Shannon Nelsonf0d8c732014-12-11 07:06:32 +0000875 /* Changing the port's flow control is not supported if this isn't the
876 * port's controlling PF
877 */
878 if (hw->partition_id != 1) {
879 i40e_partition_setting_complaint(pf);
880 return -EOPNOTSUPP;
881 }
882
Catherine Sullivan2becc352014-06-04 08:45:27 +0000883 if (vsi != pf->vsi[pf->lan_vsi])
884 return -EOPNOTSUPP;
885
886 if (pause->autoneg != ((hw_link_info->an_info & I40E_AQ_AN_COMPLETED) ?
887 AUTONEG_ENABLE : AUTONEG_DISABLE)) {
888 netdev_info(netdev, "To change autoneg please use: ethtool -s <dev> autoneg <on|off>\n");
889 return -EOPNOTSUPP;
890 }
891
892 /* If we have link and don't have autoneg */
893 if (!test_bit(__I40E_DOWN, &pf->state) &&
894 !(hw_link_info->an_info & I40E_AQ_AN_COMPLETED)) {
895 /* Send message that it might not necessarily work*/
896 netdev_info(netdev, "Autoneg did not complete so changing settings may not result in an actual change.\n");
897 }
898
Neerav Parikh4b7698c2014-11-12 00:18:57 +0000899 if (dcbx_cfg->pfc.pfcenable) {
900 netdev_info(netdev,
901 "Priority flow control enabled. Cannot set link flow control.\n");
Catherine Sullivan2becc352014-06-04 08:45:27 +0000902 return -EOPNOTSUPP;
903 }
904
905 if (pause->rx_pause && pause->tx_pause)
906 hw->fc.requested_mode = I40E_FC_FULL;
907 else if (pause->rx_pause && !pause->tx_pause)
908 hw->fc.requested_mode = I40E_FC_RX_PAUSE;
909 else if (!pause->rx_pause && pause->tx_pause)
910 hw->fc.requested_mode = I40E_FC_TX_PAUSE;
911 else if (!pause->rx_pause && !pause->tx_pause)
912 hw->fc.requested_mode = I40E_FC_NONE;
913 else
914 return -EINVAL;
915
Catherine Sullivan94128512014-07-12 07:28:16 +0000916 /* Tell the OS link is going down, the link will go back up when fw
917 * says it is ready asynchronously
918 */
Matt Jaredc156f852015-08-27 11:42:39 -0400919 i40e_print_link_message(vsi, false);
Catherine Sullivan94128512014-07-12 07:28:16 +0000920 netif_carrier_off(netdev);
921 netif_tx_stop_all_queues(netdev);
922
Catherine Sullivan2becc352014-06-04 08:45:27 +0000923 /* Set the fc mode and only restart an if link is up*/
924 status = i40e_set_fc(hw, &aq_failures, link_up);
925
926 if (aq_failures & I40E_SET_FC_AQ_FAIL_GET) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -0400927 netdev_info(netdev, "Set fc failed on the get_phy_capabilities call with err %s aq_err %s\n",
928 i40e_stat_str(hw, status),
929 i40e_aq_str(hw, hw->aq.asq_last_status));
Catherine Sullivan2becc352014-06-04 08:45:27 +0000930 err = -EAGAIN;
931 }
932 if (aq_failures & I40E_SET_FC_AQ_FAIL_SET) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -0400933 netdev_info(netdev, "Set fc failed on the set_phy_config call with err %s aq_err %s\n",
934 i40e_stat_str(hw, status),
935 i40e_aq_str(hw, hw->aq.asq_last_status));
Catherine Sullivan2becc352014-06-04 08:45:27 +0000936 err = -EAGAIN;
937 }
938 if (aq_failures & I40E_SET_FC_AQ_FAIL_UPDATE) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -0400939 netdev_info(netdev, "Set fc failed on the get_link_info call with err %s aq_err %s\n",
940 i40e_stat_str(hw, status),
941 i40e_aq_str(hw, hw->aq.asq_last_status));
Catherine Sullivan2becc352014-06-04 08:45:27 +0000942 err = -EAGAIN;
943 }
944
Catherine Sullivan7d62dac2014-07-09 07:46:18 +0000945 if (!test_bit(__I40E_DOWN, &pf->state)) {
946 /* Give it a little more time to try to come back */
947 msleep(75);
948 if (!test_bit(__I40E_DOWN, &pf->state))
949 return i40e_nway_reset(netdev);
950 }
Catherine Sullivan2becc352014-06-04 08:45:27 +0000951
952 return err;
953}
954
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000955static u32 i40e_get_msglevel(struct net_device *netdev)
956{
957 struct i40e_netdev_priv *np = netdev_priv(netdev);
958 struct i40e_pf *pf = np->vsi->back;
959
960 return pf->msg_enable;
961}
962
963static void i40e_set_msglevel(struct net_device *netdev, u32 data)
964{
965 struct i40e_netdev_priv *np = netdev_priv(netdev);
966 struct i40e_pf *pf = np->vsi->back;
967
968 if (I40E_DEBUG_USER & data)
969 pf->hw.debug_mask = data;
970 pf->msg_enable = data;
971}
972
973static int i40e_get_regs_len(struct net_device *netdev)
974{
975 int reg_count = 0;
976 int i;
977
978 for (i = 0; i40e_reg_list[i].offset != 0; i++)
979 reg_count += i40e_reg_list[i].elements;
980
981 return reg_count * sizeof(u32);
982}
983
984static void i40e_get_regs(struct net_device *netdev, struct ethtool_regs *regs,
985 void *p)
986{
987 struct i40e_netdev_priv *np = netdev_priv(netdev);
988 struct i40e_pf *pf = np->vsi->back;
989 struct i40e_hw *hw = &pf->hw;
990 u32 *reg_buf = p;
991 int i, j, ri;
992 u32 reg;
993
994 /* Tell ethtool which driver-version-specific regs output we have.
995 *
996 * At some point, if we have ethtool doing special formatting of
997 * this data, it will rely on this version number to know how to
998 * interpret things. Hence, this needs to be updated if/when the
999 * diags register table is changed.
1000 */
1001 regs->version = 1;
1002
1003 /* loop through the diags reg table for what to print */
1004 ri = 0;
1005 for (i = 0; i40e_reg_list[i].offset != 0; i++) {
1006 for (j = 0; j < i40e_reg_list[i].elements; j++) {
1007 reg = i40e_reg_list[i].offset
1008 + (j * i40e_reg_list[i].stride);
1009 reg_buf[ri++] = rd32(hw, reg);
1010 }
1011 }
1012
1013}
1014
1015static int i40e_get_eeprom(struct net_device *netdev,
1016 struct ethtool_eeprom *eeprom, u8 *bytes)
1017{
1018 struct i40e_netdev_priv *np = netdev_priv(netdev);
1019 struct i40e_hw *hw = &np->vsi->back->hw;
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001020 struct i40e_pf *pf = np->vsi->back;
Shannon Nelsonc150a502014-11-13 08:23:13 +00001021 int ret_val = 0, len, offset;
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001022 u8 *eeprom_buff;
1023 u16 i, sectors;
1024 bool last;
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001025 u32 magic;
1026
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001027#define I40E_NVM_SECTOR_SIZE 4096
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001028 if (eeprom->len == 0)
1029 return -EINVAL;
1030
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001031 /* check for NVMUpdate access method */
1032 magic = hw->vendor_id | (hw->device_id << 16);
1033 if (eeprom->magic && eeprom->magic != magic) {
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001034 struct i40e_nvm_access *cmd = (struct i40e_nvm_access *)eeprom;
1035 int errno = 0;
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001036
1037 /* make sure it is the right magic for NVMUpdate */
1038 if ((eeprom->magic >> 16) != hw->device_id)
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001039 errno = -EINVAL;
1040 else if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) ||
1041 test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state))
1042 errno = -EBUSY;
1043 else
1044 ret_val = i40e_nvmupd_command(hw, cmd, bytes, &errno);
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001045
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001046 if ((errno || ret_val) && (hw->debug_mask & I40E_DEBUG_NVM))
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001047 dev_info(&pf->pdev->dev,
Shannon Nelsonc150a502014-11-13 08:23:13 +00001048 "NVMUpdate read failed err=%d status=0x%x errno=%d module=%d offset=0x%x size=%d\n",
1049 ret_val, hw->aq.asq_last_status, errno,
1050 (u8)(cmd->config & I40E_NVM_MOD_PNT_MASK),
1051 cmd->offset, cmd->data_size);
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001052
1053 return errno;
1054 }
1055
1056 /* normal ethtool get_eeprom support */
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001057 eeprom->magic = hw->vendor_id | (hw->device_id << 16);
1058
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001059 eeprom_buff = kzalloc(eeprom->len, GFP_KERNEL);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001060 if (!eeprom_buff)
1061 return -ENOMEM;
1062
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001063 ret_val = i40e_acquire_nvm(hw, I40E_RESOURCE_READ);
1064 if (ret_val) {
1065 dev_info(&pf->pdev->dev,
1066 "Failed Acquiring NVM resource for read err=%d status=0x%x\n",
1067 ret_val, hw->aq.asq_last_status);
1068 goto free_buff;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001069 }
1070
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001071 sectors = eeprom->len / I40E_NVM_SECTOR_SIZE;
1072 sectors += (eeprom->len % I40E_NVM_SECTOR_SIZE) ? 1 : 0;
1073 len = I40E_NVM_SECTOR_SIZE;
1074 last = false;
1075 for (i = 0; i < sectors; i++) {
1076 if (i == (sectors - 1)) {
1077 len = eeprom->len - (I40E_NVM_SECTOR_SIZE * i);
1078 last = true;
1079 }
Shannon Nelsonc150a502014-11-13 08:23:13 +00001080 offset = eeprom->offset + (I40E_NVM_SECTOR_SIZE * i),
1081 ret_val = i40e_aq_read_nvm(hw, 0x0, offset, len,
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001082 (u8 *)eeprom_buff + (I40E_NVM_SECTOR_SIZE * i),
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001083 last, NULL);
Shannon Nelsonc150a502014-11-13 08:23:13 +00001084 if (ret_val && hw->aq.asq_last_status == I40E_AQ_RC_EPERM) {
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001085 dev_info(&pf->pdev->dev,
Shannon Nelsonc150a502014-11-13 08:23:13 +00001086 "read NVM failed, invalid offset 0x%x\n",
1087 offset);
1088 break;
1089 } else if (ret_val &&
1090 hw->aq.asq_last_status == I40E_AQ_RC_EACCES) {
1091 dev_info(&pf->pdev->dev,
1092 "read NVM failed, access, offset 0x%x\n",
1093 offset);
1094 break;
1095 } else if (ret_val) {
1096 dev_info(&pf->pdev->dev,
1097 "read NVM failed offset %d err=%d status=0x%x\n",
1098 offset, ret_val, hw->aq.asq_last_status);
1099 break;
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001100 }
1101 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001102
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001103 i40e_release_nvm(hw);
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001104 memcpy(bytes, (u8 *)eeprom_buff, eeprom->len);
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001105free_buff:
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001106 kfree(eeprom_buff);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001107 return ret_val;
1108}
1109
1110static int i40e_get_eeprom_len(struct net_device *netdev)
1111{
1112 struct i40e_netdev_priv *np = netdev_priv(netdev);
1113 struct i40e_hw *hw = &np->vsi->back->hw;
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001114 u32 val;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001115
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001116 val = (rd32(hw, I40E_GLPCI_LBARCTRL)
1117 & I40E_GLPCI_LBARCTRL_FL_SIZE_MASK)
1118 >> I40E_GLPCI_LBARCTRL_FL_SIZE_SHIFT;
1119 /* register returns value in power of 2, 64Kbyte chunks. */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001120 val = (64 * 1024) * BIT(val);
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001121 return val;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001122}
1123
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001124static int i40e_set_eeprom(struct net_device *netdev,
1125 struct ethtool_eeprom *eeprom, u8 *bytes)
1126{
1127 struct i40e_netdev_priv *np = netdev_priv(netdev);
1128 struct i40e_hw *hw = &np->vsi->back->hw;
1129 struct i40e_pf *pf = np->vsi->back;
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001130 struct i40e_nvm_access *cmd = (struct i40e_nvm_access *)eeprom;
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001131 int ret_val = 0;
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001132 int errno = 0;
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001133 u32 magic;
1134
1135 /* normal ethtool set_eeprom is not supported */
1136 magic = hw->vendor_id | (hw->device_id << 16);
1137 if (eeprom->magic == magic)
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001138 errno = -EOPNOTSUPP;
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001139 /* check for NVMUpdate access method */
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001140 else if (!eeprom->magic || (eeprom->magic >> 16) != hw->device_id)
1141 errno = -EINVAL;
1142 else if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) ||
1143 test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state))
1144 errno = -EBUSY;
1145 else
1146 ret_val = i40e_nvmupd_command(hw, cmd, bytes, &errno);
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001147
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001148 if ((errno || ret_val) && (hw->debug_mask & I40E_DEBUG_NVM))
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001149 dev_info(&pf->pdev->dev,
Shannon Nelsonc150a502014-11-13 08:23:13 +00001150 "NVMUpdate write failed err=%d status=0x%x errno=%d module=%d offset=0x%x size=%d\n",
1151 ret_val, hw->aq.asq_last_status, errno,
1152 (u8)(cmd->config & I40E_NVM_MOD_PNT_MASK),
1153 cmd->offset, cmd->data_size);
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001154
1155 return errno;
1156}
1157
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001158static void i40e_get_drvinfo(struct net_device *netdev,
1159 struct ethtool_drvinfo *drvinfo)
1160{
1161 struct i40e_netdev_priv *np = netdev_priv(netdev);
1162 struct i40e_vsi *vsi = np->vsi;
1163 struct i40e_pf *pf = vsi->back;
1164
1165 strlcpy(drvinfo->driver, i40e_driver_name, sizeof(drvinfo->driver));
1166 strlcpy(drvinfo->version, i40e_driver_version_str,
1167 sizeof(drvinfo->version));
Shannon Nelson6dec1012015-09-28 14:12:30 -04001168 strlcpy(drvinfo->fw_version, i40e_nvm_version_str(&pf->hw),
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001169 sizeof(drvinfo->fw_version));
1170 strlcpy(drvinfo->bus_info, pci_name(pf->pdev),
1171 sizeof(drvinfo->bus_info));
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07001172 if (pf->hw.pf_id == 0)
1173 drvinfo->n_priv_flags = I40E_PRIV_FLAGS_GL_STR_LEN;
1174 else
1175 drvinfo->n_priv_flags = I40E_PRIV_FLAGS_STR_LEN;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001176}
1177
1178static void i40e_get_ringparam(struct net_device *netdev,
1179 struct ethtool_ringparam *ring)
1180{
1181 struct i40e_netdev_priv *np = netdev_priv(netdev);
1182 struct i40e_pf *pf = np->vsi->back;
1183 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
1184
1185 ring->rx_max_pending = I40E_MAX_NUM_DESCRIPTORS;
1186 ring->tx_max_pending = I40E_MAX_NUM_DESCRIPTORS;
1187 ring->rx_mini_max_pending = 0;
1188 ring->rx_jumbo_max_pending = 0;
Alexander Duyck9f65e152013-09-28 06:00:58 +00001189 ring->rx_pending = vsi->rx_rings[0]->count;
1190 ring->tx_pending = vsi->tx_rings[0]->count;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001191 ring->rx_mini_pending = 0;
1192 ring->rx_jumbo_pending = 0;
1193}
1194
1195static int i40e_set_ringparam(struct net_device *netdev,
1196 struct ethtool_ringparam *ring)
1197{
1198 struct i40e_ring *tx_rings = NULL, *rx_rings = NULL;
1199 struct i40e_netdev_priv *np = netdev_priv(netdev);
1200 struct i40e_vsi *vsi = np->vsi;
1201 struct i40e_pf *pf = vsi->back;
1202 u32 new_rx_count, new_tx_count;
1203 int i, err = 0;
1204
1205 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
1206 return -EINVAL;
1207
Shannon Nelson1fa18372013-11-20 10:03:08 +00001208 if (ring->tx_pending > I40E_MAX_NUM_DESCRIPTORS ||
1209 ring->tx_pending < I40E_MIN_NUM_DESCRIPTORS ||
1210 ring->rx_pending > I40E_MAX_NUM_DESCRIPTORS ||
1211 ring->rx_pending < I40E_MIN_NUM_DESCRIPTORS) {
1212 netdev_info(netdev,
1213 "Descriptors requested (Tx: %d / Rx: %d) out of range [%d-%d]\n",
1214 ring->tx_pending, ring->rx_pending,
1215 I40E_MIN_NUM_DESCRIPTORS, I40E_MAX_NUM_DESCRIPTORS);
1216 return -EINVAL;
1217 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001218
Shannon Nelson1fa18372013-11-20 10:03:08 +00001219 new_tx_count = ALIGN(ring->tx_pending, I40E_REQ_DESCRIPTOR_MULTIPLE);
1220 new_rx_count = ALIGN(ring->rx_pending, I40E_REQ_DESCRIPTOR_MULTIPLE);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001221
1222 /* if nothing to do return success */
Alexander Duyck9f65e152013-09-28 06:00:58 +00001223 if ((new_tx_count == vsi->tx_rings[0]->count) &&
1224 (new_rx_count == vsi->rx_rings[0]->count))
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001225 return 0;
1226
1227 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
1228 usleep_range(1000, 2000);
1229
1230 if (!netif_running(vsi->netdev)) {
1231 /* simple case - set for the next time the netdev is started */
1232 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00001233 vsi->tx_rings[i]->count = new_tx_count;
1234 vsi->rx_rings[i]->count = new_rx_count;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001235 }
1236 goto done;
1237 }
1238
1239 /* We can't just free everything and then setup again,
1240 * because the ISRs in MSI-X mode get passed pointers
1241 * to the Tx and Rx ring structs.
1242 */
1243
1244 /* alloc updated Tx resources */
Alexander Duyck9f65e152013-09-28 06:00:58 +00001245 if (new_tx_count != vsi->tx_rings[0]->count) {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001246 netdev_info(netdev,
1247 "Changing Tx descriptor count from %d to %d.\n",
Alexander Duyck9f65e152013-09-28 06:00:58 +00001248 vsi->tx_rings[0]->count, new_tx_count);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001249 tx_rings = kcalloc(vsi->alloc_queue_pairs,
1250 sizeof(struct i40e_ring), GFP_KERNEL);
1251 if (!tx_rings) {
1252 err = -ENOMEM;
1253 goto done;
1254 }
1255
1256 for (i = 0; i < vsi->num_queue_pairs; i++) {
1257 /* clone ring and setup updated count */
Alexander Duyck9f65e152013-09-28 06:00:58 +00001258 tx_rings[i] = *vsi->tx_rings[i];
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001259 tx_rings[i].count = new_tx_count;
Jesse Brandeburg1e8efb42015-08-27 11:42:33 -04001260 /* the desc and bi pointers will be reallocated in the
1261 * setup call
1262 */
1263 tx_rings[i].desc = NULL;
1264 tx_rings[i].rx_bi = NULL;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001265 err = i40e_setup_tx_descriptors(&tx_rings[i]);
1266 if (err) {
1267 while (i) {
1268 i--;
1269 i40e_free_tx_resources(&tx_rings[i]);
1270 }
1271 kfree(tx_rings);
1272 tx_rings = NULL;
1273
1274 goto done;
1275 }
1276 }
1277 }
1278
1279 /* alloc updated Rx resources */
Alexander Duyck9f65e152013-09-28 06:00:58 +00001280 if (new_rx_count != vsi->rx_rings[0]->count) {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001281 netdev_info(netdev,
1282 "Changing Rx descriptor count from %d to %d\n",
Alexander Duyck9f65e152013-09-28 06:00:58 +00001283 vsi->rx_rings[0]->count, new_rx_count);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001284 rx_rings = kcalloc(vsi->alloc_queue_pairs,
1285 sizeof(struct i40e_ring), GFP_KERNEL);
1286 if (!rx_rings) {
1287 err = -ENOMEM;
1288 goto free_tx;
1289 }
1290
1291 for (i = 0; i < vsi->num_queue_pairs; i++) {
Jesse Brandeburg147e81e2016-04-18 11:33:49 -07001292 /* this is to allow wr32 to have something to write to
1293 * during early allocation of Rx buffers
1294 */
1295 u32 __iomem faketail = 0;
1296 struct i40e_ring *ring;
1297 u16 unused;
1298
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001299 /* clone ring and setup updated count */
Alexander Duyck9f65e152013-09-28 06:00:58 +00001300 rx_rings[i] = *vsi->rx_rings[i];
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001301 rx_rings[i].count = new_rx_count;
Jesse Brandeburg1e8efb42015-08-27 11:42:33 -04001302 /* the desc and bi pointers will be reallocated in the
1303 * setup call
1304 */
1305 rx_rings[i].desc = NULL;
1306 rx_rings[i].rx_bi = NULL;
Jesse Brandeburg147e81e2016-04-18 11:33:49 -07001307 rx_rings[i].tail = (u8 __iomem *)&faketail;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001308 err = i40e_setup_rx_descriptors(&rx_rings[i]);
Jesse Brandeburg147e81e2016-04-18 11:33:49 -07001309 if (err)
1310 goto rx_unwind;
1311
1312 /* now allocate the Rx buffers to make sure the OS
1313 * has enough memory, any failure here means abort
1314 */
1315 ring = &rx_rings[i];
1316 unused = I40E_DESC_UNUSED(ring);
1317 err = i40e_alloc_rx_buffers(ring, unused);
1318rx_unwind:
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001319 if (err) {
Jesse Brandeburg147e81e2016-04-18 11:33:49 -07001320 do {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001321 i40e_free_rx_resources(&rx_rings[i]);
Jesse Brandeburg147e81e2016-04-18 11:33:49 -07001322 } while (i--);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001323 kfree(rx_rings);
1324 rx_rings = NULL;
1325
1326 goto free_tx;
1327 }
1328 }
1329 }
1330
1331 /* Bring interface down, copy in the new ring info,
1332 * then restore the interface
1333 */
1334 i40e_down(vsi);
1335
1336 if (tx_rings) {
1337 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00001338 i40e_free_tx_resources(vsi->tx_rings[i]);
1339 *vsi->tx_rings[i] = tx_rings[i];
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001340 }
1341 kfree(tx_rings);
1342 tx_rings = NULL;
1343 }
1344
1345 if (rx_rings) {
1346 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00001347 i40e_free_rx_resources(vsi->rx_rings[i]);
Jesse Brandeburg147e81e2016-04-18 11:33:49 -07001348 /* get the real tail offset */
1349 rx_rings[i].tail = vsi->rx_rings[i]->tail;
1350 /* this is to fake out the allocation routine
1351 * into thinking it has to realloc everything
1352 * but the recycling logic will let us re-use
1353 * the buffers allocated above
1354 */
1355 rx_rings[i].next_to_use = 0;
1356 rx_rings[i].next_to_clean = 0;
1357 rx_rings[i].next_to_alloc = 0;
1358 /* do a struct copy */
Alexander Duyck9f65e152013-09-28 06:00:58 +00001359 *vsi->rx_rings[i] = rx_rings[i];
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001360 }
1361 kfree(rx_rings);
1362 rx_rings = NULL;
1363 }
1364
1365 i40e_up(vsi);
1366
1367free_tx:
1368 /* error cleanup if the Rx allocations failed after getting Tx */
1369 if (tx_rings) {
1370 for (i = 0; i < vsi->num_queue_pairs; i++)
1371 i40e_free_tx_resources(&tx_rings[i]);
1372 kfree(tx_rings);
1373 tx_rings = NULL;
1374 }
1375
1376done:
1377 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
1378
1379 return err;
1380}
1381
1382static int i40e_get_sset_count(struct net_device *netdev, int sset)
1383{
1384 struct i40e_netdev_priv *np = netdev_priv(netdev);
1385 struct i40e_vsi *vsi = np->vsi;
1386 struct i40e_pf *pf = vsi->back;
1387
1388 switch (sset) {
1389 case ETH_SS_TEST:
1390 return I40E_TEST_LEN;
1391 case ETH_SS_STATS:
Shannon Nelson58ce5172015-02-27 09:15:26 +00001392 if (vsi == pf->vsi[pf->lan_vsi] && pf->hw.partition_id == 1) {
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001393 int len = I40E_PF_STATS_LEN(netdev);
1394
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04001395 if ((pf->lan_veb != I40E_NO_VEB) &&
1396 (pf->flags & I40E_FLAG_VEB_STATS_ENABLED))
Neerav Parikhfe860af2015-07-10 19:36:02 -04001397 len += I40E_VEB_STATS_TOTAL;
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001398 return len;
1399 } else {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001400 return I40E_VSI_STATS_LEN(netdev);
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001401 }
Greg Rose7e45ab42015-02-06 08:52:19 +00001402 case ETH_SS_PRIV_FLAGS:
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07001403 if (pf->hw.pf_id == 0)
1404 return I40E_PRIV_FLAGS_GL_STR_LEN;
1405 else
1406 return I40E_PRIV_FLAGS_STR_LEN;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001407 default:
1408 return -EOPNOTSUPP;
1409 }
1410}
1411
1412static void i40e_get_ethtool_stats(struct net_device *netdev,
1413 struct ethtool_stats *stats, u64 *data)
1414{
1415 struct i40e_netdev_priv *np = netdev_priv(netdev);
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00001416 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001417 struct i40e_vsi *vsi = np->vsi;
1418 struct i40e_pf *pf = vsi->back;
1419 int i = 0;
1420 char *p;
1421 int j;
1422 struct rtnl_link_stats64 *net_stats = i40e_get_vsi_stats_struct(vsi);
Alexander Duyck980e9b12013-09-28 06:01:03 +00001423 unsigned int start;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001424
1425 i40e_update_stats(vsi);
1426
1427 for (j = 0; j < I40E_NETDEV_STATS_LEN; j++) {
1428 p = (char *)net_stats + i40e_gstrings_net_stats[j].stat_offset;
1429 data[i++] = (i40e_gstrings_net_stats[j].sizeof_stat ==
1430 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
1431 }
Shannon Nelson41a9e552014-04-23 04:50:20 +00001432 for (j = 0; j < I40E_MISC_STATS_LEN; j++) {
1433 p = (char *)vsi + i40e_gstrings_misc_stats[j].stat_offset;
1434 data[i++] = (i40e_gstrings_misc_stats[j].sizeof_stat ==
1435 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
1436 }
Vasu Dev38e00432014-08-01 13:27:03 -07001437#ifdef I40E_FCOE
1438 for (j = 0; j < I40E_FCOE_STATS_LEN; j++) {
1439 p = (char *)vsi + i40e_gstrings_fcoe_stats[j].stat_offset;
1440 data[i++] = (i40e_gstrings_fcoe_stats[j].sizeof_stat ==
1441 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
1442 }
1443#endif
Alexander Duyck980e9b12013-09-28 06:01:03 +00001444 rcu_read_lock();
Catherine Sullivan99c472a2014-03-14 07:32:30 +00001445 for (j = 0; j < vsi->num_queue_pairs; j++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00001446 tx_ring = ACCESS_ONCE(vsi->tx_rings[j]);
Alexander Duyck980e9b12013-09-28 06:01:03 +00001447
1448 if (!tx_ring)
1449 continue;
1450
1451 /* process Tx ring statistics */
1452 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001453 start = u64_stats_fetch_begin_irq(&tx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +00001454 data[i] = tx_ring->stats.packets;
1455 data[i + 1] = tx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001456 } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start));
Catherine Sullivan99c472a2014-03-14 07:32:30 +00001457 i += 2;
Alexander Duyck980e9b12013-09-28 06:01:03 +00001458
1459 /* Rx ring is the 2nd half of the queue pair */
1460 rx_ring = &tx_ring[1];
1461 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001462 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
Catherine Sullivan99c472a2014-03-14 07:32:30 +00001463 data[i] = rx_ring->stats.packets;
1464 data[i + 1] = rx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001465 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
Catherine Sullivan99c472a2014-03-14 07:32:30 +00001466 i += 2;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001467 }
Alexander Duyck980e9b12013-09-28 06:01:03 +00001468 rcu_read_unlock();
Shannon Nelson58ce5172015-02-27 09:15:26 +00001469 if (vsi != pf->vsi[pf->lan_vsi] || pf->hw.partition_id != 1)
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001470 return;
1471
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04001472 if ((pf->lan_veb != I40E_NO_VEB) &&
1473 (pf->flags & I40E_FLAG_VEB_STATS_ENABLED)) {
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001474 struct i40e_veb *veb = pf->veb[pf->lan_veb];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001475
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001476 for (j = 0; j < I40E_VEB_STATS_LEN; j++) {
1477 p = (char *)veb;
1478 p += i40e_gstrings_veb_stats[j].stat_offset;
1479 data[i++] = (i40e_gstrings_veb_stats[j].sizeof_stat ==
1480 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001481 }
Jesse Brandeburg74a6c662015-10-02 19:09:34 -07001482 for (j = 0; j < I40E_MAX_TRAFFIC_CLASS; j++) {
1483 data[i++] = veb->tc_stats.tc_tx_packets[j];
1484 data[i++] = veb->tc_stats.tc_tx_bytes[j];
1485 data[i++] = veb->tc_stats.tc_rx_packets[j];
1486 data[i++] = veb->tc_stats.tc_rx_bytes[j];
1487 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001488 }
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001489 for (j = 0; j < I40E_GLOBAL_STATS_LEN; j++) {
1490 p = (char *)pf + i40e_gstrings_stats[j].stat_offset;
1491 data[i++] = (i40e_gstrings_stats[j].sizeof_stat ==
1492 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
1493 }
1494 for (j = 0; j < I40E_MAX_USER_PRIORITY; j++) {
1495 data[i++] = pf->stats.priority_xon_tx[j];
1496 data[i++] = pf->stats.priority_xoff_tx[j];
1497 }
1498 for (j = 0; j < I40E_MAX_USER_PRIORITY; j++) {
1499 data[i++] = pf->stats.priority_xon_rx[j];
1500 data[i++] = pf->stats.priority_xoff_rx[j];
1501 }
1502 for (j = 0; j < I40E_MAX_USER_PRIORITY; j++)
1503 data[i++] = pf->stats.priority_xon_2_xoff[j];
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001504}
1505
1506static void i40e_get_strings(struct net_device *netdev, u32 stringset,
1507 u8 *data)
1508{
1509 struct i40e_netdev_priv *np = netdev_priv(netdev);
1510 struct i40e_vsi *vsi = np->vsi;
1511 struct i40e_pf *pf = vsi->back;
1512 char *p = (char *)data;
1513 int i;
1514
1515 switch (stringset) {
1516 case ETH_SS_TEST:
1517 for (i = 0; i < I40E_TEST_LEN; i++) {
1518 memcpy(data, i40e_gstrings_test[i], ETH_GSTRING_LEN);
1519 data += ETH_GSTRING_LEN;
1520 }
1521 break;
1522 case ETH_SS_STATS:
1523 for (i = 0; i < I40E_NETDEV_STATS_LEN; i++) {
1524 snprintf(p, ETH_GSTRING_LEN, "%s",
1525 i40e_gstrings_net_stats[i].stat_string);
1526 p += ETH_GSTRING_LEN;
1527 }
Shannon Nelson41a9e552014-04-23 04:50:20 +00001528 for (i = 0; i < I40E_MISC_STATS_LEN; i++) {
1529 snprintf(p, ETH_GSTRING_LEN, "%s",
1530 i40e_gstrings_misc_stats[i].stat_string);
1531 p += ETH_GSTRING_LEN;
1532 }
Vasu Dev38e00432014-08-01 13:27:03 -07001533#ifdef I40E_FCOE
1534 for (i = 0; i < I40E_FCOE_STATS_LEN; i++) {
1535 snprintf(p, ETH_GSTRING_LEN, "%s",
1536 i40e_gstrings_fcoe_stats[i].stat_string);
1537 p += ETH_GSTRING_LEN;
1538 }
1539#endif
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001540 for (i = 0; i < vsi->num_queue_pairs; i++) {
1541 snprintf(p, ETH_GSTRING_LEN, "tx-%u.tx_packets", i);
1542 p += ETH_GSTRING_LEN;
1543 snprintf(p, ETH_GSTRING_LEN, "tx-%u.tx_bytes", i);
1544 p += ETH_GSTRING_LEN;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001545 snprintf(p, ETH_GSTRING_LEN, "rx-%u.rx_packets", i);
1546 p += ETH_GSTRING_LEN;
1547 snprintf(p, ETH_GSTRING_LEN, "rx-%u.rx_bytes", i);
1548 p += ETH_GSTRING_LEN;
1549 }
Shannon Nelson58ce5172015-02-27 09:15:26 +00001550 if (vsi != pf->vsi[pf->lan_vsi] || pf->hw.partition_id != 1)
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001551 return;
1552
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04001553 if ((pf->lan_veb != I40E_NO_VEB) &&
1554 (pf->flags & I40E_FLAG_VEB_STATS_ENABLED)) {
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001555 for (i = 0; i < I40E_VEB_STATS_LEN; i++) {
1556 snprintf(p, ETH_GSTRING_LEN, "veb.%s",
1557 i40e_gstrings_veb_stats[i].stat_string);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001558 p += ETH_GSTRING_LEN;
1559 }
Neerav Parikhfe860af2015-07-10 19:36:02 -04001560 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1561 snprintf(p, ETH_GSTRING_LEN,
1562 "veb.tc_%u_tx_packets", i);
1563 p += ETH_GSTRING_LEN;
1564 snprintf(p, ETH_GSTRING_LEN,
1565 "veb.tc_%u_tx_bytes", i);
1566 p += ETH_GSTRING_LEN;
1567 snprintf(p, ETH_GSTRING_LEN,
1568 "veb.tc_%u_rx_packets", i);
1569 p += ETH_GSTRING_LEN;
1570 snprintf(p, ETH_GSTRING_LEN,
1571 "veb.tc_%u_rx_bytes", i);
1572 p += ETH_GSTRING_LEN;
1573 }
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001574 }
1575 for (i = 0; i < I40E_GLOBAL_STATS_LEN; i++) {
1576 snprintf(p, ETH_GSTRING_LEN, "port.%s",
1577 i40e_gstrings_stats[i].stat_string);
1578 p += ETH_GSTRING_LEN;
1579 }
1580 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
1581 snprintf(p, ETH_GSTRING_LEN,
1582 "port.tx_priority_%u_xon", i);
1583 p += ETH_GSTRING_LEN;
1584 snprintf(p, ETH_GSTRING_LEN,
1585 "port.tx_priority_%u_xoff", i);
1586 p += ETH_GSTRING_LEN;
1587 }
1588 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
1589 snprintf(p, ETH_GSTRING_LEN,
1590 "port.rx_priority_%u_xon", i);
1591 p += ETH_GSTRING_LEN;
1592 snprintf(p, ETH_GSTRING_LEN,
1593 "port.rx_priority_%u_xoff", i);
1594 p += ETH_GSTRING_LEN;
1595 }
1596 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
1597 snprintf(p, ETH_GSTRING_LEN,
1598 "port.rx_priority_%u_xon_2_xoff", i);
1599 p += ETH_GSTRING_LEN;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001600 }
1601 /* BUG_ON(p - data != I40E_STATS_LEN * ETH_GSTRING_LEN); */
1602 break;
Greg Rose7e45ab42015-02-06 08:52:19 +00001603 case ETH_SS_PRIV_FLAGS:
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07001604 if (pf->hw.pf_id == 0) {
1605 for (i = 0; i < I40E_PRIV_FLAGS_GL_STR_LEN; i++) {
1606 memcpy(data, i40e_priv_flags_strings_gl[i],
1607 ETH_GSTRING_LEN);
1608 data += ETH_GSTRING_LEN;
1609 }
1610 } else {
1611 for (i = 0; i < I40E_PRIV_FLAGS_STR_LEN; i++) {
1612 memcpy(data, i40e_priv_flags_strings[i],
1613 ETH_GSTRING_LEN);
1614 data += ETH_GSTRING_LEN;
1615 }
Greg Rose7e45ab42015-02-06 08:52:19 +00001616 }
1617 break;
Akeem G Abodunrin579b23d2015-02-24 06:58:42 +00001618 default:
1619 break;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001620 }
1621}
1622
1623static int i40e_get_ts_info(struct net_device *dev,
1624 struct ethtool_ts_info *info)
1625{
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001626 struct i40e_pf *pf = i40e_netdev_to_pf(dev);
1627
Jacob Kellerfe88bda2014-11-11 20:05:58 +00001628 /* only report HW timestamping if PTP is enabled */
1629 if (!(pf->flags & I40E_FLAG_PTP))
1630 return ethtool_op_get_ts_info(dev, info);
1631
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001632 info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE |
1633 SOF_TIMESTAMPING_RX_SOFTWARE |
1634 SOF_TIMESTAMPING_SOFTWARE |
1635 SOF_TIMESTAMPING_TX_HARDWARE |
1636 SOF_TIMESTAMPING_RX_HARDWARE |
1637 SOF_TIMESTAMPING_RAW_HARDWARE;
1638
1639 if (pf->ptp_clock)
1640 info->phc_index = ptp_clock_index(pf->ptp_clock);
1641 else
1642 info->phc_index = -1;
1643
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001644 info->tx_types = BIT(HWTSTAMP_TX_OFF) | BIT(HWTSTAMP_TX_ON);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001645
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001646 info->rx_filters = BIT(HWTSTAMP_FILTER_NONE) |
1647 BIT(HWTSTAMP_FILTER_PTP_V1_L4_EVENT) |
1648 BIT(HWTSTAMP_FILTER_PTP_V2_EVENT);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001649
1650 return 0;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001651}
1652
Shannon Nelson7b086392013-11-20 10:02:59 +00001653static int i40e_link_test(struct net_device *netdev, u64 *data)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001654{
Shannon Nelson7b086392013-11-20 10:02:59 +00001655 struct i40e_netdev_priv *np = netdev_priv(netdev);
1656 struct i40e_pf *pf = np->vsi->back;
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04001657 i40e_status status;
1658 bool link_up = false;
Shannon Nelson7b086392013-11-20 10:02:59 +00001659
Shannon Nelsonb03aaa92013-11-20 10:03:06 +00001660 netif_info(pf, hw, netdev, "link test\n");
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04001661 status = i40e_get_link_status(&pf->hw, &link_up);
1662 if (status) {
1663 netif_err(pf, drv, netdev, "link query timed out, please retry test\n");
1664 *data = 1;
1665 return *data;
1666 }
1667
1668 if (link_up)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001669 *data = 0;
1670 else
1671 *data = 1;
1672
1673 return *data;
1674}
1675
Shannon Nelson7b086392013-11-20 10:02:59 +00001676static int i40e_reg_test(struct net_device *netdev, u64 *data)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001677{
Shannon Nelson7b086392013-11-20 10:02:59 +00001678 struct i40e_netdev_priv *np = netdev_priv(netdev);
1679 struct i40e_pf *pf = np->vsi->back;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001680
Shannon Nelsonb03aaa92013-11-20 10:03:06 +00001681 netif_info(pf, hw, netdev, "register test\n");
Shannon Nelson7b086392013-11-20 10:02:59 +00001682 *data = i40e_diag_reg_test(&pf->hw);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001683
Shannon Nelson7b086392013-11-20 10:02:59 +00001684 return *data;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001685}
1686
Shannon Nelson7b086392013-11-20 10:02:59 +00001687static int i40e_eeprom_test(struct net_device *netdev, u64 *data)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001688{
Shannon Nelson7b086392013-11-20 10:02:59 +00001689 struct i40e_netdev_priv *np = netdev_priv(netdev);
1690 struct i40e_pf *pf = np->vsi->back;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001691
Shannon Nelsonb03aaa92013-11-20 10:03:06 +00001692 netif_info(pf, hw, netdev, "eeprom test\n");
Shannon Nelson7b086392013-11-20 10:02:59 +00001693 *data = i40e_diag_eeprom_test(&pf->hw);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001694
Shannon Nelson4443ec92014-11-13 08:23:12 +00001695 /* forcebly clear the NVM Update state machine */
1696 pf->hw.nvmupd_state = I40E_NVMUPD_STATE_INIT;
1697
Shannon Nelson7b086392013-11-20 10:02:59 +00001698 return *data;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001699}
1700
Shannon Nelson7b086392013-11-20 10:02:59 +00001701static int i40e_intr_test(struct net_device *netdev, u64 *data)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001702{
Shannon Nelson7b086392013-11-20 10:02:59 +00001703 struct i40e_netdev_priv *np = netdev_priv(netdev);
1704 struct i40e_pf *pf = np->vsi->back;
Shannon Nelsoncd92e722013-11-16 10:00:44 +00001705 u16 swc_old = pf->sw_int_count;
1706
Shannon Nelsonb03aaa92013-11-20 10:03:06 +00001707 netif_info(pf, hw, netdev, "interrupt test\n");
Shannon Nelsoncd92e722013-11-16 10:00:44 +00001708 wr32(&pf->hw, I40E_PFINT_DYN_CTL0,
1709 (I40E_PFINT_DYN_CTL0_INTENA_MASK |
Shannon Nelson5d1ff1062014-11-11 20:04:35 +00001710 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK |
1711 I40E_PFINT_DYN_CTL0_ITR_INDX_MASK |
1712 I40E_PFINT_DYN_CTL0_SW_ITR_INDX_ENA_MASK |
1713 I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK));
Shannon Nelsoncd92e722013-11-16 10:00:44 +00001714 usleep_range(1000, 2000);
1715 *data = (swc_old == pf->sw_int_count);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001716
1717 return *data;
1718}
1719
Shannon Nelson7b086392013-11-20 10:02:59 +00001720static int i40e_loopback_test(struct net_device *netdev, u64 *data)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001721{
Shannon Nelsonb03aaa92013-11-20 10:03:06 +00001722 struct i40e_netdev_priv *np = netdev_priv(netdev);
1723 struct i40e_pf *pf = np->vsi->back;
1724
1725 netif_info(pf, hw, netdev, "loopback test not implemented\n");
Shannon Nelsoncd92e722013-11-16 10:00:44 +00001726 *data = 0;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001727
1728 return *data;
1729}
1730
Greg Rosee17bc412015-04-16 20:05:59 -04001731static inline bool i40e_active_vfs(struct i40e_pf *pf)
1732{
1733 struct i40e_vf *vfs = pf->vf;
1734 int i;
1735
1736 for (i = 0; i < pf->num_alloc_vfs; i++)
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001737 if (test_bit(I40E_VF_STAT_ACTIVE, &vfs[i].vf_states))
Greg Rosee17bc412015-04-16 20:05:59 -04001738 return true;
1739 return false;
1740}
1741
Greg Rose510efb22015-07-10 19:36:01 -04001742static inline bool i40e_active_vmdqs(struct i40e_pf *pf)
1743{
1744 struct i40e_vsi **vsi = pf->vsi;
1745 int i;
1746
1747 for (i = 0; i < pf->num_alloc_vsi; i++) {
1748 if (!vsi[i])
1749 continue;
1750 if (vsi[i]->type == I40E_VSI_VMDQ2)
1751 return true;
1752 }
1753
1754 return false;
1755}
1756
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001757static void i40e_diag_test(struct net_device *netdev,
1758 struct ethtool_test *eth_test, u64 *data)
1759{
1760 struct i40e_netdev_priv *np = netdev_priv(netdev);
Greg Rose5b86c5c2015-02-26 16:14:35 +00001761 bool if_running = netif_running(netdev);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001762 struct i40e_pf *pf = np->vsi->back;
1763
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001764 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
1765 /* Offline tests */
Shannon Nelsonb03aaa92013-11-20 10:03:06 +00001766 netif_info(pf, drv, netdev, "offline testing starting\n");
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001767
Shannon Nelsonf551b432013-11-26 10:49:12 +00001768 set_bit(__I40E_TESTING, &pf->state);
Greg Rosee17bc412015-04-16 20:05:59 -04001769
Greg Rose510efb22015-07-10 19:36:01 -04001770 if (i40e_active_vfs(pf) || i40e_active_vmdqs(pf)) {
Greg Rosee17bc412015-04-16 20:05:59 -04001771 dev_warn(&pf->pdev->dev,
Greg Rose510efb22015-07-10 19:36:01 -04001772 "Please take active VFs and Netqueues offline and restart the adapter before running NIC diagnostics\n");
Greg Rosee17bc412015-04-16 20:05:59 -04001773 data[I40E_ETH_TEST_REG] = 1;
1774 data[I40E_ETH_TEST_EEPROM] = 1;
1775 data[I40E_ETH_TEST_INTR] = 1;
1776 data[I40E_ETH_TEST_LOOPBACK] = 1;
1777 data[I40E_ETH_TEST_LINK] = 1;
1778 eth_test->flags |= ETH_TEST_FL_FAILED;
1779 clear_bit(__I40E_TESTING, &pf->state);
1780 goto skip_ol_tests;
1781 }
1782
Greg Rose5b86c5c2015-02-26 16:14:35 +00001783 /* If the device is online then take it offline */
1784 if (if_running)
1785 /* indicate we're in test mode */
Stefan Assmann08ca3872016-02-03 09:20:47 +01001786 i40e_close(netdev);
Greg Rose5b86c5c2015-02-26 16:14:35 +00001787 else
Greg Roseb4e53f02015-07-10 19:36:03 -04001788 /* This reset does not affect link - if it is
1789 * changed to a type of reset that does affect
1790 * link then the following link test would have
1791 * to be moved to before the reset
1792 */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001793 i40e_do_reset(pf, BIT(__I40E_PF_RESET_REQUESTED));
Shannon Nelsonf551b432013-11-26 10:49:12 +00001794
Shannon Nelson7b086392013-11-20 10:02:59 +00001795 if (i40e_link_test(netdev, &data[I40E_ETH_TEST_LINK]))
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001796 eth_test->flags |= ETH_TEST_FL_FAILED;
1797
Shannon Nelson7b086392013-11-20 10:02:59 +00001798 if (i40e_eeprom_test(netdev, &data[I40E_ETH_TEST_EEPROM]))
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001799 eth_test->flags |= ETH_TEST_FL_FAILED;
1800
Shannon Nelson7b086392013-11-20 10:02:59 +00001801 if (i40e_intr_test(netdev, &data[I40E_ETH_TEST_INTR]))
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001802 eth_test->flags |= ETH_TEST_FL_FAILED;
1803
Shannon Nelson7b086392013-11-20 10:02:59 +00001804 if (i40e_loopback_test(netdev, &data[I40E_ETH_TEST_LOOPBACK]))
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001805 eth_test->flags |= ETH_TEST_FL_FAILED;
1806
Shannon Nelsonf551b432013-11-26 10:49:12 +00001807 /* run reg test last, a reset is required after it */
1808 if (i40e_reg_test(netdev, &data[I40E_ETH_TEST_REG]))
1809 eth_test->flags |= ETH_TEST_FL_FAILED;
1810
1811 clear_bit(__I40E_TESTING, &pf->state);
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001812 i40e_do_reset(pf, BIT(__I40E_PF_RESET_REQUESTED));
Greg Rose5b86c5c2015-02-26 16:14:35 +00001813
1814 if (if_running)
Stefan Assmann08ca3872016-02-03 09:20:47 +01001815 i40e_open(netdev);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001816 } else {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001817 /* Online tests */
Shannon Nelsonb03aaa92013-11-20 10:03:06 +00001818 netif_info(pf, drv, netdev, "online testing starting\n");
1819
Shannon Nelson7b086392013-11-20 10:02:59 +00001820 if (i40e_link_test(netdev, &data[I40E_ETH_TEST_LINK]))
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001821 eth_test->flags |= ETH_TEST_FL_FAILED;
1822
1823 /* Offline only tests, not run in online; pass by default */
1824 data[I40E_ETH_TEST_REG] = 0;
1825 data[I40E_ETH_TEST_EEPROM] = 0;
1826 data[I40E_ETH_TEST_INTR] = 0;
1827 data[I40E_ETH_TEST_LOOPBACK] = 0;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001828 }
Shannon Nelsonc140c172013-11-20 10:02:58 +00001829
Greg Rosee17bc412015-04-16 20:05:59 -04001830skip_ol_tests:
1831
Shannon Nelsonb03aaa92013-11-20 10:03:06 +00001832 netif_info(pf, drv, netdev, "testing finished\n");
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001833}
1834
1835static void i40e_get_wol(struct net_device *netdev,
1836 struct ethtool_wolinfo *wol)
1837{
Shannon Nelson8e2773a2013-11-28 06:39:22 +00001838 struct i40e_netdev_priv *np = netdev_priv(netdev);
1839 struct i40e_pf *pf = np->vsi->back;
1840 struct i40e_hw *hw = &pf->hw;
1841 u16 wol_nvm_bits;
1842
1843 /* NVM bit on means WoL disabled for the port */
1844 i40e_read_nvm_word(hw, I40E_SR_NVM_WAKE_ON_LAN, &wol_nvm_bits);
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001845 if ((BIT(hw->port) & wol_nvm_bits) || (hw->partition_id != 1)) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +00001846 wol->supported = 0;
1847 wol->wolopts = 0;
1848 } else {
1849 wol->supported = WAKE_MAGIC;
1850 wol->wolopts = (pf->wol_en ? WAKE_MAGIC : 0);
1851 }
1852}
1853
Shannon Nelsonf0d8c732014-12-11 07:06:32 +00001854/**
1855 * i40e_set_wol - set the WakeOnLAN configuration
1856 * @netdev: the netdev in question
1857 * @wol: the ethtool WoL setting data
1858 **/
Shannon Nelson8e2773a2013-11-28 06:39:22 +00001859static int i40e_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
1860{
1861 struct i40e_netdev_priv *np = netdev_priv(netdev);
1862 struct i40e_pf *pf = np->vsi->back;
Shannon Nelsonf0d8c732014-12-11 07:06:32 +00001863 struct i40e_vsi *vsi = np->vsi;
Shannon Nelson8e2773a2013-11-28 06:39:22 +00001864 struct i40e_hw *hw = &pf->hw;
1865 u16 wol_nvm_bits;
1866
Shannon Nelsonf0d8c732014-12-11 07:06:32 +00001867 /* WoL not supported if this isn't the controlling PF on the port */
1868 if (hw->partition_id != 1) {
1869 i40e_partition_setting_complaint(pf);
1870 return -EOPNOTSUPP;
1871 }
1872
1873 if (vsi != pf->vsi[pf->lan_vsi])
1874 return -EOPNOTSUPP;
1875
Shannon Nelson8e2773a2013-11-28 06:39:22 +00001876 /* NVM bit on means WoL disabled for the port */
1877 i40e_read_nvm_word(hw, I40E_SR_NVM_WAKE_ON_LAN, &wol_nvm_bits);
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001878 if (BIT(hw->port) & wol_nvm_bits)
Shannon Nelson8e2773a2013-11-28 06:39:22 +00001879 return -EOPNOTSUPP;
1880
1881 /* only magic packet is supported */
1882 if (wol->wolopts && (wol->wolopts != WAKE_MAGIC))
1883 return -EOPNOTSUPP;
1884
1885 /* is this a new value? */
1886 if (pf->wol_en != !!wol->wolopts) {
1887 pf->wol_en = !!wol->wolopts;
1888 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
1889 }
1890
1891 return 0;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001892}
1893
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001894static int i40e_set_phys_id(struct net_device *netdev,
1895 enum ethtool_phys_id_state state)
1896{
1897 struct i40e_netdev_priv *np = netdev_priv(netdev);
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08001898 i40e_status ret = 0;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001899 struct i40e_pf *pf = np->vsi->back;
1900 struct i40e_hw *hw = &pf->hw;
1901 int blink_freq = 2;
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08001902 u16 temp_status;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001903
1904 switch (state) {
1905 case ETHTOOL_ID_ACTIVE:
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08001906 if (!(pf->flags & I40E_FLAG_HAVE_10GBASET_PHY)) {
1907 pf->led_status = i40e_led_get(hw);
1908 } else {
Kevin Scott06c0e392016-05-03 15:13:09 -07001909 i40e_aq_set_phy_debug(hw, I40E_PHY_DEBUG_ALL, NULL);
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08001910 ret = i40e_led_get_phy(hw, &temp_status,
1911 &pf->phy_led_val);
1912 pf->led_status = temp_status;
1913 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001914 return blink_freq;
1915 case ETHTOOL_ID_ON:
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08001916 if (!(pf->flags & I40E_FLAG_HAVE_10GBASET_PHY))
1917 i40e_led_set(hw, 0xf, false);
1918 else
1919 ret = i40e_led_set_phy(hw, true, pf->led_status, 0);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001920 break;
1921 case ETHTOOL_ID_OFF:
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08001922 if (!(pf->flags & I40E_FLAG_HAVE_10GBASET_PHY))
1923 i40e_led_set(hw, 0x0, false);
1924 else
1925 ret = i40e_led_set_phy(hw, false, pf->led_status, 0);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001926 break;
1927 case ETHTOOL_ID_INACTIVE:
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08001928 if (!(pf->flags & I40E_FLAG_HAVE_10GBASET_PHY)) {
1929 i40e_led_set(hw, false, pf->led_status);
1930 } else {
1931 ret = i40e_led_set_phy(hw, false, pf->led_status,
1932 (pf->phy_led_val |
1933 I40E_PHY_LED_MODE_ORIG));
1934 i40e_aq_set_phy_debug(hw, 0, NULL);
1935 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001936 break;
Akeem G Abodunrin579b23d2015-02-24 06:58:42 +00001937 default:
1938 break;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001939 }
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08001940 if (ret)
1941 return -ENOENT;
1942 else
1943 return 0;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001944}
1945
1946/* NOTE: i40e hardware uses a conversion factor of 2 for Interrupt
1947 * Throttle Rate (ITR) ie. ITR(1) = 2us ITR(10) = 20 us, and also
1948 * 125us (8000 interrupts per second) == ITR(62)
1949 */
1950
Kan Lianga75e8002016-02-19 09:24:04 -05001951static int __i40e_get_coalesce(struct net_device *netdev,
1952 struct ethtool_coalesce *ec,
1953 int queue)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001954{
1955 struct i40e_netdev_priv *np = netdev_priv(netdev);
1956 struct i40e_vsi *vsi = np->vsi;
1957
1958 ec->tx_max_coalesced_frames_irq = vsi->work_limit;
1959 ec->rx_max_coalesced_frames_irq = vsi->work_limit;
1960
Kan Lianga75e8002016-02-19 09:24:04 -05001961 /* rx and tx usecs has per queue value. If user doesn't specify the queue,
1962 * return queue 0's value to represent.
1963 */
1964 if (queue < 0) {
1965 queue = 0;
1966 } else if (queue >= vsi->num_queue_pairs) {
1967 return -EINVAL;
1968 }
1969
1970 if (ITR_IS_DYNAMIC(vsi->rx_rings[queue]->rx_itr_setting))
Mitch Williams32f5f542014-04-04 04:43:10 +00001971 ec->use_adaptive_rx_coalesce = 1;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001972
Kan Lianga75e8002016-02-19 09:24:04 -05001973 if (ITR_IS_DYNAMIC(vsi->tx_rings[queue]->tx_itr_setting))
Mitch Williams32f5f542014-04-04 04:43:10 +00001974 ec->use_adaptive_tx_coalesce = 1;
1975
Kan Lianga75e8002016-02-19 09:24:04 -05001976 ec->rx_coalesce_usecs = vsi->rx_rings[queue]->rx_itr_setting & ~I40E_ITR_DYNAMIC;
1977 ec->tx_coalesce_usecs = vsi->tx_rings[queue]->tx_itr_setting & ~I40E_ITR_DYNAMIC;
1978
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04001979 /* we use the _usecs_high to store/set the interrupt rate limit
1980 * that the hardware supports, that almost but not quite
1981 * fits the original intent of the ethtool variable,
1982 * the rx_coalesce_usecs_high limits total interrupts
1983 * per second from both tx/rx sources.
1984 */
1985 ec->rx_coalesce_usecs_high = vsi->int_rate_limit;
1986 ec->tx_coalesce_usecs_high = vsi->int_rate_limit;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001987
1988 return 0;
1989}
1990
Kan Lianga75e8002016-02-19 09:24:04 -05001991static int i40e_get_coalesce(struct net_device *netdev,
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001992 struct ethtool_coalesce *ec)
1993{
Kan Lianga75e8002016-02-19 09:24:04 -05001994 return __i40e_get_coalesce(netdev, ec, -1);
1995}
1996
Kan Liangbe280ba2016-02-19 09:24:05 -05001997static int i40e_get_per_queue_coalesce(struct net_device *netdev, u32 queue,
1998 struct ethtool_coalesce *ec)
1999{
2000 return __i40e_get_coalesce(netdev, ec, queue);
2001}
2002
Kan Lianga75e8002016-02-19 09:24:04 -05002003static void i40e_set_itr_per_queue(struct i40e_vsi *vsi,
2004 struct ethtool_coalesce *ec,
2005 int queue)
2006{
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002007 struct i40e_pf *pf = vsi->back;
2008 struct i40e_hw *hw = &pf->hw;
Kan Lianga75e8002016-02-19 09:24:04 -05002009 struct i40e_q_vector *q_vector;
2010 u16 vector, intrl;
2011
2012 intrl = INTRL_USEC_TO_REG(vsi->int_rate_limit);
2013
2014 vsi->rx_rings[queue]->rx_itr_setting = ec->rx_coalesce_usecs;
2015 vsi->tx_rings[queue]->tx_itr_setting = ec->tx_coalesce_usecs;
2016
2017 if (ec->use_adaptive_rx_coalesce)
2018 vsi->rx_rings[queue]->rx_itr_setting |= I40E_ITR_DYNAMIC;
2019 else
2020 vsi->rx_rings[queue]->rx_itr_setting &= ~I40E_ITR_DYNAMIC;
2021
2022 if (ec->use_adaptive_tx_coalesce)
2023 vsi->tx_rings[queue]->tx_itr_setting |= I40E_ITR_DYNAMIC;
2024 else
2025 vsi->tx_rings[queue]->tx_itr_setting &= ~I40E_ITR_DYNAMIC;
2026
2027 q_vector = vsi->rx_rings[queue]->q_vector;
2028 q_vector->rx.itr = ITR_TO_REG(vsi->rx_rings[queue]->rx_itr_setting);
2029 vector = vsi->base_vector + q_vector->v_idx;
2030 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1), q_vector->rx.itr);
2031
2032 q_vector = vsi->tx_rings[queue]->q_vector;
2033 q_vector->tx.itr = ITR_TO_REG(vsi->tx_rings[queue]->tx_itr_setting);
2034 vector = vsi->base_vector + q_vector->v_idx;
2035 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1), q_vector->tx.itr);
2036
2037 wr32(hw, I40E_PFINT_RATEN(vector - 1), intrl);
2038 i40e_flush(hw);
2039}
2040
2041static int __i40e_set_coalesce(struct net_device *netdev,
2042 struct ethtool_coalesce *ec,
2043 int queue)
2044{
2045 struct i40e_netdev_priv *np = netdev_priv(netdev);
2046 struct i40e_vsi *vsi = np->vsi;
2047 struct i40e_pf *pf = vsi->back;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002048 int i;
2049
2050 if (ec->tx_max_coalesced_frames_irq || ec->rx_max_coalesced_frames_irq)
2051 vsi->work_limit = ec->tx_max_coalesced_frames_irq;
2052
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04002053 /* tx_coalesce_usecs_high is ignored, use rx-usecs-high instead */
2054 if (ec->tx_coalesce_usecs_high != vsi->int_rate_limit) {
2055 netif_info(pf, drv, netdev, "tx-usecs-high is not used, please program rx-usecs-high\n");
2056 return -EINVAL;
2057 }
2058
2059 if (ec->rx_coalesce_usecs_high >= INTRL_REG_TO_USEC(I40E_MAX_INTRL)) {
2060 netif_info(pf, drv, netdev, "Invalid value, rx-usecs-high range is 0-235\n");
2061 return -EINVAL;
2062 }
2063
Kan Lianga75e8002016-02-19 09:24:04 -05002064 if (ec->rx_coalesce_usecs == 0) {
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002065 if (ec->use_adaptive_rx_coalesce)
Jesse Brandeburg79442d32014-10-25 03:24:32 +00002066 netif_info(pf, drv, netdev, "rx-usecs=0, need to disable adaptive-rx for a complete disable\n");
Kan Lianga75e8002016-02-19 09:24:04 -05002067 } else if ((ec->rx_coalesce_usecs < (I40E_MIN_ITR << 1)) ||
2068 (ec->rx_coalesce_usecs > (I40E_MAX_ITR << 1))) {
2069 netif_info(pf, drv, netdev, "Invalid value, rx-usecs range is 0-8160\n");
2070 return -EINVAL;
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002071 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002072
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04002073 vsi->int_rate_limit = ec->rx_coalesce_usecs_high;
2074
Kan Lianga75e8002016-02-19 09:24:04 -05002075 if (ec->tx_coalesce_usecs == 0) {
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002076 if (ec->use_adaptive_tx_coalesce)
Jesse Brandeburg79442d32014-10-25 03:24:32 +00002077 netif_info(pf, drv, netdev, "tx-usecs=0, need to disable adaptive-tx for a complete disable\n");
Kan Lianga75e8002016-02-19 09:24:04 -05002078 } else if ((ec->tx_coalesce_usecs < (I40E_MIN_ITR << 1)) ||
2079 (ec->tx_coalesce_usecs > (I40E_MAX_ITR << 1))) {
2080 netif_info(pf, drv, netdev, "Invalid value, tx-usecs range is 0-8160\n");
2081 return -EINVAL;
2082 }
2083
2084 /* rx and tx usecs has per queue value. If user doesn't specify the queue,
2085 * apply to all queues.
2086 */
2087 if (queue < 0) {
2088 for (i = 0; i < vsi->num_queue_pairs; i++)
2089 i40e_set_itr_per_queue(vsi, ec, i);
2090 } else if (queue < vsi->num_queue_pairs) {
2091 i40e_set_itr_per_queue(vsi, ec, queue);
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002092 } else {
Kan Lianga75e8002016-02-19 09:24:04 -05002093 netif_info(pf, drv, netdev, "Invalid queue value, queue range is 0 - %d\n",
2094 vsi->num_queue_pairs - 1);
Mitch Williams32f5f542014-04-04 04:43:10 +00002095 return -EINVAL;
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002096 }
Mitch Williams32f5f542014-04-04 04:43:10 +00002097
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002098 return 0;
2099}
2100
Kan Lianga75e8002016-02-19 09:24:04 -05002101static int i40e_set_coalesce(struct net_device *netdev,
2102 struct ethtool_coalesce *ec)
2103{
2104 return __i40e_set_coalesce(netdev, ec, -1);
2105}
2106
Kan Liangf3757a42016-02-19 09:24:06 -05002107static int i40e_set_per_queue_coalesce(struct net_device *netdev, u32 queue,
2108 struct ethtool_coalesce *ec)
2109{
2110 return __i40e_set_coalesce(netdev, ec, queue);
2111}
2112
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002113/**
2114 * i40e_get_rss_hash_opts - Get RSS hash Input Set for each flow type
2115 * @pf: pointer to the physical function struct
2116 * @cmd: ethtool rxnfc command
2117 *
2118 * Returns Success if the flow is supported, else Invalid Input.
2119 **/
2120static int i40e_get_rss_hash_opts(struct i40e_pf *pf, struct ethtool_rxnfc *cmd)
2121{
2122 cmd->data = 0;
2123
Carolyn Wyborny88eee9b2015-02-06 08:52:09 +00002124 if (pf->vsi[pf->lan_vsi]->rxnfc.data != 0) {
2125 cmd->data = pf->vsi[pf->lan_vsi]->rxnfc.data;
2126 cmd->flow_type = pf->vsi[pf->lan_vsi]->rxnfc.flow_type;
2127 return 0;
2128 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002129 /* Report default options for RSS on i40e */
2130 switch (cmd->flow_type) {
2131 case TCP_V4_FLOW:
2132 case UDP_V4_FLOW:
2133 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
2134 /* fall through to add IP fields */
2135 case SCTP_V4_FLOW:
2136 case AH_ESP_V4_FLOW:
2137 case AH_V4_FLOW:
2138 case ESP_V4_FLOW:
2139 case IPV4_FLOW:
2140 cmd->data |= RXH_IP_SRC | RXH_IP_DST;
2141 break;
2142 case TCP_V6_FLOW:
2143 case UDP_V6_FLOW:
2144 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
2145 /* fall through to add IP fields */
2146 case SCTP_V6_FLOW:
2147 case AH_ESP_V6_FLOW:
2148 case AH_V6_FLOW:
2149 case ESP_V6_FLOW:
2150 case IPV6_FLOW:
2151 cmd->data |= RXH_IP_SRC | RXH_IP_DST;
2152 break;
2153 default:
2154 return -EINVAL;
2155 }
2156
2157 return 0;
2158}
2159
2160/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002161 * i40e_get_ethtool_fdir_all - Populates the rule count of a command
2162 * @pf: Pointer to the physical function struct
2163 * @cmd: The command to get or set Rx flow classification rules
2164 * @rule_locs: Array of used rule locations
2165 *
2166 * This function populates both the total and actual rule count of
2167 * the ethtool flow classification command
2168 *
2169 * Returns 0 on success or -EMSGSIZE if entry not found
2170 **/
2171static int i40e_get_ethtool_fdir_all(struct i40e_pf *pf,
2172 struct ethtool_rxnfc *cmd,
2173 u32 *rule_locs)
2174{
2175 struct i40e_fdir_filter *rule;
2176 struct hlist_node *node2;
2177 int cnt = 0;
2178
2179 /* report total rule count */
Anjali Singhai Jain082def12014-04-09 05:59:00 +00002180 cmd->data = i40e_get_fd_cnt_all(pf);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002181
2182 hlist_for_each_entry_safe(rule, node2,
2183 &pf->fdir_filter_list, fdir_node) {
2184 if (cnt == cmd->rule_cnt)
2185 return -EMSGSIZE;
2186
2187 rule_locs[cnt] = rule->fd_id;
2188 cnt++;
2189 }
2190
2191 cmd->rule_cnt = cnt;
2192
2193 return 0;
2194}
2195
2196/**
2197 * i40e_get_ethtool_fdir_entry - Look up a filter based on Rx flow
2198 * @pf: Pointer to the physical function struct
2199 * @cmd: The command to get or set Rx flow classification rules
2200 *
2201 * This function looks up a filter based on the Rx flow classification
2202 * command and fills the flow spec info for it if found
2203 *
2204 * Returns 0 on success or -EINVAL if filter not found
2205 **/
2206static int i40e_get_ethtool_fdir_entry(struct i40e_pf *pf,
2207 struct ethtool_rxnfc *cmd)
2208{
2209 struct ethtool_rx_flow_spec *fsp =
2210 (struct ethtool_rx_flow_spec *)&cmd->fs;
2211 struct i40e_fdir_filter *rule = NULL;
2212 struct hlist_node *node2;
2213
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002214 hlist_for_each_entry_safe(rule, node2,
2215 &pf->fdir_filter_list, fdir_node) {
2216 if (fsp->location <= rule->fd_id)
2217 break;
2218 }
2219
2220 if (!rule || fsp->location != rule->fd_id)
2221 return -EINVAL;
2222
2223 fsp->flow_type = rule->flow_type;
Anjali Singhai Jain7d54eb22014-03-14 07:32:21 +00002224 if (fsp->flow_type == IP_USER_FLOW) {
2225 fsp->h_u.usr_ip4_spec.ip_ver = ETH_RX_NFC_IP4;
2226 fsp->h_u.usr_ip4_spec.proto = 0;
2227 fsp->m_u.usr_ip4_spec.proto = 0;
2228 }
2229
Anjali Singhai Jain04b73bd2014-05-22 06:31:41 +00002230 /* Reverse the src and dest notion, since the HW views them from
2231 * Tx perspective where as the user expects it from Rx filter view.
2232 */
2233 fsp->h_u.tcp_ip4_spec.psrc = rule->dst_port;
2234 fsp->h_u.tcp_ip4_spec.pdst = rule->src_port;
2235 fsp->h_u.tcp_ip4_spec.ip4src = rule->dst_ip[0];
2236 fsp->h_u.tcp_ip4_spec.ip4dst = rule->src_ip[0];
Anjali Singhai Jain387ce1a2014-05-22 06:32:23 +00002237
2238 if (rule->dest_ctl == I40E_FILTER_PROGRAM_DESC_DEST_DROP_PACKET)
2239 fsp->ring_cookie = RX_CLS_FLOW_DISC;
2240 else
2241 fsp->ring_cookie = rule->q_index;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002242
Anjali Singhai Jaine7c8c602015-04-07 19:45:31 -04002243 if (rule->dest_vsi != pf->vsi[pf->lan_vsi]->id) {
2244 struct i40e_vsi *vsi;
2245
2246 vsi = i40e_find_vsi_from_id(pf, rule->dest_vsi);
2247 if (vsi && vsi->type == I40E_VSI_SRIOV) {
2248 fsp->h_ext.data[1] = htonl(vsi->vf_id);
2249 fsp->m_ext.data[1] = htonl(0x1);
2250 }
2251 }
2252
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002253 return 0;
2254}
2255
2256/**
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002257 * i40e_get_rxnfc - command to get RX flow classification rules
2258 * @netdev: network interface device structure
2259 * @cmd: ethtool rxnfc command
2260 *
2261 * Returns Success if the command is supported.
2262 **/
2263static int i40e_get_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd,
2264 u32 *rule_locs)
2265{
2266 struct i40e_netdev_priv *np = netdev_priv(netdev);
2267 struct i40e_vsi *vsi = np->vsi;
2268 struct i40e_pf *pf = vsi->back;
2269 int ret = -EOPNOTSUPP;
2270
2271 switch (cmd->cmd) {
2272 case ETHTOOL_GRXRINGS:
Helin Zhang3e3aa212015-10-21 19:47:13 -04002273 cmd->data = vsi->num_queue_pairs;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002274 ret = 0;
2275 break;
2276 case ETHTOOL_GRXFH:
2277 ret = i40e_get_rss_hash_opts(pf, cmd);
2278 break;
2279 case ETHTOOL_GRXCLSRLCNT:
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002280 cmd->rule_cnt = pf->fdir_pf_active_filters;
Anjali Singhai Jain082def12014-04-09 05:59:00 +00002281 /* report total rule count */
2282 cmd->data = i40e_get_fd_cnt_all(pf);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002283 ret = 0;
2284 break;
2285 case ETHTOOL_GRXCLSRULE:
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002286 ret = i40e_get_ethtool_fdir_entry(pf, cmd);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002287 break;
2288 case ETHTOOL_GRXCLSRLALL:
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002289 ret = i40e_get_ethtool_fdir_all(pf, cmd, rule_locs);
2290 break;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002291 default:
2292 break;
2293 }
2294
2295 return ret;
2296}
2297
2298/**
2299 * i40e_set_rss_hash_opt - Enable/Disable flow types for RSS hash
2300 * @pf: pointer to the physical function struct
2301 * @cmd: ethtool rxnfc command
2302 *
2303 * Returns Success if the flow input set is supported.
2304 **/
2305static int i40e_set_rss_hash_opt(struct i40e_pf *pf, struct ethtool_rxnfc *nfc)
2306{
2307 struct i40e_hw *hw = &pf->hw;
Shannon Nelson272cdaf22016-02-17 16:12:21 -08002308 u64 hena = (u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(0)) |
2309 ((u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(1)) << 32);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002310
2311 /* RSS does not support anything other than hashing
2312 * to queues on src and dst IPs and ports
2313 */
2314 if (nfc->data & ~(RXH_IP_SRC | RXH_IP_DST |
2315 RXH_L4_B_0_1 | RXH_L4_B_2_3))
2316 return -EINVAL;
2317
2318 /* We need at least the IP SRC and DEST fields for hashing */
2319 if (!(nfc->data & RXH_IP_SRC) ||
2320 !(nfc->data & RXH_IP_DST))
2321 return -EINVAL;
2322
2323 switch (nfc->flow_type) {
2324 case TCP_V4_FLOW:
2325 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
2326 case 0:
Anjali Singhai Jain6e35c042015-12-09 15:50:24 -08002327 return -EINVAL;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002328 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
Anjali Singhai Jain3d0da5b2015-12-22 14:25:05 -08002329 if (pf->flags & I40E_FLAG_MULTIPLE_TCP_UDP_RSS_PCTYPE)
2330 hena |=
2331 BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK);
2332
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002333 hena |= BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002334 break;
2335 default:
2336 return -EINVAL;
2337 }
2338 break;
2339 case TCP_V6_FLOW:
2340 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
2341 case 0:
Anjali Singhai Jain6e35c042015-12-09 15:50:24 -08002342 return -EINVAL;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002343 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
Anjali Singhai Jain3d0da5b2015-12-22 14:25:05 -08002344 if (pf->flags & I40E_FLAG_MULTIPLE_TCP_UDP_RSS_PCTYPE)
2345 hena |=
2346 BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK);
2347
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002348 hena |= BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_TCP);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002349 break;
2350 default:
2351 return -EINVAL;
2352 }
2353 break;
2354 case UDP_V4_FLOW:
2355 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
2356 case 0:
Anjali Singhai Jain6e35c042015-12-09 15:50:24 -08002357 return -EINVAL;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002358 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
Anjali Singhai Jain3d0da5b2015-12-22 14:25:05 -08002359 if (pf->flags & I40E_FLAG_MULTIPLE_TCP_UDP_RSS_PCTYPE)
2360 hena |=
2361 BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP) |
2362 BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP);
2363
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002364 hena |= (BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_UDP) |
2365 BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV4));
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002366 break;
2367 default:
2368 return -EINVAL;
2369 }
2370 break;
2371 case UDP_V6_FLOW:
2372 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
2373 case 0:
Anjali Singhai Jain6e35c042015-12-09 15:50:24 -08002374 return -EINVAL;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002375 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
Anjali Singhai Jain3d0da5b2015-12-22 14:25:05 -08002376 if (pf->flags & I40E_FLAG_MULTIPLE_TCP_UDP_RSS_PCTYPE)
2377 hena |=
2378 BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP) |
2379 BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP);
2380
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002381 hena |= (BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_UDP) |
2382 BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV6));
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002383 break;
2384 default:
2385 return -EINVAL;
2386 }
2387 break;
2388 case AH_ESP_V4_FLOW:
2389 case AH_V4_FLOW:
2390 case ESP_V4_FLOW:
2391 case SCTP_V4_FLOW:
2392 if ((nfc->data & RXH_L4_B_0_1) ||
2393 (nfc->data & RXH_L4_B_2_3))
2394 return -EINVAL;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002395 hena |= BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_OTHER);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002396 break;
2397 case AH_ESP_V6_FLOW:
2398 case AH_V6_FLOW:
2399 case ESP_V6_FLOW:
2400 case SCTP_V6_FLOW:
2401 if ((nfc->data & RXH_L4_B_0_1) ||
2402 (nfc->data & RXH_L4_B_2_3))
2403 return -EINVAL;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002404 hena |= BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_OTHER);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002405 break;
2406 case IPV4_FLOW:
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002407 hena |= BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_OTHER) |
2408 BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV4);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002409 break;
2410 case IPV6_FLOW:
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002411 hena |= BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_OTHER) |
2412 BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV6);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002413 break;
2414 default:
2415 return -EINVAL;
2416 }
2417
Shannon Nelson272cdaf22016-02-17 16:12:21 -08002418 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), (u32)hena);
2419 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002420 i40e_flush(hw);
2421
Carolyn Wyborny88eee9b2015-02-06 08:52:09 +00002422 /* Save setting for future output/update */
2423 pf->vsi[pf->lan_vsi]->rxnfc = *nfc;
2424
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002425 return 0;
2426}
2427
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002428/**
Anjali Singhai Jain43fddb72014-02-11 08:24:09 +00002429 * i40e_match_fdir_input_set - Match a new filter against an existing one
2430 * @rule: The filter already added
2431 * @input: The new filter to comapre against
2432 *
2433 * Returns true if the two input set match
2434 **/
2435static bool i40e_match_fdir_input_set(struct i40e_fdir_filter *rule,
2436 struct i40e_fdir_filter *input)
2437{
2438 if ((rule->dst_ip[0] != input->dst_ip[0]) ||
2439 (rule->src_ip[0] != input->src_ip[0]) ||
2440 (rule->dst_port != input->dst_port) ||
2441 (rule->src_port != input->src_port))
2442 return false;
2443 return true;
2444}
2445
2446/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002447 * i40e_update_ethtool_fdir_entry - Updates the fdir filter entry
2448 * @vsi: Pointer to the targeted VSI
2449 * @input: The filter to update or NULL to indicate deletion
2450 * @sw_idx: Software index to the filter
2451 * @cmd: The command to get or set Rx flow classification rules
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002452 *
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002453 * This function updates (or deletes) a Flow Director entry from
2454 * the hlist of the corresponding PF
2455 *
2456 * Returns 0 on success
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002457 **/
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002458static int i40e_update_ethtool_fdir_entry(struct i40e_vsi *vsi,
2459 struct i40e_fdir_filter *input,
2460 u16 sw_idx,
2461 struct ethtool_rxnfc *cmd)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002462{
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002463 struct i40e_fdir_filter *rule, *parent;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002464 struct i40e_pf *pf = vsi->back;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002465 struct hlist_node *node2;
2466 int err = -EINVAL;
Jesse Brandeburgc35a1d72013-12-18 13:46:02 +00002467
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002468 parent = NULL;
2469 rule = NULL;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002470
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002471 hlist_for_each_entry_safe(rule, node2,
2472 &pf->fdir_filter_list, fdir_node) {
2473 /* hash found, or no matching entry */
2474 if (rule->fd_id >= sw_idx)
2475 break;
2476 parent = rule;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002477 }
2478
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002479 /* if there is an old rule occupying our place remove it */
2480 if (rule && (rule->fd_id == sw_idx)) {
Anjali Singhai Jain43fddb72014-02-11 08:24:09 +00002481 if (input && !i40e_match_fdir_input_set(rule, input))
2482 err = i40e_add_del_fdir(vsi, rule, false);
2483 else if (!input)
2484 err = i40e_add_del_fdir(vsi, rule, false);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002485 hlist_del(&rule->fdir_node);
2486 kfree(rule);
2487 pf->fdir_pf_active_filters--;
2488 }
2489
2490 /* If no input this was a delete, err should be 0 if a rule was
2491 * successfully found and removed from the list else -EINVAL
2492 */
2493 if (!input)
2494 return err;
2495
2496 /* initialize node and set software index */
2497 INIT_HLIST_NODE(&input->fdir_node);
2498
2499 /* add filter to the list */
2500 if (parent)
Ken Helias1d023282014-08-06 16:09:16 -07002501 hlist_add_behind(&input->fdir_node, &parent->fdir_node);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002502 else
2503 hlist_add_head(&input->fdir_node,
2504 &pf->fdir_filter_list);
2505
2506 /* update counts */
2507 pf->fdir_pf_active_filters++;
2508
2509 return 0;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002510}
2511
2512/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002513 * i40e_del_fdir_entry - Deletes a Flow Director filter entry
2514 * @vsi: Pointer to the targeted VSI
2515 * @cmd: The command to get or set Rx flow classification rules
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002516 *
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002517 * The function removes a Flow Director filter entry from the
2518 * hlist of the corresponding PF
2519 *
2520 * Returns 0 on success
2521 */
2522static int i40e_del_fdir_entry(struct i40e_vsi *vsi,
2523 struct ethtool_rxnfc *cmd)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002524{
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002525 struct ethtool_rx_flow_spec *fsp =
2526 (struct ethtool_rx_flow_spec *)&cmd->fs;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002527 struct i40e_pf *pf = vsi->back;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002528 int ret = 0;
Jesse Brandeburgc35a1d72013-12-18 13:46:02 +00002529
Anjali Singhai Jain60793f4a2014-07-09 07:46:23 +00002530 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) ||
2531 test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state))
2532 return -EBUSY;
2533
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00002534 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
2535 return -EBUSY;
2536
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002537 ret = i40e_update_ethtool_fdir_entry(vsi, NULL, fsp->location, cmd);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002538
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00002539 i40e_fdir_check_and_reenable(pf);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002540 return ret;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002541}
2542
2543/**
Anjali Singhai Jain1eaa3842014-03-06 08:59:59 +00002544 * i40e_add_fdir_ethtool - Add/Remove Flow Director filters
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002545 * @vsi: pointer to the targeted VSI
2546 * @cmd: command to get or set RX flow classification rules
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002547 *
Anjali Singhai Jain1eaa3842014-03-06 08:59:59 +00002548 * Add Flow Director filters for a specific flow spec based on their
2549 * protocol. Returns 0 if the filters were successfully added.
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002550 **/
Anjali Singhai Jain1eaa3842014-03-06 08:59:59 +00002551static int i40e_add_fdir_ethtool(struct i40e_vsi *vsi,
2552 struct ethtool_rxnfc *cmd)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002553{
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002554 struct ethtool_rx_flow_spec *fsp;
2555 struct i40e_fdir_filter *input;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002556 struct i40e_pf *pf;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002557 int ret = -EINVAL;
Anjali Singhai Jaine7c8c602015-04-07 19:45:31 -04002558 u16 vf_id;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002559
2560 if (!vsi)
2561 return -EINVAL;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002562 pf = vsi->back;
2563
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00002564 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
2565 return -EOPNOTSUPP;
2566
Anjali Singhai Jain1eaa3842014-03-06 08:59:59 +00002567 if (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00002568 return -ENOSPC;
2569
Anjali Singhai Jain60793f4a2014-07-09 07:46:23 +00002570 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) ||
2571 test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state))
2572 return -EBUSY;
2573
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00002574 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
2575 return -EBUSY;
2576
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00002577 fsp = (struct ethtool_rx_flow_spec *)&cmd->fs;
2578
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002579 if (fsp->location >= (pf->hw.func_caps.fd_filters_best_effort +
2580 pf->hw.func_caps.fd_filters_guaranteed)) {
2581 return -EINVAL;
2582 }
2583
Anjali Singhai Jain387ce1a2014-05-22 06:32:23 +00002584 if ((fsp->ring_cookie != RX_CLS_FLOW_DISC) &&
2585 (fsp->ring_cookie >= vsi->num_queue_pairs))
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002586 return -EINVAL;
2587
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002588 input = kzalloc(sizeof(*input), GFP_KERNEL);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002589
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002590 if (!input)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002591 return -ENOMEM;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002592
2593 input->fd_id = fsp->location;
2594
Anjali Singhai Jain35a91fd2014-03-06 09:00:00 +00002595 if (fsp->ring_cookie == RX_CLS_FLOW_DISC)
2596 input->dest_ctl = I40E_FILTER_PROGRAM_DESC_DEST_DROP_PACKET;
2597 else
2598 input->dest_ctl =
2599 I40E_FILTER_PROGRAM_DESC_DEST_DIRECT_PACKET_QINDEX;
2600
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002601 input->q_index = fsp->ring_cookie;
2602 input->flex_off = 0;
2603 input->pctype = 0;
2604 input->dest_vsi = vsi->id;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002605 input->fd_status = I40E_FILTER_PROGRAM_DESC_FD_STATUS_FD_ID;
Anjali Singhai Jain0bf4b1b2015-04-16 20:06:02 -04002606 input->cnt_index = I40E_FD_SB_STAT_IDX(pf->hw.pf_id);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002607 input->flow_type = fsp->flow_type;
2608 input->ip4_proto = fsp->h_u.usr_ip4_spec.proto;
Anjali Singhai Jain04b73bd2014-05-22 06:31:41 +00002609
2610 /* Reverse the src and dest notion, since the HW expects them to be from
2611 * Tx perspective where as the input from user is from Rx filter view.
2612 */
2613 input->dst_port = fsp->h_u.tcp_ip4_spec.psrc;
2614 input->src_port = fsp->h_u.tcp_ip4_spec.pdst;
2615 input->dst_ip[0] = fsp->h_u.tcp_ip4_spec.ip4src;
2616 input->src_ip[0] = fsp->h_u.tcp_ip4_spec.ip4dst;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002617
Anjali Singhai Jaine7c8c602015-04-07 19:45:31 -04002618 if (ntohl(fsp->m_ext.data[1])) {
Shannon Nelsonbab3a342016-04-12 08:30:42 -07002619 vf_id = ntohl(fsp->h_ext.data[1]);
2620 if (vf_id >= pf->num_alloc_vfs) {
2621 netif_info(pf, drv, vsi->netdev,
2622 "Invalid VF id %d\n", vf_id);
Anjali Singhai Jaine7c8c602015-04-07 19:45:31 -04002623 goto free_input;
2624 }
Anjali Singhai Jaine7c8c602015-04-07 19:45:31 -04002625 /* Find vsi id from vf id and override dest vsi */
2626 input->dest_vsi = pf->vf[vf_id].lan_vsi_id;
2627 if (input->q_index >= pf->vf[vf_id].num_queue_pairs) {
Shannon Nelsonbab3a342016-04-12 08:30:42 -07002628 netif_info(pf, drv, vsi->netdev,
2629 "Invalid queue id %d for VF %d\n",
2630 input->q_index, vf_id);
Anjali Singhai Jaine7c8c602015-04-07 19:45:31 -04002631 goto free_input;
2632 }
2633 }
2634
Anjali Singhai Jain1eaa3842014-03-06 08:59:59 +00002635 ret = i40e_add_del_fdir(vsi, input, true);
Anjali Singhai Jaine7c8c602015-04-07 19:45:31 -04002636free_input:
Anjali Singhai Jain1eaa3842014-03-06 08:59:59 +00002637 if (ret)
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002638 kfree(input);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002639 else
Anjali Singhai Jain1eaa3842014-03-06 08:59:59 +00002640 i40e_update_ethtool_fdir_entry(vsi, input, fsp->location, NULL);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002641
2642 return ret;
2643}
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08002644
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002645/**
2646 * i40e_set_rxnfc - command to set RX flow classification rules
2647 * @netdev: network interface device structure
2648 * @cmd: ethtool rxnfc command
2649 *
2650 * Returns Success if the command is supported.
2651 **/
2652static int i40e_set_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd)
2653{
2654 struct i40e_netdev_priv *np = netdev_priv(netdev);
2655 struct i40e_vsi *vsi = np->vsi;
2656 struct i40e_pf *pf = vsi->back;
2657 int ret = -EOPNOTSUPP;
2658
2659 switch (cmd->cmd) {
2660 case ETHTOOL_SRXFH:
2661 ret = i40e_set_rss_hash_opt(pf, cmd);
2662 break;
2663 case ETHTOOL_SRXCLSRLINS:
Anjali Singhai Jain1eaa3842014-03-06 08:59:59 +00002664 ret = i40e_add_fdir_ethtool(vsi, cmd);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002665 break;
2666 case ETHTOOL_SRXCLSRLDEL:
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002667 ret = i40e_del_fdir_entry(vsi, cmd);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002668 break;
2669 default:
2670 break;
2671 }
2672
2673 return ret;
2674}
2675
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00002676/**
2677 * i40e_max_channels - get Max number of combined channels supported
2678 * @vsi: vsi pointer
2679 **/
2680static unsigned int i40e_max_channels(struct i40e_vsi *vsi)
2681{
2682 /* TODO: This code assumes DCB and FD is disabled for now. */
2683 return vsi->alloc_queue_pairs;
2684}
2685
2686/**
2687 * i40e_get_channels - Get the current channels enabled and max supported etc.
2688 * @netdev: network interface device structure
2689 * @ch: ethtool channels structure
2690 *
2691 * We don't support separate tx and rx queues as channels. The other count
2692 * represents how many queues are being used for control. max_combined counts
2693 * how many queue pairs we can support. They may not be mapped 1 to 1 with
2694 * q_vectors since we support a lot more queue pairs than q_vectors.
2695 **/
2696static void i40e_get_channels(struct net_device *dev,
2697 struct ethtool_channels *ch)
2698{
2699 struct i40e_netdev_priv *np = netdev_priv(dev);
2700 struct i40e_vsi *vsi = np->vsi;
2701 struct i40e_pf *pf = vsi->back;
2702
2703 /* report maximum channels */
2704 ch->max_combined = i40e_max_channels(vsi);
2705
2706 /* report info for other vector */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002707 ch->other_count = (pf->flags & I40E_FLAG_FD_SB_ENABLED) ? 1 : 0;
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00002708 ch->max_other = ch->other_count;
2709
2710 /* Note: This code assumes DCB is disabled for now. */
2711 ch->combined_count = vsi->num_queue_pairs;
2712}
2713
2714/**
2715 * i40e_set_channels - Set the new channels count.
2716 * @netdev: network interface device structure
2717 * @ch: ethtool channels structure
2718 *
2719 * The new channels count may not be the same as requested by the user
2720 * since it gets rounded down to a power of 2 value.
2721 **/
2722static int i40e_set_channels(struct net_device *dev,
2723 struct ethtool_channels *ch)
2724{
2725 struct i40e_netdev_priv *np = netdev_priv(dev);
2726 unsigned int count = ch->combined_count;
2727 struct i40e_vsi *vsi = np->vsi;
2728 struct i40e_pf *pf = vsi->back;
2729 int new_count;
2730
2731 /* We do not support setting channels for any other VSI at present */
2732 if (vsi->type != I40E_VSI_MAIN)
2733 return -EINVAL;
2734
2735 /* verify they are not requesting separate vectors */
2736 if (!count || ch->rx_count || ch->tx_count)
2737 return -EINVAL;
2738
2739 /* verify other_count has not changed */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002740 if (ch->other_count != ((pf->flags & I40E_FLAG_FD_SB_ENABLED) ? 1 : 0))
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00002741 return -EINVAL;
2742
2743 /* verify the number of channels does not exceed hardware limits */
2744 if (count > i40e_max_channels(vsi))
2745 return -EINVAL;
2746
2747 /* update feature limits from largest to smallest supported values */
2748 /* TODO: Flow director limit, DCB etc */
2749
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00002750 /* use rss_reconfig to rebuild with new queue count and update traffic
2751 * class queue mapping
2752 */
2753 new_count = i40e_reconfig_rss_queues(pf, count);
Anjali Singhai Jain5f90f422013-12-21 05:44:43 +00002754 if (new_count > 0)
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00002755 return 0;
2756 else
2757 return -EINVAL;
2758}
2759
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00002760/**
2761 * i40e_get_rxfh_key_size - get the RSS hash key size
2762 * @netdev: network interface device structure
2763 *
2764 * Returns the table size.
2765 **/
2766static u32 i40e_get_rxfh_key_size(struct net_device *netdev)
2767{
2768 return I40E_HKEY_ARRAY_SIZE;
2769}
2770
2771/**
2772 * i40e_get_rxfh_indir_size - get the rx flow hash indirection table size
2773 * @netdev: network interface device structure
2774 *
2775 * Returns the table size.
2776 **/
2777static u32 i40e_get_rxfh_indir_size(struct net_device *netdev)
2778{
2779 return I40E_HLUT_ARRAY_SIZE;
2780}
2781
2782static int i40e_get_rxfh(struct net_device *netdev, u32 *indir, u8 *key,
2783 u8 *hfunc)
2784{
2785 struct i40e_netdev_priv *np = netdev_priv(netdev);
2786 struct i40e_vsi *vsi = np->vsi;
Helin Zhang043dd652015-10-21 19:56:23 -04002787 u8 *lut, *seed = NULL;
2788 int ret;
2789 u16 i;
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00002790
2791 if (hfunc)
2792 *hfunc = ETH_RSS_HASH_TOP;
2793
2794 if (!indir)
2795 return 0;
2796
Helin Zhang043dd652015-10-21 19:56:23 -04002797 seed = key;
2798 lut = kzalloc(I40E_HLUT_ARRAY_SIZE, GFP_KERNEL);
2799 if (!lut)
2800 return -ENOMEM;
2801 ret = i40e_get_rss(vsi, seed, lut, I40E_HLUT_ARRAY_SIZE);
2802 if (ret)
2803 goto out;
2804 for (i = 0; i < I40E_HLUT_ARRAY_SIZE; i++)
2805 indir[i] = (u32)(lut[i]);
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00002806
Helin Zhang043dd652015-10-21 19:56:23 -04002807out:
2808 kfree(lut);
2809
2810 return ret;
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00002811}
2812
2813/**
2814 * i40e_set_rxfh - set the rx flow hash indirection table
2815 * @netdev: network interface device structure
2816 * @indir: indirection table
2817 * @key: hash key
2818 *
Mitch Williamscd494fb2015-07-10 19:36:04 -04002819 * Returns -EINVAL if the table specifies an invalid queue id, otherwise
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00002820 * returns 0 after programming the table.
2821 **/
2822static int i40e_set_rxfh(struct net_device *netdev, const u32 *indir,
2823 const u8 *key, const u8 hfunc)
2824{
2825 struct i40e_netdev_priv *np = netdev_priv(netdev);
2826 struct i40e_vsi *vsi = np->vsi;
Helin Zhang28c58692015-10-26 19:44:27 -04002827 u8 *seed = NULL;
Helin Zhang043dd652015-10-21 19:56:23 -04002828 u16 i;
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00002829
2830 if (hfunc != ETH_RSS_HASH_NO_CHANGE && hfunc != ETH_RSS_HASH_TOP)
2831 return -EOPNOTSUPP;
2832
2833 if (!indir)
2834 return 0;
2835
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00002836 if (key) {
Helin Zhang28c58692015-10-26 19:44:27 -04002837 if (!vsi->rss_hkey_user) {
2838 vsi->rss_hkey_user = kzalloc(I40E_HKEY_ARRAY_SIZE,
2839 GFP_KERNEL);
2840 if (!vsi->rss_hkey_user)
2841 return -ENOMEM;
2842 }
2843 memcpy(vsi->rss_hkey_user, key, I40E_HKEY_ARRAY_SIZE);
2844 seed = vsi->rss_hkey_user;
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00002845 }
Helin Zhang28c58692015-10-26 19:44:27 -04002846 if (!vsi->rss_lut_user) {
2847 vsi->rss_lut_user = kzalloc(I40E_HLUT_ARRAY_SIZE, GFP_KERNEL);
2848 if (!vsi->rss_lut_user)
2849 return -ENOMEM;
2850 }
Helin Zhang043dd652015-10-21 19:56:23 -04002851
Helin Zhang28c58692015-10-26 19:44:27 -04002852 /* Each 32 bits pointed by 'indir' is stored with a lut entry */
2853 for (i = 0; i < I40E_HLUT_ARRAY_SIZE; i++)
2854 vsi->rss_lut_user[i] = (u8)(indir[i]);
2855
2856 return i40e_config_rss(vsi, seed, vsi->rss_lut_user,
2857 I40E_HLUT_ARRAY_SIZE);
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00002858}
2859
Greg Rose7e45ab42015-02-06 08:52:19 +00002860/**
2861 * i40e_get_priv_flags - report device private flags
2862 * @dev: network interface device structure
2863 *
2864 * The get string set count and the string set should be matched for each
2865 * flag returned. Add new strings for each flag to the i40e_priv_flags_strings
2866 * array.
2867 *
2868 * Returns a u32 bitmap of flags.
2869 **/
Jesse Brandeburg5bbc3302015-02-26 16:15:20 +00002870static u32 i40e_get_priv_flags(struct net_device *dev)
Greg Rose7e45ab42015-02-06 08:52:19 +00002871{
2872 struct i40e_netdev_priv *np = netdev_priv(dev);
2873 struct i40e_vsi *vsi = np->vsi;
2874 struct i40e_pf *pf = vsi->back;
2875 u32 ret_flags = 0;
2876
Shannon Nelson9ac77262015-08-27 11:42:40 -04002877 ret_flags |= pf->flags & I40E_FLAG_LINK_POLLING_ENABLED ?
2878 I40E_PRIV_FLAGS_LINKPOLL_FLAG : 0;
Jesse Brandeburgef171782015-09-03 17:18:49 -04002879 ret_flags |= pf->flags & I40E_FLAG_FD_ATR_ENABLED ?
2880 I40E_PRIV_FLAGS_FD_ATR : 0;
Shannon Nelson1cdfd882015-09-28 14:12:34 -04002881 ret_flags |= pf->flags & I40E_FLAG_VEB_STATS_ENABLED ?
2882 I40E_PRIV_FLAGS_VEB_STATS : 0;
Anjali Singhai Jain72b74862016-01-08 17:50:21 -08002883 ret_flags |= pf->auto_disable_flags & I40E_FLAG_HW_ATR_EVICT_CAPABLE ?
2884 0 : I40E_PRIV_FLAGS_HW_ATR_EVICT;
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07002885 if (pf->hw.pf_id == 0) {
2886 ret_flags |= pf->flags & I40E_FLAG_TRUE_PROMISC_SUPPORT ?
2887 I40E_PRIV_FLAGS_TRUE_PROMISC_SUPPORT : 0;
2888 }
Greg Rose7e45ab42015-02-06 08:52:19 +00002889
2890 return ret_flags;
2891}
2892
Shannon Nelson9ac77262015-08-27 11:42:40 -04002893/**
2894 * i40e_set_priv_flags - set private flags
2895 * @dev: network interface device structure
2896 * @flags: bit flags to be set
2897 **/
2898static int i40e_set_priv_flags(struct net_device *dev, u32 flags)
2899{
2900 struct i40e_netdev_priv *np = netdev_priv(dev);
2901 struct i40e_vsi *vsi = np->vsi;
2902 struct i40e_pf *pf = vsi->back;
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07002903 u16 sw_flags = 0, valid_flags = 0;
Jesse Brandeburg827de392015-11-06 15:26:07 -08002904 bool reset_required = false;
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07002905 bool promisc_change = false;
2906 int ret;
Jesse Brandeburg827de392015-11-06 15:26:07 -08002907
2908 /* NOTE: MFP is not settable */
2909
Shannon Nelson9ac77262015-08-27 11:42:40 -04002910 if (flags & I40E_PRIV_FLAGS_LINKPOLL_FLAG)
2911 pf->flags |= I40E_FLAG_LINK_POLLING_ENABLED;
2912 else
2913 pf->flags &= ~I40E_FLAG_LINK_POLLING_ENABLED;
2914
Jesse Brandeburgef171782015-09-03 17:18:49 -04002915 /* allow the user to control the state of the Flow
2916 * Director ATR (Application Targeted Routing) feature
2917 * of the driver
2918 */
2919 if (flags & I40E_PRIV_FLAGS_FD_ATR) {
2920 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
2921 } else {
2922 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
2923 pf->auto_disable_flags |= I40E_FLAG_FD_ATR_ENABLED;
2924 }
2925
Shannon Nelson66fc3602016-01-13 16:51:42 -08002926 if ((flags & I40E_PRIV_FLAGS_VEB_STATS) &&
2927 !(pf->flags & I40E_FLAG_VEB_STATS_ENABLED)) {
Shannon Nelson1cdfd882015-09-28 14:12:34 -04002928 pf->flags |= I40E_FLAG_VEB_STATS_ENABLED;
Shannon Nelson66fc3602016-01-13 16:51:42 -08002929 reset_required = true;
2930 } else if (!(flags & I40E_PRIV_FLAGS_VEB_STATS) &&
2931 (pf->flags & I40E_FLAG_VEB_STATS_ENABLED)) {
Shannon Nelson1cdfd882015-09-28 14:12:34 -04002932 pf->flags &= ~I40E_FLAG_VEB_STATS_ENABLED;
Shannon Nelson66fc3602016-01-13 16:51:42 -08002933 reset_required = true;
2934 }
Shannon Nelson1cdfd882015-09-28 14:12:34 -04002935
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07002936 if (pf->hw.pf_id == 0) {
2937 if ((flags & I40E_PRIV_FLAGS_TRUE_PROMISC_SUPPORT) &&
2938 !(pf->flags & I40E_FLAG_TRUE_PROMISC_SUPPORT)) {
2939 pf->flags |= I40E_FLAG_TRUE_PROMISC_SUPPORT;
2940 promisc_change = true;
2941 } else if (!(flags & I40E_PRIV_FLAGS_TRUE_PROMISC_SUPPORT) &&
2942 (pf->flags & I40E_FLAG_TRUE_PROMISC_SUPPORT)) {
2943 pf->flags &= ~I40E_FLAG_TRUE_PROMISC_SUPPORT;
2944 promisc_change = true;
2945 }
2946 }
2947 if (promisc_change) {
2948 if (!(pf->flags & I40E_FLAG_TRUE_PROMISC_SUPPORT))
2949 sw_flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
2950 valid_flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
2951 ret = i40e_aq_set_switch_config(&pf->hw, sw_flags, valid_flags,
2952 NULL);
2953 if (ret && pf->hw.aq.asq_last_status != I40E_AQ_RC_ESRCH) {
2954 dev_info(&pf->pdev->dev,
2955 "couldn't set switch config bits, err %s aq_err %s\n",
2956 i40e_stat_str(&pf->hw, ret),
2957 i40e_aq_str(&pf->hw,
2958 pf->hw.aq.asq_last_status));
2959 /* not a fatal problem, just keep going */
2960 }
2961 }
2962
Anjali Singhai Jain72b74862016-01-08 17:50:21 -08002963 if ((flags & I40E_PRIV_FLAGS_HW_ATR_EVICT) &&
2964 (pf->flags & I40E_FLAG_HW_ATR_EVICT_CAPABLE))
2965 pf->auto_disable_flags &= ~I40E_FLAG_HW_ATR_EVICT_CAPABLE;
2966 else
2967 pf->auto_disable_flags |= I40E_FLAG_HW_ATR_EVICT_CAPABLE;
2968
Jesse Brandeburg827de392015-11-06 15:26:07 -08002969 /* if needed, issue reset to cause things to take effect */
2970 if (reset_required)
2971 i40e_do_reset(pf, BIT(__I40E_PF_RESET_REQUESTED));
2972
Shannon Nelson9ac77262015-08-27 11:42:40 -04002973 return 0;
2974}
2975
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002976static const struct ethtool_ops i40e_ethtool_ops = {
2977 .get_settings = i40e_get_settings,
Catherine Sullivanbf9c7142014-06-04 08:45:28 +00002978 .set_settings = i40e_set_settings,
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002979 .get_drvinfo = i40e_get_drvinfo,
2980 .get_regs_len = i40e_get_regs_len,
2981 .get_regs = i40e_get_regs,
2982 .nway_reset = i40e_nway_reset,
2983 .get_link = ethtool_op_get_link,
2984 .get_wol = i40e_get_wol,
Shannon Nelson8e2773a2013-11-28 06:39:22 +00002985 .set_wol = i40e_set_wol,
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00002986 .set_eeprom = i40e_set_eeprom,
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002987 .get_eeprom_len = i40e_get_eeprom_len,
2988 .get_eeprom = i40e_get_eeprom,
2989 .get_ringparam = i40e_get_ringparam,
2990 .set_ringparam = i40e_set_ringparam,
2991 .get_pauseparam = i40e_get_pauseparam,
Catherine Sullivan2becc352014-06-04 08:45:27 +00002992 .set_pauseparam = i40e_set_pauseparam,
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002993 .get_msglevel = i40e_get_msglevel,
2994 .set_msglevel = i40e_set_msglevel,
2995 .get_rxnfc = i40e_get_rxnfc,
2996 .set_rxnfc = i40e_set_rxnfc,
2997 .self_test = i40e_diag_test,
2998 .get_strings = i40e_get_strings,
2999 .set_phys_id = i40e_set_phys_id,
3000 .get_sset_count = i40e_get_sset_count,
3001 .get_ethtool_stats = i40e_get_ethtool_stats,
3002 .get_coalesce = i40e_get_coalesce,
3003 .set_coalesce = i40e_set_coalesce,
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00003004 .get_rxfh_key_size = i40e_get_rxfh_key_size,
3005 .get_rxfh_indir_size = i40e_get_rxfh_indir_size,
3006 .get_rxfh = i40e_get_rxfh,
3007 .set_rxfh = i40e_set_rxfh,
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00003008 .get_channels = i40e_get_channels,
3009 .set_channels = i40e_set_channels,
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003010 .get_ts_info = i40e_get_ts_info,
Greg Rose7e45ab42015-02-06 08:52:19 +00003011 .get_priv_flags = i40e_get_priv_flags,
Shannon Nelson9ac77262015-08-27 11:42:40 -04003012 .set_priv_flags = i40e_set_priv_flags,
Kan Liangbe280ba2016-02-19 09:24:05 -05003013 .get_per_queue_coalesce = i40e_get_per_queue_coalesce,
Kan Liangf3757a42016-02-19 09:24:06 -05003014 .set_per_queue_coalesce = i40e_set_per_queue_coalesce,
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003015};
3016
3017void i40e_set_ethtool_ops(struct net_device *netdev)
3018{
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00003019 netdev->ethtool_ops = &i40e_ethtool_ops;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003020}