blob: 7fb669bd0472eb812ad179b27cdcc292544ee3db [file] [log] [blame]
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
4 * Copyright(c) 2013 Intel Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * The full GNU General Public License is included in this distribution in
20 * the file called "COPYING".
21 *
22 * Contact Information:
23 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25 *
26 ******************************************************************************/
27
28/* ethtool support for i40e */
29
30#include "i40e.h"
31#include "i40e_diag.h"
32
33struct i40e_stats {
34 char stat_string[ETH_GSTRING_LEN];
35 int sizeof_stat;
36 int stat_offset;
37};
38
39#define I40E_STAT(_type, _name, _stat) { \
40 .stat_string = _name, \
41 .sizeof_stat = FIELD_SIZEOF(_type, _stat), \
42 .stat_offset = offsetof(_type, _stat) \
43}
44#define I40E_NETDEV_STAT(_net_stat) \
45 I40E_STAT(struct net_device_stats, #_net_stat, _net_stat)
46#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)
50
51static const struct i40e_stats i40e_gstrings_net_stats[] = {
52 I40E_NETDEV_STAT(rx_packets),
53 I40E_NETDEV_STAT(tx_packets),
54 I40E_NETDEV_STAT(rx_bytes),
55 I40E_NETDEV_STAT(tx_bytes),
56 I40E_NETDEV_STAT(rx_errors),
57 I40E_NETDEV_STAT(tx_errors),
58 I40E_NETDEV_STAT(rx_dropped),
59 I40E_NETDEV_STAT(tx_dropped),
60 I40E_NETDEV_STAT(multicast),
61 I40E_NETDEV_STAT(collisions),
62 I40E_NETDEV_STAT(rx_length_errors),
63 I40E_NETDEV_STAT(rx_crc_errors),
64};
65
66/* These PF_STATs might look like duplicates of some NETDEV_STATs,
67 * but they are separate. This device supports Virtualization, and
68 * as such might have several netdevs supporting VMDq and FCoE going
69 * through a single port. The NETDEV_STATs are for individual netdevs
70 * seen at the top of the stack, and the PF_STATs are for the physical
71 * function at the bottom of the stack hosting those netdevs.
72 *
73 * The PF_STATs are appended to the netdev stats only when ethtool -S
74 * is queried on the base PF netdev, not on the VMDq or FCoE netdev.
75 */
76static struct i40e_stats i40e_gstrings_stats[] = {
77 I40E_PF_STAT("rx_bytes", stats.eth.rx_bytes),
78 I40E_PF_STAT("tx_bytes", stats.eth.tx_bytes),
79 I40E_PF_STAT("rx_errors", stats.eth.rx_errors),
80 I40E_PF_STAT("tx_errors", stats.eth.tx_errors),
81 I40E_PF_STAT("rx_dropped", stats.eth.rx_discards),
82 I40E_PF_STAT("tx_dropped", stats.eth.tx_discards),
83 I40E_PF_STAT("tx_dropped_link_down", stats.tx_dropped_link_down),
84 I40E_PF_STAT("crc_errors", stats.crc_errors),
85 I40E_PF_STAT("illegal_bytes", stats.illegal_bytes),
86 I40E_PF_STAT("mac_local_faults", stats.mac_local_faults),
87 I40E_PF_STAT("mac_remote_faults", stats.mac_remote_faults),
88 I40E_PF_STAT("rx_length_errors", stats.rx_length_errors),
89 I40E_PF_STAT("link_xon_rx", stats.link_xon_rx),
90 I40E_PF_STAT("link_xoff_rx", stats.link_xoff_rx),
91 I40E_PF_STAT("link_xon_tx", stats.link_xon_tx),
92 I40E_PF_STAT("link_xoff_tx", stats.link_xoff_tx),
93 I40E_PF_STAT("rx_size_64", stats.rx_size_64),
94 I40E_PF_STAT("rx_size_127", stats.rx_size_127),
95 I40E_PF_STAT("rx_size_255", stats.rx_size_255),
96 I40E_PF_STAT("rx_size_511", stats.rx_size_511),
97 I40E_PF_STAT("rx_size_1023", stats.rx_size_1023),
98 I40E_PF_STAT("rx_size_1522", stats.rx_size_1522),
99 I40E_PF_STAT("rx_size_big", stats.rx_size_big),
100 I40E_PF_STAT("tx_size_64", stats.tx_size_64),
101 I40E_PF_STAT("tx_size_127", stats.tx_size_127),
102 I40E_PF_STAT("tx_size_255", stats.tx_size_255),
103 I40E_PF_STAT("tx_size_511", stats.tx_size_511),
104 I40E_PF_STAT("tx_size_1023", stats.tx_size_1023),
105 I40E_PF_STAT("tx_size_1522", stats.tx_size_1522),
106 I40E_PF_STAT("tx_size_big", stats.tx_size_big),
107 I40E_PF_STAT("rx_undersize", stats.rx_undersize),
108 I40E_PF_STAT("rx_fragments", stats.rx_fragments),
109 I40E_PF_STAT("rx_oversize", stats.rx_oversize),
110 I40E_PF_STAT("rx_jabber", stats.rx_jabber),
111 I40E_PF_STAT("VF_admin_queue_requests", vf_aq_requests),
112};
113
114#define I40E_QUEUE_STATS_LEN(n) \
115 ((((struct i40e_netdev_priv *)netdev_priv((n)))->vsi->num_queue_pairs + \
116 ((struct i40e_netdev_priv *)netdev_priv((n)))->vsi->num_queue_pairs) * 2)
117#define I40E_GLOBAL_STATS_LEN ARRAY_SIZE(i40e_gstrings_stats)
118#define I40E_NETDEV_STATS_LEN ARRAY_SIZE(i40e_gstrings_net_stats)
119#define I40E_VSI_STATS_LEN(n) (I40E_NETDEV_STATS_LEN + \
120 I40E_QUEUE_STATS_LEN((n)))
121#define I40E_PFC_STATS_LEN ( \
122 (FIELD_SIZEOF(struct i40e_pf, stats.priority_xoff_rx) + \
123 FIELD_SIZEOF(struct i40e_pf, stats.priority_xon_rx) + \
124 FIELD_SIZEOF(struct i40e_pf, stats.priority_xoff_tx) + \
125 FIELD_SIZEOF(struct i40e_pf, stats.priority_xon_tx) + \
126 FIELD_SIZEOF(struct i40e_pf, stats.priority_xon_2_xoff)) \
127 / sizeof(u64))
128#define I40E_PF_STATS_LEN(n) (I40E_GLOBAL_STATS_LEN + \
129 I40E_PFC_STATS_LEN + \
130 I40E_VSI_STATS_LEN((n)))
131
132enum i40e_ethtool_test_id {
133 I40E_ETH_TEST_REG = 0,
134 I40E_ETH_TEST_EEPROM,
135 I40E_ETH_TEST_INTR,
136 I40E_ETH_TEST_LOOPBACK,
137 I40E_ETH_TEST_LINK,
138};
139
140static const char i40e_gstrings_test[][ETH_GSTRING_LEN] = {
141 "Register test (offline)",
142 "Eeprom test (offline)",
143 "Interrupt test (offline)",
144 "Loopback test (offline)",
145 "Link test (on/offline)"
146};
147
148#define I40E_TEST_LEN (sizeof(i40e_gstrings_test) / ETH_GSTRING_LEN)
149
150/**
151 * i40e_get_settings - Get Link Speed and Duplex settings
152 * @netdev: network interface device structure
153 * @ecmd: ethtool command
154 *
155 * Reports speed/duplex settings based on media_type
156 **/
157static int i40e_get_settings(struct net_device *netdev,
158 struct ethtool_cmd *ecmd)
159{
160 struct i40e_netdev_priv *np = netdev_priv(netdev);
161 struct i40e_pf *pf = np->vsi->back;
162 struct i40e_hw *hw = &pf->hw;
163 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
164 bool link_up = hw_link_info->link_info & I40E_AQ_LINK_UP;
165 u32 link_speed = hw_link_info->link_speed;
166
167 /* hardware is either in 40G mode or 10G mode
168 * NOTE: this section initializes supported and advertising
169 */
170 switch (hw_link_info->phy_type) {
171 case I40E_PHY_TYPE_40GBASE_CR4:
172 case I40E_PHY_TYPE_40GBASE_CR4_CU:
173 ecmd->supported = SUPPORTED_40000baseCR4_Full;
174 ecmd->advertising = ADVERTISED_40000baseCR4_Full;
175 break;
176 case I40E_PHY_TYPE_40GBASE_KR4:
177 ecmd->supported = SUPPORTED_40000baseKR4_Full;
178 ecmd->advertising = ADVERTISED_40000baseKR4_Full;
179 break;
180 case I40E_PHY_TYPE_40GBASE_SR4:
181 ecmd->supported = SUPPORTED_40000baseSR4_Full;
182 ecmd->advertising = ADVERTISED_40000baseSR4_Full;
183 break;
184 case I40E_PHY_TYPE_40GBASE_LR4:
185 ecmd->supported = SUPPORTED_40000baseLR4_Full;
186 ecmd->advertising = ADVERTISED_40000baseLR4_Full;
187 break;
188 case I40E_PHY_TYPE_10GBASE_KX4:
189 ecmd->supported = SUPPORTED_10000baseKX4_Full;
190 ecmd->advertising = ADVERTISED_10000baseKX4_Full;
191 break;
192 case I40E_PHY_TYPE_10GBASE_KR:
193 ecmd->supported = SUPPORTED_10000baseKR_Full;
194 ecmd->advertising = ADVERTISED_10000baseKR_Full;
195 break;
196 case I40E_PHY_TYPE_10GBASE_T:
197 default:
198 ecmd->supported = SUPPORTED_10000baseT_Full;
199 ecmd->advertising = ADVERTISED_10000baseT_Full;
200 break;
201 }
202
203 /* for now just say autoneg all the time */
204 ecmd->supported |= SUPPORTED_Autoneg;
205
206 if (hw->phy.media_type == I40E_MEDIA_TYPE_BACKPLANE) {
207 ecmd->supported |= SUPPORTED_Backplane;
208 ecmd->advertising |= ADVERTISED_Backplane;
209 ecmd->port = PORT_NONE;
210 } else if (hw->phy.media_type == I40E_MEDIA_TYPE_BASET) {
211 ecmd->supported |= SUPPORTED_TP;
212 ecmd->advertising |= ADVERTISED_TP;
213 ecmd->port = PORT_TP;
Jesse Brandeburgbe405eb2013-11-20 10:02:50 +0000214 } else if (hw->phy.media_type == I40E_MEDIA_TYPE_DA) {
215 ecmd->supported |= SUPPORTED_FIBRE;
216 ecmd->advertising |= ADVERTISED_FIBRE;
217 ecmd->port = PORT_DA;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000218 } else {
219 ecmd->supported |= SUPPORTED_FIBRE;
220 ecmd->advertising |= ADVERTISED_FIBRE;
221 ecmd->port = PORT_FIBRE;
222 }
223
224 ecmd->transceiver = XCVR_EXTERNAL;
225
226 if (link_up) {
227 switch (link_speed) {
228 case I40E_LINK_SPEED_40GB:
229 /* need a SPEED_40000 in ethtool.h */
230 ethtool_cmd_speed_set(ecmd, 40000);
231 break;
232 case I40E_LINK_SPEED_10GB:
233 ethtool_cmd_speed_set(ecmd, SPEED_10000);
234 break;
235 default:
236 break;
237 }
238 ecmd->duplex = DUPLEX_FULL;
239 } else {
240 ethtool_cmd_speed_set(ecmd, SPEED_UNKNOWN);
241 ecmd->duplex = DUPLEX_UNKNOWN;
242 }
243
244 return 0;
245}
246
247/**
248 * i40e_get_pauseparam - Get Flow Control status
249 * Return tx/rx-pause status
250 **/
251static void i40e_get_pauseparam(struct net_device *netdev,
252 struct ethtool_pauseparam *pause)
253{
254 struct i40e_netdev_priv *np = netdev_priv(netdev);
255 struct i40e_pf *pf = np->vsi->back;
256 struct i40e_hw *hw = &pf->hw;
257 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
258
259 pause->autoneg =
260 ((hw_link_info->an_info & I40E_AQ_AN_COMPLETED) ?
261 AUTONEG_ENABLE : AUTONEG_DISABLE);
262
263 pause->rx_pause = 0;
264 pause->tx_pause = 0;
265 if (hw_link_info->an_info & I40E_AQ_LINK_PAUSE_RX)
266 pause->rx_pause = 1;
267 if (hw_link_info->an_info & I40E_AQ_LINK_PAUSE_TX)
268 pause->tx_pause = 1;
269}
270
271static u32 i40e_get_msglevel(struct net_device *netdev)
272{
273 struct i40e_netdev_priv *np = netdev_priv(netdev);
274 struct i40e_pf *pf = np->vsi->back;
275
276 return pf->msg_enable;
277}
278
279static void i40e_set_msglevel(struct net_device *netdev, u32 data)
280{
281 struct i40e_netdev_priv *np = netdev_priv(netdev);
282 struct i40e_pf *pf = np->vsi->back;
283
284 if (I40E_DEBUG_USER & data)
285 pf->hw.debug_mask = data;
286 pf->msg_enable = data;
287}
288
289static int i40e_get_regs_len(struct net_device *netdev)
290{
291 int reg_count = 0;
292 int i;
293
294 for (i = 0; i40e_reg_list[i].offset != 0; i++)
295 reg_count += i40e_reg_list[i].elements;
296
297 return reg_count * sizeof(u32);
298}
299
300static void i40e_get_regs(struct net_device *netdev, struct ethtool_regs *regs,
301 void *p)
302{
303 struct i40e_netdev_priv *np = netdev_priv(netdev);
304 struct i40e_pf *pf = np->vsi->back;
305 struct i40e_hw *hw = &pf->hw;
306 u32 *reg_buf = p;
307 int i, j, ri;
308 u32 reg;
309
310 /* Tell ethtool which driver-version-specific regs output we have.
311 *
312 * At some point, if we have ethtool doing special formatting of
313 * this data, it will rely on this version number to know how to
314 * interpret things. Hence, this needs to be updated if/when the
315 * diags register table is changed.
316 */
317 regs->version = 1;
318
319 /* loop through the diags reg table for what to print */
320 ri = 0;
321 for (i = 0; i40e_reg_list[i].offset != 0; i++) {
322 for (j = 0; j < i40e_reg_list[i].elements; j++) {
323 reg = i40e_reg_list[i].offset
324 + (j * i40e_reg_list[i].stride);
325 reg_buf[ri++] = rd32(hw, reg);
326 }
327 }
328
329}
330
331static int i40e_get_eeprom(struct net_device *netdev,
332 struct ethtool_eeprom *eeprom, u8 *bytes)
333{
334 struct i40e_netdev_priv *np = netdev_priv(netdev);
335 struct i40e_hw *hw = &np->vsi->back->hw;
336 int first_word, last_word;
337 u16 i, eeprom_len;
338 u16 *eeprom_buff;
339 int ret_val = 0;
340
341 if (eeprom->len == 0)
342 return -EINVAL;
343
344 eeprom->magic = hw->vendor_id | (hw->device_id << 16);
345
346 first_word = eeprom->offset >> 1;
347 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
348 eeprom_len = last_word - first_word + 1;
349
350 eeprom_buff = kmalloc(sizeof(u16) * eeprom_len, GFP_KERNEL);
351 if (!eeprom_buff)
352 return -ENOMEM;
353
354 ret_val = i40e_read_nvm_buffer(hw, first_word, &eeprom_len,
355 eeprom_buff);
356 if (eeprom_len == 0) {
357 kfree(eeprom_buff);
358 return -EACCES;
359 }
360
361 /* Device's eeprom is always little-endian, word addressable */
362 for (i = 0; i < eeprom_len; i++)
363 le16_to_cpus(&eeprom_buff[i]);
364
365 memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
366 kfree(eeprom_buff);
367
368 return ret_val;
369}
370
371static int i40e_get_eeprom_len(struct net_device *netdev)
372{
373 struct i40e_netdev_priv *np = netdev_priv(netdev);
374 struct i40e_hw *hw = &np->vsi->back->hw;
375
376 return hw->nvm.sr_size * 2;
377}
378
379static void i40e_get_drvinfo(struct net_device *netdev,
380 struct ethtool_drvinfo *drvinfo)
381{
382 struct i40e_netdev_priv *np = netdev_priv(netdev);
383 struct i40e_vsi *vsi = np->vsi;
384 struct i40e_pf *pf = vsi->back;
385
386 strlcpy(drvinfo->driver, i40e_driver_name, sizeof(drvinfo->driver));
387 strlcpy(drvinfo->version, i40e_driver_version_str,
388 sizeof(drvinfo->version));
389 strlcpy(drvinfo->fw_version, i40e_fw_version_str(&pf->hw),
390 sizeof(drvinfo->fw_version));
391 strlcpy(drvinfo->bus_info, pci_name(pf->pdev),
392 sizeof(drvinfo->bus_info));
393}
394
395static void i40e_get_ringparam(struct net_device *netdev,
396 struct ethtool_ringparam *ring)
397{
398 struct i40e_netdev_priv *np = netdev_priv(netdev);
399 struct i40e_pf *pf = np->vsi->back;
400 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
401
402 ring->rx_max_pending = I40E_MAX_NUM_DESCRIPTORS;
403 ring->tx_max_pending = I40E_MAX_NUM_DESCRIPTORS;
404 ring->rx_mini_max_pending = 0;
405 ring->rx_jumbo_max_pending = 0;
Alexander Duyck9f65e152013-09-28 06:00:58 +0000406 ring->rx_pending = vsi->rx_rings[0]->count;
407 ring->tx_pending = vsi->tx_rings[0]->count;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000408 ring->rx_mini_pending = 0;
409 ring->rx_jumbo_pending = 0;
410}
411
412static int i40e_set_ringparam(struct net_device *netdev,
413 struct ethtool_ringparam *ring)
414{
415 struct i40e_ring *tx_rings = NULL, *rx_rings = NULL;
416 struct i40e_netdev_priv *np = netdev_priv(netdev);
417 struct i40e_vsi *vsi = np->vsi;
418 struct i40e_pf *pf = vsi->back;
419 u32 new_rx_count, new_tx_count;
420 int i, err = 0;
421
422 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
423 return -EINVAL;
424
425 new_tx_count = clamp_t(u32, ring->tx_pending,
426 I40E_MIN_NUM_DESCRIPTORS,
427 I40E_MAX_NUM_DESCRIPTORS);
428 new_tx_count = ALIGN(new_tx_count, I40E_REQ_DESCRIPTOR_MULTIPLE);
429
430 new_rx_count = clamp_t(u32, ring->rx_pending,
431 I40E_MIN_NUM_DESCRIPTORS,
432 I40E_MAX_NUM_DESCRIPTORS);
433 new_rx_count = ALIGN(new_rx_count, I40E_REQ_DESCRIPTOR_MULTIPLE);
434
435 /* if nothing to do return success */
Alexander Duyck9f65e152013-09-28 06:00:58 +0000436 if ((new_tx_count == vsi->tx_rings[0]->count) &&
437 (new_rx_count == vsi->rx_rings[0]->count))
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000438 return 0;
439
440 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
441 usleep_range(1000, 2000);
442
443 if (!netif_running(vsi->netdev)) {
444 /* simple case - set for the next time the netdev is started */
445 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +0000446 vsi->tx_rings[i]->count = new_tx_count;
447 vsi->rx_rings[i]->count = new_rx_count;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000448 }
449 goto done;
450 }
451
452 /* We can't just free everything and then setup again,
453 * because the ISRs in MSI-X mode get passed pointers
454 * to the Tx and Rx ring structs.
455 */
456
457 /* alloc updated Tx resources */
Alexander Duyck9f65e152013-09-28 06:00:58 +0000458 if (new_tx_count != vsi->tx_rings[0]->count) {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000459 netdev_info(netdev,
460 "Changing Tx descriptor count from %d to %d.\n",
Alexander Duyck9f65e152013-09-28 06:00:58 +0000461 vsi->tx_rings[0]->count, new_tx_count);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000462 tx_rings = kcalloc(vsi->alloc_queue_pairs,
463 sizeof(struct i40e_ring), GFP_KERNEL);
464 if (!tx_rings) {
465 err = -ENOMEM;
466 goto done;
467 }
468
469 for (i = 0; i < vsi->num_queue_pairs; i++) {
470 /* clone ring and setup updated count */
Alexander Duyck9f65e152013-09-28 06:00:58 +0000471 tx_rings[i] = *vsi->tx_rings[i];
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000472 tx_rings[i].count = new_tx_count;
473 err = i40e_setup_tx_descriptors(&tx_rings[i]);
474 if (err) {
475 while (i) {
476 i--;
477 i40e_free_tx_resources(&tx_rings[i]);
478 }
479 kfree(tx_rings);
480 tx_rings = NULL;
481
482 goto done;
483 }
484 }
485 }
486
487 /* alloc updated Rx resources */
Alexander Duyck9f65e152013-09-28 06:00:58 +0000488 if (new_rx_count != vsi->rx_rings[0]->count) {
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000489 netdev_info(netdev,
490 "Changing Rx descriptor count from %d to %d\n",
Alexander Duyck9f65e152013-09-28 06:00:58 +0000491 vsi->rx_rings[0]->count, new_rx_count);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000492 rx_rings = kcalloc(vsi->alloc_queue_pairs,
493 sizeof(struct i40e_ring), GFP_KERNEL);
494 if (!rx_rings) {
495 err = -ENOMEM;
496 goto free_tx;
497 }
498
499 for (i = 0; i < vsi->num_queue_pairs; i++) {
500 /* clone ring and setup updated count */
Alexander Duyck9f65e152013-09-28 06:00:58 +0000501 rx_rings[i] = *vsi->rx_rings[i];
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000502 rx_rings[i].count = new_rx_count;
503 err = i40e_setup_rx_descriptors(&rx_rings[i]);
504 if (err) {
505 while (i) {
506 i--;
507 i40e_free_rx_resources(&rx_rings[i]);
508 }
509 kfree(rx_rings);
510 rx_rings = NULL;
511
512 goto free_tx;
513 }
514 }
515 }
516
517 /* Bring interface down, copy in the new ring info,
518 * then restore the interface
519 */
520 i40e_down(vsi);
521
522 if (tx_rings) {
523 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +0000524 i40e_free_tx_resources(vsi->tx_rings[i]);
525 *vsi->tx_rings[i] = tx_rings[i];
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000526 }
527 kfree(tx_rings);
528 tx_rings = NULL;
529 }
530
531 if (rx_rings) {
532 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +0000533 i40e_free_rx_resources(vsi->rx_rings[i]);
534 *vsi->rx_rings[i] = rx_rings[i];
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000535 }
536 kfree(rx_rings);
537 rx_rings = NULL;
538 }
539
540 i40e_up(vsi);
541
542free_tx:
543 /* error cleanup if the Rx allocations failed after getting Tx */
544 if (tx_rings) {
545 for (i = 0; i < vsi->num_queue_pairs; i++)
546 i40e_free_tx_resources(&tx_rings[i]);
547 kfree(tx_rings);
548 tx_rings = NULL;
549 }
550
551done:
552 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
553
554 return err;
555}
556
557static int i40e_get_sset_count(struct net_device *netdev, int sset)
558{
559 struct i40e_netdev_priv *np = netdev_priv(netdev);
560 struct i40e_vsi *vsi = np->vsi;
561 struct i40e_pf *pf = vsi->back;
562
563 switch (sset) {
564 case ETH_SS_TEST:
565 return I40E_TEST_LEN;
566 case ETH_SS_STATS:
567 if (vsi == pf->vsi[pf->lan_vsi])
568 return I40E_PF_STATS_LEN(netdev);
569 else
570 return I40E_VSI_STATS_LEN(netdev);
571 default:
572 return -EOPNOTSUPP;
573 }
574}
575
576static void i40e_get_ethtool_stats(struct net_device *netdev,
577 struct ethtool_stats *stats, u64 *data)
578{
579 struct i40e_netdev_priv *np = netdev_priv(netdev);
580 struct i40e_vsi *vsi = np->vsi;
581 struct i40e_pf *pf = vsi->back;
582 int i = 0;
583 char *p;
584 int j;
585 struct rtnl_link_stats64 *net_stats = i40e_get_vsi_stats_struct(vsi);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000586 unsigned int start;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000587
588 i40e_update_stats(vsi);
589
590 for (j = 0; j < I40E_NETDEV_STATS_LEN; j++) {
591 p = (char *)net_stats + i40e_gstrings_net_stats[j].stat_offset;
592 data[i++] = (i40e_gstrings_net_stats[j].sizeof_stat ==
593 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
594 }
Alexander Duyck980e9b12013-09-28 06:01:03 +0000595 rcu_read_lock();
Alexander Duycka114d0a2013-09-28 06:00:43 +0000596 for (j = 0; j < vsi->num_queue_pairs; j++, i += 4) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000597 struct i40e_ring *tx_ring = ACCESS_ONCE(vsi->tx_rings[j]);
598 struct i40e_ring *rx_ring;
599
600 if (!tx_ring)
601 continue;
602
603 /* process Tx ring statistics */
604 do {
605 start = u64_stats_fetch_begin_bh(&tx_ring->syncp);
606 data[i] = tx_ring->stats.packets;
607 data[i + 1] = tx_ring->stats.bytes;
608 } while (u64_stats_fetch_retry_bh(&tx_ring->syncp, start));
609
610 /* Rx ring is the 2nd half of the queue pair */
611 rx_ring = &tx_ring[1];
612 do {
613 start = u64_stats_fetch_begin_bh(&rx_ring->syncp);
614 data[i + 2] = rx_ring->stats.packets;
615 data[i + 3] = rx_ring->stats.bytes;
616 } while (u64_stats_fetch_retry_bh(&rx_ring->syncp, start));
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000617 }
Alexander Duyck980e9b12013-09-28 06:01:03 +0000618 rcu_read_unlock();
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000619 if (vsi == pf->vsi[pf->lan_vsi]) {
620 for (j = 0; j < I40E_GLOBAL_STATS_LEN; j++) {
621 p = (char *)pf + i40e_gstrings_stats[j].stat_offset;
622 data[i++] = (i40e_gstrings_stats[j].sizeof_stat ==
623 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
624 }
625 for (j = 0; j < I40E_MAX_USER_PRIORITY; j++) {
626 data[i++] = pf->stats.priority_xon_tx[j];
627 data[i++] = pf->stats.priority_xoff_tx[j];
628 }
629 for (j = 0; j < I40E_MAX_USER_PRIORITY; j++) {
630 data[i++] = pf->stats.priority_xon_rx[j];
631 data[i++] = pf->stats.priority_xoff_rx[j];
632 }
633 for (j = 0; j < I40E_MAX_USER_PRIORITY; j++)
634 data[i++] = pf->stats.priority_xon_2_xoff[j];
635 }
636}
637
638static void i40e_get_strings(struct net_device *netdev, u32 stringset,
639 u8 *data)
640{
641 struct i40e_netdev_priv *np = netdev_priv(netdev);
642 struct i40e_vsi *vsi = np->vsi;
643 struct i40e_pf *pf = vsi->back;
644 char *p = (char *)data;
645 int i;
646
647 switch (stringset) {
648 case ETH_SS_TEST:
649 for (i = 0; i < I40E_TEST_LEN; i++) {
650 memcpy(data, i40e_gstrings_test[i], ETH_GSTRING_LEN);
651 data += ETH_GSTRING_LEN;
652 }
653 break;
654 case ETH_SS_STATS:
655 for (i = 0; i < I40E_NETDEV_STATS_LEN; i++) {
656 snprintf(p, ETH_GSTRING_LEN, "%s",
657 i40e_gstrings_net_stats[i].stat_string);
658 p += ETH_GSTRING_LEN;
659 }
660 for (i = 0; i < vsi->num_queue_pairs; i++) {
661 snprintf(p, ETH_GSTRING_LEN, "tx-%u.tx_packets", i);
662 p += ETH_GSTRING_LEN;
663 snprintf(p, ETH_GSTRING_LEN, "tx-%u.tx_bytes", i);
664 p += ETH_GSTRING_LEN;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000665 snprintf(p, ETH_GSTRING_LEN, "rx-%u.rx_packets", i);
666 p += ETH_GSTRING_LEN;
667 snprintf(p, ETH_GSTRING_LEN, "rx-%u.rx_bytes", i);
668 p += ETH_GSTRING_LEN;
669 }
670 if (vsi == pf->vsi[pf->lan_vsi]) {
671 for (i = 0; i < I40E_GLOBAL_STATS_LEN; i++) {
672 snprintf(p, ETH_GSTRING_LEN, "port.%s",
673 i40e_gstrings_stats[i].stat_string);
674 p += ETH_GSTRING_LEN;
675 }
676 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
677 snprintf(p, ETH_GSTRING_LEN,
678 "port.tx_priority_%u_xon", i);
679 p += ETH_GSTRING_LEN;
680 snprintf(p, ETH_GSTRING_LEN,
681 "port.tx_priority_%u_xoff", i);
682 p += ETH_GSTRING_LEN;
683 }
684 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
685 snprintf(p, ETH_GSTRING_LEN,
686 "port.rx_priority_%u_xon", i);
687 p += ETH_GSTRING_LEN;
688 snprintf(p, ETH_GSTRING_LEN,
689 "port.rx_priority_%u_xoff", i);
690 p += ETH_GSTRING_LEN;
691 }
692 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
693 snprintf(p, ETH_GSTRING_LEN,
694 "port.rx_priority_%u_xon_2_xoff", i);
695 p += ETH_GSTRING_LEN;
696 }
697 }
698 /* BUG_ON(p - data != I40E_STATS_LEN * ETH_GSTRING_LEN); */
699 break;
700 }
701}
702
703static int i40e_get_ts_info(struct net_device *dev,
704 struct ethtool_ts_info *info)
705{
706 return ethtool_op_get_ts_info(dev, info);
707}
708
709static int i40e_link_test(struct i40e_pf *pf, u64 *data)
710{
711 if (i40e_get_link_status(&pf->hw))
712 *data = 0;
713 else
714 *data = 1;
715
716 return *data;
717}
718
719static int i40e_reg_test(struct i40e_pf *pf, u64 *data)
720{
721 i40e_status ret;
722
723 ret = i40e_diag_reg_test(&pf->hw);
724 *data = ret;
725
726 return ret;
727}
728
729static int i40e_eeprom_test(struct i40e_pf *pf, u64 *data)
730{
731 i40e_status ret;
732
733 ret = i40e_diag_eeprom_test(&pf->hw);
734 *data = ret;
735
736 return ret;
737}
738
739static int i40e_intr_test(struct i40e_pf *pf, u64 *data)
740{
Shannon Nelsoncd92e722013-11-16 10:00:44 +0000741 u16 swc_old = pf->sw_int_count;
742
743 wr32(&pf->hw, I40E_PFINT_DYN_CTL0,
744 (I40E_PFINT_DYN_CTL0_INTENA_MASK |
745 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK));
746 usleep_range(1000, 2000);
747 *data = (swc_old == pf->sw_int_count);
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000748
749 return *data;
750}
751
752static int i40e_loopback_test(struct i40e_pf *pf, u64 *data)
753{
Shannon Nelsoncd92e722013-11-16 10:00:44 +0000754 *data = 0;
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000755
756 return *data;
757}
758
759static void i40e_diag_test(struct net_device *netdev,
760 struct ethtool_test *eth_test, u64 *data)
761{
762 struct i40e_netdev_priv *np = netdev_priv(netdev);
763 struct i40e_pf *pf = np->vsi->back;
764
765 set_bit(__I40E_TESTING, &pf->state);
766 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
767 /* Offline tests */
768
769 netdev_info(netdev, "offline testing starting\n");
770
771 /* Link test performed before hardware reset
772 * so autoneg doesn't interfere with test result
773 */
774 netdev_info(netdev, "link test starting\n");
775 if (i40e_link_test(pf, &data[I40E_ETH_TEST_LINK]))
776 eth_test->flags |= ETH_TEST_FL_FAILED;
777
778 netdev_info(netdev, "register test starting\n");
779 if (i40e_reg_test(pf, &data[I40E_ETH_TEST_REG]))
780 eth_test->flags |= ETH_TEST_FL_FAILED;
781
782 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
783 netdev_info(netdev, "eeprom test starting\n");
784 if (i40e_eeprom_test(pf, &data[I40E_ETH_TEST_EEPROM]))
785 eth_test->flags |= ETH_TEST_FL_FAILED;
786
787 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
788 netdev_info(netdev, "interrupt test starting\n");
789 if (i40e_intr_test(pf, &data[I40E_ETH_TEST_INTR]))
790 eth_test->flags |= ETH_TEST_FL_FAILED;
791
792 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
793 netdev_info(netdev, "loopback test starting\n");
794 if (i40e_loopback_test(pf, &data[I40E_ETH_TEST_LOOPBACK]))
795 eth_test->flags |= ETH_TEST_FL_FAILED;
796
797 } else {
798 netdev_info(netdev, "online test starting\n");
799 /* Online tests */
800 if (i40e_link_test(pf, &data[I40E_ETH_TEST_LINK]))
801 eth_test->flags |= ETH_TEST_FL_FAILED;
802
803 /* Offline only tests, not run in online; pass by default */
804 data[I40E_ETH_TEST_REG] = 0;
805 data[I40E_ETH_TEST_EEPROM] = 0;
806 data[I40E_ETH_TEST_INTR] = 0;
807 data[I40E_ETH_TEST_LOOPBACK] = 0;
808
809 clear_bit(__I40E_TESTING, &pf->state);
810 }
811}
812
813static void i40e_get_wol(struct net_device *netdev,
814 struct ethtool_wolinfo *wol)
815{
816 wol->supported = 0;
817 wol->wolopts = 0;
818}
819
820static int i40e_nway_reset(struct net_device *netdev)
821{
822 /* restart autonegotiation */
823 struct i40e_netdev_priv *np = netdev_priv(netdev);
824 struct i40e_pf *pf = np->vsi->back;
825 struct i40e_hw *hw = &pf->hw;
826 i40e_status ret = 0;
827
828 ret = i40e_aq_set_link_restart_an(hw, NULL);
829 if (ret) {
830 netdev_info(netdev, "link restart failed, aq_err=%d\n",
831 pf->hw.aq.asq_last_status);
832 return -EIO;
833 }
834
835 return 0;
836}
837
838static int i40e_set_phys_id(struct net_device *netdev,
839 enum ethtool_phys_id_state state)
840{
841 struct i40e_netdev_priv *np = netdev_priv(netdev);
842 struct i40e_pf *pf = np->vsi->back;
843 struct i40e_hw *hw = &pf->hw;
844 int blink_freq = 2;
845
846 switch (state) {
847 case ETHTOOL_ID_ACTIVE:
848 pf->led_status = i40e_led_get(hw);
849 return blink_freq;
850 case ETHTOOL_ID_ON:
851 i40e_led_set(hw, 0xF);
852 break;
853 case ETHTOOL_ID_OFF:
854 i40e_led_set(hw, 0x0);
855 break;
856 case ETHTOOL_ID_INACTIVE:
857 i40e_led_set(hw, pf->led_status);
858 break;
859 }
860
861 return 0;
862}
863
864/* NOTE: i40e hardware uses a conversion factor of 2 for Interrupt
865 * Throttle Rate (ITR) ie. ITR(1) = 2us ITR(10) = 20 us, and also
866 * 125us (8000 interrupts per second) == ITR(62)
867 */
868
869static int i40e_get_coalesce(struct net_device *netdev,
870 struct ethtool_coalesce *ec)
871{
872 struct i40e_netdev_priv *np = netdev_priv(netdev);
873 struct i40e_vsi *vsi = np->vsi;
874
875 ec->tx_max_coalesced_frames_irq = vsi->work_limit;
876 ec->rx_max_coalesced_frames_irq = vsi->work_limit;
877
878 if (ITR_IS_DYNAMIC(vsi->rx_itr_setting))
879 ec->rx_coalesce_usecs = 1;
880 else
881 ec->rx_coalesce_usecs = vsi->rx_itr_setting;
882
883 if (ITR_IS_DYNAMIC(vsi->tx_itr_setting))
884 ec->tx_coalesce_usecs = 1;
885 else
886 ec->tx_coalesce_usecs = vsi->tx_itr_setting;
887
888 return 0;
889}
890
891static int i40e_set_coalesce(struct net_device *netdev,
892 struct ethtool_coalesce *ec)
893{
894 struct i40e_netdev_priv *np = netdev_priv(netdev);
895 struct i40e_q_vector *q_vector;
896 struct i40e_vsi *vsi = np->vsi;
897 struct i40e_pf *pf = vsi->back;
898 struct i40e_hw *hw = &pf->hw;
899 u16 vector;
900 int i;
901
902 if (ec->tx_max_coalesced_frames_irq || ec->rx_max_coalesced_frames_irq)
903 vsi->work_limit = ec->tx_max_coalesced_frames_irq;
904
905 switch (ec->rx_coalesce_usecs) {
906 case 0:
907 vsi->rx_itr_setting = 0;
908 break;
909 case 1:
910 vsi->rx_itr_setting = (I40E_ITR_DYNAMIC |
911 ITR_REG_TO_USEC(I40E_ITR_RX_DEF));
912 break;
913 default:
914 if ((ec->rx_coalesce_usecs < (I40E_MIN_ITR << 1)) ||
915 (ec->rx_coalesce_usecs > (I40E_MAX_ITR << 1)))
916 return -EINVAL;
917 vsi->rx_itr_setting = ec->rx_coalesce_usecs;
918 break;
919 }
920
921 switch (ec->tx_coalesce_usecs) {
922 case 0:
923 vsi->tx_itr_setting = 0;
924 break;
925 case 1:
926 vsi->tx_itr_setting = (I40E_ITR_DYNAMIC |
927 ITR_REG_TO_USEC(I40E_ITR_TX_DEF));
928 break;
929 default:
930 if ((ec->tx_coalesce_usecs < (I40E_MIN_ITR << 1)) ||
931 (ec->tx_coalesce_usecs > (I40E_MAX_ITR << 1)))
932 return -EINVAL;
933 vsi->tx_itr_setting = ec->tx_coalesce_usecs;
934 break;
935 }
936
937 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +0000938 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
939 q_vector = vsi->q_vectors[i];
Jesse Brandeburgc7d05ca2013-09-11 08:39:56 +0000940 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
941 wr32(hw, I40E_PFINT_ITRN(0, vector - 1), q_vector->rx.itr);
942 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
943 wr32(hw, I40E_PFINT_ITRN(1, vector - 1), q_vector->tx.itr);
944 i40e_flush(hw);
945 }
946
947 return 0;
948}
949
950/**
951 * i40e_get_rss_hash_opts - Get RSS hash Input Set for each flow type
952 * @pf: pointer to the physical function struct
953 * @cmd: ethtool rxnfc command
954 *
955 * Returns Success if the flow is supported, else Invalid Input.
956 **/
957static int i40e_get_rss_hash_opts(struct i40e_pf *pf, struct ethtool_rxnfc *cmd)
958{
959 cmd->data = 0;
960
961 /* Report default options for RSS on i40e */
962 switch (cmd->flow_type) {
963 case TCP_V4_FLOW:
964 case UDP_V4_FLOW:
965 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
966 /* fall through to add IP fields */
967 case SCTP_V4_FLOW:
968 case AH_ESP_V4_FLOW:
969 case AH_V4_FLOW:
970 case ESP_V4_FLOW:
971 case IPV4_FLOW:
972 cmd->data |= RXH_IP_SRC | RXH_IP_DST;
973 break;
974 case TCP_V6_FLOW:
975 case UDP_V6_FLOW:
976 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
977 /* fall through to add IP fields */
978 case SCTP_V6_FLOW:
979 case AH_ESP_V6_FLOW:
980 case AH_V6_FLOW:
981 case ESP_V6_FLOW:
982 case IPV6_FLOW:
983 cmd->data |= RXH_IP_SRC | RXH_IP_DST;
984 break;
985 default:
986 return -EINVAL;
987 }
988
989 return 0;
990}
991
992/**
993 * i40e_get_rxnfc - command to get RX flow classification rules
994 * @netdev: network interface device structure
995 * @cmd: ethtool rxnfc command
996 *
997 * Returns Success if the command is supported.
998 **/
999static int i40e_get_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd,
1000 u32 *rule_locs)
1001{
1002 struct i40e_netdev_priv *np = netdev_priv(netdev);
1003 struct i40e_vsi *vsi = np->vsi;
1004 struct i40e_pf *pf = vsi->back;
1005 int ret = -EOPNOTSUPP;
1006
1007 switch (cmd->cmd) {
1008 case ETHTOOL_GRXRINGS:
1009 cmd->data = vsi->alloc_queue_pairs;
1010 ret = 0;
1011 break;
1012 case ETHTOOL_GRXFH:
1013 ret = i40e_get_rss_hash_opts(pf, cmd);
1014 break;
1015 case ETHTOOL_GRXCLSRLCNT:
1016 ret = 0;
1017 break;
1018 case ETHTOOL_GRXCLSRULE:
1019 ret = 0;
1020 break;
1021 case ETHTOOL_GRXCLSRLALL:
1022 cmd->data = 500;
1023 ret = 0;
1024 default:
1025 break;
1026 }
1027
1028 return ret;
1029}
1030
1031/**
1032 * i40e_set_rss_hash_opt - Enable/Disable flow types for RSS hash
1033 * @pf: pointer to the physical function struct
1034 * @cmd: ethtool rxnfc command
1035 *
1036 * Returns Success if the flow input set is supported.
1037 **/
1038static int i40e_set_rss_hash_opt(struct i40e_pf *pf, struct ethtool_rxnfc *nfc)
1039{
1040 struct i40e_hw *hw = &pf->hw;
1041 u64 hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) |
1042 ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32);
1043
1044 /* RSS does not support anything other than hashing
1045 * to queues on src and dst IPs and ports
1046 */
1047 if (nfc->data & ~(RXH_IP_SRC | RXH_IP_DST |
1048 RXH_L4_B_0_1 | RXH_L4_B_2_3))
1049 return -EINVAL;
1050
1051 /* We need at least the IP SRC and DEST fields for hashing */
1052 if (!(nfc->data & RXH_IP_SRC) ||
1053 !(nfc->data & RXH_IP_DST))
1054 return -EINVAL;
1055
1056 switch (nfc->flow_type) {
1057 case TCP_V4_FLOW:
1058 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
1059 case 0:
1060 hena &= ~((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_TCP);
1061 break;
1062 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
1063 hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_TCP);
1064 break;
1065 default:
1066 return -EINVAL;
1067 }
1068 break;
1069 case TCP_V6_FLOW:
1070 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
1071 case 0:
1072 hena &= ~((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_TCP);
1073 break;
1074 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
1075 hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_TCP);
1076 break;
1077 default:
1078 return -EINVAL;
1079 }
1080 break;
1081 case UDP_V4_FLOW:
1082 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
1083 case 0:
1084 hena &=
1085 ~(((u64)1 << I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP) |
1086 ((u64)1 << I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP) |
1087 ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV4));
1088 break;
1089 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
1090 hena |=
1091 (((u64)1 << I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP) |
1092 ((u64)1 << I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP) |
1093 ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV4));
1094 break;
1095 default:
1096 return -EINVAL;
1097 }
1098 break;
1099 case UDP_V6_FLOW:
1100 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
1101 case 0:
1102 hena &=
1103 ~(((u64)1 << I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP) |
1104 ((u64)1 << I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP) |
1105 ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV6));
1106 break;
1107 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
1108 hena |=
1109 (((u64)1 << I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP) |
1110 ((u64)1 << I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP) |
1111 ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV6));
1112 break;
1113 default:
1114 return -EINVAL;
1115 }
1116 break;
1117 case AH_ESP_V4_FLOW:
1118 case AH_V4_FLOW:
1119 case ESP_V4_FLOW:
1120 case SCTP_V4_FLOW:
1121 if ((nfc->data & RXH_L4_B_0_1) ||
1122 (nfc->data & RXH_L4_B_2_3))
1123 return -EINVAL;
1124 hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_OTHER);
1125 break;
1126 case AH_ESP_V6_FLOW:
1127 case AH_V6_FLOW:
1128 case ESP_V6_FLOW:
1129 case SCTP_V6_FLOW:
1130 if ((nfc->data & RXH_L4_B_0_1) ||
1131 (nfc->data & RXH_L4_B_2_3))
1132 return -EINVAL;
1133 hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_OTHER);
1134 break;
1135 case IPV4_FLOW:
1136 hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_OTHER) |
1137 ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV4);
1138 break;
1139 case IPV6_FLOW:
1140 hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_OTHER) |
1141 ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV6);
1142 break;
1143 default:
1144 return -EINVAL;
1145 }
1146
1147 wr32(hw, I40E_PFQF_HENA(0), (u32)hena);
1148 wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
1149 i40e_flush(hw);
1150
1151 return 0;
1152}
1153
1154#define IP_HEADER_OFFSET 14
1155/**
1156 * i40e_add_del_fdir_udpv4 - Add/Remove UDPv4 Flow Director filters for
1157 * a specific flow spec
1158 * @vsi: pointer to the targeted VSI
1159 * @fd_data: the flow director data required from the FDir descriptor
1160 * @ethtool_rx_flow_spec: the flow spec
1161 * @add: true adds a filter, false removes it
1162 *
1163 * Returns 0 if the filters were successfully added or removed
1164 **/
1165static int i40e_add_del_fdir_udpv4(struct i40e_vsi *vsi,
1166 struct i40e_fdir_data *fd_data,
1167 struct ethtool_rx_flow_spec *fsp, bool add)
1168{
1169 struct i40e_pf *pf = vsi->back;
1170 struct udphdr *udp;
1171 struct iphdr *ip;
1172 bool err = false;
1173 int ret;
1174 int i;
1175
1176 ip = (struct iphdr *)(fd_data->raw_packet + IP_HEADER_OFFSET);
1177 udp = (struct udphdr *)(fd_data->raw_packet + IP_HEADER_OFFSET
1178 + sizeof(struct iphdr));
1179
1180 ip->saddr = fsp->h_u.tcp_ip4_spec.ip4src;
1181 ip->daddr = fsp->h_u.tcp_ip4_spec.ip4dst;
1182 udp->source = fsp->h_u.tcp_ip4_spec.psrc;
1183 udp->dest = fsp->h_u.tcp_ip4_spec.pdst;
1184
1185 for (i = I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP;
1186 i <= I40E_FILTER_PCTYPE_NONF_IPV4_UDP; i++) {
1187 fd_data->pctype = i;
1188 ret = i40e_program_fdir_filter(fd_data, pf, add);
1189
1190 if (ret) {
1191 dev_info(&pf->pdev->dev,
1192 "Filter command send failed for PCTYPE %d (ret = %d)\n",
1193 fd_data->pctype, ret);
1194 err = true;
1195 } else {
1196 dev_info(&pf->pdev->dev,
1197 "Filter OK for PCTYPE %d (ret = %d)\n",
1198 fd_data->pctype, ret);
1199 }
1200 }
1201
1202 return err ? -EOPNOTSUPP : 0;
1203}
1204
1205/**
1206 * i40e_add_del_fdir_tcpv4 - Add/Remove TCPv4 Flow Director filters for
1207 * a specific flow spec
1208 * @vsi: pointer to the targeted VSI
1209 * @fd_data: the flow director data required from the FDir descriptor
1210 * @ethtool_rx_flow_spec: the flow spec
1211 * @add: true adds a filter, false removes it
1212 *
1213 * Returns 0 if the filters were successfully added or removed
1214 **/
1215static int i40e_add_del_fdir_tcpv4(struct i40e_vsi *vsi,
1216 struct i40e_fdir_data *fd_data,
1217 struct ethtool_rx_flow_spec *fsp, bool add)
1218{
1219 struct i40e_pf *pf = vsi->back;
1220 struct tcphdr *tcp;
1221 struct iphdr *ip;
1222 bool err = false;
1223 int ret;
1224
1225 ip = (struct iphdr *)(fd_data->raw_packet + IP_HEADER_OFFSET);
1226 tcp = (struct tcphdr *)(fd_data->raw_packet + IP_HEADER_OFFSET
1227 + sizeof(struct iphdr));
1228
1229 ip->daddr = fsp->h_u.tcp_ip4_spec.ip4dst;
1230 tcp->dest = fsp->h_u.tcp_ip4_spec.pdst;
1231
1232 fd_data->pctype = I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN;
1233 ret = i40e_program_fdir_filter(fd_data, pf, add);
1234
1235 if (ret) {
1236 dev_info(&pf->pdev->dev,
1237 "Filter command send failed for PCTYPE %d (ret = %d)\n",
1238 fd_data->pctype, ret);
1239 err = true;
1240 } else {
1241 dev_info(&pf->pdev->dev, "Filter OK for PCTYPE %d (ret = %d)\n",
1242 fd_data->pctype, ret);
1243 }
1244
1245 ip->saddr = fsp->h_u.tcp_ip4_spec.ip4src;
1246 tcp->source = fsp->h_u.tcp_ip4_spec.psrc;
1247
1248 fd_data->pctype = I40E_FILTER_PCTYPE_NONF_IPV4_TCP;
1249
1250 ret = i40e_program_fdir_filter(fd_data, pf, add);
1251 if (ret) {
1252 dev_info(&pf->pdev->dev,
1253 "Filter command send failed for PCTYPE %d (ret = %d)\n",
1254 fd_data->pctype, ret);
1255 err = true;
1256 } else {
1257 dev_info(&pf->pdev->dev, "Filter OK for PCTYPE %d (ret = %d)\n",
1258 fd_data->pctype, ret);
1259 }
1260
1261 return err ? -EOPNOTSUPP : 0;
1262}
1263
1264/**
1265 * i40e_add_del_fdir_sctpv4 - Add/Remove SCTPv4 Flow Director filters for
1266 * a specific flow spec
1267 * @vsi: pointer to the targeted VSI
1268 * @fd_data: the flow director data required from the FDir descriptor
1269 * @ethtool_rx_flow_spec: the flow spec
1270 * @add: true adds a filter, false removes it
1271 *
1272 * Returns 0 if the filters were successfully added or removed
1273 **/
1274static int i40e_add_del_fdir_sctpv4(struct i40e_vsi *vsi,
1275 struct i40e_fdir_data *fd_data,
1276 struct ethtool_rx_flow_spec *fsp, bool add)
1277{
1278 return -EOPNOTSUPP;
1279}
1280
1281/**
1282 * i40e_add_del_fdir_ipv4 - Add/Remove IPv4 Flow Director filters for
1283 * a specific flow spec
1284 * @vsi: pointer to the targeted VSI
1285 * @fd_data: the flow director data required for the FDir descriptor
1286 * @fsp: the ethtool flow spec
1287 * @add: true adds a filter, false removes it
1288 *
1289 * Returns 0 if the filters were successfully added or removed
1290 **/
1291static int i40e_add_del_fdir_ipv4(struct i40e_vsi *vsi,
1292 struct i40e_fdir_data *fd_data,
1293 struct ethtool_rx_flow_spec *fsp, bool add)
1294{
1295 struct i40e_pf *pf = vsi->back;
1296 struct iphdr *ip;
1297 bool err = false;
1298 int ret;
1299 int i;
1300
1301 ip = (struct iphdr *)(fd_data->raw_packet + IP_HEADER_OFFSET);
1302
1303 ip->saddr = fsp->h_u.usr_ip4_spec.ip4src;
1304 ip->daddr = fsp->h_u.usr_ip4_spec.ip4dst;
1305 ip->protocol = fsp->h_u.usr_ip4_spec.proto;
1306
1307 for (i = I40E_FILTER_PCTYPE_NONF_IPV4_OTHER;
1308 i <= I40E_FILTER_PCTYPE_FRAG_IPV4; i++) {
1309 fd_data->pctype = i;
1310 ret = i40e_program_fdir_filter(fd_data, pf, add);
1311
1312 if (ret) {
1313 dev_info(&pf->pdev->dev,
1314 "Filter command send failed for PCTYPE %d (ret = %d)\n",
1315 fd_data->pctype, ret);
1316 err = true;
1317 } else {
1318 dev_info(&pf->pdev->dev,
1319 "Filter OK for PCTYPE %d (ret = %d)\n",
1320 fd_data->pctype, ret);
1321 }
1322 }
1323
1324 return err ? -EOPNOTSUPP : 0;
1325}
1326
1327/**
1328 * i40e_add_del_fdir_ethtool - Add/Remove Flow Director filters for
1329 * a specific flow spec based on their protocol
1330 * @vsi: pointer to the targeted VSI
1331 * @cmd: command to get or set RX flow classification rules
1332 * @add: true adds a filter, false removes it
1333 *
1334 * Returns 0 if the filters were successfully added or removed
1335 **/
1336static int i40e_add_del_fdir_ethtool(struct i40e_vsi *vsi,
1337 struct ethtool_rxnfc *cmd, bool add)
1338{
1339 struct i40e_fdir_data fd_data;
1340 int ret = -EINVAL;
1341 struct i40e_pf *pf;
1342 struct ethtool_rx_flow_spec *fsp =
1343 (struct ethtool_rx_flow_spec *)&cmd->fs;
1344
1345 if (!vsi)
1346 return -EINVAL;
1347
1348 pf = vsi->back;
1349
1350 if ((fsp->ring_cookie != RX_CLS_FLOW_DISC) &&
1351 (fsp->ring_cookie >= vsi->num_queue_pairs))
1352 return -EINVAL;
1353
1354 /* Populate the Flow Director that we have at the moment
1355 * and allocate the raw packet buffer for the calling functions
1356 */
1357 fd_data.raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_LOOKUP,
1358 GFP_KERNEL);
1359
1360 if (!fd_data.raw_packet) {
1361 dev_info(&pf->pdev->dev, "Could not allocate memory\n");
1362 return -ENOMEM;
1363 }
1364
1365 fd_data.q_index = fsp->ring_cookie;
1366 fd_data.flex_off = 0;
1367 fd_data.pctype = 0;
1368 fd_data.dest_vsi = vsi->id;
1369 fd_data.dest_ctl = 0;
1370 fd_data.fd_status = 0;
1371 fd_data.cnt_index = 0;
1372 fd_data.fd_id = 0;
1373
1374 switch (fsp->flow_type & ~FLOW_EXT) {
1375 case TCP_V4_FLOW:
1376 ret = i40e_add_del_fdir_tcpv4(vsi, &fd_data, fsp, add);
1377 break;
1378 case UDP_V4_FLOW:
1379 ret = i40e_add_del_fdir_udpv4(vsi, &fd_data, fsp, add);
1380 break;
1381 case SCTP_V4_FLOW:
1382 ret = i40e_add_del_fdir_sctpv4(vsi, &fd_data, fsp, add);
1383 break;
1384 case IPV4_FLOW:
1385 ret = i40e_add_del_fdir_ipv4(vsi, &fd_data, fsp, add);
1386 break;
1387 case IP_USER_FLOW:
1388 switch (fsp->h_u.usr_ip4_spec.proto) {
1389 case IPPROTO_TCP:
1390 ret = i40e_add_del_fdir_tcpv4(vsi, &fd_data, fsp, add);
1391 break;
1392 case IPPROTO_UDP:
1393 ret = i40e_add_del_fdir_udpv4(vsi, &fd_data, fsp, add);
1394 break;
1395 case IPPROTO_SCTP:
1396 ret = i40e_add_del_fdir_sctpv4(vsi, &fd_data, fsp, add);
1397 break;
1398 default:
1399 ret = i40e_add_del_fdir_ipv4(vsi, &fd_data, fsp, add);
1400 break;
1401 }
1402 break;
1403 default:
1404 dev_info(&pf->pdev->dev, "Could not specify spec type\n");
1405 ret = -EINVAL;
1406 }
1407
1408 kfree(fd_data.raw_packet);
1409 fd_data.raw_packet = NULL;
1410
1411 return ret;
1412}
1413/**
1414 * i40e_set_rxnfc - command to set RX flow classification rules
1415 * @netdev: network interface device structure
1416 * @cmd: ethtool rxnfc command
1417 *
1418 * Returns Success if the command is supported.
1419 **/
1420static int i40e_set_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd)
1421{
1422 struct i40e_netdev_priv *np = netdev_priv(netdev);
1423 struct i40e_vsi *vsi = np->vsi;
1424 struct i40e_pf *pf = vsi->back;
1425 int ret = -EOPNOTSUPP;
1426
1427 switch (cmd->cmd) {
1428 case ETHTOOL_SRXFH:
1429 ret = i40e_set_rss_hash_opt(pf, cmd);
1430 break;
1431 case ETHTOOL_SRXCLSRLINS:
1432 ret = i40e_add_del_fdir_ethtool(vsi, cmd, true);
1433 break;
1434 case ETHTOOL_SRXCLSRLDEL:
1435 ret = i40e_add_del_fdir_ethtool(vsi, cmd, false);
1436 break;
1437 default:
1438 break;
1439 }
1440
1441 return ret;
1442}
1443
1444static const struct ethtool_ops i40e_ethtool_ops = {
1445 .get_settings = i40e_get_settings,
1446 .get_drvinfo = i40e_get_drvinfo,
1447 .get_regs_len = i40e_get_regs_len,
1448 .get_regs = i40e_get_regs,
1449 .nway_reset = i40e_nway_reset,
1450 .get_link = ethtool_op_get_link,
1451 .get_wol = i40e_get_wol,
1452 .get_eeprom_len = i40e_get_eeprom_len,
1453 .get_eeprom = i40e_get_eeprom,
1454 .get_ringparam = i40e_get_ringparam,
1455 .set_ringparam = i40e_set_ringparam,
1456 .get_pauseparam = i40e_get_pauseparam,
1457 .get_msglevel = i40e_get_msglevel,
1458 .set_msglevel = i40e_set_msglevel,
1459 .get_rxnfc = i40e_get_rxnfc,
1460 .set_rxnfc = i40e_set_rxnfc,
1461 .self_test = i40e_diag_test,
1462 .get_strings = i40e_get_strings,
1463 .set_phys_id = i40e_set_phys_id,
1464 .get_sset_count = i40e_get_sset_count,
1465 .get_ethtool_stats = i40e_get_ethtool_stats,
1466 .get_coalesce = i40e_get_coalesce,
1467 .set_coalesce = i40e_set_coalesce,
1468 .get_ts_info = i40e_get_ts_info,
1469};
1470
1471void i40e_set_ethtool_ops(struct net_device *netdev)
1472{
1473 SET_ETHTOOL_OPS(netdev, &i40e_ethtool_ops);
1474}