blob: 34173f821fd90c6dd5b63c0aead27391eada268c [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),
Jesse Brandeburgc40918c2016-01-04 10:33:10 -080092 I40E_VSI_STAT("rx_alloc_fail", rx_buf_failed),
93 I40E_VSI_STAT("rx_pg_alloc_fail", rx_page_failed),
Shannon Nelson41a9e552014-04-23 04:50:20 +000094};
95
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +000096/* These PF_STATs might look like duplicates of some NETDEV_STATs,
97 * but they are separate. This device supports Virtualization, and
98 * as such might have several netdevs supporting VMDq and FCoE going
99 * through a single port. The NETDEV_STATs are for individual netdevs
100 * seen at the top of the stack, and the PF_STATs are for the physical
101 * function at the bottom of the stack hosting those netdevs.
102 *
103 * The PF_STATs are appended to the netdev stats only when ethtool -S
104 * is queried on the base PF netdev, not on the VMDq or FCoE netdev.
105 */
Joe Perchesfe180a52016-09-26 20:17:01 -0700106static const struct i40e_stats i40e_gstrings_stats[] = {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000107 I40E_PF_STAT("rx_bytes", stats.eth.rx_bytes),
108 I40E_PF_STAT("tx_bytes", stats.eth.tx_bytes),
Shannon Nelson532d2832014-04-23 04:50:09 +0000109 I40E_PF_STAT("rx_unicast", stats.eth.rx_unicast),
110 I40E_PF_STAT("tx_unicast", stats.eth.tx_unicast),
111 I40E_PF_STAT("rx_multicast", stats.eth.rx_multicast),
112 I40E_PF_STAT("tx_multicast", stats.eth.tx_multicast),
113 I40E_PF_STAT("rx_broadcast", stats.eth.rx_broadcast),
114 I40E_PF_STAT("tx_broadcast", stats.eth.tx_broadcast),
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000115 I40E_PF_STAT("tx_errors", stats.eth.tx_errors),
116 I40E_PF_STAT("rx_dropped", stats.eth.rx_discards),
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000117 I40E_PF_STAT("tx_dropped_link_down", stats.tx_dropped_link_down),
Shannon Nelson9f7c9442015-07-10 19:35:57 -0400118 I40E_PF_STAT("rx_crc_errors", stats.crc_errors),
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000119 I40E_PF_STAT("illegal_bytes", stats.illegal_bytes),
120 I40E_PF_STAT("mac_local_faults", stats.mac_local_faults),
121 I40E_PF_STAT("mac_remote_faults", stats.mac_remote_faults),
Jesse Brandeburga47a15f2014-02-06 05:51:09 +0000122 I40E_PF_STAT("tx_timeout", tx_timeout_count),
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000123 I40E_PF_STAT("rx_csum_bad", hw_csum_rx_error),
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000124 I40E_PF_STAT("rx_length_errors", stats.rx_length_errors),
125 I40E_PF_STAT("link_xon_rx", stats.link_xon_rx),
126 I40E_PF_STAT("link_xoff_rx", stats.link_xoff_rx),
127 I40E_PF_STAT("link_xon_tx", stats.link_xon_tx),
128 I40E_PF_STAT("link_xoff_tx", stats.link_xoff_tx),
Alice Michaeldbd668e2017-10-27 11:06:48 -0400129 I40E_PF_STAT("priority_xon_rx", stats.priority_xon_rx),
130 I40E_PF_STAT("priority_xoff_rx", stats.priority_xoff_rx),
131 I40E_PF_STAT("priority_xon_tx", stats.priority_xon_tx),
132 I40E_PF_STAT("priority_xoff_tx", stats.priority_xoff_tx),
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000133 I40E_PF_STAT("rx_size_64", stats.rx_size_64),
134 I40E_PF_STAT("rx_size_127", stats.rx_size_127),
135 I40E_PF_STAT("rx_size_255", stats.rx_size_255),
136 I40E_PF_STAT("rx_size_511", stats.rx_size_511),
137 I40E_PF_STAT("rx_size_1023", stats.rx_size_1023),
138 I40E_PF_STAT("rx_size_1522", stats.rx_size_1522),
139 I40E_PF_STAT("rx_size_big", stats.rx_size_big),
140 I40E_PF_STAT("tx_size_64", stats.tx_size_64),
141 I40E_PF_STAT("tx_size_127", stats.tx_size_127),
142 I40E_PF_STAT("tx_size_255", stats.tx_size_255),
143 I40E_PF_STAT("tx_size_511", stats.tx_size_511),
144 I40E_PF_STAT("tx_size_1023", stats.tx_size_1023),
145 I40E_PF_STAT("tx_size_1522", stats.tx_size_1522),
146 I40E_PF_STAT("tx_size_big", stats.tx_size_big),
147 I40E_PF_STAT("rx_undersize", stats.rx_undersize),
148 I40E_PF_STAT("rx_fragments", stats.rx_fragments),
149 I40E_PF_STAT("rx_oversize", stats.rx_oversize),
150 I40E_PF_STAT("rx_jabber", stats.rx_jabber),
151 I40E_PF_STAT("VF_admin_queue_requests", vf_aq_requests),
Mitch Williams1d0a4ad2015-12-23 12:05:48 -0800152 I40E_PF_STAT("arq_overflows", arq_overflows),
Jacob Kellerbeb0dff2014-01-11 05:43:19 +0000153 I40E_PF_STAT("rx_hwtstamp_cleared", rx_hwtstamp_cleared),
Jacob Keller2955fac2017-05-03 10:28:58 -0700154 I40E_PF_STAT("tx_hwtstamp_skipped", tx_hwtstamp_skipped),
Anjali Singhai Jain60793f4a2014-07-09 07:46:23 +0000155 I40E_PF_STAT("fdir_flush_cnt", fd_flush_cnt),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +0000156 I40E_PF_STAT("fdir_atr_match", stats.fd_atr_match),
Anjali Singhai Jain60ccd452015-04-16 20:06:01 -0400157 I40E_PF_STAT("fdir_atr_tunnel_match", stats.fd_atr_tunnel_match),
Anjali Singhai Jaind0389e52015-04-22 19:34:05 -0400158 I40E_PF_STAT("fdir_atr_status", stats.fd_atr_status),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +0000159 I40E_PF_STAT("fdir_sb_match", stats.fd_sb_match),
Anjali Singhai Jaind0389e52015-04-22 19:34:05 -0400160 I40E_PF_STAT("fdir_sb_status", stats.fd_sb_status),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +0000161
Anjali Singhai Jainbee5af72014-03-06 08:59:50 +0000162 /* LPI stats */
163 I40E_PF_STAT("tx_lpi_status", stats.tx_lpi_status),
164 I40E_PF_STAT("rx_lpi_status", stats.rx_lpi_status),
165 I40E_PF_STAT("tx_lpi_count", stats.tx_lpi_count),
166 I40E_PF_STAT("rx_lpi_count", stats.rx_lpi_count),
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000167};
168
169#define I40E_QUEUE_STATS_LEN(n) \
Shannon Nelson31cd8402014-04-04 04:43:12 +0000170 (((struct i40e_netdev_priv *)netdev_priv((n)))->vsi->num_queue_pairs \
171 * 2 /* Tx and Rx together */ \
172 * (sizeof(struct i40e_queue_stats) / sizeof(u64)))
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000173#define I40E_GLOBAL_STATS_LEN ARRAY_SIZE(i40e_gstrings_stats)
174#define I40E_NETDEV_STATS_LEN ARRAY_SIZE(i40e_gstrings_net_stats)
Shannon Nelson41a9e552014-04-23 04:50:20 +0000175#define I40E_MISC_STATS_LEN ARRAY_SIZE(i40e_gstrings_misc_stats)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000176#define I40E_VSI_STATS_LEN(n) (I40E_NETDEV_STATS_LEN + \
Shannon Nelson41a9e552014-04-23 04:50:20 +0000177 I40E_MISC_STATS_LEN + \
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000178 I40E_QUEUE_STATS_LEN((n)))
179#define I40E_PFC_STATS_LEN ( \
180 (FIELD_SIZEOF(struct i40e_pf, stats.priority_xoff_rx) + \
181 FIELD_SIZEOF(struct i40e_pf, stats.priority_xon_rx) + \
182 FIELD_SIZEOF(struct i40e_pf, stats.priority_xoff_tx) + \
183 FIELD_SIZEOF(struct i40e_pf, stats.priority_xon_tx) + \
184 FIELD_SIZEOF(struct i40e_pf, stats.priority_xon_2_xoff)) \
185 / sizeof(u64))
Neerav Parikhfe860af2015-07-10 19:36:02 -0400186#define I40E_VEB_TC_STATS_LEN ( \
187 (FIELD_SIZEOF(struct i40e_veb, tc_stats.tc_rx_packets) + \
188 FIELD_SIZEOF(struct i40e_veb, tc_stats.tc_rx_bytes) + \
189 FIELD_SIZEOF(struct i40e_veb, tc_stats.tc_tx_packets) + \
190 FIELD_SIZEOF(struct i40e_veb, tc_stats.tc_tx_bytes)) \
191 / sizeof(u64))
Shannon Nelson8eab9cf2014-04-23 04:49:55 +0000192#define I40E_VEB_STATS_LEN ARRAY_SIZE(i40e_gstrings_veb_stats)
Neerav Parikhfe860af2015-07-10 19:36:02 -0400193#define I40E_VEB_STATS_TOTAL (I40E_VEB_STATS_LEN + I40E_VEB_TC_STATS_LEN)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000194#define I40E_PF_STATS_LEN(n) (I40E_GLOBAL_STATS_LEN + \
195 I40E_PFC_STATS_LEN + \
196 I40E_VSI_STATS_LEN((n)))
197
198enum i40e_ethtool_test_id {
199 I40E_ETH_TEST_REG = 0,
200 I40E_ETH_TEST_EEPROM,
201 I40E_ETH_TEST_INTR,
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000202 I40E_ETH_TEST_LINK,
203};
204
205static const char i40e_gstrings_test[][ETH_GSTRING_LEN] = {
206 "Register test (offline)",
207 "Eeprom test (offline)",
208 "Interrupt test (offline)",
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000209 "Link test (on/offline)"
210};
211
212#define I40E_TEST_LEN (sizeof(i40e_gstrings_test) / ETH_GSTRING_LEN)
213
Alexander Duyckaca955d2017-03-10 12:22:01 -0800214struct i40e_priv_flags {
215 char flag_string[ETH_GSTRING_LEN];
216 u64 flag;
217 bool read_only;
Greg Rose7e45ab42015-02-06 08:52:19 +0000218};
219
Alexander Duyckaca955d2017-03-10 12:22:01 -0800220#define I40E_PRIV_FLAG(_name, _flag, _read_only) { \
221 .flag_string = _name, \
222 .flag = _flag, \
223 .read_only = _read_only, \
224}
225
226static const struct i40e_priv_flags i40e_gstrings_priv_flags[] = {
227 /* NOTE: MFP setting cannot be changed */
228 I40E_PRIV_FLAG("MFP", I40E_FLAG_MFP_ENABLED, 1),
229 I40E_PRIV_FLAG("LinkPolling", I40E_FLAG_LINK_POLLING_ENABLED, 0),
230 I40E_PRIV_FLAG("flow-director-atr", I40E_FLAG_FD_ATR_ENABLED, 0),
231 I40E_PRIV_FLAG("veb-stats", I40E_FLAG_VEB_STATS_ENABLED, 0),
Jacob Keller6964e532017-06-12 15:38:36 -0700232 I40E_PRIV_FLAG("hw-atr-eviction", I40E_FLAG_HW_ATR_EVICT_ENABLED, 0),
Alexander Duyckc424d4a2017-03-14 10:15:26 -0700233 I40E_PRIV_FLAG("legacy-rx", I40E_FLAG_LEGACY_RX, 0),
Mitch Williams64615b52017-08-29 05:32:30 -0400234 I40E_PRIV_FLAG("disable-source-pruning",
235 I40E_FLAG_SOURCE_PRUNING_DISABLED, 0),
Alexander Duyckaca955d2017-03-10 12:22:01 -0800236};
237
238#define I40E_PRIV_FLAGS_STR_LEN ARRAY_SIZE(i40e_gstrings_priv_flags)
Greg Rose7e45ab42015-02-06 08:52:19 +0000239
Jacob Kellerd182a5c2016-10-25 16:08:50 -0700240/* Private flags with a global effect, restricted to PF 0 */
Alexander Duyckaca955d2017-03-10 12:22:01 -0800241static const struct i40e_priv_flags i40e_gl_gstrings_priv_flags[] = {
242 I40E_PRIV_FLAG("vf-true-promisc-support",
243 I40E_FLAG_TRUE_PROMISC_SUPPORT, 0),
Jacob Kellerd182a5c2016-10-25 16:08:50 -0700244};
245
Alexander Duyckaca955d2017-03-10 12:22:01 -0800246#define I40E_GL_PRIV_FLAGS_STR_LEN ARRAY_SIZE(i40e_gl_gstrings_priv_flags)
Jacob Kellerd182a5c2016-10-25 16:08:50 -0700247
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000248/**
Shannon Nelsonf0d8c732014-12-11 07:06:32 +0000249 * i40e_partition_setting_complaint - generic complaint for MFP restriction
250 * @pf: the PF struct
251 **/
252static void i40e_partition_setting_complaint(struct i40e_pf *pf)
253{
254 dev_info(&pf->pdev->dev,
255 "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");
256}
257
258/**
Catherine Sullivan06566e52016-05-03 15:13:14 -0700259 * i40e_phy_type_to_ethtool - convert the phy_types to ethtool link modes
Alan Brady52e2d022017-10-05 14:53:35 -0700260 * @pf: PF struct with phy_types
Alan Brady1eaae512017-10-05 14:53:41 -0700261 * @ks: ethtool link ksettings struct to fill out
Catherine Sullivan06566e52016-05-03 15:13:14 -0700262 *
263 **/
Alan Brady1eaae512017-10-05 14:53:41 -0700264static void i40e_phy_type_to_ethtool(struct i40e_pf *pf,
265 struct ethtool_link_ksettings *ks)
Catherine Sullivan06566e52016-05-03 15:13:14 -0700266{
Avinash Dayanand28537042016-06-20 09:10:33 -0700267 struct i40e_link_status *hw_link_info = &pf->hw.phy.link_info;
Carolyn Wyborny31232372016-11-21 13:03:48 -0800268 u64 phy_types = pf->hw.phy.phy_types;
269
Alan Brady1eaae512017-10-05 14:53:41 -0700270 ethtool_link_ksettings_zero_link_mode(ks, supported);
271 ethtool_link_ksettings_zero_link_mode(ks, advertising);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700272
273 if (phy_types & I40E_CAP_PHY_TYPE_SGMII) {
Alan Brady1eaae512017-10-05 14:53:41 -0700274 ethtool_link_ksettings_add_link_mode(ks, supported,
275 1000baseT_Full);
Avinash Dayanand28537042016-06-20 09:10:33 -0700276 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_1GB)
Alan Brady1eaae512017-10-05 14:53:41 -0700277 ethtool_link_ksettings_add_link_mode(ks, advertising,
278 1000baseT_Full);
Jacob Kellerd36e41d2017-06-23 04:24:46 -0400279 if (pf->hw_features & I40E_HW_100M_SGMII_CAPABLE) {
Alan Brady1eaae512017-10-05 14:53:41 -0700280 ethtool_link_ksettings_add_link_mode(ks, supported,
281 100baseT_Full);
282 ethtool_link_ksettings_add_link_mode(ks, advertising,
283 100baseT_Full);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700284 }
285 }
286 if (phy_types & I40E_CAP_PHY_TYPE_XAUI ||
287 phy_types & I40E_CAP_PHY_TYPE_XFI ||
288 phy_types & I40E_CAP_PHY_TYPE_SFI ||
289 phy_types & I40E_CAP_PHY_TYPE_10GBASE_SFPP_CU ||
Alan Brady1eaae512017-10-05 14:53:41 -0700290 phy_types & I40E_CAP_PHY_TYPE_10GBASE_AOC) {
291 ethtool_link_ksettings_add_link_mode(ks, supported,
292 10000baseT_Full);
Avinash Dayanand28537042016-06-20 09:10:33 -0700293 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB)
Alan Brady1eaae512017-10-05 14:53:41 -0700294 ethtool_link_ksettings_add_link_mode(ks, advertising,
295 10000baseT_Full);
296 }
297 if (phy_types & I40E_CAP_PHY_TYPE_10GBASE_T) {
298 ethtool_link_ksettings_add_link_mode(ks, supported,
299 10000baseT_Full);
300 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB)
301 ethtool_link_ksettings_add_link_mode(ks, advertising,
302 10000baseT_Full);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700303 }
304 if (phy_types & I40E_CAP_PHY_TYPE_XLAUI ||
305 phy_types & I40E_CAP_PHY_TYPE_XLPPI ||
306 phy_types & I40E_CAP_PHY_TYPE_40GBASE_AOC)
Alan Brady1eaae512017-10-05 14:53:41 -0700307 ethtool_link_ksettings_add_link_mode(ks, supported,
308 40000baseCR4_Full);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700309 if (phy_types & I40E_CAP_PHY_TYPE_40GBASE_CR4_CU ||
310 phy_types & I40E_CAP_PHY_TYPE_40GBASE_CR4) {
Alan Brady1eaae512017-10-05 14:53:41 -0700311 ethtool_link_ksettings_add_link_mode(ks, supported,
312 40000baseCR4_Full);
Avinash Dayanand28537042016-06-20 09:10:33 -0700313 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_40GB)
Alan Brady1eaae512017-10-05 14:53:41 -0700314 ethtool_link_ksettings_add_link_mode(ks, advertising,
315 40000baseCR4_Full);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700316 }
Avinash Dayanand01a7a9f2016-05-16 10:26:40 -0700317 if (phy_types & I40E_CAP_PHY_TYPE_100BASE_TX) {
Alan Brady1eaae512017-10-05 14:53:41 -0700318 ethtool_link_ksettings_add_link_mode(ks, supported,
319 100baseT_Full);
Avinash Dayanand28537042016-06-20 09:10:33 -0700320 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_100MB)
Alan Brady1eaae512017-10-05 14:53:41 -0700321 ethtool_link_ksettings_add_link_mode(ks, advertising,
322 100baseT_Full);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700323 }
Alan Brady1eaae512017-10-05 14:53:41 -0700324 if (phy_types & I40E_CAP_PHY_TYPE_1000BASE_T) {
325 ethtool_link_ksettings_add_link_mode(ks, supported,
326 1000baseT_Full);
Avinash Dayanand28537042016-06-20 09:10:33 -0700327 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_1GB)
Alan Brady1eaae512017-10-05 14:53:41 -0700328 ethtool_link_ksettings_add_link_mode(ks, advertising,
329 1000baseT_Full);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700330 }
331 if (phy_types & I40E_CAP_PHY_TYPE_40GBASE_SR4)
Alan Brady1eaae512017-10-05 14:53:41 -0700332 ethtool_link_ksettings_add_link_mode(ks, supported,
333 40000baseSR4_Full);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700334 if (phy_types & I40E_CAP_PHY_TYPE_40GBASE_LR4)
Alan Brady1eaae512017-10-05 14:53:41 -0700335 ethtool_link_ksettings_add_link_mode(ks, supported,
336 40000baseLR4_Full);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700337 if (phy_types & I40E_CAP_PHY_TYPE_40GBASE_KR4) {
Alan Brady1eaae512017-10-05 14:53:41 -0700338 ethtool_link_ksettings_add_link_mode(ks, supported,
339 40000baseLR4_Full);
340 ethtool_link_ksettings_add_link_mode(ks, advertising,
341 40000baseLR4_Full);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700342 }
343 if (phy_types & I40E_CAP_PHY_TYPE_20GBASE_KR2) {
Alan Brady1eaae512017-10-05 14:53:41 -0700344 ethtool_link_ksettings_add_link_mode(ks, supported,
345 20000baseKR2_Full);
Avinash Dayanand28537042016-06-20 09:10:33 -0700346 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_20GB)
Alan Brady1eaae512017-10-05 14:53:41 -0700347 ethtool_link_ksettings_add_link_mode(ks, advertising,
348 20000baseKR2_Full);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700349 }
350 if (phy_types & I40E_CAP_PHY_TYPE_10GBASE_KX4) {
Alan Brady1eaae512017-10-05 14:53:41 -0700351 ethtool_link_ksettings_add_link_mode(ks, supported,
352 10000baseKX4_Full);
Avinash Dayanand28537042016-06-20 09:10:33 -0700353 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB)
Alan Brady1eaae512017-10-05 14:53:41 -0700354 ethtool_link_ksettings_add_link_mode(ks, advertising,
355 10000baseKX4_Full);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700356 }
Alan Brady6987bd252017-10-05 14:53:38 -0700357 if (phy_types & I40E_CAP_PHY_TYPE_10GBASE_KR &&
358 !(pf->hw_features & I40E_HW_HAVE_CRT_RETIMER)) {
Alan Brady1eaae512017-10-05 14:53:41 -0700359 ethtool_link_ksettings_add_link_mode(ks, supported,
360 10000baseKR_Full);
Alan Brady6987bd252017-10-05 14:53:38 -0700361 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB)
Alan Brady1eaae512017-10-05 14:53:41 -0700362 ethtool_link_ksettings_add_link_mode(ks, advertising,
363 10000baseKR_Full);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700364 }
Alan Brady6987bd252017-10-05 14:53:38 -0700365 if (phy_types & I40E_CAP_PHY_TYPE_1000BASE_KX &&
366 !(pf->hw_features & I40E_HW_HAVE_CRT_RETIMER)) {
Alan Brady1eaae512017-10-05 14:53:41 -0700367 ethtool_link_ksettings_add_link_mode(ks, supported,
368 1000baseKX_Full);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700369 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_1GB)
Alan Brady1eaae512017-10-05 14:53:41 -0700370 ethtool_link_ksettings_add_link_mode(ks, advertising,
371 1000baseKX_Full);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700372 }
Alan Brady1eaae512017-10-05 14:53:41 -0700373 /* need to add 25G PHY types */
374 if (phy_types & I40E_CAP_PHY_TYPE_25GBASE_KR) {
375 ethtool_link_ksettings_add_link_mode(ks, supported,
376 25000baseKR_Full);
377 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_25GB)
378 ethtool_link_ksettings_add_link_mode(ks, advertising,
379 25000baseKR_Full);
380 }
381 if (phy_types & I40E_CAP_PHY_TYPE_25GBASE_CR) {
382 ethtool_link_ksettings_add_link_mode(ks, supported,
383 25000baseCR_Full);
384 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_25GB)
385 ethtool_link_ksettings_add_link_mode(ks, advertising,
386 25000baseCR_Full);
387 }
388 if (phy_types & I40E_CAP_PHY_TYPE_25GBASE_SR ||
Carolyn Wyborny31232372016-11-21 13:03:48 -0800389 phy_types & I40E_CAP_PHY_TYPE_25GBASE_LR) {
Alan Brady1eaae512017-10-05 14:53:41 -0700390 ethtool_link_ksettings_add_link_mode(ks, supported,
391 25000baseSR_Full);
392 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_25GB)
393 ethtool_link_ksettings_add_link_mode(ks, advertising,
394 25000baseSR_Full);
395 }
396 if (phy_types & I40E_CAP_PHY_TYPE_25GBASE_AOC ||
397 phy_types & I40E_CAP_PHY_TYPE_25GBASE_ACC) {
398 ethtool_link_ksettings_add_link_mode(ks, supported,
399 25000baseCR_Full);
400 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_25GB)
401 ethtool_link_ksettings_add_link_mode(ks, advertising,
402 25000baseCR_Full);
403 }
404 /* need to add new 10G PHY types */
405 if (phy_types & I40E_CAP_PHY_TYPE_10GBASE_CR1 ||
406 phy_types & I40E_CAP_PHY_TYPE_10GBASE_CR1_CU) {
407 ethtool_link_ksettings_add_link_mode(ks, supported,
408 10000baseCR_Full);
409 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB)
410 ethtool_link_ksettings_add_link_mode(ks, advertising,
411 10000baseCR_Full);
412 }
413 if (phy_types & I40E_CAP_PHY_TYPE_10GBASE_SR) {
414 ethtool_link_ksettings_add_link_mode(ks, supported,
415 10000baseSR_Full);
416 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB)
417 ethtool_link_ksettings_add_link_mode(ks, advertising,
418 10000baseSR_Full);
419 }
420 if (phy_types & I40E_CAP_PHY_TYPE_10GBASE_LR) {
421 ethtool_link_ksettings_add_link_mode(ks, supported,
422 10000baseLR_Full);
423 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB)
424 ethtool_link_ksettings_add_link_mode(ks, advertising,
425 10000baseLR_Full);
426 }
427 if (phy_types & I40E_CAP_PHY_TYPE_1000BASE_SX ||
428 phy_types & I40E_CAP_PHY_TYPE_1000BASE_LX ||
429 phy_types & I40E_CAP_PHY_TYPE_1000BASE_T_OPTICAL) {
430 ethtool_link_ksettings_add_link_mode(ks, supported,
431 1000baseX_Full);
432 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_1GB)
433 ethtool_link_ksettings_add_link_mode(ks, advertising,
434 1000baseX_Full);
Alan Brady6987bd252017-10-05 14:53:38 -0700435 }
436 /* Autoneg PHY types */
437 if (phy_types & I40E_CAP_PHY_TYPE_SGMII ||
438 phy_types & I40E_CAP_PHY_TYPE_40GBASE_KR4 ||
439 phy_types & I40E_CAP_PHY_TYPE_40GBASE_CR4_CU ||
440 phy_types & I40E_CAP_PHY_TYPE_40GBASE_CR4 ||
Carolyn Wyborny31232372016-11-21 13:03:48 -0800441 phy_types & I40E_CAP_PHY_TYPE_25GBASE_SR ||
Alan Brady6987bd252017-10-05 14:53:38 -0700442 phy_types & I40E_CAP_PHY_TYPE_25GBASE_LR ||
443 phy_types & I40E_CAP_PHY_TYPE_25GBASE_KR ||
444 phy_types & I40E_CAP_PHY_TYPE_25GBASE_CR ||
445 phy_types & I40E_CAP_PHY_TYPE_20GBASE_KR2 ||
446 phy_types & I40E_CAP_PHY_TYPE_10GBASE_T ||
447 phy_types & I40E_CAP_PHY_TYPE_10GBASE_SR ||
448 phy_types & I40E_CAP_PHY_TYPE_10GBASE_LR ||
449 phy_types & I40E_CAP_PHY_TYPE_10GBASE_KX4 ||
450 phy_types & I40E_CAP_PHY_TYPE_10GBASE_KR ||
451 phy_types & I40E_CAP_PHY_TYPE_10GBASE_CR1_CU ||
452 phy_types & I40E_CAP_PHY_TYPE_10GBASE_CR1 ||
453 phy_types & I40E_CAP_PHY_TYPE_1000BASE_T_OPTICAL ||
454 phy_types & I40E_CAP_PHY_TYPE_1000BASE_T ||
455 phy_types & I40E_CAP_PHY_TYPE_1000BASE_SX ||
456 phy_types & I40E_CAP_PHY_TYPE_1000BASE_LX ||
457 phy_types & I40E_CAP_PHY_TYPE_1000BASE_KX ||
458 phy_types & I40E_CAP_PHY_TYPE_100BASE_TX) {
Alan Brady1eaae512017-10-05 14:53:41 -0700459 ethtool_link_ksettings_add_link_mode(ks, supported,
460 Autoneg);
461 ethtool_link_ksettings_add_link_mode(ks, advertising,
462 Autoneg);
Carolyn Wyborny31232372016-11-21 13:03:48 -0800463 }
Catherine Sullivan06566e52016-05-03 15:13:14 -0700464}
465
466/**
Catherine Sullivane8278452015-02-06 08:52:08 +0000467 * i40e_get_settings_link_up - Get the Link settings for when link is up
468 * @hw: hw structure
Alan Brady1c142e12017-10-05 14:53:31 -0700469 * @ks: ethtool ksettings to fill in
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000470 * @netdev: network interface device structure
Alan Brady1c142e12017-10-05 14:53:31 -0700471 * @pf: pointer to physical function struct
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000472 **/
Catherine Sullivane8278452015-02-06 08:52:08 +0000473static void i40e_get_settings_link_up(struct i40e_hw *hw,
Alan Brady1c142e12017-10-05 14:53:31 -0700474 struct ethtool_link_ksettings *ks,
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400475 struct net_device *netdev,
476 struct i40e_pf *pf)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000477{
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000478 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
Alan Brady1eaae512017-10-05 14:53:41 -0700479 struct ethtool_link_ksettings cap_ksettings;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000480 u32 link_speed = hw_link_info->link_speed;
481
Catherine Sullivane8278452015-02-06 08:52:08 +0000482 /* Initialize supported and advertised settings based on phy settings */
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000483 switch (hw_link_info->phy_type) {
484 case I40E_PHY_TYPE_40GBASE_CR4:
485 case I40E_PHY_TYPE_40GBASE_CR4_CU:
Alan Brady79f04a32017-10-05 14:53:42 -0700486 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg);
487 ethtool_link_ksettings_add_link_mode(ks, supported,
488 40000baseCR4_Full);
489 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg);
490 ethtool_link_ksettings_add_link_mode(ks, advertising,
491 40000baseCR4_Full);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000492 break;
Catherine Sullivane8278452015-02-06 08:52:08 +0000493 case I40E_PHY_TYPE_XLAUI:
494 case I40E_PHY_TYPE_XLPPI:
Catherine Sullivan180204c2015-02-26 16:14:58 +0000495 case I40E_PHY_TYPE_40GBASE_AOC:
Alan Brady79f04a32017-10-05 14:53:42 -0700496 ethtool_link_ksettings_add_link_mode(ks, supported,
497 40000baseCR4_Full);
Catherine Sullivane8278452015-02-06 08:52:08 +0000498 break;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000499 case I40E_PHY_TYPE_40GBASE_SR4:
Alan Brady79f04a32017-10-05 14:53:42 -0700500 ethtool_link_ksettings_add_link_mode(ks, supported,
501 40000baseSR4_Full);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000502 break;
503 case I40E_PHY_TYPE_40GBASE_LR4:
Alan Brady79f04a32017-10-05 14:53:42 -0700504 ethtool_link_ksettings_add_link_mode(ks, supported,
505 40000baseLR4_Full);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000506 break;
Alan Brady79f04a32017-10-05 14:53:42 -0700507 case I40E_PHY_TYPE_25GBASE_SR:
508 case I40E_PHY_TYPE_25GBASE_LR:
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000509 case I40E_PHY_TYPE_10GBASE_SR:
510 case I40E_PHY_TYPE_10GBASE_LR:
Catherine Sullivan124ed152014-07-12 07:28:12 +0000511 case I40E_PHY_TYPE_1000BASE_SX:
512 case I40E_PHY_TYPE_1000BASE_LX:
Alan Brady79f04a32017-10-05 14:53:42 -0700513 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg);
514 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg);
515 ethtool_link_ksettings_add_link_mode(ks, supported,
516 25000baseSR_Full);
517 ethtool_link_ksettings_add_link_mode(ks, advertising,
518 25000baseSR_Full);
519 ethtool_link_ksettings_add_link_mode(ks, supported,
520 10000baseSR_Full);
521 ethtool_link_ksettings_add_link_mode(ks, advertising,
522 10000baseSR_Full);
523 ethtool_link_ksettings_add_link_mode(ks, supported,
524 10000baseLR_Full);
525 ethtool_link_ksettings_add_link_mode(ks, advertising,
526 10000baseLR_Full);
527 ethtool_link_ksettings_add_link_mode(ks, supported,
528 1000baseX_Full);
529 ethtool_link_ksettings_add_link_mode(ks, advertising,
530 1000baseX_Full);
531 ethtool_link_ksettings_add_link_mode(ks, supported,
532 10000baseT_Full);
Catherine Sullivan0a862b42015-08-31 19:54:53 -0400533 if (hw_link_info->module_type[2] &
534 I40E_MODULE_TYPE_1000BASE_SX ||
535 hw_link_info->module_type[2] &
536 I40E_MODULE_TYPE_1000BASE_LX) {
Alan Brady79f04a32017-10-05 14:53:42 -0700537 ethtool_link_ksettings_add_link_mode(ks, supported,
538 1000baseT_Full);
Catherine Sullivan0a862b42015-08-31 19:54:53 -0400539 if (hw_link_info->requested_speeds &
540 I40E_LINK_SPEED_1GB)
Alan Brady79f04a32017-10-05 14:53:42 -0700541 ethtool_link_ksettings_add_link_mode(
542 ks, advertising, 1000baseT_Full);
Catherine Sullivan0a862b42015-08-31 19:54:53 -0400543 }
Catherine Sullivane8278452015-02-06 08:52:08 +0000544 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB)
Alan Brady79f04a32017-10-05 14:53:42 -0700545 ethtool_link_ksettings_add_link_mode(ks, advertising,
546 10000baseT_Full);
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000547 break;
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000548 case I40E_PHY_TYPE_10GBASE_T:
Catherine Sullivane8278452015-02-06 08:52:08 +0000549 case I40E_PHY_TYPE_1000BASE_T:
Catherine Sullivan06566e52016-05-03 15:13:14 -0700550 case I40E_PHY_TYPE_100BASE_TX:
Alan Brady79f04a32017-10-05 14:53:42 -0700551 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg);
552 ethtool_link_ksettings_add_link_mode(ks, supported,
553 10000baseT_Full);
554 ethtool_link_ksettings_add_link_mode(ks, supported,
555 1000baseT_Full);
556 ethtool_link_ksettings_add_link_mode(ks, supported,
557 100baseT_Full);
558 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg);
Catherine Sullivane8278452015-02-06 08:52:08 +0000559 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB)
Alan Brady79f04a32017-10-05 14:53:42 -0700560 ethtool_link_ksettings_add_link_mode(ks, advertising,
561 10000baseT_Full);
Catherine Sullivane8278452015-02-06 08:52:08 +0000562 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_1GB)
Alan Brady79f04a32017-10-05 14:53:42 -0700563 ethtool_link_ksettings_add_link_mode(ks, advertising,
564 1000baseT_Full);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700565 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_100MB)
Alan Brady79f04a32017-10-05 14:53:42 -0700566 ethtool_link_ksettings_add_link_mode(ks, advertising,
567 100baseT_Full);
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400568 break;
Catherine Sullivan48becae2015-09-28 14:12:41 -0400569 case I40E_PHY_TYPE_1000BASE_T_OPTICAL:
Alan Brady79f04a32017-10-05 14:53:42 -0700570 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg);
571 ethtool_link_ksettings_add_link_mode(ks, supported,
572 1000baseT_Full);
573 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg);
574 ethtool_link_ksettings_add_link_mode(ks, advertising,
575 1000baseT_Full);
Catherine Sullivan48becae2015-09-28 14:12:41 -0400576 break;
Catherine Sullivane8278452015-02-06 08:52:08 +0000577 case I40E_PHY_TYPE_10GBASE_CR1_CU:
578 case I40E_PHY_TYPE_10GBASE_CR1:
Alan Brady79f04a32017-10-05 14:53:42 -0700579 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg);
580 ethtool_link_ksettings_add_link_mode(ks, supported,
581 10000baseT_Full);
582 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg);
583 ethtool_link_ksettings_add_link_mode(ks, advertising,
584 10000baseT_Full);
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000585 break;
586 case I40E_PHY_TYPE_XAUI:
587 case I40E_PHY_TYPE_XFI:
588 case I40E_PHY_TYPE_SFI:
589 case I40E_PHY_TYPE_10GBASE_SFPP_CU:
Catherine Sullivan180204c2015-02-26 16:14:58 +0000590 case I40E_PHY_TYPE_10GBASE_AOC:
Alan Brady79f04a32017-10-05 14:53:42 -0700591 ethtool_link_ksettings_add_link_mode(ks, supported,
592 10000baseT_Full);
593 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB)
594 ethtool_link_ksettings_add_link_mode(ks, advertising,
595 10000baseT_Full);
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000596 break;
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000597 case I40E_PHY_TYPE_SGMII:
Alan Brady79f04a32017-10-05 14:53:42 -0700598 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg);
599 ethtool_link_ksettings_add_link_mode(ks, supported,
600 1000baseT_Full);
Catherine Sullivane8278452015-02-06 08:52:08 +0000601 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_1GB)
Alan Brady79f04a32017-10-05 14:53:42 -0700602 ethtool_link_ksettings_add_link_mode(ks, advertising,
603 1000baseT_Full);
Jacob Kellerd36e41d2017-06-23 04:24:46 -0400604 if (pf->hw_features & I40E_HW_100M_SGMII_CAPABLE) {
Alan Brady79f04a32017-10-05 14:53:42 -0700605 ethtool_link_ksettings_add_link_mode(ks, supported,
606 100baseT_Full);
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400607 if (hw_link_info->requested_speeds &
608 I40E_LINK_SPEED_100MB)
Alan Brady79f04a32017-10-05 14:53:42 -0700609 ethtool_link_ksettings_add_link_mode(
610 ks, advertising, 100baseT_Full);
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400611 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000612 break;
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -0400613 case I40E_PHY_TYPE_40GBASE_KR4:
Alan Brady79f04a32017-10-05 14:53:42 -0700614 case I40E_PHY_TYPE_25GBASE_KR:
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -0400615 case I40E_PHY_TYPE_20GBASE_KR2:
616 case I40E_PHY_TYPE_10GBASE_KR:
617 case I40E_PHY_TYPE_10GBASE_KX4:
618 case I40E_PHY_TYPE_1000BASE_KX:
Alan Brady79f04a32017-10-05 14:53:42 -0700619 ethtool_link_ksettings_add_link_mode(ks, supported,
620 40000baseKR4_Full);
621 ethtool_link_ksettings_add_link_mode(ks, supported,
622 25000baseKR_Full);
623 ethtool_link_ksettings_add_link_mode(ks, supported,
624 20000baseKR2_Full);
625 ethtool_link_ksettings_add_link_mode(ks, supported,
626 10000baseKR_Full);
627 ethtool_link_ksettings_add_link_mode(ks, supported,
628 10000baseKX4_Full);
629 ethtool_link_ksettings_add_link_mode(ks, supported,
630 1000baseKX_Full);
631 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg);
632 ethtool_link_ksettings_add_link_mode(ks, advertising,
633 40000baseKR4_Full);
634 ethtool_link_ksettings_add_link_mode(ks, advertising,
635 25000baseKR_Full);
636 ethtool_link_ksettings_add_link_mode(ks, advertising,
637 20000baseKR2_Full);
638 ethtool_link_ksettings_add_link_mode(ks, advertising,
639 10000baseKR_Full);
640 ethtool_link_ksettings_add_link_mode(ks, advertising,
641 10000baseKX4_Full);
642 ethtool_link_ksettings_add_link_mode(ks, advertising,
643 1000baseKX_Full);
644 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg);
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -0400645 break;
Carolyn Wyborny31232372016-11-21 13:03:48 -0800646 case I40E_PHY_TYPE_25GBASE_CR:
Alan Brady79f04a32017-10-05 14:53:42 -0700647 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg);
648 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg);
649 ethtool_link_ksettings_add_link_mode(ks, supported,
650 25000baseCR_Full);
651 ethtool_link_ksettings_add_link_mode(ks, advertising,
652 25000baseCR_Full);
653 break;
Sudheer Mogilappagari211b4c12017-10-05 14:53:39 -0700654 case I40E_PHY_TYPE_25GBASE_AOC:
655 case I40E_PHY_TYPE_25GBASE_ACC:
Alan Brady79f04a32017-10-05 14:53:42 -0700656 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg);
657 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg);
658 ethtool_link_ksettings_add_link_mode(ks, supported,
659 25000baseCR_Full);
660
661 ethtool_link_ksettings_add_link_mode(ks, advertising,
662 25000baseCR_Full);
663 ethtool_link_ksettings_add_link_mode(ks, supported,
664 10000baseCR_Full);
665 ethtool_link_ksettings_add_link_mode(ks, advertising,
666 10000baseCR_Full);
Carolyn Wyborny31232372016-11-21 13:03:48 -0800667 break;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000668 default:
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000669 /* if we got here and link is up something bad is afoot */
Alan Bradya03af692017-10-05 14:53:37 -0700670 netdev_info(netdev,
671 "WARNING: Link is up but PHY type 0x%x is not recognized.\n",
Catherine Sullivan124ed152014-07-12 07:28:12 +0000672 hw_link_info->phy_type);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000673 }
674
Catherine Sullivan06566e52016-05-03 15:13:14 -0700675 /* Now that we've worked out everything that could be supported by the
Alan Brady91a5c442017-10-05 14:53:36 -0700676 * current PHY type, get what is supported by the NVM and intersect
677 * them to get what is truly supported
Catherine Sullivan06566e52016-05-03 15:13:14 -0700678 */
Alan Brady1eaae512017-10-05 14:53:41 -0700679 memset(&cap_ksettings, 0, sizeof(struct ethtool_link_ksettings));
680 i40e_phy_type_to_ethtool(pf, &cap_ksettings);
681 ethtool_intersect_link_masks(ks, &cap_ksettings);
Catherine Sullivan06566e52016-05-03 15:13:14 -0700682
Catherine Sullivane8278452015-02-06 08:52:08 +0000683 /* Set speed and duplex */
684 switch (link_speed) {
685 case I40E_LINK_SPEED_40GB:
Alan Brady1c142e12017-10-05 14:53:31 -0700686 ks->base.speed = SPEED_40000;
Catherine Sullivane8278452015-02-06 08:52:08 +0000687 break;
Carolyn Wyborny31232372016-11-21 13:03:48 -0800688 case I40E_LINK_SPEED_25GB:
Alan Brady1c142e12017-10-05 14:53:31 -0700689 ks->base.speed = SPEED_25000;
Carolyn Wyborny31232372016-11-21 13:03:48 -0800690 break;
Jesse Brandeburgae24b402015-03-27 00:12:09 -0700691 case I40E_LINK_SPEED_20GB:
Alan Brady1c142e12017-10-05 14:53:31 -0700692 ks->base.speed = SPEED_20000;
Jesse Brandeburgae24b402015-03-27 00:12:09 -0700693 break;
Catherine Sullivane8278452015-02-06 08:52:08 +0000694 case I40E_LINK_SPEED_10GB:
Alan Brady1c142e12017-10-05 14:53:31 -0700695 ks->base.speed = SPEED_10000;
Catherine Sullivane8278452015-02-06 08:52:08 +0000696 break;
697 case I40E_LINK_SPEED_1GB:
Alan Brady1c142e12017-10-05 14:53:31 -0700698 ks->base.speed = SPEED_1000;
Catherine Sullivane8278452015-02-06 08:52:08 +0000699 break;
700 case I40E_LINK_SPEED_100MB:
Alan Brady1c142e12017-10-05 14:53:31 -0700701 ks->base.speed = SPEED_100;
Catherine Sullivane8278452015-02-06 08:52:08 +0000702 break;
703 default:
704 break;
705 }
Alan Brady1c142e12017-10-05 14:53:31 -0700706 ks->base.duplex = DUPLEX_FULL;
Catherine Sullivane8278452015-02-06 08:52:08 +0000707}
708
709/**
710 * i40e_get_settings_link_down - Get the Link settings for when link is down
711 * @hw: hw structure
Alan Brady1c142e12017-10-05 14:53:31 -0700712 * @ks: ethtool ksettings to fill in
713 * @pf: pointer to physical function struct
Catherine Sullivane8278452015-02-06 08:52:08 +0000714 *
715 * Reports link settings that can be determined when link is down
716 **/
717static void i40e_get_settings_link_down(struct i40e_hw *hw,
Alan Brady1c142e12017-10-05 14:53:31 -0700718 struct ethtool_link_ksettings *ks,
Catherine Sullivan3b6c2172015-09-03 17:18:52 -0400719 struct i40e_pf *pf)
Catherine Sullivane8278452015-02-06 08:52:08 +0000720{
Catherine Sullivane8278452015-02-06 08:52:08 +0000721 /* link is down and the driver needs to fall back on
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -0400722 * supported phy types to figure out what info to display
Catherine Sullivane8278452015-02-06 08:52:08 +0000723 */
Alan Brady1eaae512017-10-05 14:53:41 -0700724 i40e_phy_type_to_ethtool(pf, ks);
Catherine Sullivane8278452015-02-06 08:52:08 +0000725
726 /* With no link speed and duplex are unknown */
Alan Brady1c142e12017-10-05 14:53:31 -0700727 ks->base.speed = SPEED_UNKNOWN;
728 ks->base.duplex = DUPLEX_UNKNOWN;
Catherine Sullivane8278452015-02-06 08:52:08 +0000729}
730
731/**
Alan Brady1c142e12017-10-05 14:53:31 -0700732 * i40e_get_link_ksettings - Get Link Speed and Duplex settings
Catherine Sullivane8278452015-02-06 08:52:08 +0000733 * @netdev: network interface device structure
Alan Brady1c142e12017-10-05 14:53:31 -0700734 * @ks: ethtool ksettings
Catherine Sullivane8278452015-02-06 08:52:08 +0000735 *
736 * Reports speed/duplex settings based on media_type
737 **/
Philippe Reynesa7f90942017-02-04 22:05:06 +0100738static int i40e_get_link_ksettings(struct net_device *netdev,
Alan Brady1c142e12017-10-05 14:53:31 -0700739 struct ethtool_link_ksettings *ks)
Catherine Sullivane8278452015-02-06 08:52:08 +0000740{
741 struct i40e_netdev_priv *np = netdev_priv(netdev);
742 struct i40e_pf *pf = np->vsi->back;
743 struct i40e_hw *hw = &pf->hw;
744 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
745 bool link_up = hw_link_info->link_info & I40E_AQ_LINK_UP;
Alan Brady5f434992017-10-05 14:53:34 -0700746
747 ethtool_link_ksettings_zero_link_mode(ks, supported);
748 ethtool_link_ksettings_zero_link_mode(ks, advertising);
Catherine Sullivane8278452015-02-06 08:52:08 +0000749
750 if (link_up)
Alan Brady1c142e12017-10-05 14:53:31 -0700751 i40e_get_settings_link_up(hw, ks, netdev, pf);
Catherine Sullivane8278452015-02-06 08:52:08 +0000752 else
Alan Brady1c142e12017-10-05 14:53:31 -0700753 i40e_get_settings_link_down(hw, ks, pf);
Catherine Sullivane8278452015-02-06 08:52:08 +0000754
755 /* Now set the settings that don't rely on link being up/down */
Catherine Sullivane8278452015-02-06 08:52:08 +0000756 /* Set autoneg settings */
Alan Brady1c142e12017-10-05 14:53:31 -0700757 ks->base.autoneg = ((hw_link_info->an_info & I40E_AQ_AN_COMPLETED) ?
758 AUTONEG_ENABLE : AUTONEG_DISABLE);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000759
Alan Bradya03af692017-10-05 14:53:37 -0700760 /* Set media type settings */
Jesse Brandeburgc9a3d472013-11-26 10:49:10 +0000761 switch (hw->phy.media_type) {
762 case I40E_MEDIA_TYPE_BACKPLANE:
Alan Bradya03af692017-10-05 14:53:37 -0700763 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg);
764 ethtool_link_ksettings_add_link_mode(ks, supported, Backplane);
765 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg);
Alan Brady1c142e12017-10-05 14:53:31 -0700766 ethtool_link_ksettings_add_link_mode(ks, advertising,
Philippe Reynesa7f90942017-02-04 22:05:06 +0100767 Backplane);
Alan Brady1c142e12017-10-05 14:53:31 -0700768 ks->base.port = PORT_NONE;
Jesse Brandeburgc9a3d472013-11-26 10:49:10 +0000769 break;
770 case I40E_MEDIA_TYPE_BASET:
Alan Brady1c142e12017-10-05 14:53:31 -0700771 ethtool_link_ksettings_add_link_mode(ks, supported, TP);
772 ethtool_link_ksettings_add_link_mode(ks, advertising, TP);
773 ks->base.port = PORT_TP;
Jesse Brandeburgc9a3d472013-11-26 10:49:10 +0000774 break;
775 case I40E_MEDIA_TYPE_DA:
776 case I40E_MEDIA_TYPE_CX4:
Alan Brady1c142e12017-10-05 14:53:31 -0700777 ethtool_link_ksettings_add_link_mode(ks, supported, FIBRE);
778 ethtool_link_ksettings_add_link_mode(ks, advertising, FIBRE);
779 ks->base.port = PORT_DA;
Jesse Brandeburgc9a3d472013-11-26 10:49:10 +0000780 break;
781 case I40E_MEDIA_TYPE_FIBER:
Alan Brady1c142e12017-10-05 14:53:31 -0700782 ethtool_link_ksettings_add_link_mode(ks, supported, FIBRE);
783 ks->base.port = PORT_FIBRE;
Jesse Brandeburgc9a3d472013-11-26 10:49:10 +0000784 break;
785 case I40E_MEDIA_TYPE_UNKNOWN:
786 default:
Alan Brady1c142e12017-10-05 14:53:31 -0700787 ks->base.port = PORT_OTHER;
Jesse Brandeburgc9a3d472013-11-26 10:49:10 +0000788 break;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000789 }
790
Catherine Sullivane8278452015-02-06 08:52:08 +0000791 /* Set flow control settings */
Alan Brady1c142e12017-10-05 14:53:31 -0700792 ethtool_link_ksettings_add_link_mode(ks, supported, Pause);
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000793
Catherine Sullivane8278452015-02-06 08:52:08 +0000794 switch (hw->fc.requested_mode) {
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000795 case I40E_FC_FULL:
Alan Bradya03af692017-10-05 14:53:37 -0700796 ethtool_link_ksettings_add_link_mode(ks, advertising, Pause);
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000797 break;
798 case I40E_FC_TX_PAUSE:
Alan Brady1c142e12017-10-05 14:53:31 -0700799 ethtool_link_ksettings_add_link_mode(ks, advertising,
Philippe Reynesa7f90942017-02-04 22:05:06 +0100800 Asym_Pause);
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000801 break;
802 case I40E_FC_RX_PAUSE:
Alan Bradya03af692017-10-05 14:53:37 -0700803 ethtool_link_ksettings_add_link_mode(ks, advertising, Pause);
Alan Brady1c142e12017-10-05 14:53:31 -0700804 ethtool_link_ksettings_add_link_mode(ks, advertising,
Philippe Reynesa7f90942017-02-04 22:05:06 +0100805 Asym_Pause);
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000806 break;
807 default:
Alan Brady5f434992017-10-05 14:53:34 -0700808 ethtool_link_ksettings_del_link_mode(ks, advertising, Pause);
809 ethtool_link_ksettings_del_link_mode(ks, advertising,
810 Asym_Pause);
Jesse Brandeburg4e91bcd2014-06-04 08:45:23 +0000811 break;
812 }
813
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000814 return 0;
815}
816
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000817/**
Alan Brady1c142e12017-10-05 14:53:31 -0700818 * i40e_set_link_ksettings - Set Speed and Duplex
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000819 * @netdev: network interface device structure
Alan Brady1c142e12017-10-05 14:53:31 -0700820 * @ks: ethtool ksettings
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000821 *
822 * Set speed/duplex per media_types advertised/forced
823 **/
Philippe Reynesa7f90942017-02-04 22:05:06 +0100824static int i40e_set_link_ksettings(struct net_device *netdev,
Alan Brady1c142e12017-10-05 14:53:31 -0700825 const struct ethtool_link_ksettings *ks)
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000826{
827 struct i40e_netdev_priv *np = netdev_priv(netdev);
828 struct i40e_aq_get_phy_abilities_resp abilities;
Alan Brady636b62d2017-10-05 14:53:43 -0700829 struct ethtool_link_ksettings safe_ks;
830 struct ethtool_link_ksettings copy_ks;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000831 struct i40e_aq_set_phy_config config;
832 struct i40e_pf *pf = np->vsi->back;
833 struct i40e_vsi *vsi = np->vsi;
834 struct i40e_hw *hw = &pf->hw;
Alan Brady636b62d2017-10-05 14:53:43 -0700835 bool autoneg_changed = false;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000836 i40e_status status = 0;
Jacob Kellere8d2f4c2017-04-13 04:45:48 -0400837 int timeout = 50;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000838 int err = 0;
Alan Bradycee91992017-10-05 14:53:44 -0700839 u8 autoneg;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000840
Shannon Nelsonf0d8c732014-12-11 07:06:32 +0000841 /* Changing port settings is not supported if this isn't the
842 * port's controlling PF
843 */
844 if (hw->partition_id != 1) {
845 i40e_partition_setting_complaint(pf);
846 return -EOPNOTSUPP;
847 }
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000848 if (vsi != pf->vsi[pf->lan_vsi])
849 return -EOPNOTSUPP;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000850 if (hw->phy.media_type != I40E_MEDIA_TYPE_BASET &&
851 hw->phy.media_type != I40E_MEDIA_TYPE_FIBER &&
Catherine Sullivanc57e9f12014-07-12 07:28:13 +0000852 hw->phy.media_type != I40E_MEDIA_TYPE_BACKPLANE &&
Serey Kong65362272016-05-16 10:26:39 -0700853 hw->phy.media_type != I40E_MEDIA_TYPE_DA &&
Catherine Sullivanc57e9f12014-07-12 07:28:13 +0000854 hw->phy.link_info.link_info & I40E_AQ_LINK_UP)
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000855 return -EOPNOTSUPP;
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -0400856 if (hw->device_id == I40E_DEV_ID_KX_B ||
857 hw->device_id == I40E_DEV_ID_KX_C ||
858 hw->device_id == I40E_DEV_ID_20G_KR2 ||
859 hw->device_id == I40E_DEV_ID_20G_KR2_A) {
860 netdev_info(netdev, "Changing settings is not supported on backplane.\n");
861 return -EOPNOTSUPP;
862 }
863
Alan Brady1c142e12017-10-05 14:53:31 -0700864 /* copy the ksettings to copy_ks to avoid modifying the origin */
865 memcpy(&copy_ks, ks, sizeof(struct ethtool_link_ksettings));
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000866
Alan Bradycee91992017-10-05 14:53:44 -0700867 /* save autoneg out of ksettings */
868 autoneg = copy_ks.base.autoneg;
869
870 memset(&safe_ks, 0, sizeof(safe_ks));
871 /* Get link modes supported by hardware and check against modes
872 * requested by the user. Return an error if unsupported mode was set.
873 */
874 i40e_phy_type_to_ethtool(pf, &safe_ks);
875 if (!bitmap_subset(copy_ks.link_modes.advertising,
876 safe_ks.link_modes.supported,
877 __ETHTOOL_LINK_MODE_MASK_NBITS))
878 return -EINVAL;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000879
Philippe Reynesa7f90942017-02-04 22:05:06 +0100880 /* get our own copy of the bits to check against */
Alan Brady1c142e12017-10-05 14:53:31 -0700881 memset(&safe_ks, 0, sizeof(struct ethtool_link_ksettings));
Alan Bradycee91992017-10-05 14:53:44 -0700882 safe_ks.base.cmd = copy_ks.base.cmd;
883 safe_ks.base.link_mode_masks_nwords =
884 copy_ks.base.link_mode_masks_nwords;
Alan Brady1c142e12017-10-05 14:53:31 -0700885 i40e_get_link_ksettings(netdev, &safe_ks);
Philippe Reynesa7f90942017-02-04 22:05:06 +0100886
Alan Bradycee91992017-10-05 14:53:44 -0700887 /* set autoneg back to what it currently is */
Alan Brady1c142e12017-10-05 14:53:31 -0700888 copy_ks.base.autoneg = safe_ks.base.autoneg;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000889
Alan Bradycee91992017-10-05 14:53:44 -0700890 /* If copy_ks.base and safe_ks.base are not the same now, then they are
891 * trying to set something that we do not support.
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000892 */
Alan Bradycee91992017-10-05 14:53:44 -0700893 if (memcmp(&copy_ks.base, &safe_ks.base,
894 sizeof(struct ethtool_link_settings)))
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000895 return -EOPNOTSUPP;
896
Jacob Keller0da36b92017-04-19 09:25:55 -0400897 while (test_and_set_bit(__I40E_CONFIG_BUSY, pf->state)) {
Jacob Kellere8d2f4c2017-04-13 04:45:48 -0400898 timeout--;
899 if (!timeout)
900 return -EBUSY;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000901 usleep_range(1000, 2000);
Jacob Kellere8d2f4c2017-04-13 04:45:48 -0400902 }
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000903
904 /* Get the current phy config */
905 status = i40e_aq_get_phy_capabilities(hw, false, false, &abilities,
906 NULL);
Jacob Kellere8d2f4c2017-04-13 04:45:48 -0400907 if (status) {
908 err = -EAGAIN;
909 goto done;
910 }
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000911
Catherine Sullivan124ed152014-07-12 07:28:12 +0000912 /* Copy abilities to config in case autoneg is not
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000913 * set below
914 */
915 memset(&config, 0, sizeof(struct i40e_aq_set_phy_config));
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000916 config.abilities = abilities.abilities;
917
918 /* Check autoneg */
919 if (autoneg == AUTONEG_ENABLE) {
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000920 /* If autoneg was not already enabled */
921 if (!(hw->phy.link_info.an_info & I40E_AQ_AN_COMPLETED)) {
Catherine Sullivan3ce12ee2015-09-28 14:16:58 -0400922 /* If autoneg is not supported, return error */
Alan Brady1c142e12017-10-05 14:53:31 -0700923 if (!ethtool_link_ksettings_test_link_mode(&safe_ks,
924 supported,
925 Autoneg)) {
Catherine Sullivan3ce12ee2015-09-28 14:16:58 -0400926 netdev_info(netdev, "Autoneg not supported on this phy\n");
Jacob Kellere8d2f4c2017-04-13 04:45:48 -0400927 err = -EINVAL;
928 goto done;
Catherine Sullivan3ce12ee2015-09-28 14:16:58 -0400929 }
930 /* Autoneg is allowed to change */
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000931 config.abilities = abilities.abilities |
932 I40E_AQ_PHY_ENABLE_AN;
Alan Brady636b62d2017-10-05 14:53:43 -0700933 autoneg_changed = true;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000934 }
935 } else {
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000936 /* If autoneg is currently enabled */
937 if (hw->phy.link_info.an_info & I40E_AQ_AN_COMPLETED) {
Catherine Sullivan3ce12ee2015-09-28 14:16:58 -0400938 /* If autoneg is supported 10GBASE_T is the only PHY
939 * that can disable it, so otherwise return error
940 */
Alan Brady1c142e12017-10-05 14:53:31 -0700941 if (ethtool_link_ksettings_test_link_mode(&safe_ks,
942 supported,
943 Autoneg) &&
Catherine Sullivan3ce12ee2015-09-28 14:16:58 -0400944 hw->phy.link_info.phy_type !=
945 I40E_PHY_TYPE_10GBASE_T) {
946 netdev_info(netdev, "Autoneg cannot be disabled on this phy\n");
Jacob Kellere8d2f4c2017-04-13 04:45:48 -0400947 err = -EINVAL;
948 goto done;
Catherine Sullivan3ce12ee2015-09-28 14:16:58 -0400949 }
950 /* Autoneg is allowed to change */
Mitch Williams5960d332014-09-13 07:40:47 +0000951 config.abilities = abilities.abilities &
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000952 ~I40E_AQ_PHY_ENABLE_AN;
Alan Brady636b62d2017-10-05 14:53:43 -0700953 autoneg_changed = true;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000954 }
955 }
956
Alan Bradycee91992017-10-05 14:53:44 -0700957 if (ethtool_link_ksettings_test_link_mode(ks, advertising,
958 100baseT_Full))
Catherine Sullivan124ed152014-07-12 07:28:12 +0000959 config.link_speed |= I40E_LINK_SPEED_100MB;
Alan Bradycee91992017-10-05 14:53:44 -0700960 if (ethtool_link_ksettings_test_link_mode(ks, advertising,
961 1000baseT_Full) ||
962 ethtool_link_ksettings_test_link_mode(ks, advertising,
963 1000baseX_Full) ||
964 ethtool_link_ksettings_test_link_mode(ks, advertising,
965 1000baseKX_Full))
Catherine Sullivan124ed152014-07-12 07:28:12 +0000966 config.link_speed |= I40E_LINK_SPEED_1GB;
Alan Bradycee91992017-10-05 14:53:44 -0700967 if (ethtool_link_ksettings_test_link_mode(ks, advertising,
968 10000baseT_Full) ||
969 ethtool_link_ksettings_test_link_mode(ks, advertising,
970 10000baseKX4_Full) ||
971 ethtool_link_ksettings_test_link_mode(ks, advertising,
972 10000baseKR_Full) ||
973 ethtool_link_ksettings_test_link_mode(ks, advertising,
974 10000baseCR_Full) ||
975 ethtool_link_ksettings_test_link_mode(ks, advertising,
976 10000baseSR_Full))
Catherine Sullivan124ed152014-07-12 07:28:12 +0000977 config.link_speed |= I40E_LINK_SPEED_10GB;
Alan Bradycee91992017-10-05 14:53:44 -0700978 if (ethtool_link_ksettings_test_link_mode(ks, advertising,
979 20000baseKR2_Full))
Jesse Brandeburgae24b402015-03-27 00:12:09 -0700980 config.link_speed |= I40E_LINK_SPEED_20GB;
Alan Bradycee91992017-10-05 14:53:44 -0700981 if (ethtool_link_ksettings_test_link_mode(ks, advertising,
982 25000baseCR_Full) ||
983 ethtool_link_ksettings_test_link_mode(ks, advertising,
984 25000baseKR_Full) ||
985 ethtool_link_ksettings_test_link_mode(ks, advertising,
986 25000baseSR_Full))
987 config.link_speed |= I40E_LINK_SPEED_25GB;
988 if (ethtool_link_ksettings_test_link_mode(ks, advertising,
989 40000baseKR4_Full) ||
990 ethtool_link_ksettings_test_link_mode(ks, advertising,
991 40000baseCR4_Full) ||
992 ethtool_link_ksettings_test_link_mode(ks, advertising,
993 40000baseSR4_Full) ||
994 ethtool_link_ksettings_test_link_mode(ks, advertising,
995 40000baseLR4_Full))
Catherine Sullivan124ed152014-07-12 07:28:12 +0000996 config.link_speed |= I40E_LINK_SPEED_40GB;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +0000997
Catherine Sullivan0002e112015-08-26 15:14:16 -0400998 /* If speed didn't get set, set it to what it currently is.
999 * This is needed because if advertise is 0 (as it is when autoneg
1000 * is disabled) then speed won't get set.
1001 */
1002 if (!config.link_speed)
1003 config.link_speed = abilities.link_speed;
Alan Brady636b62d2017-10-05 14:53:43 -07001004 if (autoneg_changed || abilities.link_speed != config.link_speed) {
Catherine Sullivanbf9c7142014-06-04 08:45:28 +00001005 /* copy over the rest of the abilities */
1006 config.phy_type = abilities.phy_type;
Henry Tiemanb7eaf8f2016-12-02 12:33:01 -08001007 config.phy_type_ext = abilities.phy_type_ext;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +00001008 config.eee_capability = abilities.eee_capability;
1009 config.eeer = abilities.eeer_val;
1010 config.low_power_ctrl = abilities.d3_lpan;
Henry Tiemanb7eaf8f2016-12-02 12:33:01 -08001011 config.fec_config = abilities.fec_cfg_curr_mod_ext_info &
1012 I40E_AQ_PHY_FEC_CONFIG_MASK;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +00001013
Catherine Sullivane8278452015-02-06 08:52:08 +00001014 /* save the requested speeds */
1015 hw->phy.link_info.requested_speeds = config.link_speed;
Catherine Sullivan94128512014-07-12 07:28:16 +00001016 /* set link and auto negotiation so changes take effect */
1017 config.abilities |= I40E_AQ_PHY_ENABLE_ATOMIC_LINK;
1018 /* If link is up put link down */
1019 if (hw->phy.link_info.link_info & I40E_AQ_LINK_UP) {
1020 /* Tell the OS link is going down, the link will go
1021 * back up when fw says it is ready asynchronously
1022 */
Matt Jaredc156f852015-08-27 11:42:39 -04001023 i40e_print_link_message(vsi, false);
Catherine Sullivan94128512014-07-12 07:28:16 +00001024 netif_carrier_off(netdev);
1025 netif_tx_stop_all_queues(netdev);
1026 }
Catherine Sullivanbf9c7142014-06-04 08:45:28 +00001027
1028 /* make the aq call */
1029 status = i40e_aq_set_phy_config(hw, &config, NULL);
1030 if (status) {
Alan Bradya03af692017-10-05 14:53:37 -07001031 netdev_info(netdev,
1032 "Set phy config failed, err %s aq_err %s\n",
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001033 i40e_stat_str(hw, status),
1034 i40e_aq_str(hw, hw->aq.asq_last_status));
Jacob Kellere8d2f4c2017-04-13 04:45:48 -04001035 err = -EAGAIN;
1036 goto done;
Catherine Sullivanbf9c7142014-06-04 08:45:28 +00001037 }
1038
Catherine Sullivan0a862b42015-08-31 19:54:53 -04001039 status = i40e_update_link_info(hw);
Catherine Sullivanbf9c7142014-06-04 08:45:28 +00001040 if (status)
Alan Bradya03af692017-10-05 14:53:37 -07001041 netdev_dbg(netdev,
1042 "Updating link info failed with err %s aq_err %s\n",
Catherine Sullivan52e96892015-09-28 14:16:59 -04001043 i40e_stat_str(hw, status),
1044 i40e_aq_str(hw, hw->aq.asq_last_status));
Catherine Sullivanbf9c7142014-06-04 08:45:28 +00001045
1046 } else {
1047 netdev_info(netdev, "Nothing changed, exiting without setting anything.\n");
1048 }
1049
Jacob Kellere8d2f4c2017-04-13 04:45:48 -04001050done:
Jacob Keller0da36b92017-04-19 09:25:55 -04001051 clear_bit(__I40E_CONFIG_BUSY, pf->state);
Jacob Kellere8d2f4c2017-04-13 04:45:48 -04001052
Catherine Sullivanbf9c7142014-06-04 08:45:28 +00001053 return err;
1054}
1055
Jesse Brandeburga6599722014-06-04 08:45:25 +00001056static int i40e_nway_reset(struct net_device *netdev)
1057{
1058 /* restart autonegotiation */
1059 struct i40e_netdev_priv *np = netdev_priv(netdev);
1060 struct i40e_pf *pf = np->vsi->back;
1061 struct i40e_hw *hw = &pf->hw;
1062 bool link_up = hw->phy.link_info.link_info & I40E_AQ_LINK_UP;
1063 i40e_status ret = 0;
1064
1065 ret = i40e_aq_set_link_restart_an(hw, link_up, NULL);
1066 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001067 netdev_info(netdev, "link restart failed, err %s aq_err %s\n",
1068 i40e_stat_str(hw, ret),
1069 i40e_aq_str(hw, hw->aq.asq_last_status));
Jesse Brandeburga6599722014-06-04 08:45:25 +00001070 return -EIO;
1071 }
1072
1073 return 0;
1074}
1075
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001076/**
1077 * i40e_get_pauseparam - Get Flow Control status
1078 * Return tx/rx-pause status
1079 **/
1080static void i40e_get_pauseparam(struct net_device *netdev,
1081 struct ethtool_pauseparam *pause)
1082{
1083 struct i40e_netdev_priv *np = netdev_priv(netdev);
1084 struct i40e_pf *pf = np->vsi->back;
1085 struct i40e_hw *hw = &pf->hw;
1086 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
Neerav Parikh4b7698c2014-11-12 00:18:57 +00001087 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001088
1089 pause->autoneg =
1090 ((hw_link_info->an_info & I40E_AQ_AN_COMPLETED) ?
1091 AUTONEG_ENABLE : AUTONEG_DISABLE);
1092
Neerav Parikh4b7698c2014-11-12 00:18:57 +00001093 /* PFC enabled so report LFC as off */
1094 if (dcbx_cfg->pfc.pfcenable) {
1095 pause->rx_pause = 0;
1096 pause->tx_pause = 0;
1097 return;
1098 }
1099
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00001100 if (hw->fc.current_mode == I40E_FC_RX_PAUSE) {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001101 pause->rx_pause = 1;
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00001102 } else if (hw->fc.current_mode == I40E_FC_TX_PAUSE) {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001103 pause->tx_pause = 1;
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00001104 } else if (hw->fc.current_mode == I40E_FC_FULL) {
1105 pause->rx_pause = 1;
1106 pause->tx_pause = 1;
1107 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001108}
1109
Catherine Sullivan2becc352014-06-04 08:45:27 +00001110/**
1111 * i40e_set_pauseparam - Set Flow Control parameter
1112 * @netdev: network interface device structure
1113 * @pause: return tx/rx flow control status
1114 **/
1115static int i40e_set_pauseparam(struct net_device *netdev,
1116 struct ethtool_pauseparam *pause)
1117{
1118 struct i40e_netdev_priv *np = netdev_priv(netdev);
1119 struct i40e_pf *pf = np->vsi->back;
1120 struct i40e_vsi *vsi = np->vsi;
1121 struct i40e_hw *hw = &pf->hw;
1122 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
Neerav Parikh4b7698c2014-11-12 00:18:57 +00001123 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config;
Catherine Sullivan2becc352014-06-04 08:45:27 +00001124 bool link_up = hw_link_info->link_info & I40E_AQ_LINK_UP;
1125 i40e_status status;
1126 u8 aq_failures;
Catherine Sullivan7d62dac2014-07-09 07:46:18 +00001127 int err = 0;
Catherine Sullivan2becc352014-06-04 08:45:27 +00001128
Shannon Nelsonf0d8c732014-12-11 07:06:32 +00001129 /* Changing the port's flow control is not supported if this isn't the
1130 * port's controlling PF
1131 */
1132 if (hw->partition_id != 1) {
1133 i40e_partition_setting_complaint(pf);
1134 return -EOPNOTSUPP;
1135 }
1136
Catherine Sullivan2becc352014-06-04 08:45:27 +00001137 if (vsi != pf->vsi[pf->lan_vsi])
1138 return -EOPNOTSUPP;
1139
1140 if (pause->autoneg != ((hw_link_info->an_info & I40E_AQ_AN_COMPLETED) ?
1141 AUTONEG_ENABLE : AUTONEG_DISABLE)) {
1142 netdev_info(netdev, "To change autoneg please use: ethtool -s <dev> autoneg <on|off>\n");
1143 return -EOPNOTSUPP;
1144 }
1145
1146 /* If we have link and don't have autoneg */
Jacob Keller0da36b92017-04-19 09:25:55 -04001147 if (!test_bit(__I40E_DOWN, pf->state) &&
Catherine Sullivan2becc352014-06-04 08:45:27 +00001148 !(hw_link_info->an_info & I40E_AQ_AN_COMPLETED)) {
1149 /* Send message that it might not necessarily work*/
1150 netdev_info(netdev, "Autoneg did not complete so changing settings may not result in an actual change.\n");
1151 }
1152
Neerav Parikh4b7698c2014-11-12 00:18:57 +00001153 if (dcbx_cfg->pfc.pfcenable) {
1154 netdev_info(netdev,
1155 "Priority flow control enabled. Cannot set link flow control.\n");
Catherine Sullivan2becc352014-06-04 08:45:27 +00001156 return -EOPNOTSUPP;
1157 }
1158
1159 if (pause->rx_pause && pause->tx_pause)
1160 hw->fc.requested_mode = I40E_FC_FULL;
1161 else if (pause->rx_pause && !pause->tx_pause)
1162 hw->fc.requested_mode = I40E_FC_RX_PAUSE;
1163 else if (!pause->rx_pause && pause->tx_pause)
1164 hw->fc.requested_mode = I40E_FC_TX_PAUSE;
1165 else if (!pause->rx_pause && !pause->tx_pause)
1166 hw->fc.requested_mode = I40E_FC_NONE;
1167 else
1168 return -EINVAL;
1169
Catherine Sullivan94128512014-07-12 07:28:16 +00001170 /* Tell the OS link is going down, the link will go back up when fw
1171 * says it is ready asynchronously
1172 */
Matt Jaredc156f852015-08-27 11:42:39 -04001173 i40e_print_link_message(vsi, false);
Catherine Sullivan94128512014-07-12 07:28:16 +00001174 netif_carrier_off(netdev);
1175 netif_tx_stop_all_queues(netdev);
1176
Catherine Sullivan2becc352014-06-04 08:45:27 +00001177 /* Set the fc mode and only restart an if link is up*/
1178 status = i40e_set_fc(hw, &aq_failures, link_up);
1179
1180 if (aq_failures & I40E_SET_FC_AQ_FAIL_GET) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001181 netdev_info(netdev, "Set fc failed on the get_phy_capabilities call with err %s aq_err %s\n",
1182 i40e_stat_str(hw, status),
1183 i40e_aq_str(hw, hw->aq.asq_last_status));
Catherine Sullivan2becc352014-06-04 08:45:27 +00001184 err = -EAGAIN;
1185 }
1186 if (aq_failures & I40E_SET_FC_AQ_FAIL_SET) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001187 netdev_info(netdev, "Set fc failed on the set_phy_config call with err %s aq_err %s\n",
1188 i40e_stat_str(hw, status),
1189 i40e_aq_str(hw, hw->aq.asq_last_status));
Catherine Sullivan2becc352014-06-04 08:45:27 +00001190 err = -EAGAIN;
1191 }
1192 if (aq_failures & I40E_SET_FC_AQ_FAIL_UPDATE) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001193 netdev_info(netdev, "Set fc failed on the get_link_info call with err %s aq_err %s\n",
1194 i40e_stat_str(hw, status),
1195 i40e_aq_str(hw, hw->aq.asq_last_status));
Catherine Sullivan2becc352014-06-04 08:45:27 +00001196 err = -EAGAIN;
1197 }
1198
Jacob Keller0da36b92017-04-19 09:25:55 -04001199 if (!test_bit(__I40E_DOWN, pf->state)) {
Catherine Sullivan7d62dac2014-07-09 07:46:18 +00001200 /* Give it a little more time to try to come back */
1201 msleep(75);
Jacob Keller0da36b92017-04-19 09:25:55 -04001202 if (!test_bit(__I40E_DOWN, pf->state))
Catherine Sullivan7d62dac2014-07-09 07:46:18 +00001203 return i40e_nway_reset(netdev);
1204 }
Catherine Sullivan2becc352014-06-04 08:45:27 +00001205
1206 return err;
1207}
1208
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001209static u32 i40e_get_msglevel(struct net_device *netdev)
1210{
1211 struct i40e_netdev_priv *np = netdev_priv(netdev);
1212 struct i40e_pf *pf = np->vsi->back;
Alexander Duyck5d4ca232016-09-30 08:21:46 -04001213 u32 debug_mask = pf->hw.debug_mask;
1214
1215 if (debug_mask)
1216 netdev_info(netdev, "i40e debug_mask: 0x%08X\n", debug_mask);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001217
1218 return pf->msg_enable;
1219}
1220
1221static void i40e_set_msglevel(struct net_device *netdev, u32 data)
1222{
1223 struct i40e_netdev_priv *np = netdev_priv(netdev);
1224 struct i40e_pf *pf = np->vsi->back;
1225
1226 if (I40E_DEBUG_USER & data)
1227 pf->hw.debug_mask = data;
Alexander Duyck5d4ca232016-09-30 08:21:46 -04001228 else
1229 pf->msg_enable = data;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001230}
1231
1232static int i40e_get_regs_len(struct net_device *netdev)
1233{
1234 int reg_count = 0;
1235 int i;
1236
1237 for (i = 0; i40e_reg_list[i].offset != 0; i++)
1238 reg_count += i40e_reg_list[i].elements;
1239
1240 return reg_count * sizeof(u32);
1241}
1242
1243static void i40e_get_regs(struct net_device *netdev, struct ethtool_regs *regs,
1244 void *p)
1245{
1246 struct i40e_netdev_priv *np = netdev_priv(netdev);
1247 struct i40e_pf *pf = np->vsi->back;
1248 struct i40e_hw *hw = &pf->hw;
1249 u32 *reg_buf = p;
Jesse Brandeburgb85c94b2017-06-20 15:16:59 -07001250 unsigned int i, j, ri;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001251 u32 reg;
1252
1253 /* Tell ethtool which driver-version-specific regs output we have.
1254 *
1255 * At some point, if we have ethtool doing special formatting of
1256 * this data, it will rely on this version number to know how to
1257 * interpret things. Hence, this needs to be updated if/when the
1258 * diags register table is changed.
1259 */
1260 regs->version = 1;
1261
1262 /* loop through the diags reg table for what to print */
1263 ri = 0;
1264 for (i = 0; i40e_reg_list[i].offset != 0; i++) {
1265 for (j = 0; j < i40e_reg_list[i].elements; j++) {
1266 reg = i40e_reg_list[i].offset
1267 + (j * i40e_reg_list[i].stride);
1268 reg_buf[ri++] = rd32(hw, reg);
1269 }
1270 }
1271
1272}
1273
1274static int i40e_get_eeprom(struct net_device *netdev,
1275 struct ethtool_eeprom *eeprom, u8 *bytes)
1276{
1277 struct i40e_netdev_priv *np = netdev_priv(netdev);
1278 struct i40e_hw *hw = &np->vsi->back->hw;
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001279 struct i40e_pf *pf = np->vsi->back;
Shannon Nelsonc150a502014-11-13 08:23:13 +00001280 int ret_val = 0, len, offset;
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001281 u8 *eeprom_buff;
1282 u16 i, sectors;
1283 bool last;
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001284 u32 magic;
1285
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001286#define I40E_NVM_SECTOR_SIZE 4096
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001287 if (eeprom->len == 0)
1288 return -EINVAL;
1289
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001290 /* check for NVMUpdate access method */
1291 magic = hw->vendor_id | (hw->device_id << 16);
1292 if (eeprom->magic && eeprom->magic != magic) {
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001293 struct i40e_nvm_access *cmd = (struct i40e_nvm_access *)eeprom;
1294 int errno = 0;
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001295
1296 /* make sure it is the right magic for NVMUpdate */
1297 if ((eeprom->magic >> 16) != hw->device_id)
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001298 errno = -EINVAL;
Jacob Keller0da36b92017-04-19 09:25:55 -04001299 else if (test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state) ||
1300 test_bit(__I40E_RESET_INTR_RECEIVED, pf->state))
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001301 errno = -EBUSY;
1302 else
1303 ret_val = i40e_nvmupd_command(hw, cmd, bytes, &errno);
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001304
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001305 if ((errno || ret_val) && (hw->debug_mask & I40E_DEBUG_NVM))
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001306 dev_info(&pf->pdev->dev,
Shannon Nelsonc150a502014-11-13 08:23:13 +00001307 "NVMUpdate read failed err=%d status=0x%x errno=%d module=%d offset=0x%x size=%d\n",
1308 ret_val, hw->aq.asq_last_status, errno,
1309 (u8)(cmd->config & I40E_NVM_MOD_PNT_MASK),
1310 cmd->offset, cmd->data_size);
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001311
1312 return errno;
1313 }
1314
1315 /* normal ethtool get_eeprom support */
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001316 eeprom->magic = hw->vendor_id | (hw->device_id << 16);
1317
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001318 eeprom_buff = kzalloc(eeprom->len, GFP_KERNEL);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001319 if (!eeprom_buff)
1320 return -ENOMEM;
1321
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001322 ret_val = i40e_acquire_nvm(hw, I40E_RESOURCE_READ);
1323 if (ret_val) {
1324 dev_info(&pf->pdev->dev,
1325 "Failed Acquiring NVM resource for read err=%d status=0x%x\n",
1326 ret_val, hw->aq.asq_last_status);
1327 goto free_buff;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001328 }
1329
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001330 sectors = eeprom->len / I40E_NVM_SECTOR_SIZE;
1331 sectors += (eeprom->len % I40E_NVM_SECTOR_SIZE) ? 1 : 0;
1332 len = I40E_NVM_SECTOR_SIZE;
1333 last = false;
1334 for (i = 0; i < sectors; i++) {
1335 if (i == (sectors - 1)) {
1336 len = eeprom->len - (I40E_NVM_SECTOR_SIZE * i);
1337 last = true;
1338 }
Shannon Nelsonc150a502014-11-13 08:23:13 +00001339 offset = eeprom->offset + (I40E_NVM_SECTOR_SIZE * i),
1340 ret_val = i40e_aq_read_nvm(hw, 0x0, offset, len,
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001341 (u8 *)eeprom_buff + (I40E_NVM_SECTOR_SIZE * i),
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001342 last, NULL);
Shannon Nelsonc150a502014-11-13 08:23:13 +00001343 if (ret_val && hw->aq.asq_last_status == I40E_AQ_RC_EPERM) {
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001344 dev_info(&pf->pdev->dev,
Shannon Nelsonc150a502014-11-13 08:23:13 +00001345 "read NVM failed, invalid offset 0x%x\n",
1346 offset);
1347 break;
1348 } else if (ret_val &&
1349 hw->aq.asq_last_status == I40E_AQ_RC_EACCES) {
1350 dev_info(&pf->pdev->dev,
1351 "read NVM failed, access, offset 0x%x\n",
1352 offset);
1353 break;
1354 } else if (ret_val) {
1355 dev_info(&pf->pdev->dev,
1356 "read NVM failed offset %d err=%d status=0x%x\n",
1357 offset, ret_val, hw->aq.asq_last_status);
1358 break;
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001359 }
1360 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001361
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001362 i40e_release_nvm(hw);
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001363 memcpy(bytes, (u8 *)eeprom_buff, eeprom->len);
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001364free_buff:
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001365 kfree(eeprom_buff);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001366 return ret_val;
1367}
1368
1369static int i40e_get_eeprom_len(struct net_device *netdev)
1370{
1371 struct i40e_netdev_priv *np = netdev_priv(netdev);
1372 struct i40e_hw *hw = &np->vsi->back->hw;
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001373 u32 val;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001374
Lihong Yangc271dd62017-01-30 12:29:32 -08001375#define X722_EEPROM_SCOPE_LIMIT 0x5B9FFF
1376 if (hw->mac.type == I40E_MAC_X722) {
1377 val = X722_EEPROM_SCOPE_LIMIT + 1;
1378 return val;
1379 }
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001380 val = (rd32(hw, I40E_GLPCI_LBARCTRL)
1381 & I40E_GLPCI_LBARCTRL_FL_SIZE_MASK)
1382 >> I40E_GLPCI_LBARCTRL_FL_SIZE_SHIFT;
1383 /* register returns value in power of 2, 64Kbyte chunks. */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001384 val = (64 * 1024) * BIT(val);
Anjali Singhai Jaine5e0a5d2013-11-28 06:39:28 +00001385 return val;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001386}
1387
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001388static int i40e_set_eeprom(struct net_device *netdev,
1389 struct ethtool_eeprom *eeprom, u8 *bytes)
1390{
1391 struct i40e_netdev_priv *np = netdev_priv(netdev);
1392 struct i40e_hw *hw = &np->vsi->back->hw;
1393 struct i40e_pf *pf = np->vsi->back;
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001394 struct i40e_nvm_access *cmd = (struct i40e_nvm_access *)eeprom;
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001395 int ret_val = 0;
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001396 int errno = 0;
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001397 u32 magic;
1398
1399 /* normal ethtool set_eeprom is not supported */
1400 magic = hw->vendor_id | (hw->device_id << 16);
1401 if (eeprom->magic == magic)
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001402 errno = -EOPNOTSUPP;
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001403 /* check for NVMUpdate access method */
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001404 else if (!eeprom->magic || (eeprom->magic >> 16) != hw->device_id)
1405 errno = -EINVAL;
Jacob Keller0da36b92017-04-19 09:25:55 -04001406 else if (test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state) ||
1407 test_bit(__I40E_RESET_INTR_RECEIVED, pf->state))
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001408 errno = -EBUSY;
1409 else
1410 ret_val = i40e_nvmupd_command(hw, cmd, bytes, &errno);
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001411
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08001412 if ((errno || ret_val) && (hw->debug_mask & I40E_DEBUG_NVM))
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001413 dev_info(&pf->pdev->dev,
Shannon Nelsonc150a502014-11-13 08:23:13 +00001414 "NVMUpdate write failed err=%d status=0x%x errno=%d module=%d offset=0x%x size=%d\n",
1415 ret_val, hw->aq.asq_last_status, errno,
1416 (u8)(cmd->config & I40E_NVM_MOD_PNT_MASK),
1417 cmd->offset, cmd->data_size);
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00001418
1419 return errno;
1420}
1421
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001422static void i40e_get_drvinfo(struct net_device *netdev,
1423 struct ethtool_drvinfo *drvinfo)
1424{
1425 struct i40e_netdev_priv *np = netdev_priv(netdev);
1426 struct i40e_vsi *vsi = np->vsi;
1427 struct i40e_pf *pf = vsi->back;
1428
1429 strlcpy(drvinfo->driver, i40e_driver_name, sizeof(drvinfo->driver));
1430 strlcpy(drvinfo->version, i40e_driver_version_str,
1431 sizeof(drvinfo->version));
Shannon Nelson6dec1012015-09-28 14:12:30 -04001432 strlcpy(drvinfo->fw_version, i40e_nvm_version_str(&pf->hw),
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001433 sizeof(drvinfo->fw_version));
1434 strlcpy(drvinfo->bus_info, pci_name(pf->pdev),
1435 sizeof(drvinfo->bus_info));
Jacob Kellerd182a5c2016-10-25 16:08:50 -07001436 drvinfo->n_priv_flags = I40E_PRIV_FLAGS_STR_LEN;
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07001437 if (pf->hw.pf_id == 0)
Jacob Kellerd182a5c2016-10-25 16:08:50 -07001438 drvinfo->n_priv_flags += I40E_GL_PRIV_FLAGS_STR_LEN;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001439}
1440
1441static void i40e_get_ringparam(struct net_device *netdev,
1442 struct ethtool_ringparam *ring)
1443{
1444 struct i40e_netdev_priv *np = netdev_priv(netdev);
1445 struct i40e_pf *pf = np->vsi->back;
1446 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
1447
1448 ring->rx_max_pending = I40E_MAX_NUM_DESCRIPTORS;
1449 ring->tx_max_pending = I40E_MAX_NUM_DESCRIPTORS;
1450 ring->rx_mini_max_pending = 0;
1451 ring->rx_jumbo_max_pending = 0;
Alexander Duyck9f65e152013-09-28 06:00:58 +00001452 ring->rx_pending = vsi->rx_rings[0]->count;
1453 ring->tx_pending = vsi->tx_rings[0]->count;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001454 ring->rx_mini_pending = 0;
1455 ring->rx_jumbo_pending = 0;
1456}
1457
Björn Töpel74608d12017-05-24 07:55:35 +02001458static bool i40e_active_tx_ring_index(struct i40e_vsi *vsi, u16 index)
1459{
1460 if (i40e_enabled_xdp_vsi(vsi)) {
1461 return index < vsi->num_queue_pairs ||
1462 (index >= vsi->alloc_queue_pairs &&
1463 index < vsi->alloc_queue_pairs + vsi->num_queue_pairs);
1464 }
1465
1466 return index < vsi->num_queue_pairs;
1467}
1468
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001469static int i40e_set_ringparam(struct net_device *netdev,
1470 struct ethtool_ringparam *ring)
1471{
1472 struct i40e_ring *tx_rings = NULL, *rx_rings = NULL;
1473 struct i40e_netdev_priv *np = netdev_priv(netdev);
Tushar Dave2f7679e2016-10-26 10:49:27 -07001474 struct i40e_hw *hw = &np->vsi->back->hw;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001475 struct i40e_vsi *vsi = np->vsi;
1476 struct i40e_pf *pf = vsi->back;
1477 u32 new_rx_count, new_tx_count;
Björn Töpel74608d12017-05-24 07:55:35 +02001478 u16 tx_alloc_queue_pairs;
Jacob Kellere8d2f4c2017-04-13 04:45:48 -04001479 int timeout = 50;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001480 int i, err = 0;
1481
1482 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
1483 return -EINVAL;
1484
Shannon Nelson1fa18372013-11-20 10:03:08 +00001485 if (ring->tx_pending > I40E_MAX_NUM_DESCRIPTORS ||
1486 ring->tx_pending < I40E_MIN_NUM_DESCRIPTORS ||
1487 ring->rx_pending > I40E_MAX_NUM_DESCRIPTORS ||
1488 ring->rx_pending < I40E_MIN_NUM_DESCRIPTORS) {
1489 netdev_info(netdev,
1490 "Descriptors requested (Tx: %d / Rx: %d) out of range [%d-%d]\n",
1491 ring->tx_pending, ring->rx_pending,
1492 I40E_MIN_NUM_DESCRIPTORS, I40E_MAX_NUM_DESCRIPTORS);
1493 return -EINVAL;
1494 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001495
Shannon Nelson1fa18372013-11-20 10:03:08 +00001496 new_tx_count = ALIGN(ring->tx_pending, I40E_REQ_DESCRIPTOR_MULTIPLE);
1497 new_rx_count = ALIGN(ring->rx_pending, I40E_REQ_DESCRIPTOR_MULTIPLE);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001498
1499 /* if nothing to do return success */
Alexander Duyck9f65e152013-09-28 06:00:58 +00001500 if ((new_tx_count == vsi->tx_rings[0]->count) &&
1501 (new_rx_count == vsi->rx_rings[0]->count))
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001502 return 0;
1503
Jacob Keller0da36b92017-04-19 09:25:55 -04001504 while (test_and_set_bit(__I40E_CONFIG_BUSY, pf->state)) {
Jacob Kellere8d2f4c2017-04-13 04:45:48 -04001505 timeout--;
1506 if (!timeout)
1507 return -EBUSY;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001508 usleep_range(1000, 2000);
Jacob Kellere8d2f4c2017-04-13 04:45:48 -04001509 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001510
1511 if (!netif_running(vsi->netdev)) {
1512 /* simple case - set for the next time the netdev is started */
1513 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00001514 vsi->tx_rings[i]->count = new_tx_count;
1515 vsi->rx_rings[i]->count = new_rx_count;
Björn Töpel74608d12017-05-24 07:55:35 +02001516 if (i40e_enabled_xdp_vsi(vsi))
1517 vsi->xdp_rings[i]->count = new_tx_count;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001518 }
1519 goto done;
1520 }
1521
1522 /* We can't just free everything and then setup again,
1523 * because the ISRs in MSI-X mode get passed pointers
1524 * to the Tx and Rx ring structs.
1525 */
1526
Björn Töpel74608d12017-05-24 07:55:35 +02001527 /* alloc updated Tx and XDP Tx resources */
1528 tx_alloc_queue_pairs = vsi->alloc_queue_pairs *
1529 (i40e_enabled_xdp_vsi(vsi) ? 2 : 1);
Alexander Duyck9f65e152013-09-28 06:00:58 +00001530 if (new_tx_count != vsi->tx_rings[0]->count) {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001531 netdev_info(netdev,
1532 "Changing Tx descriptor count from %d to %d.\n",
Alexander Duyck9f65e152013-09-28 06:00:58 +00001533 vsi->tx_rings[0]->count, new_tx_count);
Björn Töpel74608d12017-05-24 07:55:35 +02001534 tx_rings = kcalloc(tx_alloc_queue_pairs,
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001535 sizeof(struct i40e_ring), GFP_KERNEL);
1536 if (!tx_rings) {
1537 err = -ENOMEM;
1538 goto done;
1539 }
1540
Björn Töpel74608d12017-05-24 07:55:35 +02001541 for (i = 0; i < tx_alloc_queue_pairs; i++) {
1542 if (!i40e_active_tx_ring_index(vsi, i))
1543 continue;
1544
Alexander Duyck9f65e152013-09-28 06:00:58 +00001545 tx_rings[i] = *vsi->tx_rings[i];
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001546 tx_rings[i].count = new_tx_count;
Jesse Brandeburg1e8efb42015-08-27 11:42:33 -04001547 /* the desc and bi pointers will be reallocated in the
1548 * setup call
1549 */
1550 tx_rings[i].desc = NULL;
1551 tx_rings[i].rx_bi = NULL;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001552 err = i40e_setup_tx_descriptors(&tx_rings[i]);
1553 if (err) {
1554 while (i) {
1555 i--;
Björn Töpel74608d12017-05-24 07:55:35 +02001556 if (!i40e_active_tx_ring_index(vsi, i))
1557 continue;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001558 i40e_free_tx_resources(&tx_rings[i]);
1559 }
1560 kfree(tx_rings);
1561 tx_rings = NULL;
1562
1563 goto done;
1564 }
1565 }
1566 }
1567
1568 /* alloc updated Rx resources */
Alexander Duyck9f65e152013-09-28 06:00:58 +00001569 if (new_rx_count != vsi->rx_rings[0]->count) {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001570 netdev_info(netdev,
1571 "Changing Rx descriptor count from %d to %d\n",
Alexander Duyck9f65e152013-09-28 06:00:58 +00001572 vsi->rx_rings[0]->count, new_rx_count);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001573 rx_rings = kcalloc(vsi->alloc_queue_pairs,
1574 sizeof(struct i40e_ring), GFP_KERNEL);
1575 if (!rx_rings) {
1576 err = -ENOMEM;
1577 goto free_tx;
1578 }
1579
1580 for (i = 0; i < vsi->num_queue_pairs; i++) {
Jesse Brandeburg147e81e2016-04-18 11:33:49 -07001581 struct i40e_ring *ring;
1582 u16 unused;
1583
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001584 /* clone ring and setup updated count */
Alexander Duyck9f65e152013-09-28 06:00:58 +00001585 rx_rings[i] = *vsi->rx_rings[i];
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001586 rx_rings[i].count = new_rx_count;
Jesse Brandeburg1e8efb42015-08-27 11:42:33 -04001587 /* the desc and bi pointers will be reallocated in the
1588 * setup call
1589 */
1590 rx_rings[i].desc = NULL;
1591 rx_rings[i].rx_bi = NULL;
Jesper Dangaard Brouer87128822018-01-03 11:25:23 +01001592 /* Clear cloned XDP RX-queue info before setup call */
1593 memset(&rx_rings[i].xdp_rxq, 0, sizeof(rx_rings[i].xdp_rxq));
Tushar Dave2f7679e2016-10-26 10:49:27 -07001594 /* this is to allow wr32 to have something to write to
1595 * during early allocation of Rx buffers
1596 */
1597 rx_rings[i].tail = hw->hw_addr + I40E_PRTGEN_STATUS;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001598 err = i40e_setup_rx_descriptors(&rx_rings[i]);
Jesse Brandeburg147e81e2016-04-18 11:33:49 -07001599 if (err)
1600 goto rx_unwind;
1601
1602 /* now allocate the Rx buffers to make sure the OS
1603 * has enough memory, any failure here means abort
1604 */
1605 ring = &rx_rings[i];
1606 unused = I40E_DESC_UNUSED(ring);
1607 err = i40e_alloc_rx_buffers(ring, unused);
1608rx_unwind:
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001609 if (err) {
Jesse Brandeburg147e81e2016-04-18 11:33:49 -07001610 do {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001611 i40e_free_rx_resources(&rx_rings[i]);
Jesse Brandeburg147e81e2016-04-18 11:33:49 -07001612 } while (i--);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001613 kfree(rx_rings);
1614 rx_rings = NULL;
1615
1616 goto free_tx;
1617 }
1618 }
1619 }
1620
1621 /* Bring interface down, copy in the new ring info,
1622 * then restore the interface
1623 */
1624 i40e_down(vsi);
1625
1626 if (tx_rings) {
Björn Töpel74608d12017-05-24 07:55:35 +02001627 for (i = 0; i < tx_alloc_queue_pairs; i++) {
1628 if (i40e_active_tx_ring_index(vsi, i)) {
1629 i40e_free_tx_resources(vsi->tx_rings[i]);
1630 *vsi->tx_rings[i] = tx_rings[i];
1631 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001632 }
1633 kfree(tx_rings);
1634 tx_rings = NULL;
1635 }
1636
1637 if (rx_rings) {
1638 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00001639 i40e_free_rx_resources(vsi->rx_rings[i]);
Jesse Brandeburg147e81e2016-04-18 11:33:49 -07001640 /* get the real tail offset */
1641 rx_rings[i].tail = vsi->rx_rings[i]->tail;
1642 /* this is to fake out the allocation routine
1643 * into thinking it has to realloc everything
1644 * but the recycling logic will let us re-use
1645 * the buffers allocated above
1646 */
1647 rx_rings[i].next_to_use = 0;
1648 rx_rings[i].next_to_clean = 0;
1649 rx_rings[i].next_to_alloc = 0;
1650 /* do a struct copy */
Alexander Duyck9f65e152013-09-28 06:00:58 +00001651 *vsi->rx_rings[i] = rx_rings[i];
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001652 }
1653 kfree(rx_rings);
1654 rx_rings = NULL;
1655 }
1656
1657 i40e_up(vsi);
1658
1659free_tx:
1660 /* error cleanup if the Rx allocations failed after getting Tx */
1661 if (tx_rings) {
Björn Töpel74608d12017-05-24 07:55:35 +02001662 for (i = 0; i < tx_alloc_queue_pairs; i++) {
1663 if (i40e_active_tx_ring_index(vsi, i))
1664 i40e_free_tx_resources(vsi->tx_rings[i]);
1665 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001666 kfree(tx_rings);
1667 tx_rings = NULL;
1668 }
1669
1670done:
Jacob Keller0da36b92017-04-19 09:25:55 -04001671 clear_bit(__I40E_CONFIG_BUSY, pf->state);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001672
1673 return err;
1674}
1675
1676static int i40e_get_sset_count(struct net_device *netdev, int sset)
1677{
1678 struct i40e_netdev_priv *np = netdev_priv(netdev);
1679 struct i40e_vsi *vsi = np->vsi;
1680 struct i40e_pf *pf = vsi->back;
1681
1682 switch (sset) {
1683 case ETH_SS_TEST:
1684 return I40E_TEST_LEN;
1685 case ETH_SS_STATS:
Shannon Nelson58ce5172015-02-27 09:15:26 +00001686 if (vsi == pf->vsi[pf->lan_vsi] && pf->hw.partition_id == 1) {
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001687 int len = I40E_PF_STATS_LEN(netdev);
1688
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04001689 if ((pf->lan_veb != I40E_NO_VEB) &&
1690 (pf->flags & I40E_FLAG_VEB_STATS_ENABLED))
Neerav Parikhfe860af2015-07-10 19:36:02 -04001691 len += I40E_VEB_STATS_TOTAL;
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001692 return len;
1693 } else {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001694 return I40E_VSI_STATS_LEN(netdev);
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001695 }
Greg Rose7e45ab42015-02-06 08:52:19 +00001696 case ETH_SS_PRIV_FLAGS:
Jacob Kellerd182a5c2016-10-25 16:08:50 -07001697 return I40E_PRIV_FLAGS_STR_LEN +
1698 (pf->hw.pf_id == 0 ? I40E_GL_PRIV_FLAGS_STR_LEN : 0);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001699 default:
1700 return -EOPNOTSUPP;
1701 }
1702}
1703
1704static void i40e_get_ethtool_stats(struct net_device *netdev,
1705 struct ethtool_stats *stats, u64 *data)
1706{
1707 struct i40e_netdev_priv *np = netdev_priv(netdev);
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00001708 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001709 struct i40e_vsi *vsi = np->vsi;
1710 struct i40e_pf *pf = vsi->back;
Jesse Brandeburgb85c94b2017-06-20 15:16:59 -07001711 unsigned int j;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001712 int i = 0;
1713 char *p;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001714 struct rtnl_link_stats64 *net_stats = i40e_get_vsi_stats_struct(vsi);
Alexander Duyck980e9b12013-09-28 06:01:03 +00001715 unsigned int start;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001716
1717 i40e_update_stats(vsi);
1718
1719 for (j = 0; j < I40E_NETDEV_STATS_LEN; j++) {
1720 p = (char *)net_stats + i40e_gstrings_net_stats[j].stat_offset;
1721 data[i++] = (i40e_gstrings_net_stats[j].sizeof_stat ==
1722 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
1723 }
Shannon Nelson41a9e552014-04-23 04:50:20 +00001724 for (j = 0; j < I40E_MISC_STATS_LEN; j++) {
1725 p = (char *)vsi + i40e_gstrings_misc_stats[j].stat_offset;
1726 data[i++] = (i40e_gstrings_misc_stats[j].sizeof_stat ==
1727 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
1728 }
Alexander Duyck980e9b12013-09-28 06:01:03 +00001729 rcu_read_lock();
Catherine Sullivan99c472a2014-03-14 07:32:30 +00001730 for (j = 0; j < vsi->num_queue_pairs; j++) {
Mark Rutland6aa7de02017-10-23 14:07:29 -07001731 tx_ring = READ_ONCE(vsi->tx_rings[j]);
Alexander Duyck980e9b12013-09-28 06:01:03 +00001732
1733 if (!tx_ring)
1734 continue;
1735
1736 /* process Tx ring statistics */
1737 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001738 start = u64_stats_fetch_begin_irq(&tx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +00001739 data[i] = tx_ring->stats.packets;
1740 data[i + 1] = tx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001741 } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start));
Catherine Sullivan99c472a2014-03-14 07:32:30 +00001742 i += 2;
Alexander Duyck980e9b12013-09-28 06:01:03 +00001743
1744 /* Rx ring is the 2nd half of the queue pair */
1745 rx_ring = &tx_ring[1];
1746 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001747 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
Catherine Sullivan99c472a2014-03-14 07:32:30 +00001748 data[i] = rx_ring->stats.packets;
1749 data[i + 1] = rx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001750 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
Catherine Sullivan99c472a2014-03-14 07:32:30 +00001751 i += 2;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001752 }
Alexander Duyck980e9b12013-09-28 06:01:03 +00001753 rcu_read_unlock();
Shannon Nelson58ce5172015-02-27 09:15:26 +00001754 if (vsi != pf->vsi[pf->lan_vsi] || pf->hw.partition_id != 1)
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001755 return;
1756
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04001757 if ((pf->lan_veb != I40E_NO_VEB) &&
1758 (pf->flags & I40E_FLAG_VEB_STATS_ENABLED)) {
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001759 struct i40e_veb *veb = pf->veb[pf->lan_veb];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001760
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001761 for (j = 0; j < I40E_VEB_STATS_LEN; j++) {
1762 p = (char *)veb;
1763 p += i40e_gstrings_veb_stats[j].stat_offset;
1764 data[i++] = (i40e_gstrings_veb_stats[j].sizeof_stat ==
1765 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001766 }
Jesse Brandeburg74a6c662015-10-02 19:09:34 -07001767 for (j = 0; j < I40E_MAX_TRAFFIC_CLASS; j++) {
1768 data[i++] = veb->tc_stats.tc_tx_packets[j];
1769 data[i++] = veb->tc_stats.tc_tx_bytes[j];
1770 data[i++] = veb->tc_stats.tc_rx_packets[j];
1771 data[i++] = veb->tc_stats.tc_rx_bytes[j];
1772 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001773 }
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001774 for (j = 0; j < I40E_GLOBAL_STATS_LEN; j++) {
1775 p = (char *)pf + i40e_gstrings_stats[j].stat_offset;
1776 data[i++] = (i40e_gstrings_stats[j].sizeof_stat ==
1777 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
1778 }
1779 for (j = 0; j < I40E_MAX_USER_PRIORITY; j++) {
1780 data[i++] = pf->stats.priority_xon_tx[j];
1781 data[i++] = pf->stats.priority_xoff_tx[j];
1782 }
1783 for (j = 0; j < I40E_MAX_USER_PRIORITY; j++) {
1784 data[i++] = pf->stats.priority_xon_rx[j];
1785 data[i++] = pf->stats.priority_xoff_rx[j];
1786 }
1787 for (j = 0; j < I40E_MAX_USER_PRIORITY; j++)
1788 data[i++] = pf->stats.priority_xon_2_xoff[j];
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001789}
1790
1791static void i40e_get_strings(struct net_device *netdev, u32 stringset,
1792 u8 *data)
1793{
1794 struct i40e_netdev_priv *np = netdev_priv(netdev);
1795 struct i40e_vsi *vsi = np->vsi;
1796 struct i40e_pf *pf = vsi->back;
1797 char *p = (char *)data;
Jesse Brandeburgb85c94b2017-06-20 15:16:59 -07001798 unsigned int i;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001799
1800 switch (stringset) {
1801 case ETH_SS_TEST:
Jacob Kellere5d32202016-11-08 13:05:11 -08001802 memcpy(data, i40e_gstrings_test,
1803 I40E_TEST_LEN * ETH_GSTRING_LEN);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001804 break;
1805 case ETH_SS_STATS:
1806 for (i = 0; i < I40E_NETDEV_STATS_LEN; i++) {
1807 snprintf(p, ETH_GSTRING_LEN, "%s",
1808 i40e_gstrings_net_stats[i].stat_string);
1809 p += ETH_GSTRING_LEN;
1810 }
Shannon Nelson41a9e552014-04-23 04:50:20 +00001811 for (i = 0; i < I40E_MISC_STATS_LEN; i++) {
1812 snprintf(p, ETH_GSTRING_LEN, "%s",
1813 i40e_gstrings_misc_stats[i].stat_string);
1814 p += ETH_GSTRING_LEN;
1815 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001816 for (i = 0; i < vsi->num_queue_pairs; i++) {
Heinrich Schuchardtfbcfac32016-08-11 01:07:22 +02001817 snprintf(p, ETH_GSTRING_LEN, "tx-%d.tx_packets", i);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001818 p += ETH_GSTRING_LEN;
Heinrich Schuchardtfbcfac32016-08-11 01:07:22 +02001819 snprintf(p, ETH_GSTRING_LEN, "tx-%d.tx_bytes", i);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001820 p += ETH_GSTRING_LEN;
Heinrich Schuchardtfbcfac32016-08-11 01:07:22 +02001821 snprintf(p, ETH_GSTRING_LEN, "rx-%d.rx_packets", i);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001822 p += ETH_GSTRING_LEN;
Heinrich Schuchardtfbcfac32016-08-11 01:07:22 +02001823 snprintf(p, ETH_GSTRING_LEN, "rx-%d.rx_bytes", i);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001824 p += ETH_GSTRING_LEN;
1825 }
Shannon Nelson58ce5172015-02-27 09:15:26 +00001826 if (vsi != pf->vsi[pf->lan_vsi] || pf->hw.partition_id != 1)
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001827 return;
1828
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04001829 if ((pf->lan_veb != I40E_NO_VEB) &&
1830 (pf->flags & I40E_FLAG_VEB_STATS_ENABLED)) {
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001831 for (i = 0; i < I40E_VEB_STATS_LEN; i++) {
1832 snprintf(p, ETH_GSTRING_LEN, "veb.%s",
1833 i40e_gstrings_veb_stats[i].stat_string);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001834 p += ETH_GSTRING_LEN;
1835 }
Neerav Parikhfe860af2015-07-10 19:36:02 -04001836 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1837 snprintf(p, ETH_GSTRING_LEN,
Heinrich Schuchardtfbcfac32016-08-11 01:07:22 +02001838 "veb.tc_%d_tx_packets", i);
Neerav Parikhfe860af2015-07-10 19:36:02 -04001839 p += ETH_GSTRING_LEN;
1840 snprintf(p, ETH_GSTRING_LEN,
Heinrich Schuchardtfbcfac32016-08-11 01:07:22 +02001841 "veb.tc_%d_tx_bytes", i);
Neerav Parikhfe860af2015-07-10 19:36:02 -04001842 p += ETH_GSTRING_LEN;
1843 snprintf(p, ETH_GSTRING_LEN,
Heinrich Schuchardtfbcfac32016-08-11 01:07:22 +02001844 "veb.tc_%d_rx_packets", i);
Neerav Parikhfe860af2015-07-10 19:36:02 -04001845 p += ETH_GSTRING_LEN;
1846 snprintf(p, ETH_GSTRING_LEN,
Heinrich Schuchardtfbcfac32016-08-11 01:07:22 +02001847 "veb.tc_%d_rx_bytes", i);
Neerav Parikhfe860af2015-07-10 19:36:02 -04001848 p += ETH_GSTRING_LEN;
1849 }
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001850 }
1851 for (i = 0; i < I40E_GLOBAL_STATS_LEN; i++) {
1852 snprintf(p, ETH_GSTRING_LEN, "port.%s",
1853 i40e_gstrings_stats[i].stat_string);
1854 p += ETH_GSTRING_LEN;
1855 }
1856 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
1857 snprintf(p, ETH_GSTRING_LEN,
Heinrich Schuchardtfbcfac32016-08-11 01:07:22 +02001858 "port.tx_priority_%d_xon", i);
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001859 p += ETH_GSTRING_LEN;
1860 snprintf(p, ETH_GSTRING_LEN,
Heinrich Schuchardtfbcfac32016-08-11 01:07:22 +02001861 "port.tx_priority_%d_xoff", i);
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001862 p += ETH_GSTRING_LEN;
1863 }
1864 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
1865 snprintf(p, ETH_GSTRING_LEN,
Heinrich Schuchardtfbcfac32016-08-11 01:07:22 +02001866 "port.rx_priority_%d_xon", i);
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001867 p += ETH_GSTRING_LEN;
1868 snprintf(p, ETH_GSTRING_LEN,
Heinrich Schuchardtfbcfac32016-08-11 01:07:22 +02001869 "port.rx_priority_%d_xoff", i);
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001870 p += ETH_GSTRING_LEN;
1871 }
1872 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
1873 snprintf(p, ETH_GSTRING_LEN,
Heinrich Schuchardtfbcfac32016-08-11 01:07:22 +02001874 "port.rx_priority_%d_xon_2_xoff", i);
Shannon Nelson8eab9cf2014-04-23 04:49:55 +00001875 p += ETH_GSTRING_LEN;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001876 }
1877 /* BUG_ON(p - data != I40E_STATS_LEN * ETH_GSTRING_LEN); */
1878 break;
Greg Rose7e45ab42015-02-06 08:52:19 +00001879 case ETH_SS_PRIV_FLAGS:
Alexander Duyckaca955d2017-03-10 12:22:01 -08001880 for (i = 0; i < I40E_PRIV_FLAGS_STR_LEN; i++) {
1881 snprintf(p, ETH_GSTRING_LEN, "%s",
1882 i40e_gstrings_priv_flags[i].flag_string);
1883 p += ETH_GSTRING_LEN;
1884 }
1885 if (pf->hw.pf_id != 0)
1886 break;
1887 for (i = 0; i < I40E_GL_PRIV_FLAGS_STR_LEN; i++) {
1888 snprintf(p, ETH_GSTRING_LEN, "%s",
1889 i40e_gl_gstrings_priv_flags[i].flag_string);
1890 p += ETH_GSTRING_LEN;
1891 }
Greg Rose7e45ab42015-02-06 08:52:19 +00001892 break;
Akeem G Abodunrin579b23d2015-02-24 06:58:42 +00001893 default:
1894 break;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001895 }
1896}
1897
1898static int i40e_get_ts_info(struct net_device *dev,
1899 struct ethtool_ts_info *info)
1900{
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001901 struct i40e_pf *pf = i40e_netdev_to_pf(dev);
1902
Jacob Kellerfe88bda2014-11-11 20:05:58 +00001903 /* only report HW timestamping if PTP is enabled */
1904 if (!(pf->flags & I40E_FLAG_PTP))
1905 return ethtool_op_get_ts_info(dev, info);
1906
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001907 info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE |
1908 SOF_TIMESTAMPING_RX_SOFTWARE |
1909 SOF_TIMESTAMPING_SOFTWARE |
1910 SOF_TIMESTAMPING_TX_HARDWARE |
1911 SOF_TIMESTAMPING_RX_HARDWARE |
1912 SOF_TIMESTAMPING_RAW_HARDWARE;
1913
1914 if (pf->ptp_clock)
1915 info->phc_index = ptp_clock_index(pf->ptp_clock);
1916 else
1917 info->phc_index = -1;
1918
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001919 info->tx_types = BIT(HWTSTAMP_TX_OFF) | BIT(HWTSTAMP_TX_ON);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001920
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001921 info->rx_filters = BIT(HWTSTAMP_FILTER_NONE) |
Jacob Keller1e28e862016-11-11 12:39:25 -08001922 BIT(HWTSTAMP_FILTER_PTP_V2_L2_EVENT) |
1923 BIT(HWTSTAMP_FILTER_PTP_V2_L2_SYNC) |
1924 BIT(HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ);
1925
Jacob Kellerd36e41d2017-06-23 04:24:46 -04001926 if (pf->hw_features & I40E_HW_PTP_L4_CAPABLE)
Jacob Keller1e28e862016-11-11 12:39:25 -08001927 info->rx_filters |= BIT(HWTSTAMP_FILTER_PTP_V1_L4_SYNC) |
1928 BIT(HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ) |
1929 BIT(HWTSTAMP_FILTER_PTP_V2_EVENT) |
1930 BIT(HWTSTAMP_FILTER_PTP_V2_L4_EVENT) |
1931 BIT(HWTSTAMP_FILTER_PTP_V2_SYNC) |
1932 BIT(HWTSTAMP_FILTER_PTP_V2_L4_SYNC) |
1933 BIT(HWTSTAMP_FILTER_PTP_V2_DELAY_REQ) |
1934 BIT(HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001935
1936 return 0;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001937}
1938
Shannon Nelson7b086392013-11-20 10:02:59 +00001939static int i40e_link_test(struct net_device *netdev, u64 *data)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001940{
Shannon Nelson7b086392013-11-20 10:02:59 +00001941 struct i40e_netdev_priv *np = netdev_priv(netdev);
1942 struct i40e_pf *pf = np->vsi->back;
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04001943 i40e_status status;
1944 bool link_up = false;
Shannon Nelson7b086392013-11-20 10:02:59 +00001945
Shannon Nelsonb03aaa92013-11-20 10:03:06 +00001946 netif_info(pf, hw, netdev, "link test\n");
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04001947 status = i40e_get_link_status(&pf->hw, &link_up);
1948 if (status) {
1949 netif_err(pf, drv, netdev, "link query timed out, please retry test\n");
1950 *data = 1;
1951 return *data;
1952 }
1953
1954 if (link_up)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001955 *data = 0;
1956 else
1957 *data = 1;
1958
1959 return *data;
1960}
1961
Shannon Nelson7b086392013-11-20 10:02:59 +00001962static int i40e_reg_test(struct net_device *netdev, u64 *data)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001963{
Shannon Nelson7b086392013-11-20 10:02:59 +00001964 struct i40e_netdev_priv *np = netdev_priv(netdev);
1965 struct i40e_pf *pf = np->vsi->back;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001966
Shannon Nelsonb03aaa92013-11-20 10:03:06 +00001967 netif_info(pf, hw, netdev, "register test\n");
Shannon Nelson7b086392013-11-20 10:02:59 +00001968 *data = i40e_diag_reg_test(&pf->hw);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001969
Shannon Nelson7b086392013-11-20 10:02:59 +00001970 return *data;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001971}
1972
Shannon Nelson7b086392013-11-20 10:02:59 +00001973static int i40e_eeprom_test(struct net_device *netdev, u64 *data)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001974{
Shannon Nelson7b086392013-11-20 10:02:59 +00001975 struct i40e_netdev_priv *np = netdev_priv(netdev);
1976 struct i40e_pf *pf = np->vsi->back;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001977
Shannon Nelsonb03aaa92013-11-20 10:03:06 +00001978 netif_info(pf, hw, netdev, "eeprom test\n");
Shannon Nelson7b086392013-11-20 10:02:59 +00001979 *data = i40e_diag_eeprom_test(&pf->hw);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001980
Shannon Nelson4443ec92014-11-13 08:23:12 +00001981 /* forcebly clear the NVM Update state machine */
1982 pf->hw.nvmupd_state = I40E_NVMUPD_STATE_INIT;
1983
Shannon Nelson7b086392013-11-20 10:02:59 +00001984 return *data;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001985}
1986
Shannon Nelson7b086392013-11-20 10:02:59 +00001987static int i40e_intr_test(struct net_device *netdev, u64 *data)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001988{
Shannon Nelson7b086392013-11-20 10:02:59 +00001989 struct i40e_netdev_priv *np = netdev_priv(netdev);
1990 struct i40e_pf *pf = np->vsi->back;
Shannon Nelsoncd92e722013-11-16 10:00:44 +00001991 u16 swc_old = pf->sw_int_count;
1992
Shannon Nelsonb03aaa92013-11-20 10:03:06 +00001993 netif_info(pf, hw, netdev, "interrupt test\n");
Shannon Nelsoncd92e722013-11-16 10:00:44 +00001994 wr32(&pf->hw, I40E_PFINT_DYN_CTL0,
1995 (I40E_PFINT_DYN_CTL0_INTENA_MASK |
Shannon Nelson5d1ff1062014-11-11 20:04:35 +00001996 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK |
1997 I40E_PFINT_DYN_CTL0_ITR_INDX_MASK |
1998 I40E_PFINT_DYN_CTL0_SW_ITR_INDX_ENA_MASK |
1999 I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK));
Shannon Nelsoncd92e722013-11-16 10:00:44 +00002000 usleep_range(1000, 2000);
2001 *data = (swc_old == pf->sw_int_count);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002002
2003 return *data;
2004}
2005
Greg Rosee17bc412015-04-16 20:05:59 -04002006static inline bool i40e_active_vfs(struct i40e_pf *pf)
2007{
2008 struct i40e_vf *vfs = pf->vf;
2009 int i;
2010
2011 for (i = 0; i < pf->num_alloc_vfs; i++)
Jacob Keller6322e632017-04-13 04:45:54 -04002012 if (test_bit(I40E_VF_STATE_ACTIVE, &vfs[i].vf_states))
Greg Rosee17bc412015-04-16 20:05:59 -04002013 return true;
2014 return false;
2015}
2016
Greg Rose510efb22015-07-10 19:36:01 -04002017static inline bool i40e_active_vmdqs(struct i40e_pf *pf)
2018{
Alexander Duyck4b816442016-10-11 15:26:53 -07002019 return !!i40e_find_vsi_by_type(pf, I40E_VSI_VMDQ2);
Greg Rose510efb22015-07-10 19:36:01 -04002020}
2021
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002022static void i40e_diag_test(struct net_device *netdev,
2023 struct ethtool_test *eth_test, u64 *data)
2024{
2025 struct i40e_netdev_priv *np = netdev_priv(netdev);
Greg Rose5b86c5c2015-02-26 16:14:35 +00002026 bool if_running = netif_running(netdev);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002027 struct i40e_pf *pf = np->vsi->back;
2028
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002029 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
2030 /* Offline tests */
Shannon Nelsonb03aaa92013-11-20 10:03:06 +00002031 netif_info(pf, drv, netdev, "offline testing starting\n");
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002032
Jacob Keller0da36b92017-04-19 09:25:55 -04002033 set_bit(__I40E_TESTING, pf->state);
Greg Rosee17bc412015-04-16 20:05:59 -04002034
Greg Rose510efb22015-07-10 19:36:01 -04002035 if (i40e_active_vfs(pf) || i40e_active_vmdqs(pf)) {
Greg Rosee17bc412015-04-16 20:05:59 -04002036 dev_warn(&pf->pdev->dev,
Greg Rose510efb22015-07-10 19:36:01 -04002037 "Please take active VFs and Netqueues offline and restart the adapter before running NIC diagnostics\n");
Greg Rosee17bc412015-04-16 20:05:59 -04002038 data[I40E_ETH_TEST_REG] = 1;
2039 data[I40E_ETH_TEST_EEPROM] = 1;
2040 data[I40E_ETH_TEST_INTR] = 1;
Greg Rosee17bc412015-04-16 20:05:59 -04002041 data[I40E_ETH_TEST_LINK] = 1;
2042 eth_test->flags |= ETH_TEST_FL_FAILED;
Jacob Keller0da36b92017-04-19 09:25:55 -04002043 clear_bit(__I40E_TESTING, pf->state);
Greg Rosee17bc412015-04-16 20:05:59 -04002044 goto skip_ol_tests;
2045 }
2046
Greg Rose5b86c5c2015-02-26 16:14:35 +00002047 /* If the device is online then take it offline */
2048 if (if_running)
2049 /* indicate we're in test mode */
Stefan Assmann08ca3872016-02-03 09:20:47 +01002050 i40e_close(netdev);
Greg Rose5b86c5c2015-02-26 16:14:35 +00002051 else
Greg Roseb4e53f02015-07-10 19:36:03 -04002052 /* This reset does not affect link - if it is
2053 * changed to a type of reset that does affect
2054 * link then the following link test would have
2055 * to be moved to before the reset
2056 */
Maciej Sosin373149f2017-04-05 07:50:55 -04002057 i40e_do_reset(pf, BIT(__I40E_PF_RESET_REQUESTED), true);
Shannon Nelsonf551b432013-11-26 10:49:12 +00002058
Shannon Nelson7b086392013-11-20 10:02:59 +00002059 if (i40e_link_test(netdev, &data[I40E_ETH_TEST_LINK]))
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002060 eth_test->flags |= ETH_TEST_FL_FAILED;
2061
Shannon Nelson7b086392013-11-20 10:02:59 +00002062 if (i40e_eeprom_test(netdev, &data[I40E_ETH_TEST_EEPROM]))
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002063 eth_test->flags |= ETH_TEST_FL_FAILED;
2064
Shannon Nelson7b086392013-11-20 10:02:59 +00002065 if (i40e_intr_test(netdev, &data[I40E_ETH_TEST_INTR]))
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002066 eth_test->flags |= ETH_TEST_FL_FAILED;
2067
Shannon Nelsonf551b432013-11-26 10:49:12 +00002068 /* run reg test last, a reset is required after it */
2069 if (i40e_reg_test(netdev, &data[I40E_ETH_TEST_REG]))
2070 eth_test->flags |= ETH_TEST_FL_FAILED;
2071
Jacob Keller0da36b92017-04-19 09:25:55 -04002072 clear_bit(__I40E_TESTING, pf->state);
Maciej Sosin373149f2017-04-05 07:50:55 -04002073 i40e_do_reset(pf, BIT(__I40E_PF_RESET_REQUESTED), true);
Greg Rose5b86c5c2015-02-26 16:14:35 +00002074
2075 if (if_running)
Stefan Assmann08ca3872016-02-03 09:20:47 +01002076 i40e_open(netdev);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002077 } else {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002078 /* Online tests */
Shannon Nelsonb03aaa92013-11-20 10:03:06 +00002079 netif_info(pf, drv, netdev, "online testing starting\n");
2080
Shannon Nelson7b086392013-11-20 10:02:59 +00002081 if (i40e_link_test(netdev, &data[I40E_ETH_TEST_LINK]))
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002082 eth_test->flags |= ETH_TEST_FL_FAILED;
2083
2084 /* Offline only tests, not run in online; pass by default */
2085 data[I40E_ETH_TEST_REG] = 0;
2086 data[I40E_ETH_TEST_EEPROM] = 0;
2087 data[I40E_ETH_TEST_INTR] = 0;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002088 }
Shannon Nelsonc140c172013-11-20 10:02:58 +00002089
Greg Rosee17bc412015-04-16 20:05:59 -04002090skip_ol_tests:
2091
Shannon Nelsonb03aaa92013-11-20 10:03:06 +00002092 netif_info(pf, drv, netdev, "testing finished\n");
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002093}
2094
2095static void i40e_get_wol(struct net_device *netdev,
2096 struct ethtool_wolinfo *wol)
2097{
Shannon Nelson8e2773a2013-11-28 06:39:22 +00002098 struct i40e_netdev_priv *np = netdev_priv(netdev);
2099 struct i40e_pf *pf = np->vsi->back;
2100 struct i40e_hw *hw = &pf->hw;
2101 u16 wol_nvm_bits;
2102
2103 /* NVM bit on means WoL disabled for the port */
2104 i40e_read_nvm_word(hw, I40E_SR_NVM_WAKE_ON_LAN, &wol_nvm_bits);
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002105 if ((BIT(hw->port) & wol_nvm_bits) || (hw->partition_id != 1)) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +00002106 wol->supported = 0;
2107 wol->wolopts = 0;
2108 } else {
2109 wol->supported = WAKE_MAGIC;
2110 wol->wolopts = (pf->wol_en ? WAKE_MAGIC : 0);
2111 }
2112}
2113
Shannon Nelsonf0d8c732014-12-11 07:06:32 +00002114/**
2115 * i40e_set_wol - set the WakeOnLAN configuration
2116 * @netdev: the netdev in question
2117 * @wol: the ethtool WoL setting data
2118 **/
Shannon Nelson8e2773a2013-11-28 06:39:22 +00002119static int i40e_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2120{
2121 struct i40e_netdev_priv *np = netdev_priv(netdev);
2122 struct i40e_pf *pf = np->vsi->back;
Shannon Nelsonf0d8c732014-12-11 07:06:32 +00002123 struct i40e_vsi *vsi = np->vsi;
Shannon Nelson8e2773a2013-11-28 06:39:22 +00002124 struct i40e_hw *hw = &pf->hw;
2125 u16 wol_nvm_bits;
2126
Shannon Nelsonf0d8c732014-12-11 07:06:32 +00002127 /* WoL not supported if this isn't the controlling PF on the port */
2128 if (hw->partition_id != 1) {
2129 i40e_partition_setting_complaint(pf);
2130 return -EOPNOTSUPP;
2131 }
2132
2133 if (vsi != pf->vsi[pf->lan_vsi])
2134 return -EOPNOTSUPP;
2135
Shannon Nelson8e2773a2013-11-28 06:39:22 +00002136 /* NVM bit on means WoL disabled for the port */
2137 i40e_read_nvm_word(hw, I40E_SR_NVM_WAKE_ON_LAN, &wol_nvm_bits);
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002138 if (BIT(hw->port) & wol_nvm_bits)
Shannon Nelson8e2773a2013-11-28 06:39:22 +00002139 return -EOPNOTSUPP;
2140
2141 /* only magic packet is supported */
2142 if (wol->wolopts && (wol->wolopts != WAKE_MAGIC))
2143 return -EOPNOTSUPP;
2144
2145 /* is this a new value? */
2146 if (pf->wol_en != !!wol->wolopts) {
2147 pf->wol_en = !!wol->wolopts;
2148 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
2149 }
2150
2151 return 0;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002152}
2153
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002154static int i40e_set_phys_id(struct net_device *netdev,
2155 enum ethtool_phys_id_state state)
2156{
2157 struct i40e_netdev_priv *np = netdev_priv(netdev);
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08002158 i40e_status ret = 0;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002159 struct i40e_pf *pf = np->vsi->back;
2160 struct i40e_hw *hw = &pf->hw;
2161 int blink_freq = 2;
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08002162 u16 temp_status;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002163
2164 switch (state) {
2165 case ETHTOOL_ID_ACTIVE:
Jacob Kellerd36e41d2017-06-23 04:24:46 -04002166 if (!(pf->hw_features & I40E_HW_PHY_CONTROLS_LEDS)) {
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08002167 pf->led_status = i40e_led_get(hw);
2168 } else {
Mariusz Stachura052b93d2017-08-29 05:32:40 -04002169 if (!(hw->flags & I40E_HW_FLAG_AQ_PHY_ACCESS_CAPABLE))
2170 i40e_aq_set_phy_debug(hw, I40E_PHY_DEBUG_ALL,
2171 NULL);
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08002172 ret = i40e_led_get_phy(hw, &temp_status,
2173 &pf->phy_led_val);
2174 pf->led_status = temp_status;
2175 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002176 return blink_freq;
2177 case ETHTOOL_ID_ON:
Jacob Kellerd36e41d2017-06-23 04:24:46 -04002178 if (!(pf->hw_features & I40E_HW_PHY_CONTROLS_LEDS))
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08002179 i40e_led_set(hw, 0xf, false);
2180 else
2181 ret = i40e_led_set_phy(hw, true, pf->led_status, 0);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002182 break;
2183 case ETHTOOL_ID_OFF:
Jacob Kellerd36e41d2017-06-23 04:24:46 -04002184 if (!(pf->hw_features & I40E_HW_PHY_CONTROLS_LEDS))
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08002185 i40e_led_set(hw, 0x0, false);
2186 else
2187 ret = i40e_led_set_phy(hw, false, pf->led_status, 0);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002188 break;
2189 case ETHTOOL_ID_INACTIVE:
Jacob Kellerd36e41d2017-06-23 04:24:46 -04002190 if (!(pf->hw_features & I40E_HW_PHY_CONTROLS_LEDS)) {
Henry Tieman4f9b4302016-11-08 13:05:18 -08002191 i40e_led_set(hw, pf->led_status, false);
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08002192 } else {
2193 ret = i40e_led_set_phy(hw, false, pf->led_status,
2194 (pf->phy_led_val |
2195 I40E_PHY_LED_MODE_ORIG));
Mariusz Stachura052b93d2017-08-29 05:32:40 -04002196 if (!(hw->flags & I40E_HW_FLAG_AQ_PHY_ACCESS_CAPABLE))
2197 i40e_aq_set_phy_debug(hw, 0, NULL);
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08002198 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002199 break;
Akeem G Abodunrin579b23d2015-02-24 06:58:42 +00002200 default:
2201 break;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002202 }
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08002203 if (ret)
2204 return -ENOENT;
2205 else
2206 return 0;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002207}
2208
2209/* NOTE: i40e hardware uses a conversion factor of 2 for Interrupt
2210 * Throttle Rate (ITR) ie. ITR(1) = 2us ITR(10) = 20 us, and also
2211 * 125us (8000 interrupts per second) == ITR(62)
2212 */
2213
Jacob Keller65e87c02016-09-12 14:18:44 -07002214/**
2215 * __i40e_get_coalesce - get per-queue coalesce settings
2216 * @netdev: the netdev to check
2217 * @ec: ethtool coalesce data structure
2218 * @queue: which queue to pick
2219 *
2220 * Gets the per-queue settings for coalescence. Specifically Rx and Tx usecs
2221 * are per queue. If queue is <0 then we default to queue 0 as the
2222 * representative value.
2223 **/
Kan Lianga75e8002016-02-19 09:24:04 -05002224static int __i40e_get_coalesce(struct net_device *netdev,
2225 struct ethtool_coalesce *ec,
2226 int queue)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002227{
2228 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jacob Keller65e87c02016-09-12 14:18:44 -07002229 struct i40e_ring *rx_ring, *tx_ring;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002230 struct i40e_vsi *vsi = np->vsi;
2231
2232 ec->tx_max_coalesced_frames_irq = vsi->work_limit;
2233 ec->rx_max_coalesced_frames_irq = vsi->work_limit;
2234
Alan Bradya03af692017-10-05 14:53:37 -07002235 /* rx and tx usecs has per queue value. If user doesn't specify the
2236 * queue, return queue 0's value to represent.
Kan Lianga75e8002016-02-19 09:24:04 -05002237 */
Alan Bradya03af692017-10-05 14:53:37 -07002238 if (queue < 0)
Kan Lianga75e8002016-02-19 09:24:04 -05002239 queue = 0;
Alan Bradya03af692017-10-05 14:53:37 -07002240 else if (queue >= vsi->num_queue_pairs)
Kan Lianga75e8002016-02-19 09:24:04 -05002241 return -EINVAL;
Kan Lianga75e8002016-02-19 09:24:04 -05002242
Jacob Keller65e87c02016-09-12 14:18:44 -07002243 rx_ring = vsi->rx_rings[queue];
2244 tx_ring = vsi->tx_rings[queue];
2245
2246 if (ITR_IS_DYNAMIC(rx_ring->rx_itr_setting))
Mitch Williams32f5f542014-04-04 04:43:10 +00002247 ec->use_adaptive_rx_coalesce = 1;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002248
Jacob Keller65e87c02016-09-12 14:18:44 -07002249 if (ITR_IS_DYNAMIC(tx_ring->tx_itr_setting))
Mitch Williams32f5f542014-04-04 04:43:10 +00002250 ec->use_adaptive_tx_coalesce = 1;
2251
Jacob Keller65e87c02016-09-12 14:18:44 -07002252 ec->rx_coalesce_usecs = rx_ring->rx_itr_setting & ~I40E_ITR_DYNAMIC;
2253 ec->tx_coalesce_usecs = tx_ring->tx_itr_setting & ~I40E_ITR_DYNAMIC;
2254
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04002255 /* we use the _usecs_high to store/set the interrupt rate limit
2256 * that the hardware supports, that almost but not quite
2257 * fits the original intent of the ethtool variable,
2258 * the rx_coalesce_usecs_high limits total interrupts
2259 * per second from both tx/rx sources.
2260 */
2261 ec->rx_coalesce_usecs_high = vsi->int_rate_limit;
2262 ec->tx_coalesce_usecs_high = vsi->int_rate_limit;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002263
2264 return 0;
2265}
2266
Jacob Keller65e87c02016-09-12 14:18:44 -07002267/**
2268 * i40e_get_coalesce - get a netdev's coalesce settings
2269 * @netdev: the netdev to check
2270 * @ec: ethtool coalesce data structure
2271 *
2272 * Gets the coalesce settings for a particular netdev. Note that if user has
2273 * modified per-queue settings, this only guarantees to represent queue 0. See
2274 * __i40e_get_coalesce for more details.
2275 **/
Kan Lianga75e8002016-02-19 09:24:04 -05002276static int i40e_get_coalesce(struct net_device *netdev,
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002277 struct ethtool_coalesce *ec)
2278{
Kan Lianga75e8002016-02-19 09:24:04 -05002279 return __i40e_get_coalesce(netdev, ec, -1);
2280}
2281
Jacob Keller65e87c02016-09-12 14:18:44 -07002282/**
2283 * i40e_get_per_queue_coalesce - gets coalesce settings for particular queue
2284 * @netdev: netdev structure
2285 * @ec: ethtool's coalesce settings
2286 * @queue: the particular queue to read
2287 *
2288 * Will read a specific queue's coalesce settings
2289 **/
Kan Liangbe280ba2016-02-19 09:24:05 -05002290static int i40e_get_per_queue_coalesce(struct net_device *netdev, u32 queue,
2291 struct ethtool_coalesce *ec)
2292{
2293 return __i40e_get_coalesce(netdev, ec, queue);
2294}
2295
Jacob Keller65e87c02016-09-12 14:18:44 -07002296/**
2297 * i40e_set_itr_per_queue - set ITR values for specific queue
2298 * @vsi: the VSI to set values for
2299 * @ec: coalesce settings from ethtool
2300 * @queue: the queue to modify
2301 *
2302 * Change the ITR settings for a specific queue.
2303 **/
Kan Lianga75e8002016-02-19 09:24:04 -05002304static void i40e_set_itr_per_queue(struct i40e_vsi *vsi,
2305 struct ethtool_coalesce *ec,
2306 int queue)
2307{
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002308 struct i40e_pf *pf = vsi->back;
2309 struct i40e_hw *hw = &pf->hw;
Kan Lianga75e8002016-02-19 09:24:04 -05002310 struct i40e_q_vector *q_vector;
2311 u16 vector, intrl;
2312
Alan Brady1c0e6a32016-11-28 16:06:02 -08002313 intrl = i40e_intrl_usec_to_reg(vsi->int_rate_limit);
Kan Lianga75e8002016-02-19 09:24:04 -05002314
2315 vsi->rx_rings[queue]->rx_itr_setting = ec->rx_coalesce_usecs;
2316 vsi->tx_rings[queue]->tx_itr_setting = ec->tx_coalesce_usecs;
2317
2318 if (ec->use_adaptive_rx_coalesce)
2319 vsi->rx_rings[queue]->rx_itr_setting |= I40E_ITR_DYNAMIC;
2320 else
2321 vsi->rx_rings[queue]->rx_itr_setting &= ~I40E_ITR_DYNAMIC;
2322
2323 if (ec->use_adaptive_tx_coalesce)
2324 vsi->tx_rings[queue]->tx_itr_setting |= I40E_ITR_DYNAMIC;
2325 else
2326 vsi->tx_rings[queue]->tx_itr_setting &= ~I40E_ITR_DYNAMIC;
2327
2328 q_vector = vsi->rx_rings[queue]->q_vector;
2329 q_vector->rx.itr = ITR_TO_REG(vsi->rx_rings[queue]->rx_itr_setting);
2330 vector = vsi->base_vector + q_vector->v_idx;
2331 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1), q_vector->rx.itr);
2332
2333 q_vector = vsi->tx_rings[queue]->q_vector;
2334 q_vector->tx.itr = ITR_TO_REG(vsi->tx_rings[queue]->tx_itr_setting);
2335 vector = vsi->base_vector + q_vector->v_idx;
2336 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1), q_vector->tx.itr);
2337
2338 wr32(hw, I40E_PFINT_RATEN(vector - 1), intrl);
2339 i40e_flush(hw);
2340}
2341
Jacob Keller65e87c02016-09-12 14:18:44 -07002342/**
2343 * __i40e_set_coalesce - set coalesce settings for particular queue
2344 * @netdev: the netdev to change
2345 * @ec: ethtool coalesce settings
2346 * @queue: the queue to change
2347 *
2348 * Sets the coalesce settings for a particular queue.
2349 **/
Kan Lianga75e8002016-02-19 09:24:04 -05002350static int __i40e_set_coalesce(struct net_device *netdev,
2351 struct ethtool_coalesce *ec,
2352 int queue)
2353{
2354 struct i40e_netdev_priv *np = netdev_priv(netdev);
Alan Brady06b2dec2017-07-12 05:46:06 -04002355 u16 intrl_reg, cur_rx_itr, cur_tx_itr;
Kan Lianga75e8002016-02-19 09:24:04 -05002356 struct i40e_vsi *vsi = np->vsi;
2357 struct i40e_pf *pf = vsi->back;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002358 int i;
2359
2360 if (ec->tx_max_coalesced_frames_irq || ec->rx_max_coalesced_frames_irq)
2361 vsi->work_limit = ec->tx_max_coalesced_frames_irq;
2362
Alan Brady06b2dec2017-07-12 05:46:06 -04002363 if (queue < 0) {
2364 cur_rx_itr = vsi->rx_rings[0]->rx_itr_setting;
2365 cur_tx_itr = vsi->tx_rings[0]->tx_itr_setting;
2366 } else if (queue < vsi->num_queue_pairs) {
2367 cur_rx_itr = vsi->rx_rings[queue]->rx_itr_setting;
2368 cur_tx_itr = vsi->tx_rings[queue]->tx_itr_setting;
2369 } else {
2370 netif_info(pf, drv, netdev, "Invalid queue value, queue range is 0 - %d\n",
2371 vsi->num_queue_pairs - 1);
2372 return -EINVAL;
2373 }
2374
2375 cur_tx_itr &= ~I40E_ITR_DYNAMIC;
2376 cur_rx_itr &= ~I40E_ITR_DYNAMIC;
2377
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04002378 /* tx_coalesce_usecs_high is ignored, use rx-usecs-high instead */
2379 if (ec->tx_coalesce_usecs_high != vsi->int_rate_limit) {
2380 netif_info(pf, drv, netdev, "tx-usecs-high is not used, please program rx-usecs-high\n");
2381 return -EINVAL;
2382 }
2383
Alan Brady33084062016-11-28 16:06:03 -08002384 if (ec->rx_coalesce_usecs_high > INTRL_REG_TO_USEC(I40E_MAX_INTRL)) {
2385 netif_info(pf, drv, netdev, "Invalid value, rx-usecs-high range is 0-%lu\n",
2386 INTRL_REG_TO_USEC(I40E_MAX_INTRL));
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04002387 return -EINVAL;
2388 }
2389
Alan Brady06b2dec2017-07-12 05:46:06 -04002390 if (ec->rx_coalesce_usecs != cur_rx_itr &&
2391 ec->use_adaptive_rx_coalesce) {
2392 netif_info(pf, drv, netdev, "RX interrupt moderation cannot be changed if adaptive-rx is enabled.\n");
2393 return -EINVAL;
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002394 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002395
Alan Brady06b2dec2017-07-12 05:46:06 -04002396 if (ec->rx_coalesce_usecs > (I40E_MAX_ITR << 1)) {
2397 netif_info(pf, drv, netdev, "Invalid value, rx-usecs range is 0-8160\n");
2398 return -EINVAL;
2399 }
2400
2401 if (ec->tx_coalesce_usecs != cur_tx_itr &&
2402 ec->use_adaptive_tx_coalesce) {
2403 netif_info(pf, drv, netdev, "TX interrupt moderation cannot be changed if adaptive-tx is enabled.\n");
2404 return -EINVAL;
2405 }
2406
2407 if (ec->tx_coalesce_usecs > (I40E_MAX_ITR << 1)) {
2408 netif_info(pf, drv, netdev, "Invalid value, tx-usecs range is 0-8160\n");
2409 return -EINVAL;
2410 }
2411
2412 if (ec->use_adaptive_rx_coalesce && !cur_rx_itr)
2413 ec->rx_coalesce_usecs = I40E_MIN_ITR << 1;
2414
2415 if (ec->use_adaptive_tx_coalesce && !cur_tx_itr)
2416 ec->tx_coalesce_usecs = I40E_MIN_ITR << 1;
2417
Alan Brady33084062016-11-28 16:06:03 -08002418 intrl_reg = i40e_intrl_usec_to_reg(ec->rx_coalesce_usecs_high);
2419 vsi->int_rate_limit = INTRL_REG_TO_USEC(intrl_reg);
2420 if (vsi->int_rate_limit != ec->rx_coalesce_usecs_high) {
2421 netif_info(pf, drv, netdev, "Interrupt rate limit rounded down to %d\n",
2422 vsi->int_rate_limit);
2423 }
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04002424
Alan Bradya03af692017-10-05 14:53:37 -07002425 /* rx and tx usecs has per queue value. If user doesn't specify the
2426 * queue, apply to all queues.
Kan Lianga75e8002016-02-19 09:24:04 -05002427 */
2428 if (queue < 0) {
2429 for (i = 0; i < vsi->num_queue_pairs; i++)
2430 i40e_set_itr_per_queue(vsi, ec, i);
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002431 } else {
Alan Brady06b2dec2017-07-12 05:46:06 -04002432 i40e_set_itr_per_queue(vsi, ec, queue);
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002433 }
Mitch Williams32f5f542014-04-04 04:43:10 +00002434
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002435 return 0;
2436}
2437
Jacob Keller65e87c02016-09-12 14:18:44 -07002438/**
2439 * i40e_set_coalesce - set coalesce settings for every queue on the netdev
2440 * @netdev: the netdev to change
2441 * @ec: ethtool coalesce settings
2442 *
2443 * This will set each queue to the same coalesce settings.
2444 **/
Kan Lianga75e8002016-02-19 09:24:04 -05002445static int i40e_set_coalesce(struct net_device *netdev,
2446 struct ethtool_coalesce *ec)
2447{
2448 return __i40e_set_coalesce(netdev, ec, -1);
2449}
2450
Jacob Keller65e87c02016-09-12 14:18:44 -07002451/**
2452 * i40e_set_per_queue_coalesce - set specific queue's coalesce settings
2453 * @netdev: the netdev to change
2454 * @ec: ethtool's coalesce settings
2455 * @queue: the queue to change
2456 *
2457 * Sets the specified queue's coalesce settings.
2458 **/
Kan Liangf3757a42016-02-19 09:24:06 -05002459static int i40e_set_per_queue_coalesce(struct net_device *netdev, u32 queue,
2460 struct ethtool_coalesce *ec)
2461{
2462 return __i40e_set_coalesce(netdev, ec, queue);
2463}
2464
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002465/**
2466 * i40e_get_rss_hash_opts - Get RSS hash Input Set for each flow type
2467 * @pf: pointer to the physical function struct
2468 * @cmd: ethtool rxnfc command
2469 *
2470 * Returns Success if the flow is supported, else Invalid Input.
2471 **/
2472static int i40e_get_rss_hash_opts(struct i40e_pf *pf, struct ethtool_rxnfc *cmd)
2473{
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002474 struct i40e_hw *hw = &pf->hw;
2475 u8 flow_pctype = 0;
2476 u64 i_set = 0;
2477
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002478 cmd->data = 0;
2479
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002480 switch (cmd->flow_type) {
2481 case TCP_V4_FLOW:
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002482 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV4_TCP;
2483 break;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002484 case UDP_V4_FLOW:
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002485 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV4_UDP;
2486 break;
2487 case TCP_V6_FLOW:
2488 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV6_TCP;
2489 break;
2490 case UDP_V6_FLOW:
2491 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV6_UDP;
2492 break;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002493 case SCTP_V4_FLOW:
2494 case AH_ESP_V4_FLOW:
2495 case AH_V4_FLOW:
2496 case ESP_V4_FLOW:
2497 case IPV4_FLOW:
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002498 case SCTP_V6_FLOW:
2499 case AH_ESP_V6_FLOW:
2500 case AH_V6_FLOW:
2501 case ESP_V6_FLOW:
2502 case IPV6_FLOW:
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002503 /* Default is src/dest for IP, no matter the L4 hashing */
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002504 cmd->data |= RXH_IP_SRC | RXH_IP_DST;
2505 break;
2506 default:
2507 return -EINVAL;
2508 }
2509
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002510 /* Read flow based hash input set register */
2511 if (flow_pctype) {
2512 i_set = (u64)i40e_read_rx_ctl(hw, I40E_GLQF_HASH_INSET(0,
2513 flow_pctype)) |
2514 ((u64)i40e_read_rx_ctl(hw, I40E_GLQF_HASH_INSET(1,
2515 flow_pctype)) << 32);
2516 }
2517
2518 /* Process bits of hash input set */
2519 if (i_set) {
2520 if (i_set & I40E_L4_SRC_MASK)
2521 cmd->data |= RXH_L4_B_0_1;
2522 if (i_set & I40E_L4_DST_MASK)
2523 cmd->data |= RXH_L4_B_2_3;
2524
2525 if (cmd->flow_type == TCP_V4_FLOW ||
2526 cmd->flow_type == UDP_V4_FLOW) {
2527 if (i_set & I40E_L3_SRC_MASK)
2528 cmd->data |= RXH_IP_SRC;
2529 if (i_set & I40E_L3_DST_MASK)
2530 cmd->data |= RXH_IP_DST;
2531 } else if (cmd->flow_type == TCP_V6_FLOW ||
2532 cmd->flow_type == UDP_V6_FLOW) {
2533 if (i_set & I40E_L3_V6_SRC_MASK)
2534 cmd->data |= RXH_IP_SRC;
2535 if (i_set & I40E_L3_V6_DST_MASK)
2536 cmd->data |= RXH_IP_DST;
2537 }
2538 }
2539
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002540 return 0;
2541}
2542
2543/**
Jacob Kellere7930952017-02-06 14:38:49 -08002544 * i40e_check_mask - Check whether a mask field is set
2545 * @mask: the full mask value
2546 * @field; mask of the field to check
2547 *
2548 * If the given mask is fully set, return positive value. If the mask for the
2549 * field is fully unset, return zero. Otherwise return a negative error code.
2550 **/
2551static int i40e_check_mask(u64 mask, u64 field)
2552{
2553 u64 value = mask & field;
2554
2555 if (value == field)
2556 return 1;
2557 else if (!value)
2558 return 0;
2559 else
2560 return -1;
2561}
2562
2563/**
2564 * i40e_parse_rx_flow_user_data - Deconstruct user-defined data
2565 * @fsp: pointer to rx flow specification
2566 * @data: pointer to userdef data structure for storage
2567 *
2568 * Read the user-defined data and deconstruct the value into a structure. No
2569 * other code should read the user-defined data, so as to ensure that every
2570 * place consistently reads the value correctly.
2571 *
2572 * The user-defined field is a 64bit Big Endian format value, which we
2573 * deconstruct by reading bits or bit fields from it. Single bit flags shall
2574 * be defined starting from the highest bits, while small bit field values
2575 * shall be defined starting from the lowest bits.
2576 *
2577 * Returns 0 if the data is valid, and non-zero if the userdef data is invalid
2578 * and the filter should be rejected. The data structure will always be
2579 * modified even if FLOW_EXT is not set.
2580 *
2581 **/
2582static int i40e_parse_rx_flow_user_data(struct ethtool_rx_flow_spec *fsp,
2583 struct i40e_rx_flow_userdef *data)
2584{
2585 u64 value, mask;
2586 int valid;
2587
2588 /* Zero memory first so it's always consistent. */
2589 memset(data, 0, sizeof(*data));
2590
2591 if (!(fsp->flow_type & FLOW_EXT))
2592 return 0;
2593
2594 value = be64_to_cpu(*((__be64 *)fsp->h_ext.data));
2595 mask = be64_to_cpu(*((__be64 *)fsp->m_ext.data));
2596
2597#define I40E_USERDEF_FLEX_WORD GENMASK_ULL(15, 0)
2598#define I40E_USERDEF_FLEX_OFFSET GENMASK_ULL(31, 16)
2599#define I40E_USERDEF_FLEX_FILTER GENMASK_ULL(31, 0)
2600
2601 valid = i40e_check_mask(mask, I40E_USERDEF_FLEX_FILTER);
2602 if (valid < 0) {
2603 return -EINVAL;
2604 } else if (valid) {
2605 data->flex_word = value & I40E_USERDEF_FLEX_WORD;
2606 data->flex_offset =
2607 (value & I40E_USERDEF_FLEX_OFFSET) >> 16;
2608 data->flex_filter = true;
2609 }
2610
2611 return 0;
2612}
2613
2614/**
2615 * i40e_fill_rx_flow_user_data - Fill in user-defined data field
2616 * @fsp: pointer to rx_flow specification
2617 *
2618 * Reads the userdef data structure and properly fills in the user defined
2619 * fields of the rx_flow_spec.
2620 **/
2621static void i40e_fill_rx_flow_user_data(struct ethtool_rx_flow_spec *fsp,
2622 struct i40e_rx_flow_userdef *data)
2623{
2624 u64 value = 0, mask = 0;
2625
2626 if (data->flex_filter) {
2627 value |= data->flex_word;
2628 value |= (u64)data->flex_offset << 16;
2629 mask |= I40E_USERDEF_FLEX_FILTER;
2630 }
2631
2632 if (value || mask)
2633 fsp->flow_type |= FLOW_EXT;
2634
2635 *((__be64 *)fsp->h_ext.data) = cpu_to_be64(value);
2636 *((__be64 *)fsp->m_ext.data) = cpu_to_be64(mask);
2637}
2638
2639/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002640 * i40e_get_ethtool_fdir_all - Populates the rule count of a command
2641 * @pf: Pointer to the physical function struct
2642 * @cmd: The command to get or set Rx flow classification rules
2643 * @rule_locs: Array of used rule locations
2644 *
2645 * This function populates both the total and actual rule count of
2646 * the ethtool flow classification command
2647 *
2648 * Returns 0 on success or -EMSGSIZE if entry not found
2649 **/
2650static int i40e_get_ethtool_fdir_all(struct i40e_pf *pf,
2651 struct ethtool_rxnfc *cmd,
2652 u32 *rule_locs)
2653{
2654 struct i40e_fdir_filter *rule;
2655 struct hlist_node *node2;
2656 int cnt = 0;
2657
2658 /* report total rule count */
Anjali Singhai Jain082def12014-04-09 05:59:00 +00002659 cmd->data = i40e_get_fd_cnt_all(pf);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002660
2661 hlist_for_each_entry_safe(rule, node2,
2662 &pf->fdir_filter_list, fdir_node) {
2663 if (cnt == cmd->rule_cnt)
2664 return -EMSGSIZE;
2665
2666 rule_locs[cnt] = rule->fd_id;
2667 cnt++;
2668 }
2669
2670 cmd->rule_cnt = cnt;
2671
2672 return 0;
2673}
2674
2675/**
2676 * i40e_get_ethtool_fdir_entry - Look up a filter based on Rx flow
2677 * @pf: Pointer to the physical function struct
2678 * @cmd: The command to get or set Rx flow classification rules
2679 *
2680 * This function looks up a filter based on the Rx flow classification
2681 * command and fills the flow spec info for it if found
2682 *
2683 * Returns 0 on success or -EINVAL if filter not found
2684 **/
2685static int i40e_get_ethtool_fdir_entry(struct i40e_pf *pf,
2686 struct ethtool_rxnfc *cmd)
2687{
2688 struct ethtool_rx_flow_spec *fsp =
2689 (struct ethtool_rx_flow_spec *)&cmd->fs;
Jacob Kellere7930952017-02-06 14:38:49 -08002690 struct i40e_rx_flow_userdef userdef = {0};
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002691 struct i40e_fdir_filter *rule = NULL;
2692 struct hlist_node *node2;
Jacob Keller36777d92017-03-07 15:05:23 -08002693 u64 input_set;
2694 u16 index;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002695
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002696 hlist_for_each_entry_safe(rule, node2,
2697 &pf->fdir_filter_list, fdir_node) {
2698 if (fsp->location <= rule->fd_id)
2699 break;
2700 }
2701
2702 if (!rule || fsp->location != rule->fd_id)
2703 return -EINVAL;
2704
2705 fsp->flow_type = rule->flow_type;
Anjali Singhai Jain7d54eb22014-03-14 07:32:21 +00002706 if (fsp->flow_type == IP_USER_FLOW) {
2707 fsp->h_u.usr_ip4_spec.ip_ver = ETH_RX_NFC_IP4;
2708 fsp->h_u.usr_ip4_spec.proto = 0;
2709 fsp->m_u.usr_ip4_spec.proto = 0;
2710 }
2711
Anjali Singhai Jain04b73bd2014-05-22 06:31:41 +00002712 /* Reverse the src and dest notion, since the HW views them from
2713 * Tx perspective where as the user expects it from Rx filter view.
2714 */
2715 fsp->h_u.tcp_ip4_spec.psrc = rule->dst_port;
2716 fsp->h_u.tcp_ip4_spec.pdst = rule->src_port;
Jacob Keller8ce43dc2017-02-06 14:38:39 -08002717 fsp->h_u.tcp_ip4_spec.ip4src = rule->dst_ip;
2718 fsp->h_u.tcp_ip4_spec.ip4dst = rule->src_ip;
Anjali Singhai Jain387ce1a2014-05-22 06:32:23 +00002719
Jacob Keller36777d92017-03-07 15:05:23 -08002720 switch (rule->flow_type) {
Jacob Kellerf223c872017-02-06 14:38:51 -08002721 case SCTP_V4_FLOW:
2722 index = I40E_FILTER_PCTYPE_NONF_IPV4_SCTP;
2723 break;
Jacob Keller36777d92017-03-07 15:05:23 -08002724 case TCP_V4_FLOW:
2725 index = I40E_FILTER_PCTYPE_NONF_IPV4_TCP;
2726 break;
2727 case UDP_V4_FLOW:
2728 index = I40E_FILTER_PCTYPE_NONF_IPV4_UDP;
2729 break;
2730 case IP_USER_FLOW:
2731 index = I40E_FILTER_PCTYPE_NONF_IPV4_OTHER;
2732 break;
2733 default:
2734 /* If we have stored a filter with a flow type not listed here
2735 * it is almost certainly a driver bug. WARN(), and then
2736 * assign the input_set as if all fields are enabled to avoid
2737 * reading unassigned memory.
2738 */
2739 WARN(1, "Missing input set index for flow_type %d\n",
2740 rule->flow_type);
2741 input_set = 0xFFFFFFFFFFFFFFFFULL;
2742 goto no_input_set;
2743 }
2744
2745 input_set = i40e_read_fd_input_set(pf, index);
2746
2747no_input_set:
2748 if (input_set & I40E_L3_SRC_MASK)
2749 fsp->m_u.tcp_ip4_spec.ip4src = htonl(0xFFFF);
2750
2751 if (input_set & I40E_L3_DST_MASK)
2752 fsp->m_u.tcp_ip4_spec.ip4dst = htonl(0xFFFF);
2753
2754 if (input_set & I40E_L4_SRC_MASK)
2755 fsp->m_u.tcp_ip4_spec.psrc = htons(0xFFFFFFFF);
2756
2757 if (input_set & I40E_L4_DST_MASK)
2758 fsp->m_u.tcp_ip4_spec.pdst = htons(0xFFFFFFFF);
Jacob Kellerfaa16e02017-03-07 15:05:22 -08002759
Anjali Singhai Jain387ce1a2014-05-22 06:32:23 +00002760 if (rule->dest_ctl == I40E_FILTER_PROGRAM_DESC_DEST_DROP_PACKET)
2761 fsp->ring_cookie = RX_CLS_FLOW_DISC;
2762 else
2763 fsp->ring_cookie = rule->q_index;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002764
Anjali Singhai Jaine7c8c602015-04-07 19:45:31 -04002765 if (rule->dest_vsi != pf->vsi[pf->lan_vsi]->id) {
2766 struct i40e_vsi *vsi;
2767
2768 vsi = i40e_find_vsi_from_id(pf, rule->dest_vsi);
2769 if (vsi && vsi->type == I40E_VSI_SRIOV) {
Jacob Keller43b15692017-02-06 14:38:48 -08002770 /* VFs are zero-indexed by the driver, but ethtool
2771 * expects them to be one-indexed, so add one here
2772 */
2773 u64 ring_vf = vsi->vf_id + 1;
2774
2775 ring_vf <<= ETHTOOL_RX_FLOW_SPEC_RING_VF_OFF;
2776 fsp->ring_cookie |= ring_vf;
Anjali Singhai Jaine7c8c602015-04-07 19:45:31 -04002777 }
2778 }
2779
Jacob Keller0e588de2017-02-06 14:38:50 -08002780 if (rule->flex_filter) {
2781 userdef.flex_filter = true;
2782 userdef.flex_word = be16_to_cpu(rule->flex_word);
2783 userdef.flex_offset = rule->flex_offset;
2784 }
2785
Jacob Kellere7930952017-02-06 14:38:49 -08002786 i40e_fill_rx_flow_user_data(fsp, &userdef);
2787
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002788 return 0;
2789}
2790
2791/**
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002792 * i40e_get_rxnfc - command to get RX flow classification rules
2793 * @netdev: network interface device structure
2794 * @cmd: ethtool rxnfc command
2795 *
2796 * Returns Success if the command is supported.
2797 **/
2798static int i40e_get_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd,
2799 u32 *rule_locs)
2800{
2801 struct i40e_netdev_priv *np = netdev_priv(netdev);
2802 struct i40e_vsi *vsi = np->vsi;
2803 struct i40e_pf *pf = vsi->back;
2804 int ret = -EOPNOTSUPP;
2805
2806 switch (cmd->cmd) {
2807 case ETHTOOL_GRXRINGS:
Amritha Nambiara9ce82f2017-09-07 04:00:22 -07002808 cmd->data = vsi->rss_size;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002809 ret = 0;
2810 break;
2811 case ETHTOOL_GRXFH:
2812 ret = i40e_get_rss_hash_opts(pf, cmd);
2813 break;
2814 case ETHTOOL_GRXCLSRLCNT:
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002815 cmd->rule_cnt = pf->fdir_pf_active_filters;
Anjali Singhai Jain082def12014-04-09 05:59:00 +00002816 /* report total rule count */
2817 cmd->data = i40e_get_fd_cnt_all(pf);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002818 ret = 0;
2819 break;
2820 case ETHTOOL_GRXCLSRULE:
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002821 ret = i40e_get_ethtool_fdir_entry(pf, cmd);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002822 break;
2823 case ETHTOOL_GRXCLSRLALL:
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002824 ret = i40e_get_ethtool_fdir_all(pf, cmd, rule_locs);
2825 break;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002826 default:
2827 break;
2828 }
2829
2830 return ret;
2831}
2832
2833/**
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002834 * i40e_get_rss_hash_bits - Read RSS Hash bits from register
2835 * @nfc: pointer to user request
2836 * @i_setc bits currently set
2837 *
2838 * Returns value of bits to be set per user request
2839 **/
2840static u64 i40e_get_rss_hash_bits(struct ethtool_rxnfc *nfc, u64 i_setc)
2841{
2842 u64 i_set = i_setc;
2843 u64 src_l3 = 0, dst_l3 = 0;
2844
2845 if (nfc->data & RXH_L4_B_0_1)
2846 i_set |= I40E_L4_SRC_MASK;
2847 else
2848 i_set &= ~I40E_L4_SRC_MASK;
2849 if (nfc->data & RXH_L4_B_2_3)
2850 i_set |= I40E_L4_DST_MASK;
2851 else
2852 i_set &= ~I40E_L4_DST_MASK;
2853
2854 if (nfc->flow_type == TCP_V6_FLOW || nfc->flow_type == UDP_V6_FLOW) {
2855 src_l3 = I40E_L3_V6_SRC_MASK;
2856 dst_l3 = I40E_L3_V6_DST_MASK;
2857 } else if (nfc->flow_type == TCP_V4_FLOW ||
2858 nfc->flow_type == UDP_V4_FLOW) {
2859 src_l3 = I40E_L3_SRC_MASK;
2860 dst_l3 = I40E_L3_DST_MASK;
2861 } else {
2862 /* Any other flow type are not supported here */
2863 return i_set;
2864 }
2865
2866 if (nfc->data & RXH_IP_SRC)
2867 i_set |= src_l3;
2868 else
2869 i_set &= ~src_l3;
2870 if (nfc->data & RXH_IP_DST)
2871 i_set |= dst_l3;
2872 else
2873 i_set &= ~dst_l3;
2874
2875 return i_set;
2876}
2877
2878/**
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002879 * i40e_set_rss_hash_opt - Enable/Disable flow types for RSS hash
2880 * @pf: pointer to the physical function struct
2881 * @cmd: ethtool rxnfc command
2882 *
2883 * Returns Success if the flow input set is supported.
2884 **/
2885static int i40e_set_rss_hash_opt(struct i40e_pf *pf, struct ethtool_rxnfc *nfc)
2886{
2887 struct i40e_hw *hw = &pf->hw;
Shannon Nelson272cdaf22016-02-17 16:12:21 -08002888 u64 hena = (u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(0)) |
2889 ((u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(1)) << 32);
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002890 u8 flow_pctype = 0;
2891 u64 i_set, i_setc;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002892
Carolyn Wyborny83d14c52017-06-07 05:43:07 -04002893 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
2894 dev_err(&pf->pdev->dev,
2895 "Change of RSS hash input set is not supported when MFP mode is enabled\n");
2896 return -EOPNOTSUPP;
2897 }
2898
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002899 /* RSS does not support anything other than hashing
2900 * to queues on src and dst IPs and ports
2901 */
2902 if (nfc->data & ~(RXH_IP_SRC | RXH_IP_DST |
2903 RXH_L4_B_0_1 | RXH_L4_B_2_3))
2904 return -EINVAL;
2905
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002906 switch (nfc->flow_type) {
2907 case TCP_V4_FLOW:
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002908 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV4_TCP;
Jacob Kellerd36e41d2017-06-23 04:24:46 -04002909 if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE)
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002910 hena |=
2911 BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002912 break;
2913 case TCP_V6_FLOW:
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002914 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV6_TCP;
Jacob Kellerd36e41d2017-06-23 04:24:46 -04002915 if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE)
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002916 hena |=
2917 BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK);
Jacob Kellerd36e41d2017-06-23 04:24:46 -04002918 if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE)
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002919 hena |=
2920 BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002921 break;
2922 case UDP_V4_FLOW:
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002923 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV4_UDP;
Jacob Kellerd36e41d2017-06-23 04:24:46 -04002924 if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE)
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002925 hena |=
2926 BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP) |
2927 BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP);
Anjali Singhai Jain3d0da5b2015-12-22 14:25:05 -08002928
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002929 hena |= BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV4);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002930 break;
2931 case UDP_V6_FLOW:
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002932 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV6_UDP;
Jacob Kellerd36e41d2017-06-23 04:24:46 -04002933 if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE)
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002934 hena |=
2935 BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP) |
2936 BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP);
Anjali Singhai Jain3d0da5b2015-12-22 14:25:05 -08002937
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002938 hena |= BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV6);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002939 break;
2940 case AH_ESP_V4_FLOW:
2941 case AH_V4_FLOW:
2942 case ESP_V4_FLOW:
2943 case SCTP_V4_FLOW:
2944 if ((nfc->data & RXH_L4_B_0_1) ||
2945 (nfc->data & RXH_L4_B_2_3))
2946 return -EINVAL;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002947 hena |= BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_OTHER);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002948 break;
2949 case AH_ESP_V6_FLOW:
2950 case AH_V6_FLOW:
2951 case ESP_V6_FLOW:
2952 case SCTP_V6_FLOW:
2953 if ((nfc->data & RXH_L4_B_0_1) ||
2954 (nfc->data & RXH_L4_B_2_3))
2955 return -EINVAL;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002956 hena |= BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_OTHER);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002957 break;
2958 case IPV4_FLOW:
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002959 hena |= BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_OTHER) |
2960 BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV4);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002961 break;
2962 case IPV6_FLOW:
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002963 hena |= BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_OTHER) |
2964 BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV6);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002965 break;
2966 default:
2967 return -EINVAL;
2968 }
2969
Carolyn Wybornyeb0dd6e2016-07-27 12:02:40 -07002970 if (flow_pctype) {
2971 i_setc = (u64)i40e_read_rx_ctl(hw, I40E_GLQF_HASH_INSET(0,
2972 flow_pctype)) |
2973 ((u64)i40e_read_rx_ctl(hw, I40E_GLQF_HASH_INSET(1,
2974 flow_pctype)) << 32);
2975 i_set = i40e_get_rss_hash_bits(nfc, i_setc);
2976 i40e_write_rx_ctl(hw, I40E_GLQF_HASH_INSET(0, flow_pctype),
2977 (u32)i_set);
2978 i40e_write_rx_ctl(hw, I40E_GLQF_HASH_INSET(1, flow_pctype),
2979 (u32)(i_set >> 32));
2980 hena |= BIT_ULL(flow_pctype);
2981 }
2982
Shannon Nelson272cdaf22016-02-17 16:12:21 -08002983 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), (u32)hena);
2984 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002985 i40e_flush(hw);
2986
2987 return 0;
2988}
2989
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002990/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002991 * i40e_update_ethtool_fdir_entry - Updates the fdir filter entry
2992 * @vsi: Pointer to the targeted VSI
2993 * @input: The filter to update or NULL to indicate deletion
2994 * @sw_idx: Software index to the filter
2995 * @cmd: The command to get or set Rx flow classification rules
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00002996 *
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002997 * This function updates (or deletes) a Flow Director entry from
2998 * the hlist of the corresponding PF
2999 *
3000 * Returns 0 on success
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003001 **/
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003002static int i40e_update_ethtool_fdir_entry(struct i40e_vsi *vsi,
3003 struct i40e_fdir_filter *input,
3004 u16 sw_idx,
3005 struct ethtool_rxnfc *cmd)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003006{
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003007 struct i40e_fdir_filter *rule, *parent;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003008 struct i40e_pf *pf = vsi->back;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003009 struct hlist_node *node2;
3010 int err = -EINVAL;
Jesse Brandeburgc35a1d72013-12-18 13:46:02 +00003011
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003012 parent = NULL;
3013 rule = NULL;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003014
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003015 hlist_for_each_entry_safe(rule, node2,
3016 &pf->fdir_filter_list, fdir_node) {
3017 /* hash found, or no matching entry */
3018 if (rule->fd_id >= sw_idx)
3019 break;
3020 parent = rule;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003021 }
3022
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003023 /* if there is an old rule occupying our place remove it */
3024 if (rule && (rule->fd_id == sw_idx)) {
Jacob Kellerc6da5252017-02-06 14:39:13 -08003025 /* Remove this rule, since we're either deleting it, or
3026 * replacing it.
3027 */
3028 err = i40e_add_del_fdir(vsi, rule, false);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003029 hlist_del(&rule->fdir_node);
3030 kfree(rule);
3031 pf->fdir_pf_active_filters--;
3032 }
3033
Jacob Kellerc6da5252017-02-06 14:39:13 -08003034 /* If we weren't given an input, this is a delete, so just return the
3035 * error code indicating if there was an entry at the requested slot
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003036 */
3037 if (!input)
3038 return err;
3039
Jacob Kellerc6da5252017-02-06 14:39:13 -08003040 /* Otherwise, install the new rule as requested */
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003041 INIT_HLIST_NODE(&input->fdir_node);
3042
3043 /* add filter to the list */
3044 if (parent)
Ken Helias1d023282014-08-06 16:09:16 -07003045 hlist_add_behind(&input->fdir_node, &parent->fdir_node);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003046 else
3047 hlist_add_head(&input->fdir_node,
3048 &pf->fdir_filter_list);
3049
3050 /* update counts */
3051 pf->fdir_pf_active_filters++;
3052
3053 return 0;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003054}
3055
3056/**
Jacob Keller0e588de2017-02-06 14:38:50 -08003057 * i40e_prune_flex_pit_list - Cleanup unused entries in FLX_PIT table
3058 * @pf: pointer to PF structure
3059 *
3060 * This function searches the list of filters and determines which FLX_PIT
3061 * entries are still required. It will prune any entries which are no longer
3062 * in use after the deletion.
3063 **/
3064static void i40e_prune_flex_pit_list(struct i40e_pf *pf)
3065{
3066 struct i40e_flex_pit *entry, *tmp;
3067 struct i40e_fdir_filter *rule;
3068
3069 /* First, we'll check the l3 table */
3070 list_for_each_entry_safe(entry, tmp, &pf->l3_flex_pit_list, list) {
3071 bool found = false;
3072
3073 hlist_for_each_entry(rule, &pf->fdir_filter_list, fdir_node) {
3074 if (rule->flow_type != IP_USER_FLOW)
3075 continue;
3076 if (rule->flex_filter &&
3077 rule->flex_offset == entry->src_offset) {
3078 found = true;
3079 break;
3080 }
3081 }
3082
3083 /* If we didn't find the filter, then we can prune this entry
3084 * from the list.
3085 */
3086 if (!found) {
3087 list_del(&entry->list);
3088 kfree(entry);
3089 }
3090 }
3091
3092 /* Followed by the L4 table */
3093 list_for_each_entry_safe(entry, tmp, &pf->l4_flex_pit_list, list) {
3094 bool found = false;
3095
3096 hlist_for_each_entry(rule, &pf->fdir_filter_list, fdir_node) {
3097 /* Skip this filter if it's L3, since we already
3098 * checked those in the above loop
3099 */
3100 if (rule->flow_type == IP_USER_FLOW)
3101 continue;
3102 if (rule->flex_filter &&
3103 rule->flex_offset == entry->src_offset) {
3104 found = true;
3105 break;
3106 }
3107 }
3108
3109 /* If we didn't find the filter, then we can prune this entry
3110 * from the list.
3111 */
3112 if (!found) {
3113 list_del(&entry->list);
3114 kfree(entry);
3115 }
3116 }
3117}
3118
3119/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003120 * i40e_del_fdir_entry - Deletes a Flow Director filter entry
3121 * @vsi: Pointer to the targeted VSI
3122 * @cmd: The command to get or set Rx flow classification rules
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003123 *
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003124 * The function removes a Flow Director filter entry from the
3125 * hlist of the corresponding PF
3126 *
3127 * Returns 0 on success
3128 */
3129static int i40e_del_fdir_entry(struct i40e_vsi *vsi,
3130 struct ethtool_rxnfc *cmd)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003131{
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003132 struct ethtool_rx_flow_spec *fsp =
3133 (struct ethtool_rx_flow_spec *)&cmd->fs;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003134 struct i40e_pf *pf = vsi->back;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003135 int ret = 0;
Jesse Brandeburgc35a1d72013-12-18 13:46:02 +00003136
Jacob Keller0da36b92017-04-19 09:25:55 -04003137 if (test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state) ||
3138 test_bit(__I40E_RESET_INTR_RECEIVED, pf->state))
Anjali Singhai Jain60793f4a2014-07-09 07:46:23 +00003139 return -EBUSY;
3140
Jacob Keller0da36b92017-04-19 09:25:55 -04003141 if (test_bit(__I40E_FD_FLUSH_REQUESTED, pf->state))
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00003142 return -EBUSY;
3143
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003144 ret = i40e_update_ethtool_fdir_entry(vsi, NULL, fsp->location, cmd);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003145
Jacob Keller0e588de2017-02-06 14:38:50 -08003146 i40e_prune_flex_pit_list(pf);
3147
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00003148 i40e_fdir_check_and_reenable(pf);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003149 return ret;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003150}
3151
3152/**
Jacob Keller0e588de2017-02-06 14:38:50 -08003153 * i40e_unused_pit_index - Find an unused PIT index for given list
3154 * @pf: the PF data structure
3155 *
3156 * Find the first unused flexible PIT index entry. We search both the L3 and
3157 * L4 flexible PIT lists so that the returned index is unique and unused by
3158 * either currently programmed L3 or L4 filters. We use a bit field as storage
3159 * to track which indexes are already used.
3160 **/
3161static u8 i40e_unused_pit_index(struct i40e_pf *pf)
3162{
3163 unsigned long available_index = 0xFF;
3164 struct i40e_flex_pit *entry;
3165
3166 /* We need to make sure that the new index isn't in use by either L3
3167 * or L4 filters so that IP_USER_FLOW filters can program both L3 and
3168 * L4 to use the same index.
3169 */
3170
3171 list_for_each_entry(entry, &pf->l4_flex_pit_list, list)
3172 clear_bit(entry->pit_index, &available_index);
3173
3174 list_for_each_entry(entry, &pf->l3_flex_pit_list, list)
3175 clear_bit(entry->pit_index, &available_index);
3176
3177 return find_first_bit(&available_index, 8);
3178}
3179
3180/**
3181 * i40e_find_flex_offset - Find an existing flex src_offset
3182 * @flex_pit_list: L3 or L4 flex PIT list
3183 * @src_offset: new src_offset to find
3184 *
3185 * Searches the flex_pit_list for an existing offset. If no offset is
3186 * currently programmed, then this will return an ERR_PTR if there is no space
3187 * to add a new offset, otherwise it returns NULL.
3188 **/
3189static
3190struct i40e_flex_pit *i40e_find_flex_offset(struct list_head *flex_pit_list,
3191 u16 src_offset)
3192{
3193 struct i40e_flex_pit *entry;
3194 int size = 0;
3195
3196 /* Search for the src_offset first. If we find a matching entry
3197 * already programmed, we can simply re-use it.
3198 */
3199 list_for_each_entry(entry, flex_pit_list, list) {
3200 size++;
3201 if (entry->src_offset == src_offset)
3202 return entry;
3203 }
3204
3205 /* If we haven't found an entry yet, then the provided src offset has
3206 * not yet been programmed. We will program the src offset later on,
3207 * but we need to indicate whether there is enough space to do so
3208 * here. We'll make use of ERR_PTR for this purpose.
3209 */
3210 if (size >= I40E_FLEX_PIT_TABLE_SIZE)
3211 return ERR_PTR(-ENOSPC);
3212
3213 return NULL;
3214}
3215
3216/**
3217 * i40e_add_flex_offset - Add src_offset to flex PIT table list
3218 * @flex_pit_list: L3 or L4 flex PIT list
3219 * @src_offset: new src_offset to add
3220 * @pit_index: the PIT index to program
3221 *
3222 * This function programs the new src_offset to the list. It is expected that
3223 * i40e_find_flex_offset has already been tried and returned NULL, indicating
3224 * that this offset is not programmed, and that the list has enough space to
3225 * store another offset.
3226 *
3227 * Returns 0 on success, and negative value on error.
3228 **/
3229static int i40e_add_flex_offset(struct list_head *flex_pit_list,
3230 u16 src_offset,
3231 u8 pit_index)
3232{
3233 struct i40e_flex_pit *new_pit, *entry;
3234
3235 new_pit = kzalloc(sizeof(*entry), GFP_KERNEL);
3236 if (!new_pit)
3237 return -ENOMEM;
3238
3239 new_pit->src_offset = src_offset;
3240 new_pit->pit_index = pit_index;
3241
3242 /* We need to insert this item such that the list is sorted by
3243 * src_offset in ascending order.
3244 */
3245 list_for_each_entry(entry, flex_pit_list, list) {
3246 if (new_pit->src_offset < entry->src_offset) {
3247 list_add_tail(&new_pit->list, &entry->list);
3248 return 0;
3249 }
3250
3251 /* If we found an entry with our offset already programmed we
3252 * can simply return here, after freeing the memory. However,
3253 * if the pit_index does not match we need to report an error.
3254 */
3255 if (new_pit->src_offset == entry->src_offset) {
3256 int err = 0;
3257
3258 /* If the PIT index is not the same we can't re-use
3259 * the entry, so we must report an error.
3260 */
3261 if (new_pit->pit_index != entry->pit_index)
3262 err = -EINVAL;
3263
3264 kfree(new_pit);
3265 return err;
3266 }
3267 }
3268
3269 /* If we reached here, then we haven't yet added the item. This means
3270 * that we should add the item at the end of the list.
3271 */
3272 list_add_tail(&new_pit->list, flex_pit_list);
3273 return 0;
3274}
3275
3276/**
3277 * __i40e_reprogram_flex_pit - Re-program specific FLX_PIT table
3278 * @pf: Pointer to the PF structure
3279 * @flex_pit_list: list of flexible src offsets in use
3280 * #flex_pit_start: index to first entry for this section of the table
3281 *
3282 * In order to handle flexible data, the hardware uses a table of values
3283 * called the FLX_PIT table. This table is used to indicate which sections of
3284 * the input correspond to what PIT index values. Unfortunately, hardware is
3285 * very restrictive about programming this table. Entries must be ordered by
3286 * src_offset in ascending order, without duplicates. Additionally, unused
3287 * entries must be set to the unused index value, and must have valid size and
3288 * length according to the src_offset ordering.
3289 *
3290 * This function will reprogram the FLX_PIT register from a book-keeping
3291 * structure that we guarantee is already ordered correctly, and has no more
3292 * than 3 entries.
3293 *
3294 * To make things easier, we only support flexible values of one word length,
3295 * rather than allowing variable length flexible values.
3296 **/
3297static void __i40e_reprogram_flex_pit(struct i40e_pf *pf,
3298 struct list_head *flex_pit_list,
3299 int flex_pit_start)
3300{
3301 struct i40e_flex_pit *entry = NULL;
3302 u16 last_offset = 0;
3303 int i = 0, j = 0;
3304
3305 /* First, loop over the list of flex PIT entries, and reprogram the
3306 * registers.
3307 */
3308 list_for_each_entry(entry, flex_pit_list, list) {
3309 /* We have to be careful when programming values for the
3310 * largest SRC_OFFSET value. It is possible that adding
3311 * additional empty values at the end would overflow the space
3312 * for the SRC_OFFSET in the FLX_PIT register. To avoid this,
3313 * we check here and add the empty values prior to adding the
3314 * largest value.
3315 *
3316 * To determine this, we will use a loop from i+1 to 3, which
3317 * will determine whether the unused entries would have valid
3318 * SRC_OFFSET. Note that there cannot be extra entries past
3319 * this value, because the only valid values would have been
3320 * larger than I40E_MAX_FLEX_SRC_OFFSET, and thus would not
3321 * have been added to the list in the first place.
3322 */
3323 for (j = i + 1; j < 3; j++) {
3324 u16 offset = entry->src_offset + j;
3325 int index = flex_pit_start + i;
3326 u32 value = I40E_FLEX_PREP_VAL(I40E_FLEX_DEST_UNUSED,
3327 1,
3328 offset - 3);
3329
3330 if (offset > I40E_MAX_FLEX_SRC_OFFSET) {
3331 i40e_write_rx_ctl(&pf->hw,
3332 I40E_PRTQF_FLX_PIT(index),
3333 value);
3334 i++;
3335 }
3336 }
3337
3338 /* Now, we can program the actual value into the table */
3339 i40e_write_rx_ctl(&pf->hw,
3340 I40E_PRTQF_FLX_PIT(flex_pit_start + i),
3341 I40E_FLEX_PREP_VAL(entry->pit_index + 50,
3342 1,
3343 entry->src_offset));
3344 i++;
3345 }
3346
3347 /* In order to program the last entries in the table, we need to
3348 * determine the valid offset. If the list is empty, we'll just start
3349 * with 0. Otherwise, we'll start with the last item offset and add 1.
3350 * This ensures that all entries have valid sizes. If we don't do this
3351 * correctly, the hardware will disable flexible field parsing.
3352 */
3353 if (!list_empty(flex_pit_list))
3354 last_offset = list_prev_entry(entry, list)->src_offset + 1;
3355
3356 for (; i < 3; i++, last_offset++) {
3357 i40e_write_rx_ctl(&pf->hw,
3358 I40E_PRTQF_FLX_PIT(flex_pit_start + i),
3359 I40E_FLEX_PREP_VAL(I40E_FLEX_DEST_UNUSED,
3360 1,
3361 last_offset));
3362 }
3363}
3364
3365/**
3366 * i40e_reprogram_flex_pit - Reprogram all FLX_PIT tables after input set change
3367 * @pf: pointer to the PF structure
3368 *
3369 * This function reprograms both the L3 and L4 FLX_PIT tables. See the
3370 * internal helper function for implementation details.
3371 **/
3372static void i40e_reprogram_flex_pit(struct i40e_pf *pf)
3373{
3374 __i40e_reprogram_flex_pit(pf, &pf->l3_flex_pit_list,
3375 I40E_FLEX_PIT_IDX_START_L3);
3376
3377 __i40e_reprogram_flex_pit(pf, &pf->l4_flex_pit_list,
3378 I40E_FLEX_PIT_IDX_START_L4);
3379
3380 /* We also need to program the L3 and L4 GLQF ORT register */
3381 i40e_write_rx_ctl(&pf->hw,
3382 I40E_GLQF_ORT(I40E_L3_GLQF_ORT_IDX),
3383 I40E_ORT_PREP_VAL(I40E_FLEX_PIT_IDX_START_L3,
3384 3, 1));
3385
3386 i40e_write_rx_ctl(&pf->hw,
3387 I40E_GLQF_ORT(I40E_L4_GLQF_ORT_IDX),
3388 I40E_ORT_PREP_VAL(I40E_FLEX_PIT_IDX_START_L4,
3389 3, 1));
3390}
3391
3392/**
Jacob Keller9229e992017-02-06 14:38:47 -08003393 * i40e_flow_str - Converts a flow_type into a human readable string
3394 * @flow_type: the flow type from a flow specification
3395 *
3396 * Currently only flow types we support are included here, and the string
3397 * value attempts to match what ethtool would use to configure this flow type.
3398 **/
3399static const char *i40e_flow_str(struct ethtool_rx_flow_spec *fsp)
3400{
3401 switch (fsp->flow_type & ~FLOW_EXT) {
3402 case TCP_V4_FLOW:
3403 return "tcp4";
3404 case UDP_V4_FLOW:
3405 return "udp4";
3406 case SCTP_V4_FLOW:
3407 return "sctp4";
3408 case IP_USER_FLOW:
3409 return "ip4";
3410 default:
3411 return "unknown";
3412 }
3413}
3414
3415/**
Jacob Keller0e588de2017-02-06 14:38:50 -08003416 * i40e_pit_index_to_mask - Return the FLEX mask for a given PIT index
3417 * @pit_index: PIT index to convert
3418 *
3419 * Returns the mask for a given PIT index. Will return 0 if the pit_index is
3420 * of range.
3421 **/
3422static u64 i40e_pit_index_to_mask(int pit_index)
3423{
3424 switch (pit_index) {
3425 case 0:
3426 return I40E_FLEX_50_MASK;
3427 case 1:
3428 return I40E_FLEX_51_MASK;
3429 case 2:
3430 return I40E_FLEX_52_MASK;
3431 case 3:
3432 return I40E_FLEX_53_MASK;
3433 case 4:
3434 return I40E_FLEX_54_MASK;
3435 case 5:
3436 return I40E_FLEX_55_MASK;
3437 case 6:
3438 return I40E_FLEX_56_MASK;
3439 case 7:
3440 return I40E_FLEX_57_MASK;
3441 default:
3442 return 0;
3443 }
3444}
3445
3446/**
Jacob Keller9229e992017-02-06 14:38:47 -08003447 * i40e_print_input_set - Show changes between two input sets
3448 * @vsi: the vsi being configured
3449 * @old: the old input set
3450 * @new: the new input set
3451 *
3452 * Print the difference between old and new input sets by showing which series
3453 * of words are toggled on or off. Only displays the bits we actually support
3454 * changing.
3455 **/
3456static void i40e_print_input_set(struct i40e_vsi *vsi, u64 old, u64 new)
3457{
3458 struct i40e_pf *pf = vsi->back;
3459 bool old_value, new_value;
Jacob Keller0e588de2017-02-06 14:38:50 -08003460 int i;
Jacob Keller9229e992017-02-06 14:38:47 -08003461
3462 old_value = !!(old & I40E_L3_SRC_MASK);
3463 new_value = !!(new & I40E_L3_SRC_MASK);
3464 if (old_value != new_value)
3465 netif_info(pf, drv, vsi->netdev, "L3 source address: %s -> %s\n",
3466 old_value ? "ON" : "OFF",
3467 new_value ? "ON" : "OFF");
3468
3469 old_value = !!(old & I40E_L3_DST_MASK);
3470 new_value = !!(new & I40E_L3_DST_MASK);
3471 if (old_value != new_value)
3472 netif_info(pf, drv, vsi->netdev, "L3 destination address: %s -> %s\n",
3473 old_value ? "ON" : "OFF",
3474 new_value ? "ON" : "OFF");
3475
3476 old_value = !!(old & I40E_L4_SRC_MASK);
3477 new_value = !!(new & I40E_L4_SRC_MASK);
3478 if (old_value != new_value)
3479 netif_info(pf, drv, vsi->netdev, "L4 source port: %s -> %s\n",
3480 old_value ? "ON" : "OFF",
3481 new_value ? "ON" : "OFF");
3482
3483 old_value = !!(old & I40E_L4_DST_MASK);
3484 new_value = !!(new & I40E_L4_DST_MASK);
3485 if (old_value != new_value)
3486 netif_info(pf, drv, vsi->netdev, "L4 destination port: %s -> %s\n",
3487 old_value ? "ON" : "OFF",
3488 new_value ? "ON" : "OFF");
3489
3490 old_value = !!(old & I40E_VERIFY_TAG_MASK);
3491 new_value = !!(new & I40E_VERIFY_TAG_MASK);
3492 if (old_value != new_value)
3493 netif_info(pf, drv, vsi->netdev, "SCTP verification tag: %s -> %s\n",
3494 old_value ? "ON" : "OFF",
3495 new_value ? "ON" : "OFF");
3496
Jacob Keller0e588de2017-02-06 14:38:50 -08003497 /* Show change of flexible filter entries */
3498 for (i = 0; i < I40E_FLEX_INDEX_ENTRIES; i++) {
3499 u64 flex_mask = i40e_pit_index_to_mask(i);
3500
3501 old_value = !!(old & flex_mask);
3502 new_value = !!(new & flex_mask);
3503 if (old_value != new_value)
3504 netif_info(pf, drv, vsi->netdev, "FLEX index %d: %s -> %s\n",
3505 i,
3506 old_value ? "ON" : "OFF",
3507 new_value ? "ON" : "OFF");
3508 }
3509
Jacob Keller9229e992017-02-06 14:38:47 -08003510 netif_info(pf, drv, vsi->netdev, " Current input set: %0llx\n",
3511 old);
3512 netif_info(pf, drv, vsi->netdev, "Requested input set: %0llx\n",
3513 new);
3514}
3515
3516/**
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003517 * i40e_check_fdir_input_set - Check that a given rx_flow_spec mask is valid
Jacob Keller36777d92017-03-07 15:05:23 -08003518 * @vsi: pointer to the targeted VSI
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003519 * @fsp: pointer to Rx flow specification
Jacob Keller0e588de2017-02-06 14:38:50 -08003520 * @userdef: userdefined data from flow specification
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003521 *
Jacob Keller9229e992017-02-06 14:38:47 -08003522 * Ensures that a given ethtool_rx_flow_spec has a valid mask. Some support
3523 * for partial matches exists with a few limitations. First, hardware only
3524 * supports masking by word boundary (2 bytes) and not per individual bit.
3525 * Second, hardware is limited to using one mask for a flow type and cannot
3526 * use a separate mask for each filter.
3527 *
3528 * To support these limitations, if we already have a configured filter for
3529 * the specified type, this function enforces that new filters of the type
3530 * match the configured input set. Otherwise, if we do not have a filter of
3531 * the specified type, we allow the input set to be updated to match the
3532 * desired filter.
3533 *
3534 * To help ensure that administrators understand why filters weren't displayed
3535 * as supported, we print a diagnostic message displaying how the input set
3536 * would change and warning to delete the preexisting filters if required.
3537 *
3538 * Returns 0 on successful input set match, and a negative return code on
3539 * failure.
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003540 **/
Jacob Keller36777d92017-03-07 15:05:23 -08003541static int i40e_check_fdir_input_set(struct i40e_vsi *vsi,
Jacob Keller0e588de2017-02-06 14:38:50 -08003542 struct ethtool_rx_flow_spec *fsp,
3543 struct i40e_rx_flow_userdef *userdef)
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003544{
Jacob Keller36777d92017-03-07 15:05:23 -08003545 struct i40e_pf *pf = vsi->back;
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003546 struct ethtool_tcpip4_spec *tcp_ip4_spec;
3547 struct ethtool_usrip4_spec *usr_ip4_spec;
Jacob Keller36777d92017-03-07 15:05:23 -08003548 u64 current_mask, new_mask;
Jacob Keller0e588de2017-02-06 14:38:50 -08003549 bool new_flex_offset = false;
3550 bool flex_l3 = false;
Jacob Keller9229e992017-02-06 14:38:47 -08003551 u16 *fdir_filter_count;
Jacob Keller0e588de2017-02-06 14:38:50 -08003552 u16 index, src_offset = 0;
3553 u8 pit_index = 0;
3554 int err;
Jacob Keller36777d92017-03-07 15:05:23 -08003555
3556 switch (fsp->flow_type & ~FLOW_EXT) {
Jacob Kellerf223c872017-02-06 14:38:51 -08003557 case SCTP_V4_FLOW:
3558 index = I40E_FILTER_PCTYPE_NONF_IPV4_SCTP;
3559 fdir_filter_count = &pf->fd_sctp4_filter_cnt;
3560 break;
Jacob Keller36777d92017-03-07 15:05:23 -08003561 case TCP_V4_FLOW:
3562 index = I40E_FILTER_PCTYPE_NONF_IPV4_TCP;
Jacob Keller9229e992017-02-06 14:38:47 -08003563 fdir_filter_count = &pf->fd_tcp4_filter_cnt;
Jacob Keller36777d92017-03-07 15:05:23 -08003564 break;
3565 case UDP_V4_FLOW:
3566 index = I40E_FILTER_PCTYPE_NONF_IPV4_UDP;
Jacob Keller9229e992017-02-06 14:38:47 -08003567 fdir_filter_count = &pf->fd_udp4_filter_cnt;
Jacob Keller36777d92017-03-07 15:05:23 -08003568 break;
3569 case IP_USER_FLOW:
3570 index = I40E_FILTER_PCTYPE_NONF_IPV4_OTHER;
Jacob Keller9229e992017-02-06 14:38:47 -08003571 fdir_filter_count = &pf->fd_ip4_filter_cnt;
Jacob Keller0e588de2017-02-06 14:38:50 -08003572 flex_l3 = true;
Jacob Keller36777d92017-03-07 15:05:23 -08003573 break;
3574 default:
3575 return -EOPNOTSUPP;
3576 }
3577
3578 /* Read the current input set from register memory. */
3579 current_mask = i40e_read_fd_input_set(pf, index);
3580 new_mask = current_mask;
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003581
Jacob Keller9229e992017-02-06 14:38:47 -08003582 /* Determine, if any, the required changes to the input set in order
3583 * to support the provided mask.
3584 *
3585 * Hardware only supports masking at word (2 byte) granularity and does
3586 * not support full bitwise masking. This implementation simplifies
3587 * even further and only supports fully enabled or fully disabled
3588 * masks for each field, even though we could split the ip4src and
3589 * ip4dst fields.
3590 */
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003591 switch (fsp->flow_type & ~FLOW_EXT) {
Jacob Kellerf223c872017-02-06 14:38:51 -08003592 case SCTP_V4_FLOW:
3593 new_mask &= ~I40E_VERIFY_TAG_MASK;
3594 /* Fall through */
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003595 case TCP_V4_FLOW:
3596 case UDP_V4_FLOW:
3597 tcp_ip4_spec = &fsp->m_u.tcp_ip4_spec;
3598
3599 /* IPv4 source address */
Jacob Keller36777d92017-03-07 15:05:23 -08003600 if (tcp_ip4_spec->ip4src == htonl(0xFFFFFFFF))
3601 new_mask |= I40E_L3_SRC_MASK;
3602 else if (!tcp_ip4_spec->ip4src)
3603 new_mask &= ~I40E_L3_SRC_MASK;
3604 else
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003605 return -EOPNOTSUPP;
3606
3607 /* IPv4 destination address */
Jacob Keller36777d92017-03-07 15:05:23 -08003608 if (tcp_ip4_spec->ip4dst == htonl(0xFFFFFFFF))
3609 new_mask |= I40E_L3_DST_MASK;
3610 else if (!tcp_ip4_spec->ip4dst)
3611 new_mask &= ~I40E_L3_DST_MASK;
3612 else
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003613 return -EOPNOTSUPP;
3614
3615 /* L4 source port */
Jacob Keller36777d92017-03-07 15:05:23 -08003616 if (tcp_ip4_spec->psrc == htons(0xFFFF))
3617 new_mask |= I40E_L4_SRC_MASK;
3618 else if (!tcp_ip4_spec->psrc)
3619 new_mask &= ~I40E_L4_SRC_MASK;
3620 else
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003621 return -EOPNOTSUPP;
3622
3623 /* L4 destination port */
Jacob Keller36777d92017-03-07 15:05:23 -08003624 if (tcp_ip4_spec->pdst == htons(0xFFFF))
3625 new_mask |= I40E_L4_DST_MASK;
3626 else if (!tcp_ip4_spec->pdst)
3627 new_mask &= ~I40E_L4_DST_MASK;
3628 else
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003629 return -EOPNOTSUPP;
3630
3631 /* Filtering on Type of Service is not supported. */
3632 if (tcp_ip4_spec->tos)
3633 return -EOPNOTSUPP;
3634
3635 break;
3636 case IP_USER_FLOW:
3637 usr_ip4_spec = &fsp->m_u.usr_ip4_spec;
3638
3639 /* IPv4 source address */
Jacob Keller36777d92017-03-07 15:05:23 -08003640 if (usr_ip4_spec->ip4src == htonl(0xFFFFFFFF))
3641 new_mask |= I40E_L3_SRC_MASK;
3642 else if (!usr_ip4_spec->ip4src)
3643 new_mask &= ~I40E_L3_SRC_MASK;
3644 else
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003645 return -EOPNOTSUPP;
3646
3647 /* IPv4 destination address */
Jacob Keller36777d92017-03-07 15:05:23 -08003648 if (usr_ip4_spec->ip4dst == htonl(0xFFFFFFFF))
3649 new_mask |= I40E_L3_DST_MASK;
3650 else if (!usr_ip4_spec->ip4dst)
3651 new_mask &= ~I40E_L3_DST_MASK;
3652 else
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003653 return -EOPNOTSUPP;
3654
3655 /* First 4 bytes of L4 header */
Jacob Keller36777d92017-03-07 15:05:23 -08003656 if (usr_ip4_spec->l4_4_bytes == htonl(0xFFFFFFFF))
3657 new_mask |= I40E_L4_SRC_MASK | I40E_L4_DST_MASK;
3658 else if (!usr_ip4_spec->l4_4_bytes)
3659 new_mask &= ~(I40E_L4_SRC_MASK | I40E_L4_DST_MASK);
3660 else
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003661 return -EOPNOTSUPP;
3662
3663 /* Filtering on Type of Service is not supported. */
3664 if (usr_ip4_spec->tos)
3665 return -EOPNOTSUPP;
3666
Jacob Keller0e588de2017-02-06 14:38:50 -08003667 /* Filtering on IP version is not supported */
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003668 if (usr_ip4_spec->ip_ver)
3669 return -EINVAL;
3670
Jacob Keller0e588de2017-02-06 14:38:50 -08003671 /* Filtering on L4 protocol is not supported */
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003672 if (usr_ip4_spec->proto)
3673 return -EINVAL;
Jacob Keller36777d92017-03-07 15:05:23 -08003674
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003675 break;
3676 default:
3677 return -EOPNOTSUPP;
3678 }
3679
Jacob Keller0e588de2017-02-06 14:38:50 -08003680 /* First, clear all flexible filter entries */
3681 new_mask &= ~I40E_FLEX_INPUT_MASK;
3682
3683 /* If we have a flexible filter, try to add this offset to the correct
3684 * flexible filter PIT list. Once finished, we can update the mask.
3685 * If the src_offset changed, we will get a new mask value which will
3686 * trigger an input set change.
Jacob Keller9229e992017-02-06 14:38:47 -08003687 */
Jacob Keller0e588de2017-02-06 14:38:50 -08003688 if (userdef->flex_filter) {
3689 struct i40e_flex_pit *l3_flex_pit = NULL, *flex_pit = NULL;
3690
3691 /* Flexible offset must be even, since the flexible payload
3692 * must be aligned on 2-byte boundary.
3693 */
3694 if (userdef->flex_offset & 0x1) {
3695 dev_warn(&pf->pdev->dev,
3696 "Flexible data offset must be 2-byte aligned\n");
3697 return -EINVAL;
3698 }
3699
3700 src_offset = userdef->flex_offset >> 1;
3701
3702 /* FLX_PIT source offset value is only so large */
3703 if (src_offset > I40E_MAX_FLEX_SRC_OFFSET) {
3704 dev_warn(&pf->pdev->dev,
3705 "Flexible data must reside within first 64 bytes of the packet payload\n");
3706 return -EINVAL;
3707 }
3708
3709 /* See if this offset has already been programmed. If we get
3710 * an ERR_PTR, then the filter is not safe to add. Otherwise,
3711 * if we get a NULL pointer, this means we will need to add
3712 * the offset.
3713 */
3714 flex_pit = i40e_find_flex_offset(&pf->l4_flex_pit_list,
3715 src_offset);
3716 if (IS_ERR(flex_pit))
3717 return PTR_ERR(flex_pit);
3718
3719 /* IP_USER_FLOW filters match both L4 (ICMP) and L3 (unknown)
3720 * packet types, and thus we need to program both L3 and L4
3721 * flexible values. These must have identical flexible index,
3722 * as otherwise we can't correctly program the input set. So
3723 * we'll find both an L3 and L4 index and make sure they are
3724 * the same.
3725 */
3726 if (flex_l3) {
3727 l3_flex_pit =
3728 i40e_find_flex_offset(&pf->l3_flex_pit_list,
3729 src_offset);
3730 if (IS_ERR(l3_flex_pit))
3731 return PTR_ERR(l3_flex_pit);
3732
3733 if (flex_pit) {
3734 /* If we already had a matching L4 entry, we
3735 * need to make sure that the L3 entry we
3736 * obtained uses the same index.
3737 */
3738 if (l3_flex_pit) {
3739 if (l3_flex_pit->pit_index !=
3740 flex_pit->pit_index) {
3741 return -EINVAL;
3742 }
3743 } else {
3744 new_flex_offset = true;
3745 }
3746 } else {
3747 flex_pit = l3_flex_pit;
3748 }
3749 }
3750
3751 /* If we didn't find an existing flex offset, we need to
3752 * program a new one. However, we don't immediately program it
3753 * here because we will wait to program until after we check
3754 * that it is safe to change the input set.
3755 */
3756 if (!flex_pit) {
3757 new_flex_offset = true;
3758 pit_index = i40e_unused_pit_index(pf);
3759 } else {
3760 pit_index = flex_pit->pit_index;
3761 }
3762
3763 /* Update the mask with the new offset */
3764 new_mask |= i40e_pit_index_to_mask(pit_index);
3765 }
3766
3767 /* If the mask and flexible filter offsets for this filter match the
3768 * currently programmed values we don't need any input set change, so
3769 * this filter is safe to install.
3770 */
3771 if (new_mask == current_mask && !new_flex_offset)
Jacob Keller9229e992017-02-06 14:38:47 -08003772 return 0;
3773
3774 netif_info(pf, drv, vsi->netdev, "Input set change requested for %s flows:\n",
3775 i40e_flow_str(fsp));
3776 i40e_print_input_set(vsi, current_mask, new_mask);
Jacob Keller0e588de2017-02-06 14:38:50 -08003777 if (new_flex_offset) {
3778 netif_info(pf, drv, vsi->netdev, "FLEX index %d: Offset -> %d",
3779 pit_index, src_offset);
3780 }
Jacob Keller9229e992017-02-06 14:38:47 -08003781
3782 /* Hardware input sets are global across multiple ports, so even the
3783 * main port cannot change them when in MFP mode as this would impact
3784 * any filters on the other ports.
3785 */
3786 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
3787 netif_err(pf, drv, vsi->netdev, "Cannot change Flow Director input sets while MFP is enabled\n");
Jacob Keller36777d92017-03-07 15:05:23 -08003788 return -EOPNOTSUPP;
Jacob Keller9229e992017-02-06 14:38:47 -08003789 }
3790
3791 /* This filter requires us to update the input set. However, hardware
3792 * only supports one input set per flow type, and does not support
3793 * separate masks for each filter. This means that we can only support
3794 * a single mask for all filters of a specific type.
3795 *
3796 * If we have preexisting filters, they obviously depend on the
3797 * current programmed input set. Display a diagnostic message in this
3798 * case explaining why the filter could not be accepted.
3799 */
3800 if (*fdir_filter_count) {
3801 netif_err(pf, drv, vsi->netdev, "Cannot change input set for %s flows until %d preexisting filters are removed\n",
3802 i40e_flow_str(fsp),
3803 *fdir_filter_count);
3804 return -EOPNOTSUPP;
3805 }
3806
3807 i40e_write_fd_input_set(pf, index, new_mask);
Jacob Keller36777d92017-03-07 15:05:23 -08003808
Jacob Keller0e588de2017-02-06 14:38:50 -08003809 /* Add the new offset and update table, if necessary */
3810 if (new_flex_offset) {
3811 err = i40e_add_flex_offset(&pf->l4_flex_pit_list, src_offset,
3812 pit_index);
3813 if (err)
3814 return err;
3815
3816 if (flex_l3) {
3817 err = i40e_add_flex_offset(&pf->l3_flex_pit_list,
3818 src_offset,
3819 pit_index);
3820 if (err)
3821 return err;
3822 }
3823
3824 i40e_reprogram_flex_pit(pf);
3825 }
3826
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003827 return 0;
3828}
3829
3830/**
Anjali Singhai Jain1eaa3842014-03-06 08:59:59 +00003831 * i40e_add_fdir_ethtool - Add/Remove Flow Director filters
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003832 * @vsi: pointer to the targeted VSI
3833 * @cmd: command to get or set RX flow classification rules
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003834 *
Anjali Singhai Jain1eaa3842014-03-06 08:59:59 +00003835 * Add Flow Director filters for a specific flow spec based on their
3836 * protocol. Returns 0 if the filters were successfully added.
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003837 **/
Anjali Singhai Jain1eaa3842014-03-06 08:59:59 +00003838static int i40e_add_fdir_ethtool(struct i40e_vsi *vsi,
3839 struct ethtool_rxnfc *cmd)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003840{
Jacob Kellere7930952017-02-06 14:38:49 -08003841 struct i40e_rx_flow_userdef userdef;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003842 struct ethtool_rx_flow_spec *fsp;
3843 struct i40e_fdir_filter *input;
Jacob Keller43b15692017-02-06 14:38:48 -08003844 u16 dest_vsi = 0, q_index = 0;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003845 struct i40e_pf *pf;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003846 int ret = -EINVAL;
Jacob Keller43b15692017-02-06 14:38:48 -08003847 u8 dest_ctl;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003848
3849 if (!vsi)
3850 return -EINVAL;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003851 pf = vsi->back;
3852
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00003853 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
3854 return -EOPNOTSUPP;
3855
Jacob Keller47994c12017-04-19 09:25:57 -04003856 if (pf->flags & I40E_FLAG_FD_SB_AUTO_DISABLED)
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00003857 return -ENOSPC;
3858
Jacob Keller0da36b92017-04-19 09:25:55 -04003859 if (test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state) ||
3860 test_bit(__I40E_RESET_INTR_RECEIVED, pf->state))
Anjali Singhai Jain60793f4a2014-07-09 07:46:23 +00003861 return -EBUSY;
3862
Jacob Keller0da36b92017-04-19 09:25:55 -04003863 if (test_bit(__I40E_FD_FLUSH_REQUESTED, pf->state))
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00003864 return -EBUSY;
3865
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00003866 fsp = (struct ethtool_rx_flow_spec *)&cmd->fs;
3867
Jacob Kellere7930952017-02-06 14:38:49 -08003868 /* Parse the user-defined field */
3869 if (i40e_parse_rx_flow_user_data(fsp, &userdef))
3870 return -EINVAL;
3871
Jacob Keller1ec8dea2017-02-06 14:39:12 -08003872 /* Extended MAC field is not supported */
3873 if (fsp->flow_type & FLOW_MAC_EXT)
3874 return -EINVAL;
3875
Jacob Keller0e588de2017-02-06 14:38:50 -08003876 ret = i40e_check_fdir_input_set(vsi, fsp, &userdef);
Jacob Kellerfaa16e02017-03-07 15:05:22 -08003877 if (ret)
3878 return ret;
3879
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003880 if (fsp->location >= (pf->hw.func_caps.fd_filters_best_effort +
3881 pf->hw.func_caps.fd_filters_guaranteed)) {
3882 return -EINVAL;
3883 }
3884
Jacob Keller43b15692017-02-06 14:38:48 -08003885 /* ring_cookie is either the drop index, or is a mask of the queue
3886 * index and VF id we wish to target.
3887 */
3888 if (fsp->ring_cookie == RX_CLS_FLOW_DISC) {
3889 dest_ctl = I40E_FILTER_PROGRAM_DESC_DEST_DROP_PACKET;
3890 } else {
3891 u32 ring = ethtool_get_flow_spec_ring(fsp->ring_cookie);
3892 u8 vf = ethtool_get_flow_spec_ring_vf(fsp->ring_cookie);
3893
3894 if (!vf) {
3895 if (ring >= vsi->num_queue_pairs)
3896 return -EINVAL;
3897 dest_vsi = vsi->id;
3898 } else {
3899 /* VFs are zero-indexed, so we subtract one here */
3900 vf--;
3901
3902 if (vf >= pf->num_alloc_vfs)
3903 return -EINVAL;
3904 if (ring >= pf->vf[vf].num_queue_pairs)
3905 return -EINVAL;
3906 dest_vsi = pf->vf[vf].lan_vsi_id;
3907 }
3908 dest_ctl = I40E_FILTER_PROGRAM_DESC_DEST_DIRECT_PACKET_QINDEX;
3909 q_index = ring;
3910 }
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003911
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003912 input = kzalloc(sizeof(*input), GFP_KERNEL);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003913
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003914 if (!input)
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003915 return -ENOMEM;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003916
3917 input->fd_id = fsp->location;
Jacob Keller43b15692017-02-06 14:38:48 -08003918 input->q_index = q_index;
3919 input->dest_vsi = dest_vsi;
3920 input->dest_ctl = dest_ctl;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003921 input->fd_status = I40E_FILTER_PROGRAM_DESC_FD_STATUS_FD_ID;
Anjali Singhai Jain0bf4b1b2015-04-16 20:06:02 -04003922 input->cnt_index = I40E_FD_SB_STAT_IDX(pf->hw.pf_id);
Jacob Keller43b15692017-02-06 14:38:48 -08003923 input->dst_ip = fsp->h_u.tcp_ip4_spec.ip4src;
3924 input->src_ip = fsp->h_u.tcp_ip4_spec.ip4dst;
Jacob Kellere7930952017-02-06 14:38:49 -08003925 input->flow_type = fsp->flow_type & ~FLOW_EXT;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003926 input->ip4_proto = fsp->h_u.usr_ip4_spec.proto;
Anjali Singhai Jain04b73bd2014-05-22 06:31:41 +00003927
3928 /* Reverse the src and dest notion, since the HW expects them to be from
3929 * Tx perspective where as the input from user is from Rx filter view.
3930 */
3931 input->dst_port = fsp->h_u.tcp_ip4_spec.psrc;
3932 input->src_port = fsp->h_u.tcp_ip4_spec.pdst;
Jacob Keller8ce43dc2017-02-06 14:38:39 -08003933 input->dst_ip = fsp->h_u.tcp_ip4_spec.ip4src;
3934 input->src_ip = fsp->h_u.tcp_ip4_spec.ip4dst;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003935
Jacob Keller0e588de2017-02-06 14:38:50 -08003936 if (userdef.flex_filter) {
3937 input->flex_filter = true;
3938 input->flex_word = cpu_to_be16(userdef.flex_word);
3939 input->flex_offset = userdef.flex_offset;
3940 }
3941
Anjali Singhai Jain1eaa3842014-03-06 08:59:59 +00003942 ret = i40e_add_del_fdir(vsi, input, true);
3943 if (ret)
Jacob Keller01016da2017-02-06 14:38:40 -08003944 goto free_input;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003945
Jacob Keller01016da2017-02-06 14:38:40 -08003946 /* Add the input filter to the fdir_input_list, possibly replacing
3947 * a previous filter. Do not free the input structure after adding it
3948 * to the list as this would cause a use-after-free bug.
3949 */
3950 i40e_update_ethtool_fdir_entry(vsi, input, fsp->location, NULL);
3951
3952 return 0;
3953
3954free_input:
3955 kfree(input);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003956 return ret;
3957}
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08003958
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003959/**
3960 * i40e_set_rxnfc - command to set RX flow classification rules
3961 * @netdev: network interface device structure
3962 * @cmd: ethtool rxnfc command
3963 *
3964 * Returns Success if the command is supported.
3965 **/
3966static int i40e_set_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd)
3967{
3968 struct i40e_netdev_priv *np = netdev_priv(netdev);
3969 struct i40e_vsi *vsi = np->vsi;
3970 struct i40e_pf *pf = vsi->back;
3971 int ret = -EOPNOTSUPP;
3972
3973 switch (cmd->cmd) {
3974 case ETHTOOL_SRXFH:
3975 ret = i40e_set_rss_hash_opt(pf, cmd);
3976 break;
3977 case ETHTOOL_SRXCLSRLINS:
Anjali Singhai Jain1eaa3842014-03-06 08:59:59 +00003978 ret = i40e_add_fdir_ethtool(vsi, cmd);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003979 break;
3980 case ETHTOOL_SRXCLSRLDEL:
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003981 ret = i40e_del_fdir_entry(vsi, cmd);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00003982 break;
3983 default:
3984 break;
3985 }
3986
3987 return ret;
3988}
3989
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00003990/**
3991 * i40e_max_channels - get Max number of combined channels supported
3992 * @vsi: vsi pointer
3993 **/
3994static unsigned int i40e_max_channels(struct i40e_vsi *vsi)
3995{
3996 /* TODO: This code assumes DCB and FD is disabled for now. */
3997 return vsi->alloc_queue_pairs;
3998}
3999
4000/**
4001 * i40e_get_channels - Get the current channels enabled and max supported etc.
4002 * @netdev: network interface device structure
4003 * @ch: ethtool channels structure
4004 *
4005 * We don't support separate tx and rx queues as channels. The other count
4006 * represents how many queues are being used for control. max_combined counts
4007 * how many queue pairs we can support. They may not be mapped 1 to 1 with
4008 * q_vectors since we support a lot more queue pairs than q_vectors.
4009 **/
4010static void i40e_get_channels(struct net_device *dev,
4011 struct ethtool_channels *ch)
4012{
4013 struct i40e_netdev_priv *np = netdev_priv(dev);
4014 struct i40e_vsi *vsi = np->vsi;
4015 struct i40e_pf *pf = vsi->back;
4016
4017 /* report maximum channels */
4018 ch->max_combined = i40e_max_channels(vsi);
4019
4020 /* report info for other vector */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08004021 ch->other_count = (pf->flags & I40E_FLAG_FD_SB_ENABLED) ? 1 : 0;
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00004022 ch->max_other = ch->other_count;
4023
4024 /* Note: This code assumes DCB is disabled for now. */
4025 ch->combined_count = vsi->num_queue_pairs;
4026}
4027
4028/**
4029 * i40e_set_channels - Set the new channels count.
4030 * @netdev: network interface device structure
4031 * @ch: ethtool channels structure
4032 *
4033 * The new channels count may not be the same as requested by the user
4034 * since it gets rounded down to a power of 2 value.
4035 **/
4036static int i40e_set_channels(struct net_device *dev,
4037 struct ethtool_channels *ch)
4038{
Jacob Keller59826d92016-07-27 12:02:35 -07004039 const u8 drop = I40E_FILTER_PROGRAM_DESC_DEST_DROP_PACKET;
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00004040 struct i40e_netdev_priv *np = netdev_priv(dev);
4041 unsigned int count = ch->combined_count;
4042 struct i40e_vsi *vsi = np->vsi;
4043 struct i40e_pf *pf = vsi->back;
Jacob Keller59826d92016-07-27 12:02:35 -07004044 struct i40e_fdir_filter *rule;
4045 struct hlist_node *node2;
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00004046 int new_count;
Jacob Keller59826d92016-07-27 12:02:35 -07004047 int err = 0;
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00004048
4049 /* We do not support setting channels for any other VSI at present */
4050 if (vsi->type != I40E_VSI_MAIN)
4051 return -EINVAL;
4052
Amritha Nambiara9ce82f2017-09-07 04:00:22 -07004053 /* We do not support setting channels via ethtool when TCs are
4054 * configured through mqprio
4055 */
4056 if (pf->flags & I40E_FLAG_TC_MQPRIO)
4057 return -EINVAL;
4058
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00004059 /* verify they are not requesting separate vectors */
4060 if (!count || ch->rx_count || ch->tx_count)
4061 return -EINVAL;
4062
4063 /* verify other_count has not changed */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08004064 if (ch->other_count != ((pf->flags & I40E_FLAG_FD_SB_ENABLED) ? 1 : 0))
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00004065 return -EINVAL;
4066
4067 /* verify the number of channels does not exceed hardware limits */
4068 if (count > i40e_max_channels(vsi))
4069 return -EINVAL;
4070
Jacob Keller59826d92016-07-27 12:02:35 -07004071 /* verify that the number of channels does not invalidate any current
4072 * flow director rules
4073 */
4074 hlist_for_each_entry_safe(rule, node2,
4075 &pf->fdir_filter_list, fdir_node) {
4076 if (rule->dest_ctl != drop && count <= rule->q_index) {
4077 dev_warn(&pf->pdev->dev,
4078 "Existing user defined filter %d assigns flow to queue %d\n",
4079 rule->fd_id, rule->q_index);
4080 err = -EINVAL;
4081 }
4082 }
4083
4084 if (err) {
4085 dev_err(&pf->pdev->dev,
4086 "Existing filter rules must be deleted to reduce combined channel count to %d\n",
4087 count);
4088 return err;
4089 }
4090
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00004091 /* update feature limits from largest to smallest supported values */
4092 /* TODO: Flow director limit, DCB etc */
4093
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00004094 /* use rss_reconfig to rebuild with new queue count and update traffic
4095 * class queue mapping
4096 */
4097 new_count = i40e_reconfig_rss_queues(pf, count);
Anjali Singhai Jain5f90f422013-12-21 05:44:43 +00004098 if (new_count > 0)
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00004099 return 0;
4100 else
4101 return -EINVAL;
4102}
4103
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00004104/**
4105 * i40e_get_rxfh_key_size - get the RSS hash key size
4106 * @netdev: network interface device structure
4107 *
4108 * Returns the table size.
4109 **/
4110static u32 i40e_get_rxfh_key_size(struct net_device *netdev)
4111{
4112 return I40E_HKEY_ARRAY_SIZE;
4113}
4114
4115/**
4116 * i40e_get_rxfh_indir_size - get the rx flow hash indirection table size
4117 * @netdev: network interface device structure
4118 *
4119 * Returns the table size.
4120 **/
4121static u32 i40e_get_rxfh_indir_size(struct net_device *netdev)
4122{
4123 return I40E_HLUT_ARRAY_SIZE;
4124}
4125
Alan Brady21675bd2017-10-05 14:53:33 -07004126/**
4127 * i40e_get_rxfh - get the rx flow hash indirection table
4128 * @netdev: network interface device structure
4129 * @indir: indirection table
4130 * @key: hash key
4131 * @hfunc: hash function
4132 *
4133 * Reads the indirection table directly from the hardware. Returns 0 on
4134 * success.
4135 **/
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00004136static int i40e_get_rxfh(struct net_device *netdev, u32 *indir, u8 *key,
4137 u8 *hfunc)
4138{
4139 struct i40e_netdev_priv *np = netdev_priv(netdev);
4140 struct i40e_vsi *vsi = np->vsi;
Helin Zhang043dd652015-10-21 19:56:23 -04004141 u8 *lut, *seed = NULL;
4142 int ret;
4143 u16 i;
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00004144
4145 if (hfunc)
4146 *hfunc = ETH_RSS_HASH_TOP;
4147
4148 if (!indir)
4149 return 0;
4150
Helin Zhang043dd652015-10-21 19:56:23 -04004151 seed = key;
4152 lut = kzalloc(I40E_HLUT_ARRAY_SIZE, GFP_KERNEL);
4153 if (!lut)
4154 return -ENOMEM;
4155 ret = i40e_get_rss(vsi, seed, lut, I40E_HLUT_ARRAY_SIZE);
4156 if (ret)
4157 goto out;
4158 for (i = 0; i < I40E_HLUT_ARRAY_SIZE; i++)
4159 indir[i] = (u32)(lut[i]);
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00004160
Helin Zhang043dd652015-10-21 19:56:23 -04004161out:
4162 kfree(lut);
4163
4164 return ret;
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00004165}
4166
4167/**
4168 * i40e_set_rxfh - set the rx flow hash indirection table
4169 * @netdev: network interface device structure
4170 * @indir: indirection table
4171 * @key: hash key
4172 *
Mitch Williamscd494fb2015-07-10 19:36:04 -04004173 * Returns -EINVAL if the table specifies an invalid queue id, otherwise
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00004174 * returns 0 after programming the table.
4175 **/
4176static int i40e_set_rxfh(struct net_device *netdev, const u32 *indir,
4177 const u8 *key, const u8 hfunc)
4178{
4179 struct i40e_netdev_priv *np = netdev_priv(netdev);
4180 struct i40e_vsi *vsi = np->vsi;
Alan Bradyf1582352016-08-24 11:33:46 -07004181 struct i40e_pf *pf = vsi->back;
Helin Zhang28c58692015-10-26 19:44:27 -04004182 u8 *seed = NULL;
Helin Zhang043dd652015-10-21 19:56:23 -04004183 u16 i;
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00004184
4185 if (hfunc != ETH_RSS_HASH_NO_CHANGE && hfunc != ETH_RSS_HASH_TOP)
4186 return -EOPNOTSUPP;
4187
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00004188 if (key) {
Helin Zhang28c58692015-10-26 19:44:27 -04004189 if (!vsi->rss_hkey_user) {
4190 vsi->rss_hkey_user = kzalloc(I40E_HKEY_ARRAY_SIZE,
4191 GFP_KERNEL);
4192 if (!vsi->rss_hkey_user)
4193 return -ENOMEM;
4194 }
4195 memcpy(vsi->rss_hkey_user, key, I40E_HKEY_ARRAY_SIZE);
4196 seed = vsi->rss_hkey_user;
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00004197 }
Helin Zhang28c58692015-10-26 19:44:27 -04004198 if (!vsi->rss_lut_user) {
4199 vsi->rss_lut_user = kzalloc(I40E_HLUT_ARRAY_SIZE, GFP_KERNEL);
4200 if (!vsi->rss_lut_user)
4201 return -ENOMEM;
4202 }
Helin Zhang043dd652015-10-21 19:56:23 -04004203
Helin Zhang28c58692015-10-26 19:44:27 -04004204 /* Each 32 bits pointed by 'indir' is stored with a lut entry */
Alan Bradyf1582352016-08-24 11:33:46 -07004205 if (indir)
4206 for (i = 0; i < I40E_HLUT_ARRAY_SIZE; i++)
4207 vsi->rss_lut_user[i] = (u8)(indir[i]);
4208 else
4209 i40e_fill_rss_lut(pf, vsi->rss_lut_user, I40E_HLUT_ARRAY_SIZE,
4210 vsi->rss_size);
Helin Zhang28c58692015-10-26 19:44:27 -04004211
4212 return i40e_config_rss(vsi, seed, vsi->rss_lut_user,
4213 I40E_HLUT_ARRAY_SIZE);
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00004214}
4215
Greg Rose7e45ab42015-02-06 08:52:19 +00004216/**
4217 * i40e_get_priv_flags - report device private flags
4218 * @dev: network interface device structure
4219 *
4220 * The get string set count and the string set should be matched for each
Alexander Duyckaca955d2017-03-10 12:22:01 -08004221 * flag returned. Add new strings for each flag to the i40e_gstrings_priv_flags
Greg Rose7e45ab42015-02-06 08:52:19 +00004222 * array.
4223 *
4224 * Returns a u32 bitmap of flags.
4225 **/
Jesse Brandeburg5bbc3302015-02-26 16:15:20 +00004226static u32 i40e_get_priv_flags(struct net_device *dev)
Greg Rose7e45ab42015-02-06 08:52:19 +00004227{
4228 struct i40e_netdev_priv *np = netdev_priv(dev);
4229 struct i40e_vsi *vsi = np->vsi;
4230 struct i40e_pf *pf = vsi->back;
Alexander Duyckaca955d2017-03-10 12:22:01 -08004231 u32 i, j, ret_flags = 0;
Greg Rose7e45ab42015-02-06 08:52:19 +00004232
Alexander Duyckaca955d2017-03-10 12:22:01 -08004233 for (i = 0; i < I40E_PRIV_FLAGS_STR_LEN; i++) {
4234 const struct i40e_priv_flags *priv_flags;
4235
4236 priv_flags = &i40e_gstrings_priv_flags[i];
4237
4238 if (priv_flags->flag & pf->flags)
4239 ret_flags |= BIT(i);
4240 }
4241
4242 if (pf->hw.pf_id != 0)
4243 return ret_flags;
4244
4245 for (j = 0; j < I40E_GL_PRIV_FLAGS_STR_LEN; j++) {
4246 const struct i40e_priv_flags *priv_flags;
4247
4248 priv_flags = &i40e_gl_gstrings_priv_flags[j];
4249
4250 if (priv_flags->flag & pf->flags)
4251 ret_flags |= BIT(i + j);
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07004252 }
Greg Rose7e45ab42015-02-06 08:52:19 +00004253
4254 return ret_flags;
4255}
4256
Shannon Nelson9ac77262015-08-27 11:42:40 -04004257/**
4258 * i40e_set_priv_flags - set private flags
4259 * @dev: network interface device structure
4260 * @flags: bit flags to be set
4261 **/
4262static int i40e_set_priv_flags(struct net_device *dev, u32 flags)
4263{
4264 struct i40e_netdev_priv *np = netdev_priv(dev);
4265 struct i40e_vsi *vsi = np->vsi;
4266 struct i40e_pf *pf = vsi->back;
Jacob Kellerb74f5712017-09-01 13:54:07 -07004267 u32 orig_flags, new_flags, changed_flags;
Alexander Duyckaca955d2017-03-10 12:22:01 -08004268 u32 i, j;
Jesse Brandeburg827de392015-11-06 15:26:07 -08004269
Jacob Keller841c9502017-06-23 04:24:50 -04004270 orig_flags = READ_ONCE(pf->flags);
4271 new_flags = orig_flags;
Jesse Brandeburg827de392015-11-06 15:26:07 -08004272
Alexander Duyckaca955d2017-03-10 12:22:01 -08004273 for (i = 0; i < I40E_PRIV_FLAGS_STR_LEN; i++) {
4274 const struct i40e_priv_flags *priv_flags;
Shannon Nelson9ac77262015-08-27 11:42:40 -04004275
Alexander Duyckaca955d2017-03-10 12:22:01 -08004276 priv_flags = &i40e_gstrings_priv_flags[i];
4277
Alexander Duyckaca955d2017-03-10 12:22:01 -08004278 if (flags & BIT(i))
Jacob Keller841c9502017-06-23 04:24:50 -04004279 new_flags |= priv_flags->flag;
Alexander Duyckaca955d2017-03-10 12:22:01 -08004280 else
Jacob Keller841c9502017-06-23 04:24:50 -04004281 new_flags &= ~(priv_flags->flag);
4282
4283 /* If this is a read-only flag, it can't be changed */
4284 if (priv_flags->read_only &&
4285 ((orig_flags ^ new_flags) & ~BIT(i)))
4286 return -EOPNOTSUPP;
Alexander Duyckaca955d2017-03-10 12:22:01 -08004287 }
4288
4289 if (pf->hw.pf_id != 0)
4290 goto flags_complete;
4291
4292 for (j = 0; j < I40E_GL_PRIV_FLAGS_STR_LEN; j++) {
4293 const struct i40e_priv_flags *priv_flags;
4294
4295 priv_flags = &i40e_gl_gstrings_priv_flags[j];
4296
Alexander Duyckaca955d2017-03-10 12:22:01 -08004297 if (flags & BIT(i + j))
Jacob Keller841c9502017-06-23 04:24:50 -04004298 new_flags |= priv_flags->flag;
Alexander Duyckaca955d2017-03-10 12:22:01 -08004299 else
Jacob Keller841c9502017-06-23 04:24:50 -04004300 new_flags &= ~(priv_flags->flag);
4301
4302 /* If this is a read-only flag, it can't be changed */
4303 if (priv_flags->read_only &&
4304 ((orig_flags ^ new_flags) & ~BIT(i)))
4305 return -EOPNOTSUPP;
Alexander Duyckaca955d2017-03-10 12:22:01 -08004306 }
4307
4308flags_complete:
Jacob Keller841c9502017-06-23 04:24:50 -04004309 /* Before we finalize any flag changes, we need to perform some
4310 * checks to ensure that the changes are supported and safe.
4311 */
4312
4313 /* ATR eviction is not supported on all devices */
4314 if ((new_flags & I40E_FLAG_HW_ATR_EVICT_ENABLED) &&
4315 !(pf->hw_features & I40E_HW_ATR_EVICT_CAPABLE))
4316 return -EOPNOTSUPP;
4317
4318 /* Compare and exchange the new flags into place. If we failed, that
Jacob Kellerb74f5712017-09-01 13:54:07 -07004319 * is if cmpxchg returns anything but the old value, this means that
Jacob Keller841c9502017-06-23 04:24:50 -04004320 * something else has modified the flags variable since we copied it
4321 * originally. We'll just punt with an error and log something in the
4322 * message buffer.
4323 */
Jacob Kellerb74f5712017-09-01 13:54:07 -07004324 if (cmpxchg(&pf->flags, orig_flags, new_flags) != orig_flags) {
Jacob Keller841c9502017-06-23 04:24:50 -04004325 dev_warn(&pf->pdev->dev,
4326 "Unable to update pf->flags as it was modified by another thread...\n");
4327 return -EAGAIN;
4328 }
4329
4330 changed_flags = orig_flags ^ new_flags;
Alexander Duyckaca955d2017-03-10 12:22:01 -08004331
4332 /* Process any additional changes needed as a result of flag changes.
4333 * The changed_flags value reflects the list of bits that were
4334 * changed in the code above.
Jesse Brandeburgef171782015-09-03 17:18:49 -04004335 */
Jacob Keller234dc4e2016-09-06 18:05:09 -07004336
Alexander Duyckaca955d2017-03-10 12:22:01 -08004337 /* Flush current ATR settings if ATR was disabled */
4338 if ((changed_flags & I40E_FLAG_FD_ATR_ENABLED) &&
4339 !(pf->flags & I40E_FLAG_FD_ATR_ENABLED)) {
Jacob Keller47994c12017-04-19 09:25:57 -04004340 pf->flags |= I40E_FLAG_FD_ATR_AUTO_DISABLED;
Jacob Keller0da36b92017-04-19 09:25:55 -04004341 set_bit(__I40E_FD_FLUSH_REQUESTED, pf->state);
Jesse Brandeburgef171782015-09-03 17:18:49 -04004342 }
4343
Alexander Duyckaca955d2017-03-10 12:22:01 -08004344 if (changed_flags & I40E_FLAG_TRUE_PROMISC_SUPPORT) {
4345 u16 sw_flags = 0, valid_flags = 0;
4346 int ret;
4347
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07004348 if (!(pf->flags & I40E_FLAG_TRUE_PROMISC_SUPPORT))
4349 sw_flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
4350 valid_flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
4351 ret = i40e_aq_set_switch_config(&pf->hw, sw_flags, valid_flags,
Amritha Nambiar5efe0c62017-10-27 02:35:45 -07004352 0, NULL);
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07004353 if (ret && pf->hw.aq.asq_last_status != I40E_AQ_RC_ESRCH) {
4354 dev_info(&pf->pdev->dev,
4355 "couldn't set switch config bits, err %s aq_err %s\n",
4356 i40e_stat_str(&pf->hw, ret),
4357 i40e_aq_str(&pf->hw,
4358 pf->hw.aq.asq_last_status));
4359 /* not a fatal problem, just keep going */
4360 }
4361 }
4362
Alexander Duyckaca955d2017-03-10 12:22:01 -08004363 /* Issue reset to cause things to take effect, as additional bits
4364 * are added we will need to create a mask of bits requiring reset
4365 */
Mitch Williams64615b52017-08-29 05:32:30 -04004366 if (changed_flags & (I40E_FLAG_VEB_STATS_ENABLED |
4367 I40E_FLAG_LEGACY_RX |
4368 I40E_FLAG_SOURCE_PRUNING_DISABLED))
Maciej Sosin373149f2017-04-05 07:50:55 -04004369 i40e_do_reset(pf, BIT(__I40E_PF_RESET_REQUESTED), true);
Jesse Brandeburg827de392015-11-06 15:26:07 -08004370
Shannon Nelson9ac77262015-08-27 11:42:40 -04004371 return 0;
4372}
4373
Filip Sadowski9c0e5ca2017-08-22 06:57:44 -04004374/**
4375 * i40e_get_module_info - get (Q)SFP+ module type info
4376 * @netdev: network interface device structure
4377 * @modinfo: module EEPROM size and layout information structure
4378 **/
4379static int i40e_get_module_info(struct net_device *netdev,
4380 struct ethtool_modinfo *modinfo)
4381{
4382 struct i40e_netdev_priv *np = netdev_priv(netdev);
4383 struct i40e_vsi *vsi = np->vsi;
4384 struct i40e_pf *pf = vsi->back;
4385 struct i40e_hw *hw = &pf->hw;
4386 u32 sff8472_comp = 0;
4387 u32 sff8472_swap = 0;
4388 u32 sff8636_rev = 0;
4389 i40e_status status;
4390 u32 type = 0;
4391
4392 /* Check if firmware supports reading module EEPROM. */
4393 if (!(hw->flags & I40E_HW_FLAG_AQ_PHY_ACCESS_CAPABLE)) {
4394 netdev_err(vsi->netdev, "Module EEPROM memory read not supported. Please update the NVM image.\n");
4395 return -EINVAL;
4396 }
4397
4398 status = i40e_update_link_info(hw);
4399 if (status)
4400 return -EIO;
4401
4402 if (hw->phy.link_info.phy_type == I40E_PHY_TYPE_EMPTY) {
4403 netdev_err(vsi->netdev, "Cannot read module EEPROM memory. No module connected.\n");
4404 return -EINVAL;
4405 }
4406
4407 type = hw->phy.link_info.module_type[0];
4408
4409 switch (type) {
4410 case I40E_MODULE_TYPE_SFP:
4411 status = i40e_aq_get_phy_register(hw,
4412 I40E_AQ_PHY_REG_ACCESS_EXTERNAL_MODULE,
4413 I40E_I2C_EEPROM_DEV_ADDR,
4414 I40E_MODULE_SFF_8472_COMP,
4415 &sff8472_comp, NULL);
4416 if (status)
4417 return -EIO;
4418
4419 status = i40e_aq_get_phy_register(hw,
4420 I40E_AQ_PHY_REG_ACCESS_EXTERNAL_MODULE,
4421 I40E_I2C_EEPROM_DEV_ADDR,
4422 I40E_MODULE_SFF_8472_SWAP,
4423 &sff8472_swap, NULL);
4424 if (status)
4425 return -EIO;
4426
4427 /* Check if the module requires address swap to access
4428 * the other EEPROM memory page.
4429 */
4430 if (sff8472_swap & I40E_MODULE_SFF_ADDR_MODE) {
4431 netdev_warn(vsi->netdev, "Module address swap to access page 0xA2 is not supported.\n");
4432 modinfo->type = ETH_MODULE_SFF_8079;
4433 modinfo->eeprom_len = ETH_MODULE_SFF_8079_LEN;
4434 } else if (sff8472_comp == 0x00) {
4435 /* Module is not SFF-8472 compliant */
4436 modinfo->type = ETH_MODULE_SFF_8079;
4437 modinfo->eeprom_len = ETH_MODULE_SFF_8079_LEN;
4438 } else {
4439 modinfo->type = ETH_MODULE_SFF_8472;
4440 modinfo->eeprom_len = ETH_MODULE_SFF_8472_LEN;
4441 }
4442 break;
4443 case I40E_MODULE_TYPE_QSFP_PLUS:
4444 /* Read from memory page 0. */
4445 status = i40e_aq_get_phy_register(hw,
4446 I40E_AQ_PHY_REG_ACCESS_EXTERNAL_MODULE,
4447 0,
4448 I40E_MODULE_REVISION_ADDR,
4449 &sff8636_rev, NULL);
4450 if (status)
4451 return -EIO;
4452 /* Determine revision compliance byte */
4453 if (sff8636_rev > 0x02) {
4454 /* Module is SFF-8636 compliant */
4455 modinfo->type = ETH_MODULE_SFF_8636;
4456 modinfo->eeprom_len = I40E_MODULE_QSFP_MAX_LEN;
4457 } else {
4458 modinfo->type = ETH_MODULE_SFF_8436;
4459 modinfo->eeprom_len = I40E_MODULE_QSFP_MAX_LEN;
4460 }
4461 break;
4462 case I40E_MODULE_TYPE_QSFP28:
4463 modinfo->type = ETH_MODULE_SFF_8636;
4464 modinfo->eeprom_len = I40E_MODULE_QSFP_MAX_LEN;
4465 break;
4466 default:
4467 netdev_err(vsi->netdev, "Module type unrecognized\n");
4468 return -EINVAL;
4469 }
4470 return 0;
4471}
4472
4473/**
4474 * i40e_get_module_eeprom - fills buffer with (Q)SFP+ module memory contents
4475 * @netdev: network interface device structure
4476 * @ee: EEPROM dump request structure
4477 * @data: buffer to be filled with EEPROM contents
4478 **/
4479static int i40e_get_module_eeprom(struct net_device *netdev,
4480 struct ethtool_eeprom *ee,
4481 u8 *data)
4482{
4483 struct i40e_netdev_priv *np = netdev_priv(netdev);
4484 struct i40e_vsi *vsi = np->vsi;
4485 struct i40e_pf *pf = vsi->back;
4486 struct i40e_hw *hw = &pf->hw;
4487 bool is_sfp = false;
4488 i40e_status status;
4489 u32 value = 0;
4490 int i;
4491
4492 if (!ee || !ee->len || !data)
4493 return -EINVAL;
4494
4495 if (hw->phy.link_info.module_type[0] == I40E_MODULE_TYPE_SFP)
4496 is_sfp = true;
4497
4498 for (i = 0; i < ee->len; i++) {
4499 u32 offset = i + ee->offset;
4500 u32 addr = is_sfp ? I40E_I2C_EEPROM_DEV_ADDR : 0;
4501
4502 /* Check if we need to access the other memory page */
4503 if (is_sfp) {
4504 if (offset >= ETH_MODULE_SFF_8079_LEN) {
4505 offset -= ETH_MODULE_SFF_8079_LEN;
4506 addr = I40E_I2C_EEPROM_DEV_ADDR2;
4507 }
4508 } else {
4509 while (offset >= ETH_MODULE_SFF_8436_LEN) {
4510 /* Compute memory page number and offset. */
4511 offset -= ETH_MODULE_SFF_8436_LEN / 2;
4512 addr++;
4513 }
4514 }
4515
4516 status = i40e_aq_get_phy_register(hw,
4517 I40E_AQ_PHY_REG_ACCESS_EXTERNAL_MODULE,
4518 addr, offset, &value, NULL);
4519 if (status)
4520 return -EIO;
4521 data[i] = value;
4522 }
4523 return 0;
4524}
4525
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00004526static const struct ethtool_ops i40e_ethtool_ops = {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00004527 .get_drvinfo = i40e_get_drvinfo,
4528 .get_regs_len = i40e_get_regs_len,
4529 .get_regs = i40e_get_regs,
4530 .nway_reset = i40e_nway_reset,
4531 .get_link = ethtool_op_get_link,
4532 .get_wol = i40e_get_wol,
Shannon Nelson8e2773a2013-11-28 06:39:22 +00004533 .set_wol = i40e_set_wol,
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00004534 .set_eeprom = i40e_set_eeprom,
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00004535 .get_eeprom_len = i40e_get_eeprom_len,
4536 .get_eeprom = i40e_get_eeprom,
4537 .get_ringparam = i40e_get_ringparam,
4538 .set_ringparam = i40e_set_ringparam,
4539 .get_pauseparam = i40e_get_pauseparam,
Catherine Sullivan2becc352014-06-04 08:45:27 +00004540 .set_pauseparam = i40e_set_pauseparam,
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00004541 .get_msglevel = i40e_get_msglevel,
4542 .set_msglevel = i40e_set_msglevel,
4543 .get_rxnfc = i40e_get_rxnfc,
4544 .set_rxnfc = i40e_set_rxnfc,
4545 .self_test = i40e_diag_test,
4546 .get_strings = i40e_get_strings,
4547 .set_phys_id = i40e_set_phys_id,
4548 .get_sset_count = i40e_get_sset_count,
4549 .get_ethtool_stats = i40e_get_ethtool_stats,
4550 .get_coalesce = i40e_get_coalesce,
4551 .set_coalesce = i40e_set_coalesce,
Mitch A Williamsb29e13b2015-03-05 04:14:40 +00004552 .get_rxfh_key_size = i40e_get_rxfh_key_size,
4553 .get_rxfh_indir_size = i40e_get_rxfh_indir_size,
4554 .get_rxfh = i40e_get_rxfh,
4555 .set_rxfh = i40e_set_rxfh,
Anjali Singhai Jain4b7820c2013-11-26 11:59:30 +00004556 .get_channels = i40e_get_channels,
4557 .set_channels = i40e_set_channels,
Filip Sadowski9c0e5ca2017-08-22 06:57:44 -04004558 .get_module_info = i40e_get_module_info,
4559 .get_module_eeprom = i40e_get_module_eeprom,
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00004560 .get_ts_info = i40e_get_ts_info,
Greg Rose7e45ab42015-02-06 08:52:19 +00004561 .get_priv_flags = i40e_get_priv_flags,
Shannon Nelson9ac77262015-08-27 11:42:40 -04004562 .set_priv_flags = i40e_set_priv_flags,
Kan Liangbe280ba2016-02-19 09:24:05 -05004563 .get_per_queue_coalesce = i40e_get_per_queue_coalesce,
Kan Liangf3757a42016-02-19 09:24:06 -05004564 .set_per_queue_coalesce = i40e_set_per_queue_coalesce,
Philippe Reynesa7f90942017-02-04 22:05:06 +01004565 .get_link_ksettings = i40e_get_link_ksettings,
4566 .set_link_ksettings = i40e_set_link_ksettings,
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00004567};
4568
4569void i40e_set_ethtool_ops(struct net_device *netdev)
4570{
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00004571 netdev->ethtool_ops = &i40e_ethtool_ops;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00004572}