8d41a88f1666cab03b1f300704d18b613169fec6
[cascardo/linux.git] / drivers / net / ethernet / intel / i40evf / i40evf_ethtool.c
1 /*******************************************************************************
2  *
3  * Intel Ethernet Controller XL710 Family Linux Virtual Function Driver
4  * Copyright(c) 2013 - 2014 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
16  * with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
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 i40evf */
28 #include "i40evf.h"
29
30 #include <linux/uaccess.h>
31
32
33 struct i40evf_stats {
34         char stat_string[ETH_GSTRING_LEN];
35         int stat_offset;
36 };
37
38 #define I40EVF_STAT(_name, _stat) { \
39         .stat_string = _name, \
40         .stat_offset = offsetof(struct i40evf_adapter, _stat) \
41 }
42
43 /* All stats are u64, so we don't need to track the size of the field. */
44 static const struct i40evf_stats i40evf_gstrings_stats[] = {
45         I40EVF_STAT("rx_bytes", current_stats.rx_bytes),
46         I40EVF_STAT("rx_unicast", current_stats.rx_unicast),
47         I40EVF_STAT("rx_multicast", current_stats.rx_multicast),
48         I40EVF_STAT("rx_broadcast", current_stats.rx_broadcast),
49         I40EVF_STAT("rx_discards", current_stats.rx_discards),
50         I40EVF_STAT("rx_errors", current_stats.rx_errors),
51         I40EVF_STAT("rx_missed", current_stats.rx_missed),
52         I40EVF_STAT("rx_unknown_protocol", current_stats.rx_unknown_protocol),
53         I40EVF_STAT("tx_bytes", current_stats.tx_bytes),
54         I40EVF_STAT("tx_unicast", current_stats.tx_unicast),
55         I40EVF_STAT("tx_multicast", current_stats.tx_multicast),
56         I40EVF_STAT("tx_broadcast", current_stats.tx_broadcast),
57         I40EVF_STAT("tx_discards", current_stats.tx_discards),
58         I40EVF_STAT("tx_errors", current_stats.tx_errors),
59 };
60
61 #define I40EVF_GLOBAL_STATS_LEN ARRAY_SIZE(i40evf_gstrings_stats)
62 #define I40EVF_QUEUE_STATS_LEN(_dev) \
63         (((struct i40evf_adapter *) \
64                 netdev_priv(_dev))->vsi_res->num_queue_pairs \
65                   * 2 * (sizeof(struct i40e_queue_stats) / sizeof(u64)))
66 #define I40EVF_STATS_LEN(_dev) \
67         (I40EVF_GLOBAL_STATS_LEN + I40EVF_QUEUE_STATS_LEN(_dev))
68
69 /**
70  * i40evf_get_settings - Get Link Speed and Duplex settings
71  * @netdev: network interface device structure
72  * @ecmd: ethtool command
73  *
74  * Reports speed/duplex settings. Because this is a VF, we don't know what
75  * kind of link we really have, so we fake it.
76  **/
77 static int i40evf_get_settings(struct net_device *netdev,
78                                struct ethtool_cmd *ecmd)
79 {
80         /* In the future the VF will be able to query the PF for
81          * some information - for now use a dummy value
82          */
83         ecmd->supported = 0;
84         ecmd->autoneg = AUTONEG_DISABLE;
85         ecmd->transceiver = XCVR_DUMMY1;
86         ecmd->port = PORT_NONE;
87
88         return 0;
89 }
90
91 /**
92  * i40evf_get_sset_count - Get length of string set
93  * @netdev: network interface device structure
94  * @sset: id of string set
95  *
96  * Reports size of string table. This driver only supports
97  * strings for statistics.
98  **/
99 static int i40evf_get_sset_count(struct net_device *netdev, int sset)
100 {
101         if (sset == ETH_SS_STATS)
102                 return I40EVF_STATS_LEN(netdev);
103         else
104                 return -EINVAL;
105 }
106
107 /**
108  * i40evf_get_ethtool_stats - report device statistics
109  * @netdev: network interface device structure
110  * @stats: ethtool statistics structure
111  * @data: pointer to data buffer
112  *
113  * All statistics are added to the data buffer as an array of u64.
114  **/
115 static void i40evf_get_ethtool_stats(struct net_device *netdev,
116                                      struct ethtool_stats *stats, u64 *data)
117 {
118         struct i40evf_adapter *adapter = netdev_priv(netdev);
119         int i, j;
120         char *p;
121
122         for (i = 0; i < I40EVF_GLOBAL_STATS_LEN; i++) {
123                 p = (char *)adapter + i40evf_gstrings_stats[i].stat_offset;
124                 data[i] =  *(u64 *)p;
125         }
126         for (j = 0; j < adapter->vsi_res->num_queue_pairs; j++) {
127                 data[i++] = adapter->tx_rings[j]->stats.packets;
128                 data[i++] = adapter->tx_rings[j]->stats.bytes;
129         }
130         for (j = 0; j < adapter->vsi_res->num_queue_pairs; j++) {
131                 data[i++] = adapter->rx_rings[j]->stats.packets;
132                 data[i++] = adapter->rx_rings[j]->stats.bytes;
133         }
134 }
135
136 /**
137  * i40evf_get_strings - Get string set
138  * @netdev: network interface device structure
139  * @sset: id of string set
140  * @data: buffer for string data
141  *
142  * Builds stats string table.
143  **/
144 static void i40evf_get_strings(struct net_device *netdev, u32 sset, u8 *data)
145 {
146         struct i40evf_adapter *adapter = netdev_priv(netdev);
147         u8 *p = data;
148         int i;
149
150         if (sset == ETH_SS_STATS) {
151                 for (i = 0; i < I40EVF_GLOBAL_STATS_LEN; i++) {
152                         memcpy(p, i40evf_gstrings_stats[i].stat_string,
153                                ETH_GSTRING_LEN);
154                         p += ETH_GSTRING_LEN;
155                 }
156                 for (i = 0; i < adapter->vsi_res->num_queue_pairs; i++) {
157                         snprintf(p, ETH_GSTRING_LEN, "tx-%u.packets", i);
158                         p += ETH_GSTRING_LEN;
159                         snprintf(p, ETH_GSTRING_LEN, "tx-%u.bytes", i);
160                         p += ETH_GSTRING_LEN;
161                 }
162                 for (i = 0; i < adapter->vsi_res->num_queue_pairs; i++) {
163                         snprintf(p, ETH_GSTRING_LEN, "rx-%u.packets", i);
164                         p += ETH_GSTRING_LEN;
165                         snprintf(p, ETH_GSTRING_LEN, "rx-%u.bytes", i);
166                         p += ETH_GSTRING_LEN;
167                 }
168         }
169 }
170
171 /**
172  * i40evf_get_msglevel - Get debug message level
173  * @netdev: network interface device structure
174  *
175  * Returns current debug message level.
176  **/
177 static u32 i40evf_get_msglevel(struct net_device *netdev)
178 {
179         struct i40evf_adapter *adapter = netdev_priv(netdev);
180         return adapter->msg_enable;
181 }
182
183 /**
184  * i40evf_get_msglevel - Set debug message level
185  * @netdev: network interface device structure
186  * @data: message level
187  *
188  * Set current debug message level. Higher values cause the driver to
189  * be noisier.
190  **/
191 static void i40evf_set_msglevel(struct net_device *netdev, u32 data)
192 {
193         struct i40evf_adapter *adapter = netdev_priv(netdev);
194         adapter->msg_enable = data;
195 }
196
197 /**
198  * i40evf_get_drvinto - Get driver info
199  * @netdev: network interface device structure
200  * @drvinfo: ethool driver info structure
201  *
202  * Returns information about the driver and device for display to the user.
203  **/
204 static void i40evf_get_drvinfo(struct net_device *netdev,
205                                struct ethtool_drvinfo *drvinfo)
206 {
207         struct i40evf_adapter *adapter = netdev_priv(netdev);
208
209         strlcpy(drvinfo->driver, i40evf_driver_name, 32);
210         strlcpy(drvinfo->version, i40evf_driver_version, 32);
211
212         strlcpy(drvinfo->bus_info, pci_name(adapter->pdev), 32);
213 }
214
215 /**
216  * i40evf_get_ringparam - Get ring parameters
217  * @netdev: network interface device structure
218  * @ring: ethtool ringparam structure
219  *
220  * Returns current ring parameters. TX and RX rings are reported separately,
221  * but the number of rings is not reported.
222  **/
223 static void i40evf_get_ringparam(struct net_device *netdev,
224                                   struct ethtool_ringparam *ring)
225 {
226         struct i40evf_adapter *adapter = netdev_priv(netdev);
227
228         ring->rx_max_pending = I40EVF_MAX_RXD;
229         ring->tx_max_pending = I40EVF_MAX_TXD;
230         ring->rx_pending = adapter->rx_desc_count;
231         ring->tx_pending = adapter->tx_desc_count;
232 }
233
234 /**
235  * i40evf_set_ringparam - Set ring parameters
236  * @netdev: network interface device structure
237  * @ring: ethtool ringparam structure
238  *
239  * Sets ring parameters. TX and RX rings are controlled separately, but the
240  * number of rings is not specified, so all rings get the same settings.
241  **/
242 static int i40evf_set_ringparam(struct net_device *netdev,
243                                 struct ethtool_ringparam *ring)
244 {
245         struct i40evf_adapter *adapter = netdev_priv(netdev);
246         u32 new_rx_count, new_tx_count;
247
248         if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
249                 return -EINVAL;
250
251         new_tx_count = clamp_t(u32, ring->tx_pending,
252                                I40EVF_MIN_TXD,
253                                I40EVF_MAX_TXD);
254         new_tx_count = ALIGN(new_tx_count, I40EVF_REQ_DESCRIPTOR_MULTIPLE);
255
256         new_rx_count = clamp_t(u32, ring->rx_pending,
257                                I40EVF_MIN_RXD,
258                                I40EVF_MAX_RXD);
259         new_rx_count = ALIGN(new_rx_count, I40EVF_REQ_DESCRIPTOR_MULTIPLE);
260
261         /* if nothing to do return success */
262         if ((new_tx_count == adapter->tx_desc_count) &&
263             (new_rx_count == adapter->rx_desc_count))
264                 return 0;
265
266         adapter->tx_desc_count = new_tx_count;
267         adapter->rx_desc_count = new_rx_count;
268
269         if (netif_running(netdev))
270                 i40evf_reinit_locked(adapter);
271
272         return 0;
273 }
274
275 /**
276  * i40evf_get_coalesce - Get interrupt coalescing settings
277  * @netdev: network interface device structure
278  * @ec: ethtool coalesce structure
279  *
280  * Returns current coalescing settings. This is referred to elsewhere in the
281  * driver as Interrupt Throttle Rate, as this is how the hardware describes
282  * this functionality.
283  **/
284 static int i40evf_get_coalesce(struct net_device *netdev,
285                              struct ethtool_coalesce *ec)
286 {
287         struct i40evf_adapter *adapter = netdev_priv(netdev);
288         struct i40e_vsi *vsi = &adapter->vsi;
289
290         ec->tx_max_coalesced_frames = vsi->work_limit;
291         ec->rx_max_coalesced_frames = vsi->work_limit;
292
293         if (ITR_IS_DYNAMIC(vsi->rx_itr_setting))
294                 ec->use_adaptive_rx_coalesce = 1;
295
296         if (ITR_IS_DYNAMIC(vsi->tx_itr_setting))
297                 ec->use_adaptive_tx_coalesce = 1;
298
299         ec->rx_coalesce_usecs = vsi->rx_itr_setting & ~I40E_ITR_DYNAMIC;
300         ec->tx_coalesce_usecs = vsi->tx_itr_setting & ~I40E_ITR_DYNAMIC;
301
302         return 0;
303 }
304
305 /**
306  * i40evf_set_coalesce - Set interrupt coalescing settings
307  * @netdev: network interface device structure
308  * @ec: ethtool coalesce structure
309  *
310  * Change current coalescing settings.
311  **/
312 static int i40evf_set_coalesce(struct net_device *netdev,
313                              struct ethtool_coalesce *ec)
314 {
315         struct i40evf_adapter *adapter = netdev_priv(netdev);
316         struct i40e_hw *hw = &adapter->hw;
317         struct i40e_vsi *vsi = &adapter->vsi;
318         struct i40e_q_vector *q_vector;
319         int i;
320
321         if (ec->tx_max_coalesced_frames_irq || ec->rx_max_coalesced_frames_irq)
322                 vsi->work_limit = ec->tx_max_coalesced_frames_irq;
323
324         if ((ec->rx_coalesce_usecs >= (I40E_MIN_ITR << 1)) &&
325             (ec->rx_coalesce_usecs <= (I40E_MAX_ITR << 1)))
326                 vsi->rx_itr_setting = ec->rx_coalesce_usecs;
327
328         else
329                 return -EINVAL;
330
331         if ((ec->tx_coalesce_usecs >= (I40E_MIN_ITR << 1)) &&
332             (ec->tx_coalesce_usecs <= (I40E_MAX_ITR << 1)))
333                 vsi->tx_itr_setting = ec->tx_coalesce_usecs;
334         else if (ec->use_adaptive_tx_coalesce)
335                 vsi->tx_itr_setting = (I40E_ITR_DYNAMIC |
336                                        ITR_REG_TO_USEC(I40E_ITR_RX_DEF));
337         else
338                 return -EINVAL;
339
340         if (ec->use_adaptive_rx_coalesce)
341                 vsi->rx_itr_setting |= I40E_ITR_DYNAMIC;
342         else
343                 vsi->rx_itr_setting &= ~I40E_ITR_DYNAMIC;
344
345         if (ec->use_adaptive_tx_coalesce)
346                 vsi->tx_itr_setting |= I40E_ITR_DYNAMIC;
347         else
348                 vsi->tx_itr_setting &= ~I40E_ITR_DYNAMIC;
349
350         for (i = 0; i < adapter->num_msix_vectors - NONQ_VECS; i++) {
351                 q_vector = adapter->q_vector[i];
352                 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
353                 wr32(hw, I40E_VFINT_ITRN1(0, i), q_vector->rx.itr);
354                 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
355                 wr32(hw, I40E_VFINT_ITRN1(1, i), q_vector->tx.itr);
356                 i40e_flush(hw);
357         }
358
359         return 0;
360 }
361
362 /**
363  * i40e_get_rss_hash_opts - Get RSS hash Input Set for each flow type
364  * @adapter: board private structure
365  * @cmd: ethtool rxnfc command
366  *
367  * Returns Success if the flow is supported, else Invalid Input.
368  **/
369 static int i40evf_get_rss_hash_opts(struct i40evf_adapter *adapter,
370                                     struct ethtool_rxnfc *cmd)
371 {
372         struct i40e_hw *hw = &adapter->hw;
373         u64 hena = (u64)rd32(hw, I40E_VFQF_HENA(0)) |
374                    ((u64)rd32(hw, I40E_VFQF_HENA(1)) << 32);
375
376         /* We always hash on IP src and dest addresses */
377         cmd->data = RXH_IP_SRC | RXH_IP_DST;
378
379         switch (cmd->flow_type) {
380         case TCP_V4_FLOW:
381                 if (hena & ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_TCP))
382                         cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
383                 break;
384         case UDP_V4_FLOW:
385                 if (hena & ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_UDP))
386                         cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
387                 break;
388
389         case SCTP_V4_FLOW:
390         case AH_ESP_V4_FLOW:
391         case AH_V4_FLOW:
392         case ESP_V4_FLOW:
393         case IPV4_FLOW:
394                 break;
395
396         case TCP_V6_FLOW:
397                 if (hena & ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_TCP))
398                         cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
399                 break;
400         case UDP_V6_FLOW:
401                 if (hena & ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_UDP))
402                         cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
403                 break;
404
405         case SCTP_V6_FLOW:
406         case AH_ESP_V6_FLOW:
407         case AH_V6_FLOW:
408         case ESP_V6_FLOW:
409         case IPV6_FLOW:
410                 break;
411         default:
412                 cmd->data = 0;
413                 return -EINVAL;
414         }
415
416         return 0;
417 }
418
419 /**
420  * i40evf_get_rxnfc - command to get RX flow classification rules
421  * @netdev: network interface device structure
422  * @cmd: ethtool rxnfc command
423  *
424  * Returns Success if the command is supported.
425  **/
426 static int i40evf_get_rxnfc(struct net_device *netdev,
427                             struct ethtool_rxnfc *cmd,
428                             u32 *rule_locs)
429 {
430         struct i40evf_adapter *adapter = netdev_priv(netdev);
431         int ret = -EOPNOTSUPP;
432
433         switch (cmd->cmd) {
434         case ETHTOOL_GRXRINGS:
435                 cmd->data = adapter->vsi_res->num_queue_pairs;
436                 ret = 0;
437                 break;
438         case ETHTOOL_GRXFH:
439                 ret = i40evf_get_rss_hash_opts(adapter, cmd);
440                 break;
441         default:
442                 break;
443         }
444
445         return ret;
446 }
447
448 /**
449  * i40evf_set_rss_hash_opt - Enable/Disable flow types for RSS hash
450  * @adapter: board private structure
451  * @cmd: ethtool rxnfc command
452  *
453  * Returns Success if the flow input set is supported.
454  **/
455 static int i40evf_set_rss_hash_opt(struct i40evf_adapter *adapter,
456                                    struct ethtool_rxnfc *nfc)
457 {
458         struct i40e_hw *hw = &adapter->hw;
459
460         u64 hena = (u64)rd32(hw, I40E_VFQF_HENA(0)) |
461                    ((u64)rd32(hw, I40E_VFQF_HENA(1)) << 32);
462
463         /* RSS does not support anything other than hashing
464          * to queues on src and dst IPs and ports
465          */
466         if (nfc->data & ~(RXH_IP_SRC | RXH_IP_DST |
467                           RXH_L4_B_0_1 | RXH_L4_B_2_3))
468                 return -EINVAL;
469
470         /* We need at least the IP SRC and DEST fields for hashing */
471         if (!(nfc->data & RXH_IP_SRC) ||
472             !(nfc->data & RXH_IP_DST))
473                 return -EINVAL;
474
475         switch (nfc->flow_type) {
476         case TCP_V4_FLOW:
477                 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
478                 case 0:
479                         hena &= ~((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_TCP);
480                         break;
481                 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
482                         hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_TCP);
483                         break;
484                 default:
485                         return -EINVAL;
486                 }
487                 break;
488         case TCP_V6_FLOW:
489                 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
490                 case 0:
491                         hena &= ~((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_TCP);
492                         break;
493                 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
494                         hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_TCP);
495                         break;
496                 default:
497                         return -EINVAL;
498                 }
499                 break;
500         case UDP_V4_FLOW:
501                 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
502                 case 0:
503                         hena &= ~(((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_UDP) |
504                                   ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV4));
505                         break;
506                 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
507                         hena |= (((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_UDP) |
508                                  ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV4));
509                         break;
510                 default:
511                         return -EINVAL;
512                 }
513                 break;
514         case UDP_V6_FLOW:
515                 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
516                 case 0:
517                         hena &= ~(((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_UDP) |
518                                   ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV6));
519                         break;
520                 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
521                         hena |= (((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_UDP) |
522                                  ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV6));
523                         break;
524                 default:
525                         return -EINVAL;
526                 }
527                 break;
528         case AH_ESP_V4_FLOW:
529         case AH_V4_FLOW:
530         case ESP_V4_FLOW:
531         case SCTP_V4_FLOW:
532                 if ((nfc->data & RXH_L4_B_0_1) ||
533                     (nfc->data & RXH_L4_B_2_3))
534                         return -EINVAL;
535                 hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_OTHER);
536                 break;
537         case AH_ESP_V6_FLOW:
538         case AH_V6_FLOW:
539         case ESP_V6_FLOW:
540         case SCTP_V6_FLOW:
541                 if ((nfc->data & RXH_L4_B_0_1) ||
542                     (nfc->data & RXH_L4_B_2_3))
543                         return -EINVAL;
544                 hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_OTHER);
545                 break;
546         case IPV4_FLOW:
547                 hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_OTHER) |
548                         ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV4);
549                 break;
550         case IPV6_FLOW:
551                 hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_OTHER) |
552                         ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV6);
553                 break;
554         default:
555                 return -EINVAL;
556         }
557
558         wr32(hw, I40E_VFQF_HENA(0), (u32)hena);
559         wr32(hw, I40E_VFQF_HENA(1), (u32)(hena >> 32));
560         i40e_flush(hw);
561
562         return 0;
563 }
564
565 /**
566  * i40evf_set_rxnfc - command to set RX flow classification rules
567  * @netdev: network interface device structure
568  * @cmd: ethtool rxnfc command
569  *
570  * Returns Success if the command is supported.
571  **/
572 static int i40evf_set_rxnfc(struct net_device *netdev,
573                             struct ethtool_rxnfc *cmd)
574 {
575         struct i40evf_adapter *adapter = netdev_priv(netdev);
576         int ret = -EOPNOTSUPP;
577
578         switch (cmd->cmd) {
579         case ETHTOOL_SRXFH:
580                 ret = i40evf_set_rss_hash_opt(adapter, cmd);
581                 break;
582         default:
583                 break;
584         }
585
586         return ret;
587 }
588
589 /**
590  * i40evf_get_channels: get the number of channels supported by the device
591  * @netdev: network interface device structure
592  * @ch: channel information structure
593  *
594  * For the purposes of our device, we only use combined channels, i.e. a tx/rx
595  * queue pair. Report one extra channel to match our "other" MSI-X vector.
596  **/
597 static void i40evf_get_channels(struct net_device *netdev,
598                                 struct ethtool_channels *ch)
599 {
600         struct i40evf_adapter *adapter = netdev_priv(netdev);
601
602         /* Report maximum channels */
603         ch->max_combined = adapter->vsi_res->num_queue_pairs;
604
605         ch->max_other = NONQ_VECS;
606         ch->other_count = NONQ_VECS;
607
608         ch->combined_count = adapter->vsi_res->num_queue_pairs;
609 }
610
611 /**
612  * i40evf_get_rxfh_indir_size - get the rx flow hash indirection table size
613  * @netdev: network interface device structure
614  *
615  * Returns the table size.
616  **/
617 static u32 i40evf_get_rxfh_indir_size(struct net_device *netdev)
618 {
619         return (I40E_VFQF_HLUT_MAX_INDEX + 1) * 4;
620 }
621
622 /**
623  * i40evf_get_rxfh - get the rx flow hash indirection table
624  * @netdev: network interface device structure
625  * @indir: indirection table
626  * @key: hash key (will be %NULL until get_rxfh_key_size is implemented)
627  *
628  * Reads the indirection table directly from the hardware. Always returns 0.
629  **/
630 static int i40evf_get_rxfh(struct net_device *netdev, u32 *indir, u8 *key)
631 {
632         struct i40evf_adapter *adapter = netdev_priv(netdev);
633         struct i40e_hw *hw = &adapter->hw;
634         u32 hlut_val;
635         int i, j;
636
637         for (i = 0, j = 0; i < I40E_VFQF_HLUT_MAX_INDEX; i++) {
638                 hlut_val = rd32(hw, I40E_VFQF_HLUT(i));
639                 indir[j++] = hlut_val & 0xff;
640                 indir[j++] = (hlut_val >> 8) & 0xff;
641                 indir[j++] = (hlut_val >> 16) & 0xff;
642                 indir[j++] = (hlut_val >> 24) & 0xff;
643         }
644         return 0;
645 }
646
647 /**
648  * i40evf_set_rxfh - set the rx flow hash indirection table
649  * @netdev: network interface device structure
650  * @indir: indirection table
651  * @key: hash key (will be %NULL until get_rxfh_key_size is implemented)
652  *
653  * Returns -EINVAL if the table specifies an inavlid queue id, otherwise
654  * returns 0 after programming the table.
655  **/
656 static int i40evf_set_rxfh(struct net_device *netdev, const u32 *indir,
657                            const u8 *key)
658 {
659         struct i40evf_adapter *adapter = netdev_priv(netdev);
660         struct i40e_hw *hw = &adapter->hw;
661         u32 hlut_val;
662         int i, j;
663
664         for (i = 0, j = 0; i < I40E_VFQF_HLUT_MAX_INDEX + 1; i++) {
665                 hlut_val = indir[j++];
666                 hlut_val |= indir[j++] << 8;
667                 hlut_val |= indir[j++] << 16;
668                 hlut_val |= indir[j++] << 24;
669                 wr32(hw, I40E_VFQF_HLUT(i), hlut_val);
670         }
671
672         return 0;
673 }
674
675 static const struct ethtool_ops i40evf_ethtool_ops = {
676         .get_settings           = i40evf_get_settings,
677         .get_drvinfo            = i40evf_get_drvinfo,
678         .get_link               = ethtool_op_get_link,
679         .get_ringparam          = i40evf_get_ringparam,
680         .set_ringparam          = i40evf_set_ringparam,
681         .get_strings            = i40evf_get_strings,
682         .get_ethtool_stats      = i40evf_get_ethtool_stats,
683         .get_sset_count         = i40evf_get_sset_count,
684         .get_msglevel           = i40evf_get_msglevel,
685         .set_msglevel           = i40evf_set_msglevel,
686         .get_coalesce           = i40evf_get_coalesce,
687         .set_coalesce           = i40evf_set_coalesce,
688         .get_rxnfc              = i40evf_get_rxnfc,
689         .set_rxnfc              = i40evf_set_rxnfc,
690         .get_rxfh_indir_size    = i40evf_get_rxfh_indir_size,
691         .get_rxfh               = i40evf_get_rxfh,
692         .set_rxfh               = i40evf_set_rxfh,
693         .get_channels           = i40evf_get_channels,
694 };
695
696 /**
697  * i40evf_set_ethtool_ops - Initialize ethtool ops struct
698  * @netdev: network interface device structure
699  *
700  * Sets ethtool ops struct in our netdev so that ethtool can call
701  * our functions.
702  **/
703 void i40evf_set_ethtool_ops(struct net_device *netdev)
704 {
705         netdev->ethtool_ops = &i40evf_ethtool_ops;
706 }