Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
[linux-2.6-microblaze.git] / drivers / net / ethernet / intel / ice / ice_ethtool.c
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2018, Intel Corporation. */
3
4 /* ethtool support for ice */
5
6 #include "ice.h"
7 #include "ice_flow.h"
8 #include "ice_fltr.h"
9 #include "ice_lib.h"
10 #include "ice_dcb_lib.h"
11 #include <net/dcbnl.h>
12
13 struct ice_stats {
14         char stat_string[ETH_GSTRING_LEN];
15         int sizeof_stat;
16         int stat_offset;
17 };
18
19 #define ICE_STAT(_type, _name, _stat) { \
20         .stat_string = _name, \
21         .sizeof_stat = sizeof_field(_type, _stat), \
22         .stat_offset = offsetof(_type, _stat) \
23 }
24
25 #define ICE_VSI_STAT(_name, _stat) \
26                 ICE_STAT(struct ice_vsi, _name, _stat)
27 #define ICE_PF_STAT(_name, _stat) \
28                 ICE_STAT(struct ice_pf, _name, _stat)
29
30 static int ice_q_stats_len(struct net_device *netdev)
31 {
32         struct ice_netdev_priv *np = netdev_priv(netdev);
33
34         return ((np->vsi->alloc_txq + np->vsi->alloc_rxq) *
35                 (sizeof(struct ice_q_stats) / sizeof(u64)));
36 }
37
38 #define ICE_PF_STATS_LEN        ARRAY_SIZE(ice_gstrings_pf_stats)
39 #define ICE_VSI_STATS_LEN       ARRAY_SIZE(ice_gstrings_vsi_stats)
40
41 #define ICE_PFC_STATS_LEN ( \
42                 (sizeof_field(struct ice_pf, stats.priority_xoff_rx) + \
43                  sizeof_field(struct ice_pf, stats.priority_xon_rx) + \
44                  sizeof_field(struct ice_pf, stats.priority_xoff_tx) + \
45                  sizeof_field(struct ice_pf, stats.priority_xon_tx)) \
46                  / sizeof(u64))
47 #define ICE_ALL_STATS_LEN(n)    (ICE_PF_STATS_LEN + ICE_PFC_STATS_LEN + \
48                                  ICE_VSI_STATS_LEN + ice_q_stats_len(n))
49
50 static const struct ice_stats ice_gstrings_vsi_stats[] = {
51         ICE_VSI_STAT("rx_unicast", eth_stats.rx_unicast),
52         ICE_VSI_STAT("tx_unicast", eth_stats.tx_unicast),
53         ICE_VSI_STAT("rx_multicast", eth_stats.rx_multicast),
54         ICE_VSI_STAT("tx_multicast", eth_stats.tx_multicast),
55         ICE_VSI_STAT("rx_broadcast", eth_stats.rx_broadcast),
56         ICE_VSI_STAT("tx_broadcast", eth_stats.tx_broadcast),
57         ICE_VSI_STAT("rx_bytes", eth_stats.rx_bytes),
58         ICE_VSI_STAT("tx_bytes", eth_stats.tx_bytes),
59         ICE_VSI_STAT("rx_dropped", eth_stats.rx_discards),
60         ICE_VSI_STAT("rx_unknown_protocol", eth_stats.rx_unknown_protocol),
61         ICE_VSI_STAT("rx_alloc_fail", rx_buf_failed),
62         ICE_VSI_STAT("rx_pg_alloc_fail", rx_page_failed),
63         ICE_VSI_STAT("tx_errors", eth_stats.tx_errors),
64         ICE_VSI_STAT("tx_linearize", tx_linearize),
65         ICE_VSI_STAT("tx_busy", tx_busy),
66         ICE_VSI_STAT("tx_restart", tx_restart),
67 };
68
69 enum ice_ethtool_test_id {
70         ICE_ETH_TEST_REG = 0,
71         ICE_ETH_TEST_EEPROM,
72         ICE_ETH_TEST_INTR,
73         ICE_ETH_TEST_LOOP,
74         ICE_ETH_TEST_LINK,
75 };
76
77 static const char ice_gstrings_test[][ETH_GSTRING_LEN] = {
78         "Register test  (offline)",
79         "EEPROM test    (offline)",
80         "Interrupt test (offline)",
81         "Loopback test  (offline)",
82         "Link test   (on/offline)",
83 };
84
85 #define ICE_TEST_LEN (sizeof(ice_gstrings_test) / ETH_GSTRING_LEN)
86
87 /* These PF_STATs might look like duplicates of some NETDEV_STATs,
88  * but they aren't. This device is capable of supporting multiple
89  * VSIs/netdevs on a single PF. The NETDEV_STATs are for individual
90  * netdevs whereas the PF_STATs are for the physical function that's
91  * hosting these netdevs.
92  *
93  * The PF_STATs are appended to the netdev stats only when ethtool -S
94  * is queried on the base PF netdev.
95  */
96 static const struct ice_stats ice_gstrings_pf_stats[] = {
97         ICE_PF_STAT("rx_bytes.nic", stats.eth.rx_bytes),
98         ICE_PF_STAT("tx_bytes.nic", stats.eth.tx_bytes),
99         ICE_PF_STAT("rx_unicast.nic", stats.eth.rx_unicast),
100         ICE_PF_STAT("tx_unicast.nic", stats.eth.tx_unicast),
101         ICE_PF_STAT("rx_multicast.nic", stats.eth.rx_multicast),
102         ICE_PF_STAT("tx_multicast.nic", stats.eth.tx_multicast),
103         ICE_PF_STAT("rx_broadcast.nic", stats.eth.rx_broadcast),
104         ICE_PF_STAT("tx_broadcast.nic", stats.eth.tx_broadcast),
105         ICE_PF_STAT("tx_errors.nic", stats.eth.tx_errors),
106         ICE_PF_STAT("tx_timeout.nic", tx_timeout_count),
107         ICE_PF_STAT("rx_size_64.nic", stats.rx_size_64),
108         ICE_PF_STAT("tx_size_64.nic", stats.tx_size_64),
109         ICE_PF_STAT("rx_size_127.nic", stats.rx_size_127),
110         ICE_PF_STAT("tx_size_127.nic", stats.tx_size_127),
111         ICE_PF_STAT("rx_size_255.nic", stats.rx_size_255),
112         ICE_PF_STAT("tx_size_255.nic", stats.tx_size_255),
113         ICE_PF_STAT("rx_size_511.nic", stats.rx_size_511),
114         ICE_PF_STAT("tx_size_511.nic", stats.tx_size_511),
115         ICE_PF_STAT("rx_size_1023.nic", stats.rx_size_1023),
116         ICE_PF_STAT("tx_size_1023.nic", stats.tx_size_1023),
117         ICE_PF_STAT("rx_size_1522.nic", stats.rx_size_1522),
118         ICE_PF_STAT("tx_size_1522.nic", stats.tx_size_1522),
119         ICE_PF_STAT("rx_size_big.nic", stats.rx_size_big),
120         ICE_PF_STAT("tx_size_big.nic", stats.tx_size_big),
121         ICE_PF_STAT("link_xon_rx.nic", stats.link_xon_rx),
122         ICE_PF_STAT("link_xon_tx.nic", stats.link_xon_tx),
123         ICE_PF_STAT("link_xoff_rx.nic", stats.link_xoff_rx),
124         ICE_PF_STAT("link_xoff_tx.nic", stats.link_xoff_tx),
125         ICE_PF_STAT("tx_dropped_link_down.nic", stats.tx_dropped_link_down),
126         ICE_PF_STAT("rx_undersize.nic", stats.rx_undersize),
127         ICE_PF_STAT("rx_fragments.nic", stats.rx_fragments),
128         ICE_PF_STAT("rx_oversize.nic", stats.rx_oversize),
129         ICE_PF_STAT("rx_jabber.nic", stats.rx_jabber),
130         ICE_PF_STAT("rx_csum_bad.nic", hw_csum_rx_error),
131         ICE_PF_STAT("rx_length_errors.nic", stats.rx_len_errors),
132         ICE_PF_STAT("rx_dropped.nic", stats.eth.rx_discards),
133         ICE_PF_STAT("rx_crc_errors.nic", stats.crc_errors),
134         ICE_PF_STAT("illegal_bytes.nic", stats.illegal_bytes),
135         ICE_PF_STAT("mac_local_faults.nic", stats.mac_local_faults),
136         ICE_PF_STAT("mac_remote_faults.nic", stats.mac_remote_faults),
137         ICE_PF_STAT("fdir_sb_match.nic", stats.fd_sb_match),
138         ICE_PF_STAT("fdir_sb_status.nic", stats.fd_sb_status),
139 };
140
141 static const u32 ice_regs_dump_list[] = {
142         PFGEN_STATE,
143         PRTGEN_STATUS,
144         QRX_CTRL(0),
145         QINT_TQCTL(0),
146         QINT_RQCTL(0),
147         PFINT_OICR_ENA,
148         QRX_ITR(0),
149 };
150
151 struct ice_priv_flag {
152         char name[ETH_GSTRING_LEN];
153         u32 bitno;                      /* bit position in pf->flags */
154 };
155
156 #define ICE_PRIV_FLAG(_name, _bitno) { \
157         .name = _name, \
158         .bitno = _bitno, \
159 }
160
161 static const struct ice_priv_flag ice_gstrings_priv_flags[] = {
162         ICE_PRIV_FLAG("link-down-on-close", ICE_FLAG_LINK_DOWN_ON_CLOSE_ENA),
163         ICE_PRIV_FLAG("fw-lldp-agent", ICE_FLAG_FW_LLDP_AGENT),
164         ICE_PRIV_FLAG("vf-true-promisc-support",
165                       ICE_FLAG_VF_TRUE_PROMISC_ENA),
166         ICE_PRIV_FLAG("mdd-auto-reset-vf", ICE_FLAG_MDD_AUTO_RESET_VF),
167         ICE_PRIV_FLAG("legacy-rx", ICE_FLAG_LEGACY_RX),
168 };
169
170 #define ICE_PRIV_FLAG_ARRAY_SIZE        ARRAY_SIZE(ice_gstrings_priv_flags)
171
172 static void
173 ice_get_drvinfo(struct net_device *netdev, struct ethtool_drvinfo *drvinfo)
174 {
175         struct ice_netdev_priv *np = netdev_priv(netdev);
176         struct ice_vsi *vsi = np->vsi;
177         struct ice_pf *pf = vsi->back;
178         struct ice_hw *hw = &pf->hw;
179         struct ice_orom_info *orom;
180         struct ice_nvm_info *nvm;
181
182         nvm = &hw->flash.nvm;
183         orom = &hw->flash.orom;
184
185         strscpy(drvinfo->driver, KBUILD_MODNAME, sizeof(drvinfo->driver));
186
187         /* Display NVM version (from which the firmware version can be
188          * determined) which contains more pertinent information.
189          */
190         snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version),
191                  "%x.%02x 0x%x %d.%d.%d", nvm->major, nvm->minor,
192                  nvm->eetrack, orom->major, orom->build, orom->patch);
193
194         strscpy(drvinfo->bus_info, pci_name(pf->pdev),
195                 sizeof(drvinfo->bus_info));
196         drvinfo->n_priv_flags = ICE_PRIV_FLAG_ARRAY_SIZE;
197 }
198
199 static int ice_get_regs_len(struct net_device __always_unused *netdev)
200 {
201         return sizeof(ice_regs_dump_list);
202 }
203
204 static void
205 ice_get_regs(struct net_device *netdev, struct ethtool_regs *regs, void *p)
206 {
207         struct ice_netdev_priv *np = netdev_priv(netdev);
208         struct ice_pf *pf = np->vsi->back;
209         struct ice_hw *hw = &pf->hw;
210         u32 *regs_buf = (u32 *)p;
211         unsigned int i;
212
213         regs->version = 1;
214
215         for (i = 0; i < ARRAY_SIZE(ice_regs_dump_list); ++i)
216                 regs_buf[i] = rd32(hw, ice_regs_dump_list[i]);
217 }
218
219 static u32 ice_get_msglevel(struct net_device *netdev)
220 {
221         struct ice_netdev_priv *np = netdev_priv(netdev);
222         struct ice_pf *pf = np->vsi->back;
223
224 #ifndef CONFIG_DYNAMIC_DEBUG
225         if (pf->hw.debug_mask)
226                 netdev_info(netdev, "hw debug_mask: 0x%llX\n",
227                             pf->hw.debug_mask);
228 #endif /* !CONFIG_DYNAMIC_DEBUG */
229
230         return pf->msg_enable;
231 }
232
233 static void ice_set_msglevel(struct net_device *netdev, u32 data)
234 {
235         struct ice_netdev_priv *np = netdev_priv(netdev);
236         struct ice_pf *pf = np->vsi->back;
237
238 #ifndef CONFIG_DYNAMIC_DEBUG
239         if (ICE_DBG_USER & data)
240                 pf->hw.debug_mask = data;
241         else
242                 pf->msg_enable = data;
243 #else
244         pf->msg_enable = data;
245 #endif /* !CONFIG_DYNAMIC_DEBUG */
246 }
247
248 static int ice_get_eeprom_len(struct net_device *netdev)
249 {
250         struct ice_netdev_priv *np = netdev_priv(netdev);
251         struct ice_pf *pf = np->vsi->back;
252
253         return (int)pf->hw.flash.flash_size;
254 }
255
256 static int
257 ice_get_eeprom(struct net_device *netdev, struct ethtool_eeprom *eeprom,
258                u8 *bytes)
259 {
260         struct ice_netdev_priv *np = netdev_priv(netdev);
261         struct ice_vsi *vsi = np->vsi;
262         struct ice_pf *pf = vsi->back;
263         struct ice_hw *hw = &pf->hw;
264         enum ice_status status;
265         struct device *dev;
266         int ret = 0;
267         u8 *buf;
268
269         dev = ice_pf_to_dev(pf);
270
271         eeprom->magic = hw->vendor_id | (hw->device_id << 16);
272         netdev_dbg(netdev, "GEEPROM cmd 0x%08x, offset 0x%08x, len 0x%08x\n",
273                    eeprom->cmd, eeprom->offset, eeprom->len);
274
275         buf = kzalloc(eeprom->len, GFP_KERNEL);
276         if (!buf)
277                 return -ENOMEM;
278
279         status = ice_acquire_nvm(hw, ICE_RES_READ);
280         if (status) {
281                 dev_err(dev, "ice_acquire_nvm failed, err %s aq_err %s\n",
282                         ice_stat_str(status),
283                         ice_aq_str(hw->adminq.sq_last_status));
284                 ret = -EIO;
285                 goto out;
286         }
287
288         status = ice_read_flat_nvm(hw, eeprom->offset, &eeprom->len, buf,
289                                    false);
290         if (status) {
291                 dev_err(dev, "ice_read_flat_nvm failed, err %s aq_err %s\n",
292                         ice_stat_str(status),
293                         ice_aq_str(hw->adminq.sq_last_status));
294                 ret = -EIO;
295                 goto release;
296         }
297
298         memcpy(bytes, buf, eeprom->len);
299 release:
300         ice_release_nvm(hw);
301 out:
302         kfree(buf);
303         return ret;
304 }
305
306 /**
307  * ice_active_vfs - check if there are any active VFs
308  * @pf: board private structure
309  *
310  * Returns true if an active VF is found, otherwise returns false
311  */
312 static bool ice_active_vfs(struct ice_pf *pf)
313 {
314         unsigned int i;
315
316         ice_for_each_vf(pf, i) {
317                 struct ice_vf *vf = &pf->vf[i];
318
319                 if (test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states))
320                         return true;
321         }
322
323         return false;
324 }
325
326 /**
327  * ice_link_test - perform a link test on a given net_device
328  * @netdev: network interface device structure
329  *
330  * This function performs one of the self-tests required by ethtool.
331  * Returns 0 on success, non-zero on failure.
332  */
333 static u64 ice_link_test(struct net_device *netdev)
334 {
335         struct ice_netdev_priv *np = netdev_priv(netdev);
336         enum ice_status status;
337         bool link_up = false;
338
339         netdev_info(netdev, "link test\n");
340         status = ice_get_link_status(np->vsi->port_info, &link_up);
341         if (status) {
342                 netdev_err(netdev, "link query error, status = %s\n",
343                            ice_stat_str(status));
344                 return 1;
345         }
346
347         if (!link_up)
348                 return 2;
349
350         return 0;
351 }
352
353 /**
354  * ice_eeprom_test - perform an EEPROM test on a given net_device
355  * @netdev: network interface device structure
356  *
357  * This function performs one of the self-tests required by ethtool.
358  * Returns 0 on success, non-zero on failure.
359  */
360 static u64 ice_eeprom_test(struct net_device *netdev)
361 {
362         struct ice_netdev_priv *np = netdev_priv(netdev);
363         struct ice_pf *pf = np->vsi->back;
364
365         netdev_info(netdev, "EEPROM test\n");
366         return !!(ice_nvm_validate_checksum(&pf->hw));
367 }
368
369 /**
370  * ice_reg_pattern_test
371  * @hw: pointer to the HW struct
372  * @reg: reg to be tested
373  * @mask: bits to be touched
374  */
375 static int ice_reg_pattern_test(struct ice_hw *hw, u32 reg, u32 mask)
376 {
377         struct ice_pf *pf = (struct ice_pf *)hw->back;
378         struct device *dev = ice_pf_to_dev(pf);
379         static const u32 patterns[] = {
380                 0x5A5A5A5A, 0xA5A5A5A5,
381                 0x00000000, 0xFFFFFFFF
382         };
383         u32 val, orig_val;
384         unsigned int i;
385
386         orig_val = rd32(hw, reg);
387         for (i = 0; i < ARRAY_SIZE(patterns); ++i) {
388                 u32 pattern = patterns[i] & mask;
389
390                 wr32(hw, reg, pattern);
391                 val = rd32(hw, reg);
392                 if (val == pattern)
393                         continue;
394                 dev_err(dev, "%s: reg pattern test failed - reg 0x%08x pat 0x%08x val 0x%08x\n"
395                         , __func__, reg, pattern, val);
396                 return 1;
397         }
398
399         wr32(hw, reg, orig_val);
400         val = rd32(hw, reg);
401         if (val != orig_val) {
402                 dev_err(dev, "%s: reg restore test failed - reg 0x%08x orig 0x%08x val 0x%08x\n"
403                         , __func__, reg, orig_val, val);
404                 return 1;
405         }
406
407         return 0;
408 }
409
410 /**
411  * ice_reg_test - perform a register test on a given net_device
412  * @netdev: network interface device structure
413  *
414  * This function performs one of the self-tests required by ethtool.
415  * Returns 0 on success, non-zero on failure.
416  */
417 static u64 ice_reg_test(struct net_device *netdev)
418 {
419         struct ice_netdev_priv *np = netdev_priv(netdev);
420         struct ice_hw *hw = np->vsi->port_info->hw;
421         u32 int_elements = hw->func_caps.common_cap.num_msix_vectors ?
422                 hw->func_caps.common_cap.num_msix_vectors - 1 : 1;
423         struct ice_diag_reg_test_info {
424                 u32 address;
425                 u32 mask;
426                 u32 elem_num;
427                 u32 elem_size;
428         } ice_reg_list[] = {
429                 {GLINT_ITR(0, 0), 0x00000fff, int_elements,
430                         GLINT_ITR(0, 1) - GLINT_ITR(0, 0)},
431                 {GLINT_ITR(1, 0), 0x00000fff, int_elements,
432                         GLINT_ITR(1, 1) - GLINT_ITR(1, 0)},
433                 {GLINT_ITR(0, 0), 0x00000fff, int_elements,
434                         GLINT_ITR(2, 1) - GLINT_ITR(2, 0)},
435                 {GLINT_CTL, 0xffff0001, 1, 0}
436         };
437         unsigned int i;
438
439         netdev_dbg(netdev, "Register test\n");
440         for (i = 0; i < ARRAY_SIZE(ice_reg_list); ++i) {
441                 u32 j;
442
443                 for (j = 0; j < ice_reg_list[i].elem_num; ++j) {
444                         u32 mask = ice_reg_list[i].mask;
445                         u32 reg = ice_reg_list[i].address +
446                                 (j * ice_reg_list[i].elem_size);
447
448                         /* bail on failure (non-zero return) */
449                         if (ice_reg_pattern_test(hw, reg, mask))
450                                 return 1;
451                 }
452         }
453
454         return 0;
455 }
456
457 /**
458  * ice_lbtest_prepare_rings - configure Tx/Rx test rings
459  * @vsi: pointer to the VSI structure
460  *
461  * Function configures rings of a VSI for loopback test without
462  * enabling interrupts or informing the kernel about new queues.
463  *
464  * Returns 0 on success, negative on failure.
465  */
466 static int ice_lbtest_prepare_rings(struct ice_vsi *vsi)
467 {
468         int status;
469
470         status = ice_vsi_setup_tx_rings(vsi);
471         if (status)
472                 goto err_setup_tx_ring;
473
474         status = ice_vsi_setup_rx_rings(vsi);
475         if (status)
476                 goto err_setup_rx_ring;
477
478         status = ice_vsi_cfg(vsi);
479         if (status)
480                 goto err_setup_rx_ring;
481
482         status = ice_vsi_start_all_rx_rings(vsi);
483         if (status)
484                 goto err_start_rx_ring;
485
486         return status;
487
488 err_start_rx_ring:
489         ice_vsi_free_rx_rings(vsi);
490 err_setup_rx_ring:
491         ice_vsi_stop_lan_tx_rings(vsi, ICE_NO_RESET, 0);
492 err_setup_tx_ring:
493         ice_vsi_free_tx_rings(vsi);
494
495         return status;
496 }
497
498 /**
499  * ice_lbtest_disable_rings - disable Tx/Rx test rings after loopback test
500  * @vsi: pointer to the VSI structure
501  *
502  * Function stops and frees VSI rings after a loopback test.
503  * Returns 0 on success, negative on failure.
504  */
505 static int ice_lbtest_disable_rings(struct ice_vsi *vsi)
506 {
507         int status;
508
509         status = ice_vsi_stop_lan_tx_rings(vsi, ICE_NO_RESET, 0);
510         if (status)
511                 netdev_err(vsi->netdev, "Failed to stop Tx rings, VSI %d error %d\n",
512                            vsi->vsi_num, status);
513
514         status = ice_vsi_stop_all_rx_rings(vsi);
515         if (status)
516                 netdev_err(vsi->netdev, "Failed to stop Rx rings, VSI %d error %d\n",
517                            vsi->vsi_num, status);
518
519         ice_vsi_free_tx_rings(vsi);
520         ice_vsi_free_rx_rings(vsi);
521
522         return status;
523 }
524
525 /**
526  * ice_lbtest_create_frame - create test packet
527  * @pf: pointer to the PF structure
528  * @ret_data: allocated frame buffer
529  * @size: size of the packet data
530  *
531  * Function allocates a frame with a test pattern on specific offsets.
532  * Returns 0 on success, non-zero on failure.
533  */
534 static int ice_lbtest_create_frame(struct ice_pf *pf, u8 **ret_data, u16 size)
535 {
536         u8 *data;
537
538         if (!pf)
539                 return -EINVAL;
540
541         data = devm_kzalloc(ice_pf_to_dev(pf), size, GFP_KERNEL);
542         if (!data)
543                 return -ENOMEM;
544
545         /* Since the ethernet test frame should always be at least
546          * 64 bytes long, fill some octets in the payload with test data.
547          */
548         memset(data, 0xFF, size);
549         data[32] = 0xDE;
550         data[42] = 0xAD;
551         data[44] = 0xBE;
552         data[46] = 0xEF;
553
554         *ret_data = data;
555
556         return 0;
557 }
558
559 /**
560  * ice_lbtest_check_frame - verify received loopback frame
561  * @frame: pointer to the raw packet data
562  *
563  * Function verifies received test frame with a pattern.
564  * Returns true if frame matches the pattern, false otherwise.
565  */
566 static bool ice_lbtest_check_frame(u8 *frame)
567 {
568         /* Validate bytes of a frame under offsets chosen earlier */
569         if (frame[32] == 0xDE &&
570             frame[42] == 0xAD &&
571             frame[44] == 0xBE &&
572             frame[46] == 0xEF &&
573             frame[48] == 0xFF)
574                 return true;
575
576         return false;
577 }
578
579 /**
580  * ice_diag_send - send test frames to the test ring
581  * @tx_ring: pointer to the transmit ring
582  * @data: pointer to the raw packet data
583  * @size: size of the packet to send
584  *
585  * Function sends loopback packets on a test Tx ring.
586  */
587 static int ice_diag_send(struct ice_ring *tx_ring, u8 *data, u16 size)
588 {
589         struct ice_tx_desc *tx_desc;
590         struct ice_tx_buf *tx_buf;
591         dma_addr_t dma;
592         u64 td_cmd;
593
594         tx_desc = ICE_TX_DESC(tx_ring, tx_ring->next_to_use);
595         tx_buf = &tx_ring->tx_buf[tx_ring->next_to_use];
596
597         dma = dma_map_single(tx_ring->dev, data, size, DMA_TO_DEVICE);
598         if (dma_mapping_error(tx_ring->dev, dma))
599                 return -EINVAL;
600
601         tx_desc->buf_addr = cpu_to_le64(dma);
602
603         /* These flags are required for a descriptor to be pushed out */
604         td_cmd = (u64)(ICE_TX_DESC_CMD_EOP | ICE_TX_DESC_CMD_RS);
605         tx_desc->cmd_type_offset_bsz =
606                 cpu_to_le64(ICE_TX_DESC_DTYPE_DATA |
607                             (td_cmd << ICE_TXD_QW1_CMD_S) |
608                             ((u64)0 << ICE_TXD_QW1_OFFSET_S) |
609                             ((u64)size << ICE_TXD_QW1_TX_BUF_SZ_S) |
610                             ((u64)0 << ICE_TXD_QW1_L2TAG1_S));
611
612         tx_buf->next_to_watch = tx_desc;
613
614         /* Force memory write to complete before letting h/w know
615          * there are new descriptors to fetch.
616          */
617         wmb();
618
619         tx_ring->next_to_use++;
620         if (tx_ring->next_to_use >= tx_ring->count)
621                 tx_ring->next_to_use = 0;
622
623         writel_relaxed(tx_ring->next_to_use, tx_ring->tail);
624
625         /* Wait until the packets get transmitted to the receive queue. */
626         usleep_range(1000, 2000);
627         dma_unmap_single(tx_ring->dev, dma, size, DMA_TO_DEVICE);
628
629         return 0;
630 }
631
632 #define ICE_LB_FRAME_SIZE 64
633 /**
634  * ice_lbtest_receive_frames - receive and verify test frames
635  * @rx_ring: pointer to the receive ring
636  *
637  * Function receives loopback packets and verify their correctness.
638  * Returns number of received valid frames.
639  */
640 static int ice_lbtest_receive_frames(struct ice_ring *rx_ring)
641 {
642         struct ice_rx_buf *rx_buf;
643         int valid_frames, i;
644         u8 *received_buf;
645
646         valid_frames = 0;
647
648         for (i = 0; i < rx_ring->count; i++) {
649                 union ice_32b_rx_flex_desc *rx_desc;
650
651                 rx_desc = ICE_RX_DESC(rx_ring, i);
652
653                 if (!(rx_desc->wb.status_error0 &
654                     cpu_to_le16(ICE_TX_DESC_CMD_EOP | ICE_TX_DESC_CMD_RS)))
655                         continue;
656
657                 rx_buf = &rx_ring->rx_buf[i];
658                 received_buf = page_address(rx_buf->page) + rx_buf->page_offset;
659
660                 if (ice_lbtest_check_frame(received_buf))
661                         valid_frames++;
662         }
663
664         return valid_frames;
665 }
666
667 /**
668  * ice_loopback_test - perform a loopback test on a given net_device
669  * @netdev: network interface device structure
670  *
671  * This function performs one of the self-tests required by ethtool.
672  * Returns 0 on success, non-zero on failure.
673  */
674 static u64 ice_loopback_test(struct net_device *netdev)
675 {
676         struct ice_netdev_priv *np = netdev_priv(netdev);
677         struct ice_vsi *orig_vsi = np->vsi, *test_vsi;
678         struct ice_pf *pf = orig_vsi->back;
679         struct ice_ring *tx_ring, *rx_ring;
680         u8 broadcast[ETH_ALEN], ret = 0;
681         int num_frames, valid_frames;
682         struct device *dev;
683         u8 *tx_frame;
684         int i;
685
686         dev = ice_pf_to_dev(pf);
687         netdev_info(netdev, "loopback test\n");
688
689         test_vsi = ice_lb_vsi_setup(pf, pf->hw.port_info);
690         if (!test_vsi) {
691                 netdev_err(netdev, "Failed to create a VSI for the loopback test\n");
692                 return 1;
693         }
694
695         test_vsi->netdev = netdev;
696         tx_ring = test_vsi->tx_rings[0];
697         rx_ring = test_vsi->rx_rings[0];
698
699         if (ice_lbtest_prepare_rings(test_vsi)) {
700                 ret = 2;
701                 goto lbtest_vsi_close;
702         }
703
704         if (ice_alloc_rx_bufs(rx_ring, rx_ring->count)) {
705                 ret = 3;
706                 goto lbtest_rings_dis;
707         }
708
709         /* Enable MAC loopback in firmware */
710         if (ice_aq_set_mac_loopback(&pf->hw, true, NULL)) {
711                 ret = 4;
712                 goto lbtest_mac_dis;
713         }
714
715         /* Test VSI needs to receive broadcast packets */
716         eth_broadcast_addr(broadcast);
717         if (ice_fltr_add_mac(test_vsi, broadcast, ICE_FWD_TO_VSI)) {
718                 ret = 5;
719                 goto lbtest_mac_dis;
720         }
721
722         if (ice_lbtest_create_frame(pf, &tx_frame, ICE_LB_FRAME_SIZE)) {
723                 ret = 7;
724                 goto remove_mac_filters;
725         }
726
727         num_frames = min_t(int, tx_ring->count, 32);
728         for (i = 0; i < num_frames; i++) {
729                 if (ice_diag_send(tx_ring, tx_frame, ICE_LB_FRAME_SIZE)) {
730                         ret = 8;
731                         goto lbtest_free_frame;
732                 }
733         }
734
735         valid_frames = ice_lbtest_receive_frames(rx_ring);
736         if (!valid_frames)
737                 ret = 9;
738         else if (valid_frames != num_frames)
739                 ret = 10;
740
741 lbtest_free_frame:
742         devm_kfree(dev, tx_frame);
743 remove_mac_filters:
744         if (ice_fltr_remove_mac(test_vsi, broadcast, ICE_FWD_TO_VSI))
745                 netdev_err(netdev, "Could not remove MAC filter for the test VSI\n");
746 lbtest_mac_dis:
747         /* Disable MAC loopback after the test is completed. */
748         if (ice_aq_set_mac_loopback(&pf->hw, false, NULL))
749                 netdev_err(netdev, "Could not disable MAC loopback\n");
750 lbtest_rings_dis:
751         if (ice_lbtest_disable_rings(test_vsi))
752                 netdev_err(netdev, "Could not disable test rings\n");
753 lbtest_vsi_close:
754         test_vsi->netdev = NULL;
755         if (ice_vsi_release(test_vsi))
756                 netdev_err(netdev, "Failed to remove the test VSI\n");
757
758         return ret;
759 }
760
761 /**
762  * ice_intr_test - perform an interrupt test on a given net_device
763  * @netdev: network interface device structure
764  *
765  * This function performs one of the self-tests required by ethtool.
766  * Returns 0 on success, non-zero on failure.
767  */
768 static u64 ice_intr_test(struct net_device *netdev)
769 {
770         struct ice_netdev_priv *np = netdev_priv(netdev);
771         struct ice_pf *pf = np->vsi->back;
772         u16 swic_old = pf->sw_int_count;
773
774         netdev_info(netdev, "interrupt test\n");
775
776         wr32(&pf->hw, GLINT_DYN_CTL(pf->oicr_idx),
777              GLINT_DYN_CTL_SW_ITR_INDX_M |
778              GLINT_DYN_CTL_INTENA_MSK_M |
779              GLINT_DYN_CTL_SWINT_TRIG_M);
780
781         usleep_range(1000, 2000);
782         return (swic_old == pf->sw_int_count);
783 }
784
785 /**
786  * ice_self_test - handler function for performing a self-test by ethtool
787  * @netdev: network interface device structure
788  * @eth_test: ethtool_test structure
789  * @data: required by ethtool.self_test
790  *
791  * This function is called after invoking 'ethtool -t devname' command where
792  * devname is the name of the network device on which ethtool should operate.
793  * It performs a set of self-tests to check if a device works properly.
794  */
795 static void
796 ice_self_test(struct net_device *netdev, struct ethtool_test *eth_test,
797               u64 *data)
798 {
799         struct ice_netdev_priv *np = netdev_priv(netdev);
800         bool if_running = netif_running(netdev);
801         struct ice_pf *pf = np->vsi->back;
802         struct device *dev;
803
804         dev = ice_pf_to_dev(pf);
805
806         if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
807                 netdev_info(netdev, "offline testing starting\n");
808
809                 set_bit(__ICE_TESTING, pf->state);
810
811                 if (ice_active_vfs(pf)) {
812                         dev_warn(dev, "Please take active VFs and Netqueues offline and restart the adapter before running NIC diagnostics\n");
813                         data[ICE_ETH_TEST_REG] = 1;
814                         data[ICE_ETH_TEST_EEPROM] = 1;
815                         data[ICE_ETH_TEST_INTR] = 1;
816                         data[ICE_ETH_TEST_LOOP] = 1;
817                         data[ICE_ETH_TEST_LINK] = 1;
818                         eth_test->flags |= ETH_TEST_FL_FAILED;
819                         clear_bit(__ICE_TESTING, pf->state);
820                         goto skip_ol_tests;
821                 }
822                 /* If the device is online then take it offline */
823                 if (if_running)
824                         /* indicate we're in test mode */
825                         ice_stop(netdev);
826
827                 data[ICE_ETH_TEST_LINK] = ice_link_test(netdev);
828                 data[ICE_ETH_TEST_EEPROM] = ice_eeprom_test(netdev);
829                 data[ICE_ETH_TEST_INTR] = ice_intr_test(netdev);
830                 data[ICE_ETH_TEST_LOOP] = ice_loopback_test(netdev);
831                 data[ICE_ETH_TEST_REG] = ice_reg_test(netdev);
832
833                 if (data[ICE_ETH_TEST_LINK] ||
834                     data[ICE_ETH_TEST_EEPROM] ||
835                     data[ICE_ETH_TEST_LOOP] ||
836                     data[ICE_ETH_TEST_INTR] ||
837                     data[ICE_ETH_TEST_REG])
838                         eth_test->flags |= ETH_TEST_FL_FAILED;
839
840                 clear_bit(__ICE_TESTING, pf->state);
841
842                 if (if_running) {
843                         int status = ice_open(netdev);
844
845                         if (status) {
846                                 dev_err(dev, "Could not open device %s, err %d\n",
847                                         pf->int_name, status);
848                         }
849                 }
850         } else {
851                 /* Online tests */
852                 netdev_info(netdev, "online testing starting\n");
853
854                 data[ICE_ETH_TEST_LINK] = ice_link_test(netdev);
855                 if (data[ICE_ETH_TEST_LINK])
856                         eth_test->flags |= ETH_TEST_FL_FAILED;
857
858                 /* Offline only tests, not run in online; pass by default */
859                 data[ICE_ETH_TEST_REG] = 0;
860                 data[ICE_ETH_TEST_EEPROM] = 0;
861                 data[ICE_ETH_TEST_INTR] = 0;
862                 data[ICE_ETH_TEST_LOOP] = 0;
863         }
864
865 skip_ol_tests:
866         netdev_info(netdev, "testing finished\n");
867 }
868
869 static void ice_get_strings(struct net_device *netdev, u32 stringset, u8 *data)
870 {
871         struct ice_netdev_priv *np = netdev_priv(netdev);
872         struct ice_vsi *vsi = np->vsi;
873         unsigned int i;
874         u8 *p = data;
875
876         switch (stringset) {
877         case ETH_SS_STATS:
878                 for (i = 0; i < ICE_VSI_STATS_LEN; i++)
879                         ethtool_sprintf(&p,
880                                         ice_gstrings_vsi_stats[i].stat_string);
881
882                 ice_for_each_alloc_txq(vsi, i) {
883                         ethtool_sprintf(&p, "tx_queue_%u_packets", i);
884                         ethtool_sprintf(&p, "tx_queue_%u_bytes", i);
885                 }
886
887                 ice_for_each_alloc_rxq(vsi, i) {
888                         ethtool_sprintf(&p, "rx_queue_%u_packets", i);
889                         ethtool_sprintf(&p, "rx_queue_%u_bytes", i);
890                 }
891
892                 if (vsi->type != ICE_VSI_PF)
893                         return;
894
895                 for (i = 0; i < ICE_PF_STATS_LEN; i++)
896                         ethtool_sprintf(&p,
897                                         ice_gstrings_pf_stats[i].stat_string);
898
899                 for (i = 0; i < ICE_MAX_USER_PRIORITY; i++) {
900                         ethtool_sprintf(&p, "tx_priority_%u_xon.nic", i);
901                         ethtool_sprintf(&p, "tx_priority_%u_xoff.nic", i);
902                 }
903                 for (i = 0; i < ICE_MAX_USER_PRIORITY; i++) {
904                         ethtool_sprintf(&p, "rx_priority_%u_xon.nic", i);
905                         ethtool_sprintf(&p, "rx_priority_%u_xoff.nic", i);
906                 }
907                 break;
908         case ETH_SS_TEST:
909                 memcpy(data, ice_gstrings_test, ICE_TEST_LEN * ETH_GSTRING_LEN);
910                 break;
911         case ETH_SS_PRIV_FLAGS:
912                 for (i = 0; i < ICE_PRIV_FLAG_ARRAY_SIZE; i++)
913                         ethtool_sprintf(&p, ice_gstrings_priv_flags[i].name);
914                 break;
915         default:
916                 break;
917         }
918 }
919
920 static int
921 ice_set_phys_id(struct net_device *netdev, enum ethtool_phys_id_state state)
922 {
923         struct ice_netdev_priv *np = netdev_priv(netdev);
924         bool led_active;
925
926         switch (state) {
927         case ETHTOOL_ID_ACTIVE:
928                 led_active = true;
929                 break;
930         case ETHTOOL_ID_INACTIVE:
931                 led_active = false;
932                 break;
933         default:
934                 return -EINVAL;
935         }
936
937         if (ice_aq_set_port_id_led(np->vsi->port_info, !led_active, NULL))
938                 return -EIO;
939
940         return 0;
941 }
942
943 /**
944  * ice_set_fec_cfg - Set link FEC options
945  * @netdev: network interface device structure
946  * @req_fec: FEC mode to configure
947  */
948 static int ice_set_fec_cfg(struct net_device *netdev, enum ice_fec_mode req_fec)
949 {
950         struct ice_netdev_priv *np = netdev_priv(netdev);
951         struct ice_aqc_set_phy_cfg_data config = { 0 };
952         struct ice_vsi *vsi = np->vsi;
953         struct ice_port_info *pi;
954
955         pi = vsi->port_info;
956         if (!pi)
957                 return -EOPNOTSUPP;
958
959         /* Changing the FEC parameters is not supported if not the PF VSI */
960         if (vsi->type != ICE_VSI_PF) {
961                 netdev_info(netdev, "Changing FEC parameters only supported for PF VSI\n");
962                 return -EOPNOTSUPP;
963         }
964
965         /* Proceed only if requesting different FEC mode */
966         if (pi->phy.curr_user_fec_req == req_fec)
967                 return 0;
968
969         /* Copy the current user PHY configuration. The current user PHY
970          * configuration is initialized during probe from PHY capabilities
971          * software mode, and updated on set PHY configuration.
972          */
973         memcpy(&config, &pi->phy.curr_user_phy_cfg, sizeof(config));
974
975         ice_cfg_phy_fec(pi, &config, req_fec);
976         config.caps |= ICE_AQ_PHY_ENA_AUTO_LINK_UPDT;
977
978         if (ice_aq_set_phy_cfg(pi->hw, pi, &config, NULL))
979                 return -EAGAIN;
980
981         /* Save requested FEC config */
982         pi->phy.curr_user_fec_req = req_fec;
983
984         return 0;
985 }
986
987 /**
988  * ice_set_fecparam - Set FEC link options
989  * @netdev: network interface device structure
990  * @fecparam: Ethtool structure to retrieve FEC parameters
991  */
992 static int
993 ice_set_fecparam(struct net_device *netdev, struct ethtool_fecparam *fecparam)
994 {
995         struct ice_netdev_priv *np = netdev_priv(netdev);
996         struct ice_vsi *vsi = np->vsi;
997         enum ice_fec_mode fec;
998
999         switch (fecparam->fec) {
1000         case ETHTOOL_FEC_AUTO:
1001                 fec = ICE_FEC_AUTO;
1002                 break;
1003         case ETHTOOL_FEC_RS:
1004                 fec = ICE_FEC_RS;
1005                 break;
1006         case ETHTOOL_FEC_BASER:
1007                 fec = ICE_FEC_BASER;
1008                 break;
1009         case ETHTOOL_FEC_OFF:
1010         case ETHTOOL_FEC_NONE:
1011                 fec = ICE_FEC_NONE;
1012                 break;
1013         default:
1014                 dev_warn(ice_pf_to_dev(vsi->back), "Unsupported FEC mode: %d\n",
1015                          fecparam->fec);
1016                 return -EINVAL;
1017         }
1018
1019         return ice_set_fec_cfg(netdev, fec);
1020 }
1021
1022 /**
1023  * ice_get_fecparam - Get link FEC options
1024  * @netdev: network interface device structure
1025  * @fecparam: Ethtool structure to retrieve FEC parameters
1026  */
1027 static int
1028 ice_get_fecparam(struct net_device *netdev, struct ethtool_fecparam *fecparam)
1029 {
1030         struct ice_netdev_priv *np = netdev_priv(netdev);
1031         struct ice_aqc_get_phy_caps_data *caps;
1032         struct ice_link_status *link_info;
1033         struct ice_vsi *vsi = np->vsi;
1034         struct ice_port_info *pi;
1035         enum ice_status status;
1036         int err = 0;
1037
1038         pi = vsi->port_info;
1039
1040         if (!pi)
1041                 return -EOPNOTSUPP;
1042         link_info = &pi->phy.link_info;
1043
1044         /* Set FEC mode based on negotiated link info */
1045         switch (link_info->fec_info) {
1046         case ICE_AQ_LINK_25G_KR_FEC_EN:
1047                 fecparam->active_fec = ETHTOOL_FEC_BASER;
1048                 break;
1049         case ICE_AQ_LINK_25G_RS_528_FEC_EN:
1050         case ICE_AQ_LINK_25G_RS_544_FEC_EN:
1051                 fecparam->active_fec = ETHTOOL_FEC_RS;
1052                 break;
1053         default:
1054                 fecparam->active_fec = ETHTOOL_FEC_OFF;
1055                 break;
1056         }
1057
1058         caps = kzalloc(sizeof(*caps), GFP_KERNEL);
1059         if (!caps)
1060                 return -ENOMEM;
1061
1062         status = ice_aq_get_phy_caps(pi, false, ICE_AQC_REPORT_TOPO_CAP_MEDIA,
1063                                      caps, NULL);
1064         if (status) {
1065                 err = -EAGAIN;
1066                 goto done;
1067         }
1068
1069         /* Set supported/configured FEC modes based on PHY capability */
1070         if (caps->caps & ICE_AQC_PHY_EN_AUTO_FEC)
1071                 fecparam->fec |= ETHTOOL_FEC_AUTO;
1072         if (caps->link_fec_options & ICE_AQC_PHY_FEC_10G_KR_40G_KR4_EN ||
1073             caps->link_fec_options & ICE_AQC_PHY_FEC_10G_KR_40G_KR4_REQ ||
1074             caps->link_fec_options & ICE_AQC_PHY_FEC_25G_KR_CLAUSE74_EN ||
1075             caps->link_fec_options & ICE_AQC_PHY_FEC_25G_KR_REQ)
1076                 fecparam->fec |= ETHTOOL_FEC_BASER;
1077         if (caps->link_fec_options & ICE_AQC_PHY_FEC_25G_RS_528_REQ ||
1078             caps->link_fec_options & ICE_AQC_PHY_FEC_25G_RS_544_REQ ||
1079             caps->link_fec_options & ICE_AQC_PHY_FEC_25G_RS_CLAUSE91_EN)
1080                 fecparam->fec |= ETHTOOL_FEC_RS;
1081         if (caps->link_fec_options == 0)
1082                 fecparam->fec |= ETHTOOL_FEC_OFF;
1083
1084 done:
1085         kfree(caps);
1086         return err;
1087 }
1088
1089 /**
1090  * ice_nway_reset - restart autonegotiation
1091  * @netdev: network interface device structure
1092  */
1093 static int ice_nway_reset(struct net_device *netdev)
1094 {
1095         struct ice_netdev_priv *np = netdev_priv(netdev);
1096         struct ice_vsi *vsi = np->vsi;
1097         int err;
1098
1099         /* If VSI state is up, then restart autoneg with link up */
1100         if (!test_bit(__ICE_DOWN, vsi->back->state))
1101                 err = ice_set_link(vsi, true);
1102         else
1103                 err = ice_set_link(vsi, false);
1104
1105         return err;
1106 }
1107
1108 /**
1109  * ice_get_priv_flags - report device private flags
1110  * @netdev: network interface device structure
1111  *
1112  * The get string set count and the string set should be matched for each
1113  * flag returned.  Add new strings for each flag to the ice_gstrings_priv_flags
1114  * array.
1115  *
1116  * Returns a u32 bitmap of flags.
1117  */
1118 static u32 ice_get_priv_flags(struct net_device *netdev)
1119 {
1120         struct ice_netdev_priv *np = netdev_priv(netdev);
1121         struct ice_vsi *vsi = np->vsi;
1122         struct ice_pf *pf = vsi->back;
1123         u32 i, ret_flags = 0;
1124
1125         for (i = 0; i < ICE_PRIV_FLAG_ARRAY_SIZE; i++) {
1126                 const struct ice_priv_flag *priv_flag;
1127
1128                 priv_flag = &ice_gstrings_priv_flags[i];
1129
1130                 if (test_bit(priv_flag->bitno, pf->flags))
1131                         ret_flags |= BIT(i);
1132         }
1133
1134         return ret_flags;
1135 }
1136
1137 /**
1138  * ice_set_priv_flags - set private flags
1139  * @netdev: network interface device structure
1140  * @flags: bit flags to be set
1141  */
1142 static int ice_set_priv_flags(struct net_device *netdev, u32 flags)
1143 {
1144         struct ice_netdev_priv *np = netdev_priv(netdev);
1145         DECLARE_BITMAP(change_flags, ICE_PF_FLAGS_NBITS);
1146         DECLARE_BITMAP(orig_flags, ICE_PF_FLAGS_NBITS);
1147         struct ice_vsi *vsi = np->vsi;
1148         struct ice_pf *pf = vsi->back;
1149         struct device *dev;
1150         int ret = 0;
1151         u32 i;
1152
1153         if (flags > BIT(ICE_PRIV_FLAG_ARRAY_SIZE))
1154                 return -EINVAL;
1155
1156         dev = ice_pf_to_dev(pf);
1157         set_bit(ICE_FLAG_ETHTOOL_CTXT, pf->flags);
1158
1159         bitmap_copy(orig_flags, pf->flags, ICE_PF_FLAGS_NBITS);
1160         for (i = 0; i < ICE_PRIV_FLAG_ARRAY_SIZE; i++) {
1161                 const struct ice_priv_flag *priv_flag;
1162
1163                 priv_flag = &ice_gstrings_priv_flags[i];
1164
1165                 if (flags & BIT(i))
1166                         set_bit(priv_flag->bitno, pf->flags);
1167                 else
1168                         clear_bit(priv_flag->bitno, pf->flags);
1169         }
1170
1171         bitmap_xor(change_flags, pf->flags, orig_flags, ICE_PF_FLAGS_NBITS);
1172
1173         /* Do not allow change to link-down-on-close when Total Port Shutdown
1174          * is enabled.
1175          */
1176         if (test_bit(ICE_FLAG_LINK_DOWN_ON_CLOSE_ENA, change_flags) &&
1177             test_bit(ICE_FLAG_TOTAL_PORT_SHUTDOWN_ENA, pf->flags)) {
1178                 dev_err(dev, "Setting link-down-on-close not supported on this port\n");
1179                 set_bit(ICE_FLAG_LINK_DOWN_ON_CLOSE_ENA, pf->flags);
1180                 ret = -EINVAL;
1181                 goto ethtool_exit;
1182         }
1183
1184         if (test_bit(ICE_FLAG_FW_LLDP_AGENT, change_flags)) {
1185                 if (!test_bit(ICE_FLAG_FW_LLDP_AGENT, pf->flags)) {
1186                         enum ice_status status;
1187
1188                         /* Disable FW LLDP engine */
1189                         status = ice_cfg_lldp_mib_change(&pf->hw, false);
1190
1191                         /* If unregistering for LLDP events fails, this is
1192                          * not an error state, as there shouldn't be any
1193                          * events to respond to.
1194                          */
1195                         if (status)
1196                                 dev_info(dev, "Failed to unreg for LLDP events\n");
1197
1198                         /* The AQ call to stop the FW LLDP agent will generate
1199                          * an error if the agent is already stopped.
1200                          */
1201                         status = ice_aq_stop_lldp(&pf->hw, true, true, NULL);
1202                         if (status)
1203                                 dev_warn(dev, "Fail to stop LLDP agent\n");
1204                         /* Use case for having the FW LLDP agent stopped
1205                          * will likely not need DCB, so failure to init is
1206                          * not a concern of ethtool
1207                          */
1208                         status = ice_init_pf_dcb(pf, true);
1209                         if (status)
1210                                 dev_warn(dev, "Fail to init DCB\n");
1211
1212                         pf->dcbx_cap &= ~DCB_CAP_DCBX_LLD_MANAGED;
1213                         pf->dcbx_cap |= DCB_CAP_DCBX_HOST;
1214                 } else {
1215                         enum ice_status status;
1216                         bool dcbx_agent_status;
1217
1218                         /* Remove rule to direct LLDP packets to default VSI.
1219                          * The FW LLDP engine will now be consuming them.
1220                          */
1221                         ice_cfg_sw_lldp(vsi, false, false);
1222
1223                         /* AQ command to start FW LLDP agent will return an
1224                          * error if the agent is already started
1225                          */
1226                         status = ice_aq_start_lldp(&pf->hw, true, NULL);
1227                         if (status)
1228                                 dev_warn(dev, "Fail to start LLDP Agent\n");
1229
1230                         /* AQ command to start FW DCBX agent will fail if
1231                          * the agent is already started
1232                          */
1233                         status = ice_aq_start_stop_dcbx(&pf->hw, true,
1234                                                         &dcbx_agent_status,
1235                                                         NULL);
1236                         if (status)
1237                                 dev_dbg(dev, "Failed to start FW DCBX\n");
1238
1239                         dev_info(dev, "FW DCBX agent is %s\n",
1240                                  dcbx_agent_status ? "ACTIVE" : "DISABLED");
1241
1242                         /* Failure to configure MIB change or init DCB is not
1243                          * relevant to ethtool.  Print notification that
1244                          * registration/init failed but do not return error
1245                          * state to ethtool
1246                          */
1247                         status = ice_init_pf_dcb(pf, true);
1248                         if (status)
1249                                 dev_dbg(dev, "Fail to init DCB\n");
1250
1251                         /* Register for MIB change events */
1252                         status = ice_cfg_lldp_mib_change(&pf->hw, true);
1253                         if (status)
1254                                 dev_dbg(dev, "Fail to enable MIB change events\n");
1255
1256                         pf->dcbx_cap &= ~DCB_CAP_DCBX_HOST;
1257                         pf->dcbx_cap |= DCB_CAP_DCBX_LLD_MANAGED;
1258
1259                         ice_nway_reset(netdev);
1260                 }
1261         }
1262         if (test_bit(ICE_FLAG_LEGACY_RX, change_flags)) {
1263                 /* down and up VSI so that changes of Rx cfg are reflected. */
1264                 ice_down(vsi);
1265                 ice_up(vsi);
1266         }
1267         /* don't allow modification of this flag when a single VF is in
1268          * promiscuous mode because it's not supported
1269          */
1270         if (test_bit(ICE_FLAG_VF_TRUE_PROMISC_ENA, change_flags) &&
1271             ice_is_any_vf_in_promisc(pf)) {
1272                 dev_err(dev, "Changing vf-true-promisc-support flag while VF(s) are in promiscuous mode not supported\n");
1273                 /* toggle bit back to previous state */
1274                 change_bit(ICE_FLAG_VF_TRUE_PROMISC_ENA, pf->flags);
1275                 ret = -EAGAIN;
1276         }
1277 ethtool_exit:
1278         clear_bit(ICE_FLAG_ETHTOOL_CTXT, pf->flags);
1279         return ret;
1280 }
1281
1282 static int ice_get_sset_count(struct net_device *netdev, int sset)
1283 {
1284         switch (sset) {
1285         case ETH_SS_STATS:
1286                 /* The number (and order) of strings reported *must* remain
1287                  * constant for a given netdevice. This function must not
1288                  * report a different number based on run time parameters
1289                  * (such as the number of queues in use, or the setting of
1290                  * a private ethtool flag). This is due to the nature of the
1291                  * ethtool stats API.
1292                  *
1293                  * Userspace programs such as ethtool must make 3 separate
1294                  * ioctl requests, one for size, one for the strings, and
1295                  * finally one for the stats. Since these cross into
1296                  * userspace, changes to the number or size could result in
1297                  * undefined memory access or incorrect string<->value
1298                  * correlations for statistics.
1299                  *
1300                  * Even if it appears to be safe, changes to the size or
1301                  * order of strings will suffer from race conditions and are
1302                  * not safe.
1303                  */
1304                 return ICE_ALL_STATS_LEN(netdev);
1305         case ETH_SS_TEST:
1306                 return ICE_TEST_LEN;
1307         case ETH_SS_PRIV_FLAGS:
1308                 return ICE_PRIV_FLAG_ARRAY_SIZE;
1309         default:
1310                 return -EOPNOTSUPP;
1311         }
1312 }
1313
1314 static void
1315 ice_get_ethtool_stats(struct net_device *netdev,
1316                       struct ethtool_stats __always_unused *stats, u64 *data)
1317 {
1318         struct ice_netdev_priv *np = netdev_priv(netdev);
1319         struct ice_vsi *vsi = np->vsi;
1320         struct ice_pf *pf = vsi->back;
1321         struct ice_ring *ring;
1322         unsigned int j;
1323         int i = 0;
1324         char *p;
1325
1326         ice_update_pf_stats(pf);
1327         ice_update_vsi_stats(vsi);
1328
1329         for (j = 0; j < ICE_VSI_STATS_LEN; j++) {
1330                 p = (char *)vsi + ice_gstrings_vsi_stats[j].stat_offset;
1331                 data[i++] = (ice_gstrings_vsi_stats[j].sizeof_stat ==
1332                              sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
1333         }
1334
1335         /* populate per queue stats */
1336         rcu_read_lock();
1337
1338         ice_for_each_alloc_txq(vsi, j) {
1339                 ring = READ_ONCE(vsi->tx_rings[j]);
1340                 if (ring) {
1341                         data[i++] = ring->stats.pkts;
1342                         data[i++] = ring->stats.bytes;
1343                 } else {
1344                         data[i++] = 0;
1345                         data[i++] = 0;
1346                 }
1347         }
1348
1349         ice_for_each_alloc_rxq(vsi, j) {
1350                 ring = READ_ONCE(vsi->rx_rings[j]);
1351                 if (ring) {
1352                         data[i++] = ring->stats.pkts;
1353                         data[i++] = ring->stats.bytes;
1354                 } else {
1355                         data[i++] = 0;
1356                         data[i++] = 0;
1357                 }
1358         }
1359
1360         rcu_read_unlock();
1361
1362         if (vsi->type != ICE_VSI_PF)
1363                 return;
1364
1365         for (j = 0; j < ICE_PF_STATS_LEN; j++) {
1366                 p = (char *)pf + ice_gstrings_pf_stats[j].stat_offset;
1367                 data[i++] = (ice_gstrings_pf_stats[j].sizeof_stat ==
1368                              sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
1369         }
1370
1371         for (j = 0; j < ICE_MAX_USER_PRIORITY; j++) {
1372                 data[i++] = pf->stats.priority_xon_tx[j];
1373                 data[i++] = pf->stats.priority_xoff_tx[j];
1374         }
1375
1376         for (j = 0; j < ICE_MAX_USER_PRIORITY; j++) {
1377                 data[i++] = pf->stats.priority_xon_rx[j];
1378                 data[i++] = pf->stats.priority_xoff_rx[j];
1379         }
1380 }
1381
1382 #define ICE_PHY_TYPE_LOW_MASK_MIN_1G    (ICE_PHY_TYPE_LOW_100BASE_TX | \
1383                                          ICE_PHY_TYPE_LOW_100M_SGMII)
1384
1385 #define ICE_PHY_TYPE_LOW_MASK_MIN_25G   (ICE_PHY_TYPE_LOW_MASK_MIN_1G | \
1386                                          ICE_PHY_TYPE_LOW_1000BASE_T | \
1387                                          ICE_PHY_TYPE_LOW_1000BASE_SX | \
1388                                          ICE_PHY_TYPE_LOW_1000BASE_LX | \
1389                                          ICE_PHY_TYPE_LOW_1000BASE_KX | \
1390                                          ICE_PHY_TYPE_LOW_1G_SGMII | \
1391                                          ICE_PHY_TYPE_LOW_2500BASE_T | \
1392                                          ICE_PHY_TYPE_LOW_2500BASE_X | \
1393                                          ICE_PHY_TYPE_LOW_2500BASE_KX | \
1394                                          ICE_PHY_TYPE_LOW_5GBASE_T | \
1395                                          ICE_PHY_TYPE_LOW_5GBASE_KR | \
1396                                          ICE_PHY_TYPE_LOW_10GBASE_T | \
1397                                          ICE_PHY_TYPE_LOW_10G_SFI_DA | \
1398                                          ICE_PHY_TYPE_LOW_10GBASE_SR | \
1399                                          ICE_PHY_TYPE_LOW_10GBASE_LR | \
1400                                          ICE_PHY_TYPE_LOW_10GBASE_KR_CR1 | \
1401                                          ICE_PHY_TYPE_LOW_10G_SFI_AOC_ACC | \
1402                                          ICE_PHY_TYPE_LOW_10G_SFI_C2C)
1403
1404 #define ICE_PHY_TYPE_LOW_MASK_100G      (ICE_PHY_TYPE_LOW_100GBASE_CR4 | \
1405                                          ICE_PHY_TYPE_LOW_100GBASE_SR4 | \
1406                                          ICE_PHY_TYPE_LOW_100GBASE_LR4 | \
1407                                          ICE_PHY_TYPE_LOW_100GBASE_KR4 | \
1408                                          ICE_PHY_TYPE_LOW_100G_CAUI4_AOC_ACC | \
1409                                          ICE_PHY_TYPE_LOW_100G_CAUI4 | \
1410                                          ICE_PHY_TYPE_LOW_100G_AUI4_AOC_ACC | \
1411                                          ICE_PHY_TYPE_LOW_100G_AUI4 | \
1412                                          ICE_PHY_TYPE_LOW_100GBASE_CR_PAM4 | \
1413                                          ICE_PHY_TYPE_LOW_100GBASE_KR_PAM4 | \
1414                                          ICE_PHY_TYPE_LOW_100GBASE_CP2 | \
1415                                          ICE_PHY_TYPE_LOW_100GBASE_SR2 | \
1416                                          ICE_PHY_TYPE_LOW_100GBASE_DR)
1417
1418 #define ICE_PHY_TYPE_HIGH_MASK_100G     (ICE_PHY_TYPE_HIGH_100GBASE_KR2_PAM4 | \
1419                                          ICE_PHY_TYPE_HIGH_100G_CAUI2_AOC_ACC |\
1420                                          ICE_PHY_TYPE_HIGH_100G_CAUI2 | \
1421                                          ICE_PHY_TYPE_HIGH_100G_AUI2_AOC_ACC | \
1422                                          ICE_PHY_TYPE_HIGH_100G_AUI2)
1423
1424 /**
1425  * ice_mask_min_supported_speeds
1426  * @phy_types_high: PHY type high
1427  * @phy_types_low: PHY type low to apply minimum supported speeds mask
1428  *
1429  * Apply minimum supported speeds mask to PHY type low. These are the speeds
1430  * for ethtool supported link mode.
1431  */
1432 static
1433 void ice_mask_min_supported_speeds(u64 phy_types_high, u64 *phy_types_low)
1434 {
1435         /* if QSFP connection with 100G speed, minimum supported speed is 25G */
1436         if (*phy_types_low & ICE_PHY_TYPE_LOW_MASK_100G ||
1437             phy_types_high & ICE_PHY_TYPE_HIGH_MASK_100G)
1438                 *phy_types_low &= ~ICE_PHY_TYPE_LOW_MASK_MIN_25G;
1439         else
1440                 *phy_types_low &= ~ICE_PHY_TYPE_LOW_MASK_MIN_1G;
1441 }
1442
1443 #define ice_ethtool_advertise_link_mode(aq_link_speed, ethtool_link_mode)    \
1444         do {                                                                 \
1445                 if (req_speeds & (aq_link_speed) ||                          \
1446                     (!req_speeds &&                                          \
1447                      (advert_phy_type_lo & phy_type_mask_lo ||               \
1448                       advert_phy_type_hi & phy_type_mask_hi)))               \
1449                         ethtool_link_ksettings_add_link_mode(ks, advertising,\
1450                                                         ethtool_link_mode);  \
1451         } while (0)
1452
1453 /**
1454  * ice_phy_type_to_ethtool - convert the phy_types to ethtool link modes
1455  * @netdev: network interface device structure
1456  * @ks: ethtool link ksettings struct to fill out
1457  */
1458 static void
1459 ice_phy_type_to_ethtool(struct net_device *netdev,
1460                         struct ethtool_link_ksettings *ks)
1461 {
1462         struct ice_netdev_priv *np = netdev_priv(netdev);
1463         struct ice_vsi *vsi = np->vsi;
1464         struct ice_pf *pf = vsi->back;
1465         u64 advert_phy_type_lo = 0;
1466         u64 advert_phy_type_hi = 0;
1467         u64 phy_type_mask_lo = 0;
1468         u64 phy_type_mask_hi = 0;
1469         u64 phy_types_high = 0;
1470         u64 phy_types_low = 0;
1471         u16 req_speeds;
1472
1473         req_speeds = vsi->port_info->phy.link_info.req_speeds;
1474
1475         /* Check if lenient mode is supported and enabled, or in strict mode.
1476          *
1477          * In lenient mode the Supported link modes are the PHY types without
1478          * media. The Advertising link mode is either 1. the user requested
1479          * speed, 2. the override PHY mask, or 3. the PHY types with media.
1480          *
1481          * In strict mode Supported link mode are the PHY type with media,
1482          * and Advertising link modes are the media PHY type or the speed
1483          * requested by user.
1484          */
1485         if (test_bit(ICE_FLAG_LINK_LENIENT_MODE_ENA, pf->flags)) {
1486                 phy_types_low = le64_to_cpu(pf->nvm_phy_type_lo);
1487                 phy_types_high = le64_to_cpu(pf->nvm_phy_type_hi);
1488
1489                 ice_mask_min_supported_speeds(phy_types_high, &phy_types_low);
1490                 /* determine advertised modes based on link override only
1491                  * if it's supported and if the FW doesn't abstract the
1492                  * driver from having to account for link overrides
1493                  */
1494                 if (ice_fw_supports_link_override(&pf->hw) &&
1495                     !ice_fw_supports_report_dflt_cfg(&pf->hw)) {
1496                         struct ice_link_default_override_tlv *ldo;
1497
1498                         ldo = &pf->link_dflt_override;
1499                         /* If override enabled and PHY mask set, then
1500                          * Advertising link mode is the intersection of the PHY
1501                          * types without media and the override PHY mask.
1502                          */
1503                         if (ldo->options & ICE_LINK_OVERRIDE_EN &&
1504                             (ldo->phy_type_low || ldo->phy_type_high)) {
1505                                 advert_phy_type_lo =
1506                                         le64_to_cpu(pf->nvm_phy_type_lo) &
1507                                         ldo->phy_type_low;
1508                                 advert_phy_type_hi =
1509                                         le64_to_cpu(pf->nvm_phy_type_hi) &
1510                                         ldo->phy_type_high;
1511                         }
1512                 }
1513         } else {
1514                 /* strict mode */
1515                 phy_types_low = vsi->port_info->phy.phy_type_low;
1516                 phy_types_high = vsi->port_info->phy.phy_type_high;
1517         }
1518
1519         /* If Advertising link mode PHY type is not using override PHY type,
1520          * then use PHY type with media.
1521          */
1522         if (!advert_phy_type_lo && !advert_phy_type_hi) {
1523                 advert_phy_type_lo = vsi->port_info->phy.phy_type_low;
1524                 advert_phy_type_hi = vsi->port_info->phy.phy_type_high;
1525         }
1526
1527         ethtool_link_ksettings_zero_link_mode(ks, supported);
1528         ethtool_link_ksettings_zero_link_mode(ks, advertising);
1529
1530         phy_type_mask_lo = ICE_PHY_TYPE_LOW_100BASE_TX |
1531                            ICE_PHY_TYPE_LOW_100M_SGMII;
1532         if (phy_types_low & phy_type_mask_lo) {
1533                 ethtool_link_ksettings_add_link_mode(ks, supported,
1534                                                      100baseT_Full);
1535
1536                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_100MB,
1537                                                 100baseT_Full);
1538         }
1539
1540         phy_type_mask_lo = ICE_PHY_TYPE_LOW_1000BASE_T |
1541                            ICE_PHY_TYPE_LOW_1G_SGMII;
1542         if (phy_types_low & phy_type_mask_lo) {
1543                 ethtool_link_ksettings_add_link_mode(ks, supported,
1544                                                      1000baseT_Full);
1545                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_1000MB,
1546                                                 1000baseT_Full);
1547         }
1548
1549         phy_type_mask_lo = ICE_PHY_TYPE_LOW_1000BASE_KX;
1550         if (phy_types_low & phy_type_mask_lo) {
1551                 ethtool_link_ksettings_add_link_mode(ks, supported,
1552                                                      1000baseKX_Full);
1553                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_1000MB,
1554                                                 1000baseKX_Full);
1555         }
1556
1557         phy_type_mask_lo = ICE_PHY_TYPE_LOW_1000BASE_SX |
1558                            ICE_PHY_TYPE_LOW_1000BASE_LX;
1559         if (phy_types_low & phy_type_mask_lo) {
1560                 ethtool_link_ksettings_add_link_mode(ks, supported,
1561                                                      1000baseX_Full);
1562                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_1000MB,
1563                                                 1000baseX_Full);
1564         }
1565
1566         phy_type_mask_lo = ICE_PHY_TYPE_LOW_2500BASE_T;
1567         if (phy_types_low & phy_type_mask_lo) {
1568                 ethtool_link_ksettings_add_link_mode(ks, supported,
1569                                                      2500baseT_Full);
1570                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_2500MB,
1571                                                 2500baseT_Full);
1572         }
1573
1574         phy_type_mask_lo = ICE_PHY_TYPE_LOW_2500BASE_X |
1575                            ICE_PHY_TYPE_LOW_2500BASE_KX;
1576         if (phy_types_low & phy_type_mask_lo) {
1577                 ethtool_link_ksettings_add_link_mode(ks, supported,
1578                                                      2500baseX_Full);
1579                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_2500MB,
1580                                                 2500baseX_Full);
1581         }
1582
1583         phy_type_mask_lo = ICE_PHY_TYPE_LOW_5GBASE_T |
1584                            ICE_PHY_TYPE_LOW_5GBASE_KR;
1585         if (phy_types_low & phy_type_mask_lo) {
1586                 ethtool_link_ksettings_add_link_mode(ks, supported,
1587                                                      5000baseT_Full);
1588                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_5GB,
1589                                                 5000baseT_Full);
1590         }
1591
1592         phy_type_mask_lo = ICE_PHY_TYPE_LOW_10GBASE_T |
1593                            ICE_PHY_TYPE_LOW_10G_SFI_DA |
1594                            ICE_PHY_TYPE_LOW_10G_SFI_AOC_ACC |
1595                            ICE_PHY_TYPE_LOW_10G_SFI_C2C;
1596         if (phy_types_low & phy_type_mask_lo) {
1597                 ethtool_link_ksettings_add_link_mode(ks, supported,
1598                                                      10000baseT_Full);
1599                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_10GB,
1600                                                 10000baseT_Full);
1601         }
1602
1603         phy_type_mask_lo = ICE_PHY_TYPE_LOW_10GBASE_KR_CR1;
1604         if (phy_types_low & phy_type_mask_lo) {
1605                 ethtool_link_ksettings_add_link_mode(ks, supported,
1606                                                      10000baseKR_Full);
1607                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_10GB,
1608                                                 10000baseKR_Full);
1609         }
1610
1611         phy_type_mask_lo = ICE_PHY_TYPE_LOW_10GBASE_SR;
1612         if (phy_types_low & phy_type_mask_lo) {
1613                 ethtool_link_ksettings_add_link_mode(ks, supported,
1614                                                      10000baseSR_Full);
1615                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_10GB,
1616                                                 10000baseSR_Full);
1617         }
1618
1619         phy_type_mask_lo = ICE_PHY_TYPE_LOW_10GBASE_LR;
1620         if (phy_types_low & phy_type_mask_lo) {
1621                 ethtool_link_ksettings_add_link_mode(ks, supported,
1622                                                      10000baseLR_Full);
1623                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_10GB,
1624                                                 10000baseLR_Full);
1625         }
1626
1627         phy_type_mask_lo = ICE_PHY_TYPE_LOW_25GBASE_T |
1628                            ICE_PHY_TYPE_LOW_25GBASE_CR |
1629                            ICE_PHY_TYPE_LOW_25GBASE_CR_S |
1630                            ICE_PHY_TYPE_LOW_25GBASE_CR1 |
1631                            ICE_PHY_TYPE_LOW_25G_AUI_AOC_ACC |
1632                            ICE_PHY_TYPE_LOW_25G_AUI_C2C;
1633         if (phy_types_low & phy_type_mask_lo) {
1634                 ethtool_link_ksettings_add_link_mode(ks, supported,
1635                                                      25000baseCR_Full);
1636                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_25GB,
1637                                                 25000baseCR_Full);
1638         }
1639
1640         phy_type_mask_lo = ICE_PHY_TYPE_LOW_25GBASE_SR |
1641                            ICE_PHY_TYPE_LOW_25GBASE_LR;
1642         if (phy_types_low & phy_type_mask_lo) {
1643                 ethtool_link_ksettings_add_link_mode(ks, supported,
1644                                                      25000baseSR_Full);
1645                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_25GB,
1646                                                 25000baseSR_Full);
1647         }
1648
1649         phy_type_mask_lo = ICE_PHY_TYPE_LOW_25GBASE_KR |
1650                            ICE_PHY_TYPE_LOW_25GBASE_KR_S |
1651                            ICE_PHY_TYPE_LOW_25GBASE_KR1;
1652         if (phy_types_low & phy_type_mask_lo) {
1653                 ethtool_link_ksettings_add_link_mode(ks, supported,
1654                                                      25000baseKR_Full);
1655                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_25GB,
1656                                                 25000baseKR_Full);
1657         }
1658
1659         phy_type_mask_lo = ICE_PHY_TYPE_LOW_40GBASE_KR4;
1660         if (phy_types_low & phy_type_mask_lo) {
1661                 ethtool_link_ksettings_add_link_mode(ks, supported,
1662                                                      40000baseKR4_Full);
1663                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_40GB,
1664                                                 40000baseKR4_Full);
1665         }
1666
1667         phy_type_mask_lo = ICE_PHY_TYPE_LOW_40GBASE_CR4 |
1668                            ICE_PHY_TYPE_LOW_40G_XLAUI_AOC_ACC |
1669                            ICE_PHY_TYPE_LOW_40G_XLAUI;
1670         if (phy_types_low & phy_type_mask_lo) {
1671                 ethtool_link_ksettings_add_link_mode(ks, supported,
1672                                                      40000baseCR4_Full);
1673                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_40GB,
1674                                                 40000baseCR4_Full);
1675         }
1676
1677         phy_type_mask_lo = ICE_PHY_TYPE_LOW_40GBASE_SR4;
1678         if (phy_types_low & phy_type_mask_lo) {
1679                 ethtool_link_ksettings_add_link_mode(ks, supported,
1680                                                      40000baseSR4_Full);
1681                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_40GB,
1682                                                 40000baseSR4_Full);
1683         }
1684
1685         phy_type_mask_lo = ICE_PHY_TYPE_LOW_40GBASE_LR4;
1686         if (phy_types_low & phy_type_mask_lo) {
1687                 ethtool_link_ksettings_add_link_mode(ks, supported,
1688                                                      40000baseLR4_Full);
1689                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_40GB,
1690                                                 40000baseLR4_Full);
1691         }
1692
1693         phy_type_mask_lo = ICE_PHY_TYPE_LOW_50GBASE_CR2 |
1694                            ICE_PHY_TYPE_LOW_50G_LAUI2_AOC_ACC |
1695                            ICE_PHY_TYPE_LOW_50G_LAUI2 |
1696                            ICE_PHY_TYPE_LOW_50G_AUI2_AOC_ACC |
1697                            ICE_PHY_TYPE_LOW_50G_AUI2 |
1698                            ICE_PHY_TYPE_LOW_50GBASE_CP |
1699                            ICE_PHY_TYPE_LOW_50GBASE_SR |
1700                            ICE_PHY_TYPE_LOW_50G_AUI1_AOC_ACC |
1701                            ICE_PHY_TYPE_LOW_50G_AUI1;
1702         if (phy_types_low & phy_type_mask_lo) {
1703                 ethtool_link_ksettings_add_link_mode(ks, supported,
1704                                                      50000baseCR2_Full);
1705                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_50GB,
1706                                                 50000baseCR2_Full);
1707         }
1708
1709         phy_type_mask_lo = ICE_PHY_TYPE_LOW_50GBASE_KR2 |
1710                            ICE_PHY_TYPE_LOW_50GBASE_KR_PAM4;
1711         if (phy_types_low & phy_type_mask_lo) {
1712                 ethtool_link_ksettings_add_link_mode(ks, supported,
1713                                                      50000baseKR2_Full);
1714                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_50GB,
1715                                                 50000baseKR2_Full);
1716         }
1717
1718         phy_type_mask_lo = ICE_PHY_TYPE_LOW_50GBASE_SR2 |
1719                            ICE_PHY_TYPE_LOW_50GBASE_LR2 |
1720                            ICE_PHY_TYPE_LOW_50GBASE_FR |
1721                            ICE_PHY_TYPE_LOW_50GBASE_LR;
1722         if (phy_types_low & phy_type_mask_lo) {
1723                 ethtool_link_ksettings_add_link_mode(ks, supported,
1724                                                      50000baseSR2_Full);
1725                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_50GB,
1726                                                 50000baseSR2_Full);
1727         }
1728
1729         phy_type_mask_lo = ICE_PHY_TYPE_LOW_100GBASE_CR4 |
1730                            ICE_PHY_TYPE_LOW_100G_CAUI4_AOC_ACC |
1731                            ICE_PHY_TYPE_LOW_100G_CAUI4 |
1732                            ICE_PHY_TYPE_LOW_100G_AUI4_AOC_ACC |
1733                            ICE_PHY_TYPE_LOW_100G_AUI4 |
1734                            ICE_PHY_TYPE_LOW_100GBASE_CR_PAM4 |
1735                            ICE_PHY_TYPE_LOW_100GBASE_CP2;
1736         phy_type_mask_hi = ICE_PHY_TYPE_HIGH_100G_CAUI2_AOC_ACC |
1737                            ICE_PHY_TYPE_HIGH_100G_CAUI2 |
1738                            ICE_PHY_TYPE_HIGH_100G_AUI2_AOC_ACC |
1739                            ICE_PHY_TYPE_HIGH_100G_AUI2;
1740         if (phy_types_low & phy_type_mask_lo ||
1741             phy_types_high & phy_type_mask_hi) {
1742                 ethtool_link_ksettings_add_link_mode(ks, supported,
1743                                                      100000baseCR4_Full);
1744                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_100GB,
1745                                                 100000baseCR4_Full);
1746         }
1747
1748         phy_type_mask_lo = ICE_PHY_TYPE_LOW_100GBASE_SR4 |
1749                            ICE_PHY_TYPE_LOW_100GBASE_SR2;
1750         if (phy_types_low & phy_type_mask_lo) {
1751                 ethtool_link_ksettings_add_link_mode(ks, supported,
1752                                                      100000baseSR4_Full);
1753                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_100GB,
1754                                                 100000baseSR4_Full);
1755         }
1756
1757         phy_type_mask_lo = ICE_PHY_TYPE_LOW_100GBASE_LR4 |
1758                            ICE_PHY_TYPE_LOW_100GBASE_DR;
1759         if (phy_types_low & phy_type_mask_lo) {
1760                 ethtool_link_ksettings_add_link_mode(ks, supported,
1761                                                      100000baseLR4_ER4_Full);
1762                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_100GB,
1763                                                 100000baseLR4_ER4_Full);
1764         }
1765
1766         phy_type_mask_lo = ICE_PHY_TYPE_LOW_100GBASE_KR4 |
1767                            ICE_PHY_TYPE_LOW_100GBASE_KR_PAM4;
1768         phy_type_mask_hi = ICE_PHY_TYPE_HIGH_100GBASE_KR2_PAM4;
1769         if (phy_types_low & phy_type_mask_lo ||
1770             phy_types_high & phy_type_mask_hi) {
1771                 ethtool_link_ksettings_add_link_mode(ks, supported,
1772                                                      100000baseKR4_Full);
1773                 ice_ethtool_advertise_link_mode(ICE_AQ_LINK_SPEED_100GB,
1774                                                 100000baseKR4_Full);
1775         }
1776
1777         /* Autoneg PHY types */
1778         if (phy_types_low & ICE_PHY_TYPE_LOW_100BASE_TX ||
1779             phy_types_low & ICE_PHY_TYPE_LOW_1000BASE_T ||
1780             phy_types_low & ICE_PHY_TYPE_LOW_1000BASE_KX ||
1781             phy_types_low & ICE_PHY_TYPE_LOW_2500BASE_T ||
1782             phy_types_low & ICE_PHY_TYPE_LOW_2500BASE_KX ||
1783             phy_types_low & ICE_PHY_TYPE_LOW_5GBASE_T ||
1784             phy_types_low & ICE_PHY_TYPE_LOW_5GBASE_KR ||
1785             phy_types_low & ICE_PHY_TYPE_LOW_10GBASE_T ||
1786             phy_types_low & ICE_PHY_TYPE_LOW_10GBASE_KR_CR1 ||
1787             phy_types_low & ICE_PHY_TYPE_LOW_25GBASE_T ||
1788             phy_types_low & ICE_PHY_TYPE_LOW_25GBASE_CR ||
1789             phy_types_low & ICE_PHY_TYPE_LOW_25GBASE_CR_S ||
1790             phy_types_low & ICE_PHY_TYPE_LOW_25GBASE_CR1 ||
1791             phy_types_low & ICE_PHY_TYPE_LOW_25GBASE_KR ||
1792             phy_types_low & ICE_PHY_TYPE_LOW_25GBASE_KR_S ||
1793             phy_types_low & ICE_PHY_TYPE_LOW_25GBASE_KR1 ||
1794             phy_types_low & ICE_PHY_TYPE_LOW_40GBASE_CR4 ||
1795             phy_types_low & ICE_PHY_TYPE_LOW_40GBASE_KR4) {
1796                 ethtool_link_ksettings_add_link_mode(ks, supported,
1797                                                      Autoneg);
1798                 ethtool_link_ksettings_add_link_mode(ks, advertising,
1799                                                      Autoneg);
1800         }
1801         if (phy_types_low & ICE_PHY_TYPE_LOW_50GBASE_CR2 ||
1802             phy_types_low & ICE_PHY_TYPE_LOW_50GBASE_KR2 ||
1803             phy_types_low & ICE_PHY_TYPE_LOW_50GBASE_CP ||
1804             phy_types_low & ICE_PHY_TYPE_LOW_50GBASE_KR_PAM4) {
1805                 ethtool_link_ksettings_add_link_mode(ks, supported,
1806                                                      Autoneg);
1807                 ethtool_link_ksettings_add_link_mode(ks, advertising,
1808                                                      Autoneg);
1809         }
1810         if (phy_types_low & ICE_PHY_TYPE_LOW_100GBASE_CR4 ||
1811             phy_types_low & ICE_PHY_TYPE_LOW_100GBASE_KR4 ||
1812             phy_types_low & ICE_PHY_TYPE_LOW_100GBASE_KR_PAM4 ||
1813             phy_types_low & ICE_PHY_TYPE_LOW_100GBASE_CP2) {
1814                 ethtool_link_ksettings_add_link_mode(ks, supported,
1815                                                      Autoneg);
1816                 ethtool_link_ksettings_add_link_mode(ks, advertising,
1817                                                      Autoneg);
1818         }
1819 }
1820
1821 #define TEST_SET_BITS_TIMEOUT   50
1822 #define TEST_SET_BITS_SLEEP_MAX 2000
1823 #define TEST_SET_BITS_SLEEP_MIN 1000
1824
1825 /**
1826  * ice_get_settings_link_up - Get Link settings for when link is up
1827  * @ks: ethtool ksettings to fill in
1828  * @netdev: network interface device structure
1829  */
1830 static void
1831 ice_get_settings_link_up(struct ethtool_link_ksettings *ks,
1832                          struct net_device *netdev)
1833 {
1834         struct ice_netdev_priv *np = netdev_priv(netdev);
1835         struct ice_port_info *pi = np->vsi->port_info;
1836         struct ice_link_status *link_info;
1837         struct ice_vsi *vsi = np->vsi;
1838
1839         link_info = &vsi->port_info->phy.link_info;
1840
1841         /* Get supported and advertised settings from PHY ability with media */
1842         ice_phy_type_to_ethtool(netdev, ks);
1843
1844         switch (link_info->link_speed) {
1845         case ICE_AQ_LINK_SPEED_100GB:
1846                 ks->base.speed = SPEED_100000;
1847                 break;
1848         case ICE_AQ_LINK_SPEED_50GB:
1849                 ks->base.speed = SPEED_50000;
1850                 break;
1851         case ICE_AQ_LINK_SPEED_40GB:
1852                 ks->base.speed = SPEED_40000;
1853                 break;
1854         case ICE_AQ_LINK_SPEED_25GB:
1855                 ks->base.speed = SPEED_25000;
1856                 break;
1857         case ICE_AQ_LINK_SPEED_20GB:
1858                 ks->base.speed = SPEED_20000;
1859                 break;
1860         case ICE_AQ_LINK_SPEED_10GB:
1861                 ks->base.speed = SPEED_10000;
1862                 break;
1863         case ICE_AQ_LINK_SPEED_5GB:
1864                 ks->base.speed = SPEED_5000;
1865                 break;
1866         case ICE_AQ_LINK_SPEED_2500MB:
1867                 ks->base.speed = SPEED_2500;
1868                 break;
1869         case ICE_AQ_LINK_SPEED_1000MB:
1870                 ks->base.speed = SPEED_1000;
1871                 break;
1872         case ICE_AQ_LINK_SPEED_100MB:
1873                 ks->base.speed = SPEED_100;
1874                 break;
1875         default:
1876                 netdev_info(netdev, "WARNING: Unrecognized link_speed (0x%x).\n",
1877                             link_info->link_speed);
1878                 break;
1879         }
1880         ks->base.duplex = DUPLEX_FULL;
1881
1882         if (link_info->an_info & ICE_AQ_AN_COMPLETED)
1883                 ethtool_link_ksettings_add_link_mode(ks, lp_advertising,
1884                                                      Autoneg);
1885
1886         /* Set flow control negotiated Rx/Tx pause */
1887         switch (pi->fc.current_mode) {
1888         case ICE_FC_FULL:
1889                 ethtool_link_ksettings_add_link_mode(ks, lp_advertising, Pause);
1890                 break;
1891         case ICE_FC_TX_PAUSE:
1892                 ethtool_link_ksettings_add_link_mode(ks, lp_advertising, Pause);
1893                 ethtool_link_ksettings_add_link_mode(ks, lp_advertising,
1894                                                      Asym_Pause);
1895                 break;
1896         case ICE_FC_RX_PAUSE:
1897                 ethtool_link_ksettings_add_link_mode(ks, lp_advertising,
1898                                                      Asym_Pause);
1899                 break;
1900         case ICE_FC_PFC:
1901         default:
1902                 ethtool_link_ksettings_del_link_mode(ks, lp_advertising, Pause);
1903                 ethtool_link_ksettings_del_link_mode(ks, lp_advertising,
1904                                                      Asym_Pause);
1905                 break;
1906         }
1907 }
1908
1909 /**
1910  * ice_get_settings_link_down - Get the Link settings when link is down
1911  * @ks: ethtool ksettings to fill in
1912  * @netdev: network interface device structure
1913  *
1914  * Reports link settings that can be determined when link is down
1915  */
1916 static void
1917 ice_get_settings_link_down(struct ethtool_link_ksettings *ks,
1918                            struct net_device *netdev)
1919 {
1920         /* link is down and the driver needs to fall back on
1921          * supported PHY types to figure out what info to display
1922          */
1923         ice_phy_type_to_ethtool(netdev, ks);
1924
1925         /* With no link, speed and duplex are unknown */
1926         ks->base.speed = SPEED_UNKNOWN;
1927         ks->base.duplex = DUPLEX_UNKNOWN;
1928 }
1929
1930 /**
1931  * ice_get_link_ksettings - Get Link Speed and Duplex settings
1932  * @netdev: network interface device structure
1933  * @ks: ethtool ksettings
1934  *
1935  * Reports speed/duplex settings based on media_type
1936  */
1937 static int
1938 ice_get_link_ksettings(struct net_device *netdev,
1939                        struct ethtool_link_ksettings *ks)
1940 {
1941         struct ice_netdev_priv *np = netdev_priv(netdev);
1942         struct ice_aqc_get_phy_caps_data *caps;
1943         struct ice_link_status *hw_link_info;
1944         struct ice_vsi *vsi = np->vsi;
1945         enum ice_status status;
1946         int err = 0;
1947
1948         ethtool_link_ksettings_zero_link_mode(ks, supported);
1949         ethtool_link_ksettings_zero_link_mode(ks, advertising);
1950         ethtool_link_ksettings_zero_link_mode(ks, lp_advertising);
1951         hw_link_info = &vsi->port_info->phy.link_info;
1952
1953         /* set speed and duplex */
1954         if (hw_link_info->link_info & ICE_AQ_LINK_UP)
1955                 ice_get_settings_link_up(ks, netdev);
1956         else
1957                 ice_get_settings_link_down(ks, netdev);
1958
1959         /* set autoneg settings */
1960         ks->base.autoneg = (hw_link_info->an_info & ICE_AQ_AN_COMPLETED) ?
1961                 AUTONEG_ENABLE : AUTONEG_DISABLE;
1962
1963         /* set media type settings */
1964         switch (vsi->port_info->phy.media_type) {
1965         case ICE_MEDIA_FIBER:
1966                 ethtool_link_ksettings_add_link_mode(ks, supported, FIBRE);
1967                 ks->base.port = PORT_FIBRE;
1968                 break;
1969         case ICE_MEDIA_BASET:
1970                 ethtool_link_ksettings_add_link_mode(ks, supported, TP);
1971                 ethtool_link_ksettings_add_link_mode(ks, advertising, TP);
1972                 ks->base.port = PORT_TP;
1973                 break;
1974         case ICE_MEDIA_BACKPLANE:
1975                 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg);
1976                 ethtool_link_ksettings_add_link_mode(ks, supported, Backplane);
1977                 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg);
1978                 ethtool_link_ksettings_add_link_mode(ks, advertising,
1979                                                      Backplane);
1980                 ks->base.port = PORT_NONE;
1981                 break;
1982         case ICE_MEDIA_DA:
1983                 ethtool_link_ksettings_add_link_mode(ks, supported, FIBRE);
1984                 ethtool_link_ksettings_add_link_mode(ks, advertising, FIBRE);
1985                 ks->base.port = PORT_DA;
1986                 break;
1987         default:
1988                 ks->base.port = PORT_OTHER;
1989                 break;
1990         }
1991
1992         /* flow control is symmetric and always supported */
1993         ethtool_link_ksettings_add_link_mode(ks, supported, Pause);
1994
1995         caps = kzalloc(sizeof(*caps), GFP_KERNEL);
1996         if (!caps)
1997                 return -ENOMEM;
1998
1999         status = ice_aq_get_phy_caps(vsi->port_info, false,
2000                                      ICE_AQC_REPORT_ACTIVE_CFG, caps, NULL);
2001         if (status) {
2002                 err = -EIO;
2003                 goto done;
2004         }
2005
2006         /* Set the advertised flow control based on the PHY capability */
2007         if ((caps->caps & ICE_AQC_PHY_EN_TX_LINK_PAUSE) &&
2008             (caps->caps & ICE_AQC_PHY_EN_RX_LINK_PAUSE)) {
2009                 ethtool_link_ksettings_add_link_mode(ks, advertising, Pause);
2010                 ethtool_link_ksettings_add_link_mode(ks, advertising,
2011                                                      Asym_Pause);
2012         } else if (caps->caps & ICE_AQC_PHY_EN_TX_LINK_PAUSE) {
2013                 ethtool_link_ksettings_add_link_mode(ks, advertising,
2014                                                      Asym_Pause);
2015         } else if (caps->caps & ICE_AQC_PHY_EN_RX_LINK_PAUSE) {
2016                 ethtool_link_ksettings_add_link_mode(ks, advertising, Pause);
2017                 ethtool_link_ksettings_add_link_mode(ks, advertising,
2018                                                      Asym_Pause);
2019         } else {
2020                 ethtool_link_ksettings_del_link_mode(ks, advertising, Pause);
2021                 ethtool_link_ksettings_del_link_mode(ks, advertising,
2022                                                      Asym_Pause);
2023         }
2024
2025         /* Set advertised FEC modes based on PHY capability */
2026         ethtool_link_ksettings_add_link_mode(ks, advertising, FEC_NONE);
2027
2028         if (caps->link_fec_options & ICE_AQC_PHY_FEC_10G_KR_40G_KR4_REQ ||
2029             caps->link_fec_options & ICE_AQC_PHY_FEC_25G_KR_REQ)
2030                 ethtool_link_ksettings_add_link_mode(ks, advertising,
2031                                                      FEC_BASER);
2032         if (caps->link_fec_options & ICE_AQC_PHY_FEC_25G_RS_528_REQ ||
2033             caps->link_fec_options & ICE_AQC_PHY_FEC_25G_RS_544_REQ)
2034                 ethtool_link_ksettings_add_link_mode(ks, advertising, FEC_RS);
2035
2036         status = ice_aq_get_phy_caps(vsi->port_info, false,
2037                                      ICE_AQC_REPORT_TOPO_CAP_MEDIA, caps, NULL);
2038         if (status) {
2039                 err = -EIO;
2040                 goto done;
2041         }
2042
2043         /* Set supported FEC modes based on PHY capability */
2044         ethtool_link_ksettings_add_link_mode(ks, supported, FEC_NONE);
2045
2046         if (caps->link_fec_options & ICE_AQC_PHY_FEC_10G_KR_40G_KR4_EN ||
2047             caps->link_fec_options & ICE_AQC_PHY_FEC_25G_KR_CLAUSE74_EN)
2048                 ethtool_link_ksettings_add_link_mode(ks, supported, FEC_BASER);
2049         if (caps->link_fec_options & ICE_AQC_PHY_FEC_25G_RS_CLAUSE91_EN)
2050                 ethtool_link_ksettings_add_link_mode(ks, supported, FEC_RS);
2051
2052 done:
2053         kfree(caps);
2054         return err;
2055 }
2056
2057 /**
2058  * ice_ksettings_find_adv_link_speed - Find advertising link speed
2059  * @ks: ethtool ksettings
2060  */
2061 static u16
2062 ice_ksettings_find_adv_link_speed(const struct ethtool_link_ksettings *ks)
2063 {
2064         u16 adv_link_speed = 0;
2065
2066         if (ethtool_link_ksettings_test_link_mode(ks, advertising,
2067                                                   100baseT_Full))
2068                 adv_link_speed |= ICE_AQ_LINK_SPEED_100MB;
2069         if (ethtool_link_ksettings_test_link_mode(ks, advertising,
2070                                                   1000baseX_Full))
2071                 adv_link_speed |= ICE_AQ_LINK_SPEED_1000MB;
2072         if (ethtool_link_ksettings_test_link_mode(ks, advertising,
2073                                                   1000baseT_Full) ||
2074             ethtool_link_ksettings_test_link_mode(ks, advertising,
2075                                                   1000baseKX_Full))
2076                 adv_link_speed |= ICE_AQ_LINK_SPEED_1000MB;
2077         if (ethtool_link_ksettings_test_link_mode(ks, advertising,
2078                                                   2500baseT_Full))
2079                 adv_link_speed |= ICE_AQ_LINK_SPEED_2500MB;
2080         if (ethtool_link_ksettings_test_link_mode(ks, advertising,
2081                                                   2500baseX_Full))
2082                 adv_link_speed |= ICE_AQ_LINK_SPEED_2500MB;
2083         if (ethtool_link_ksettings_test_link_mode(ks, advertising,
2084                                                   5000baseT_Full))
2085                 adv_link_speed |= ICE_AQ_LINK_SPEED_5GB;
2086         if (ethtool_link_ksettings_test_link_mode(ks, advertising,
2087                                                   10000baseT_Full) ||
2088             ethtool_link_ksettings_test_link_mode(ks, advertising,
2089                                                   10000baseKR_Full))
2090                 adv_link_speed |= ICE_AQ_LINK_SPEED_10GB;
2091         if (ethtool_link_ksettings_test_link_mode(ks, advertising,
2092                                                   10000baseSR_Full) ||
2093             ethtool_link_ksettings_test_link_mode(ks, advertising,
2094                                                   10000baseLR_Full))
2095                 adv_link_speed |= ICE_AQ_LINK_SPEED_10GB;
2096         if (ethtool_link_ksettings_test_link_mode(ks, advertising,
2097                                                   25000baseCR_Full) ||
2098             ethtool_link_ksettings_test_link_mode(ks, advertising,
2099                                                   25000baseSR_Full) ||
2100             ethtool_link_ksettings_test_link_mode(ks, advertising,
2101                                                   25000baseKR_Full))
2102                 adv_link_speed |= ICE_AQ_LINK_SPEED_25GB;
2103         if (ethtool_link_ksettings_test_link_mode(ks, advertising,
2104                                                   40000baseCR4_Full) ||
2105             ethtool_link_ksettings_test_link_mode(ks, advertising,
2106                                                   40000baseSR4_Full) ||
2107             ethtool_link_ksettings_test_link_mode(ks, advertising,
2108                                                   40000baseLR4_Full) ||
2109             ethtool_link_ksettings_test_link_mode(ks, advertising,
2110                                                   40000baseKR4_Full))
2111                 adv_link_speed |= ICE_AQ_LINK_SPEED_40GB;
2112         if (ethtool_link_ksettings_test_link_mode(ks, advertising,
2113                                                   50000baseCR2_Full) ||
2114             ethtool_link_ksettings_test_link_mode(ks, advertising,
2115                                                   50000baseKR2_Full))
2116                 adv_link_speed |= ICE_AQ_LINK_SPEED_50GB;
2117         if (ethtool_link_ksettings_test_link_mode(ks, advertising,
2118                                                   50000baseSR2_Full))
2119                 adv_link_speed |= ICE_AQ_LINK_SPEED_50GB;
2120         if (ethtool_link_ksettings_test_link_mode(ks, advertising,
2121                                                   100000baseCR4_Full) ||
2122             ethtool_link_ksettings_test_link_mode(ks, advertising,
2123                                                   100000baseSR4_Full) ||
2124             ethtool_link_ksettings_test_link_mode(ks, advertising,
2125                                                   100000baseLR4_ER4_Full) ||
2126             ethtool_link_ksettings_test_link_mode(ks, advertising,
2127                                                   100000baseKR4_Full))
2128                 adv_link_speed |= ICE_AQ_LINK_SPEED_100GB;
2129
2130         return adv_link_speed;
2131 }
2132
2133 /**
2134  * ice_setup_autoneg
2135  * @p: port info
2136  * @ks: ethtool_link_ksettings
2137  * @config: configuration that will be sent down to FW
2138  * @autoneg_enabled: autonegotiation is enabled or not
2139  * @autoneg_changed: will there a change in autonegotiation
2140  * @netdev: network interface device structure
2141  *
2142  * Setup PHY autonegotiation feature
2143  */
2144 static int
2145 ice_setup_autoneg(struct ice_port_info *p, struct ethtool_link_ksettings *ks,
2146                   struct ice_aqc_set_phy_cfg_data *config,
2147                   u8 autoneg_enabled, u8 *autoneg_changed,
2148                   struct net_device *netdev)
2149 {
2150         int err = 0;
2151
2152         *autoneg_changed = 0;
2153
2154         /* Check autoneg */
2155         if (autoneg_enabled == AUTONEG_ENABLE) {
2156                 /* If autoneg was not already enabled */
2157                 if (!(p->phy.link_info.an_info & ICE_AQ_AN_COMPLETED)) {
2158                         /* If autoneg is not supported, return error */
2159                         if (!ethtool_link_ksettings_test_link_mode(ks,
2160                                                                    supported,
2161                                                                    Autoneg)) {
2162                                 netdev_info(netdev, "Autoneg not supported on this phy.\n");
2163                                 err = -EINVAL;
2164                         } else {
2165                                 /* Autoneg is allowed to change */
2166                                 config->caps |= ICE_AQ_PHY_ENA_AUTO_LINK_UPDT;
2167                                 *autoneg_changed = 1;
2168                         }
2169                 }
2170         } else {
2171                 /* If autoneg is currently enabled */
2172                 if (p->phy.link_info.an_info & ICE_AQ_AN_COMPLETED) {
2173                         /* If autoneg is supported 10GBASE_T is the only PHY
2174                          * that can disable it, so otherwise return error
2175                          */
2176                         if (ethtool_link_ksettings_test_link_mode(ks,
2177                                                                   supported,
2178                                                                   Autoneg)) {
2179                                 netdev_info(netdev, "Autoneg cannot be disabled on this phy\n");
2180                                 err = -EINVAL;
2181                         } else {
2182                                 /* Autoneg is allowed to change */
2183                                 config->caps &= ~ICE_AQ_PHY_ENA_AUTO_LINK_UPDT;
2184                                 *autoneg_changed = 1;
2185                         }
2186                 }
2187         }
2188
2189         return err;
2190 }
2191
2192 /**
2193  * ice_set_link_ksettings - Set Speed and Duplex
2194  * @netdev: network interface device structure
2195  * @ks: ethtool ksettings
2196  *
2197  * Set speed/duplex per media_types advertised/forced
2198  */
2199 static int
2200 ice_set_link_ksettings(struct net_device *netdev,
2201                        const struct ethtool_link_ksettings *ks)
2202 {
2203         struct ice_netdev_priv *np = netdev_priv(netdev);
2204         u8 autoneg, timeout = TEST_SET_BITS_TIMEOUT;
2205         struct ethtool_link_ksettings copy_ks = *ks;
2206         struct ethtool_link_ksettings safe_ks = {};
2207         struct ice_aqc_get_phy_caps_data *phy_caps;
2208         struct ice_aqc_set_phy_cfg_data config;
2209         u16 adv_link_speed, curr_link_speed;
2210         struct ice_pf *pf = np->vsi->back;
2211         struct ice_port_info *pi;
2212         u8 autoneg_changed = 0;
2213         enum ice_status status;
2214         u64 phy_type_high = 0;
2215         u64 phy_type_low = 0;
2216         int err = 0;
2217         bool linkup;
2218
2219         pi = np->vsi->port_info;
2220
2221         if (!pi)
2222                 return -EIO;
2223
2224         if (pi->phy.media_type != ICE_MEDIA_BASET &&
2225             pi->phy.media_type != ICE_MEDIA_FIBER &&
2226             pi->phy.media_type != ICE_MEDIA_BACKPLANE &&
2227             pi->phy.media_type != ICE_MEDIA_DA &&
2228             pi->phy.link_info.link_info & ICE_AQ_LINK_UP)
2229                 return -EOPNOTSUPP;
2230
2231         phy_caps = kzalloc(sizeof(*phy_caps), GFP_KERNEL);
2232         if (!phy_caps)
2233                 return -ENOMEM;
2234
2235         /* Get the PHY capabilities based on media */
2236         if (ice_fw_supports_report_dflt_cfg(pi->hw))
2237                 status = ice_aq_get_phy_caps(pi, false, ICE_AQC_REPORT_DFLT_CFG,
2238                                              phy_caps, NULL);
2239         else
2240                 status = ice_aq_get_phy_caps(pi, false, ICE_AQC_REPORT_TOPO_CAP_MEDIA,
2241                                              phy_caps, NULL);
2242         if (status) {
2243                 err = -EIO;
2244                 goto done;
2245         }
2246
2247         /* save autoneg out of ksettings */
2248         autoneg = copy_ks.base.autoneg;
2249
2250         /* Get link modes supported by hardware.*/
2251         ice_phy_type_to_ethtool(netdev, &safe_ks);
2252
2253         /* and check against modes requested by user.
2254          * Return an error if unsupported mode was set.
2255          */
2256         if (!bitmap_subset(copy_ks.link_modes.advertising,
2257                            safe_ks.link_modes.supported,
2258                            __ETHTOOL_LINK_MODE_MASK_NBITS)) {
2259                 if (!test_bit(ICE_FLAG_LINK_LENIENT_MODE_ENA, pf->flags))
2260                         netdev_info(netdev, "The selected speed is not supported by the current media. Please select a link speed that is supported by the current media.\n");
2261                 err = -EOPNOTSUPP;
2262                 goto done;
2263         }
2264
2265         /* get our own copy of the bits to check against */
2266         memset(&safe_ks, 0, sizeof(safe_ks));
2267         safe_ks.base.cmd = copy_ks.base.cmd;
2268         safe_ks.base.link_mode_masks_nwords =
2269                 copy_ks.base.link_mode_masks_nwords;
2270         ice_get_link_ksettings(netdev, &safe_ks);
2271
2272         /* set autoneg back to what it currently is */
2273         copy_ks.base.autoneg = safe_ks.base.autoneg;
2274         /* we don't compare the speed */
2275         copy_ks.base.speed = safe_ks.base.speed;
2276
2277         /* If copy_ks.base and safe_ks.base are not the same now, then they are
2278          * trying to set something that we do not support.
2279          */
2280         if (memcmp(&copy_ks.base, &safe_ks.base, sizeof(copy_ks.base))) {
2281                 err = -EOPNOTSUPP;
2282                 goto done;
2283         }
2284
2285         while (test_and_set_bit(__ICE_CFG_BUSY, pf->state)) {
2286                 timeout--;
2287                 if (!timeout) {
2288                         err = -EBUSY;
2289                         goto done;
2290                 }
2291                 usleep_range(TEST_SET_BITS_SLEEP_MIN, TEST_SET_BITS_SLEEP_MAX);
2292         }
2293
2294         /* Copy the current user PHY configuration. The current user PHY
2295          * configuration is initialized during probe from PHY capabilities
2296          * software mode, and updated on set PHY configuration.
2297          */
2298         config = pi->phy.curr_user_phy_cfg;
2299
2300         config.caps |= ICE_AQ_PHY_ENA_AUTO_LINK_UPDT;
2301
2302         /* Check autoneg */
2303         err = ice_setup_autoneg(pi, &safe_ks, &config, autoneg, &autoneg_changed,
2304                                 netdev);
2305
2306         if (err)
2307                 goto done;
2308
2309         /* Call to get the current link speed */
2310         pi->phy.get_link_info = true;
2311         status = ice_get_link_status(pi, &linkup);
2312         if (status) {
2313                 err = -EIO;
2314                 goto done;
2315         }
2316
2317         curr_link_speed = pi->phy.link_info.link_speed;
2318         adv_link_speed = ice_ksettings_find_adv_link_speed(ks);
2319
2320         /* If speed didn't get set, set it to what it currently is.
2321          * This is needed because if advertise is 0 (as it is when autoneg
2322          * is disabled) then speed won't get set.
2323          */
2324         if (!adv_link_speed)
2325                 adv_link_speed = curr_link_speed;
2326
2327         /* Convert the advertise link speeds to their corresponded PHY_TYPE */
2328         ice_update_phy_type(&phy_type_low, &phy_type_high, adv_link_speed);
2329
2330         if (!autoneg_changed && adv_link_speed == curr_link_speed) {
2331                 netdev_info(netdev, "Nothing changed, exiting without setting anything.\n");
2332                 goto done;
2333         }
2334
2335         /* save the requested speeds */
2336         pi->phy.link_info.req_speeds = adv_link_speed;
2337
2338         /* set link and auto negotiation so changes take effect */
2339         config.caps |= ICE_AQ_PHY_ENA_LINK;
2340
2341         /* check if there is a PHY type for the requested advertised speed */
2342         if (!(phy_type_low || phy_type_high)) {
2343                 netdev_info(netdev, "The selected speed is not supported by the current media. Please select a link speed that is supported by the current media.\n");
2344                 err = -EOPNOTSUPP;
2345                 goto done;
2346         }
2347
2348         /* intersect requested advertised speed PHY types with media PHY types
2349          * for set PHY configuration
2350          */
2351         config.phy_type_high = cpu_to_le64(phy_type_high) &
2352                         phy_caps->phy_type_high;
2353         config.phy_type_low = cpu_to_le64(phy_type_low) &
2354                         phy_caps->phy_type_low;
2355
2356         if (!(config.phy_type_high || config.phy_type_low)) {
2357                 /* If there is no intersection and lenient mode is enabled, then
2358                  * intersect the requested advertised speed with NVM media type
2359                  * PHY types.
2360                  */
2361                 if (test_bit(ICE_FLAG_LINK_LENIENT_MODE_ENA, pf->flags)) {
2362                         config.phy_type_high = cpu_to_le64(phy_type_high) &
2363                                                pf->nvm_phy_type_hi;
2364                         config.phy_type_low = cpu_to_le64(phy_type_low) &
2365                                               pf->nvm_phy_type_lo;
2366                 } else {
2367                         netdev_info(netdev, "The selected speed is not supported by the current media. Please select a link speed that is supported by the current media.\n");
2368                         err = -EOPNOTSUPP;
2369                         goto done;
2370                 }
2371         }
2372
2373         /* If link is up put link down */
2374         if (pi->phy.link_info.link_info & ICE_AQ_LINK_UP) {
2375                 /* Tell the OS link is going down, the link will go
2376                  * back up when fw says it is ready asynchronously
2377                  */
2378                 ice_print_link_msg(np->vsi, false);
2379                 netif_carrier_off(netdev);
2380                 netif_tx_stop_all_queues(netdev);
2381         }
2382
2383         /* make the aq call */
2384         status = ice_aq_set_phy_cfg(&pf->hw, pi, &config, NULL);
2385         if (status) {
2386                 netdev_info(netdev, "Set phy config failed,\n");
2387                 err = -EIO;
2388                 goto done;
2389         }
2390
2391         /* Save speed request */
2392         pi->phy.curr_user_speed_req = adv_link_speed;
2393 done:
2394         kfree(phy_caps);
2395         clear_bit(__ICE_CFG_BUSY, pf->state);
2396
2397         return err;
2398 }
2399
2400 /**
2401  * ice_parse_hdrs - parses headers from RSS hash input
2402  * @nfc: ethtool rxnfc command
2403  *
2404  * This function parses the rxnfc command and returns intended
2405  * header types for RSS configuration
2406  */
2407 static u32 ice_parse_hdrs(struct ethtool_rxnfc *nfc)
2408 {
2409         u32 hdrs = ICE_FLOW_SEG_HDR_NONE;
2410
2411         switch (nfc->flow_type) {
2412         case TCP_V4_FLOW:
2413                 hdrs |= ICE_FLOW_SEG_HDR_TCP | ICE_FLOW_SEG_HDR_IPV4;
2414                 break;
2415         case UDP_V4_FLOW:
2416                 hdrs |= ICE_FLOW_SEG_HDR_UDP | ICE_FLOW_SEG_HDR_IPV4;
2417                 break;
2418         case SCTP_V4_FLOW:
2419                 hdrs |= ICE_FLOW_SEG_HDR_SCTP | ICE_FLOW_SEG_HDR_IPV4;
2420                 break;
2421         case TCP_V6_FLOW:
2422                 hdrs |= ICE_FLOW_SEG_HDR_TCP | ICE_FLOW_SEG_HDR_IPV6;
2423                 break;
2424         case UDP_V6_FLOW:
2425                 hdrs |= ICE_FLOW_SEG_HDR_UDP | ICE_FLOW_SEG_HDR_IPV6;
2426                 break;
2427         case SCTP_V6_FLOW:
2428                 hdrs |= ICE_FLOW_SEG_HDR_SCTP | ICE_FLOW_SEG_HDR_IPV6;
2429                 break;
2430         default:
2431                 break;
2432         }
2433         return hdrs;
2434 }
2435
2436 #define ICE_FLOW_HASH_FLD_IPV4_SA       BIT_ULL(ICE_FLOW_FIELD_IDX_IPV4_SA)
2437 #define ICE_FLOW_HASH_FLD_IPV6_SA       BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_SA)
2438 #define ICE_FLOW_HASH_FLD_IPV4_DA       BIT_ULL(ICE_FLOW_FIELD_IDX_IPV4_DA)
2439 #define ICE_FLOW_HASH_FLD_IPV6_DA       BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_DA)
2440 #define ICE_FLOW_HASH_FLD_TCP_SRC_PORT  BIT_ULL(ICE_FLOW_FIELD_IDX_TCP_SRC_PORT)
2441 #define ICE_FLOW_HASH_FLD_TCP_DST_PORT  BIT_ULL(ICE_FLOW_FIELD_IDX_TCP_DST_PORT)
2442 #define ICE_FLOW_HASH_FLD_UDP_SRC_PORT  BIT_ULL(ICE_FLOW_FIELD_IDX_UDP_SRC_PORT)
2443 #define ICE_FLOW_HASH_FLD_UDP_DST_PORT  BIT_ULL(ICE_FLOW_FIELD_IDX_UDP_DST_PORT)
2444 #define ICE_FLOW_HASH_FLD_SCTP_SRC_PORT \
2445         BIT_ULL(ICE_FLOW_FIELD_IDX_SCTP_SRC_PORT)
2446 #define ICE_FLOW_HASH_FLD_SCTP_DST_PORT \
2447         BIT_ULL(ICE_FLOW_FIELD_IDX_SCTP_DST_PORT)
2448
2449 /**
2450  * ice_parse_hash_flds - parses hash fields from RSS hash input
2451  * @nfc: ethtool rxnfc command
2452  *
2453  * This function parses the rxnfc command and returns intended
2454  * hash fields for RSS configuration
2455  */
2456 static u64 ice_parse_hash_flds(struct ethtool_rxnfc *nfc)
2457 {
2458         u64 hfld = ICE_HASH_INVALID;
2459
2460         if (nfc->data & RXH_IP_SRC || nfc->data & RXH_IP_DST) {
2461                 switch (nfc->flow_type) {
2462                 case TCP_V4_FLOW:
2463                 case UDP_V4_FLOW:
2464                 case SCTP_V4_FLOW:
2465                         if (nfc->data & RXH_IP_SRC)
2466                                 hfld |= ICE_FLOW_HASH_FLD_IPV4_SA;
2467                         if (nfc->data & RXH_IP_DST)
2468                                 hfld |= ICE_FLOW_HASH_FLD_IPV4_DA;
2469                         break;
2470                 case TCP_V6_FLOW:
2471                 case UDP_V6_FLOW:
2472                 case SCTP_V6_FLOW:
2473                         if (nfc->data & RXH_IP_SRC)
2474                                 hfld |= ICE_FLOW_HASH_FLD_IPV6_SA;
2475                         if (nfc->data & RXH_IP_DST)
2476                                 hfld |= ICE_FLOW_HASH_FLD_IPV6_DA;
2477                         break;
2478                 default:
2479                         break;
2480                 }
2481         }
2482
2483         if (nfc->data & RXH_L4_B_0_1 || nfc->data & RXH_L4_B_2_3) {
2484                 switch (nfc->flow_type) {
2485                 case TCP_V4_FLOW:
2486                 case TCP_V6_FLOW:
2487                         if (nfc->data & RXH_L4_B_0_1)
2488                                 hfld |= ICE_FLOW_HASH_FLD_TCP_SRC_PORT;
2489                         if (nfc->data & RXH_L4_B_2_3)
2490                                 hfld |= ICE_FLOW_HASH_FLD_TCP_DST_PORT;
2491                         break;
2492                 case UDP_V4_FLOW:
2493                 case UDP_V6_FLOW:
2494                         if (nfc->data & RXH_L4_B_0_1)
2495                                 hfld |= ICE_FLOW_HASH_FLD_UDP_SRC_PORT;
2496                         if (nfc->data & RXH_L4_B_2_3)
2497                                 hfld |= ICE_FLOW_HASH_FLD_UDP_DST_PORT;
2498                         break;
2499                 case SCTP_V4_FLOW:
2500                 case SCTP_V6_FLOW:
2501                         if (nfc->data & RXH_L4_B_0_1)
2502                                 hfld |= ICE_FLOW_HASH_FLD_SCTP_SRC_PORT;
2503                         if (nfc->data & RXH_L4_B_2_3)
2504                                 hfld |= ICE_FLOW_HASH_FLD_SCTP_DST_PORT;
2505                         break;
2506                 default:
2507                         break;
2508                 }
2509         }
2510
2511         return hfld;
2512 }
2513
2514 /**
2515  * ice_set_rss_hash_opt - Enable/Disable flow types for RSS hash
2516  * @vsi: the VSI being configured
2517  * @nfc: ethtool rxnfc command
2518  *
2519  * Returns Success if the flow input set is supported.
2520  */
2521 static int
2522 ice_set_rss_hash_opt(struct ice_vsi *vsi, struct ethtool_rxnfc *nfc)
2523 {
2524         struct ice_pf *pf = vsi->back;
2525         enum ice_status status;
2526         struct device *dev;
2527         u64 hashed_flds;
2528         u32 hdrs;
2529
2530         dev = ice_pf_to_dev(pf);
2531         if (ice_is_safe_mode(pf)) {
2532                 dev_dbg(dev, "Advanced RSS disabled. Package download failed, vsi num = %d\n",
2533                         vsi->vsi_num);
2534                 return -EINVAL;
2535         }
2536
2537         hashed_flds = ice_parse_hash_flds(nfc);
2538         if (hashed_flds == ICE_HASH_INVALID) {
2539                 dev_dbg(dev, "Invalid hash fields, vsi num = %d\n",
2540                         vsi->vsi_num);
2541                 return -EINVAL;
2542         }
2543
2544         hdrs = ice_parse_hdrs(nfc);
2545         if (hdrs == ICE_FLOW_SEG_HDR_NONE) {
2546                 dev_dbg(dev, "Header type is not valid, vsi num = %d\n",
2547                         vsi->vsi_num);
2548                 return -EINVAL;
2549         }
2550
2551         status = ice_add_rss_cfg(&pf->hw, vsi->idx, hashed_flds, hdrs);
2552         if (status) {
2553                 dev_dbg(dev, "ice_add_rss_cfg failed, vsi num = %d, error = %s\n",
2554                         vsi->vsi_num, ice_stat_str(status));
2555                 return -EINVAL;
2556         }
2557
2558         return 0;
2559 }
2560
2561 /**
2562  * ice_get_rss_hash_opt - Retrieve hash fields for a given flow-type
2563  * @vsi: the VSI being configured
2564  * @nfc: ethtool rxnfc command
2565  */
2566 static void
2567 ice_get_rss_hash_opt(struct ice_vsi *vsi, struct ethtool_rxnfc *nfc)
2568 {
2569         struct ice_pf *pf = vsi->back;
2570         struct device *dev;
2571         u64 hash_flds;
2572         u32 hdrs;
2573
2574         dev = ice_pf_to_dev(pf);
2575
2576         nfc->data = 0;
2577         if (ice_is_safe_mode(pf)) {
2578                 dev_dbg(dev, "Advanced RSS disabled. Package download failed, vsi num = %d\n",
2579                         vsi->vsi_num);
2580                 return;
2581         }
2582
2583         hdrs = ice_parse_hdrs(nfc);
2584         if (hdrs == ICE_FLOW_SEG_HDR_NONE) {
2585                 dev_dbg(dev, "Header type is not valid, vsi num = %d\n",
2586                         vsi->vsi_num);
2587                 return;
2588         }
2589
2590         hash_flds = ice_get_rss_cfg(&pf->hw, vsi->idx, hdrs);
2591         if (hash_flds == ICE_HASH_INVALID) {
2592                 dev_dbg(dev, "No hash fields found for the given header type, vsi num = %d\n",
2593                         vsi->vsi_num);
2594                 return;
2595         }
2596
2597         if (hash_flds & ICE_FLOW_HASH_FLD_IPV4_SA ||
2598             hash_flds & ICE_FLOW_HASH_FLD_IPV6_SA)
2599                 nfc->data |= (u64)RXH_IP_SRC;
2600
2601         if (hash_flds & ICE_FLOW_HASH_FLD_IPV4_DA ||
2602             hash_flds & ICE_FLOW_HASH_FLD_IPV6_DA)
2603                 nfc->data |= (u64)RXH_IP_DST;
2604
2605         if (hash_flds & ICE_FLOW_HASH_FLD_TCP_SRC_PORT ||
2606             hash_flds & ICE_FLOW_HASH_FLD_UDP_SRC_PORT ||
2607             hash_flds & ICE_FLOW_HASH_FLD_SCTP_SRC_PORT)
2608                 nfc->data |= (u64)RXH_L4_B_0_1;
2609
2610         if (hash_flds & ICE_FLOW_HASH_FLD_TCP_DST_PORT ||
2611             hash_flds & ICE_FLOW_HASH_FLD_UDP_DST_PORT ||
2612             hash_flds & ICE_FLOW_HASH_FLD_SCTP_DST_PORT)
2613                 nfc->data |= (u64)RXH_L4_B_2_3;
2614 }
2615
2616 /**
2617  * ice_set_rxnfc - command to set Rx flow rules.
2618  * @netdev: network interface device structure
2619  * @cmd: ethtool rxnfc command
2620  *
2621  * Returns 0 for success and negative values for errors
2622  */
2623 static int ice_set_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd)
2624 {
2625         struct ice_netdev_priv *np = netdev_priv(netdev);
2626         struct ice_vsi *vsi = np->vsi;
2627
2628         switch (cmd->cmd) {
2629         case ETHTOOL_SRXCLSRLINS:
2630                 return ice_add_fdir_ethtool(vsi, cmd);
2631         case ETHTOOL_SRXCLSRLDEL:
2632                 return ice_del_fdir_ethtool(vsi, cmd);
2633         case ETHTOOL_SRXFH:
2634                 return ice_set_rss_hash_opt(vsi, cmd);
2635         default:
2636                 break;
2637         }
2638         return -EOPNOTSUPP;
2639 }
2640
2641 /**
2642  * ice_get_rxnfc - command to get Rx flow classification rules
2643  * @netdev: network interface device structure
2644  * @cmd: ethtool rxnfc command
2645  * @rule_locs: buffer to rturn Rx flow classification rules
2646  *
2647  * Returns Success if the command is supported.
2648  */
2649 static int
2650 ice_get_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd,
2651               u32 __always_unused *rule_locs)
2652 {
2653         struct ice_netdev_priv *np = netdev_priv(netdev);
2654         struct ice_vsi *vsi = np->vsi;
2655         int ret = -EOPNOTSUPP;
2656         struct ice_hw *hw;
2657
2658         hw = &vsi->back->hw;
2659
2660         switch (cmd->cmd) {
2661         case ETHTOOL_GRXRINGS:
2662                 cmd->data = vsi->rss_size;
2663                 ret = 0;
2664                 break;
2665         case ETHTOOL_GRXCLSRLCNT:
2666                 cmd->rule_cnt = hw->fdir_active_fltr;
2667                 /* report total rule count */
2668                 cmd->data = ice_get_fdir_cnt_all(hw);
2669                 ret = 0;
2670                 break;
2671         case ETHTOOL_GRXCLSRULE:
2672                 ret = ice_get_ethtool_fdir_entry(hw, cmd);
2673                 break;
2674         case ETHTOOL_GRXCLSRLALL:
2675                 ret = ice_get_fdir_fltr_ids(hw, cmd, (u32 *)rule_locs);
2676                 break;
2677         case ETHTOOL_GRXFH:
2678                 ice_get_rss_hash_opt(vsi, cmd);
2679                 ret = 0;
2680                 break;
2681         default:
2682                 break;
2683         }
2684
2685         return ret;
2686 }
2687
2688 static void
2689 ice_get_ringparam(struct net_device *netdev, struct ethtool_ringparam *ring)
2690 {
2691         struct ice_netdev_priv *np = netdev_priv(netdev);
2692         struct ice_vsi *vsi = np->vsi;
2693
2694         ring->rx_max_pending = ICE_MAX_NUM_DESC;
2695         ring->tx_max_pending = ICE_MAX_NUM_DESC;
2696         ring->rx_pending = vsi->rx_rings[0]->count;
2697         ring->tx_pending = vsi->tx_rings[0]->count;
2698
2699         /* Rx mini and jumbo rings are not supported */
2700         ring->rx_mini_max_pending = 0;
2701         ring->rx_jumbo_max_pending = 0;
2702         ring->rx_mini_pending = 0;
2703         ring->rx_jumbo_pending = 0;
2704 }
2705
2706 static int
2707 ice_set_ringparam(struct net_device *netdev, struct ethtool_ringparam *ring)
2708 {
2709         struct ice_ring *tx_rings = NULL, *rx_rings = NULL;
2710         struct ice_netdev_priv *np = netdev_priv(netdev);
2711         struct ice_ring *xdp_rings = NULL;
2712         struct ice_vsi *vsi = np->vsi;
2713         struct ice_pf *pf = vsi->back;
2714         int i, timeout = 50, err = 0;
2715         u16 new_rx_cnt, new_tx_cnt;
2716
2717         if (ring->tx_pending > ICE_MAX_NUM_DESC ||
2718             ring->tx_pending < ICE_MIN_NUM_DESC ||
2719             ring->rx_pending > ICE_MAX_NUM_DESC ||
2720             ring->rx_pending < ICE_MIN_NUM_DESC) {
2721                 netdev_err(netdev, "Descriptors requested (Tx: %d / Rx: %d) out of range [%d-%d] (increment %d)\n",
2722                            ring->tx_pending, ring->rx_pending,
2723                            ICE_MIN_NUM_DESC, ICE_MAX_NUM_DESC,
2724                            ICE_REQ_DESC_MULTIPLE);
2725                 return -EINVAL;
2726         }
2727
2728         new_tx_cnt = ALIGN(ring->tx_pending, ICE_REQ_DESC_MULTIPLE);
2729         if (new_tx_cnt != ring->tx_pending)
2730                 netdev_info(netdev, "Requested Tx descriptor count rounded up to %d\n",
2731                             new_tx_cnt);
2732         new_rx_cnt = ALIGN(ring->rx_pending, ICE_REQ_DESC_MULTIPLE);
2733         if (new_rx_cnt != ring->rx_pending)
2734                 netdev_info(netdev, "Requested Rx descriptor count rounded up to %d\n",
2735                             new_rx_cnt);
2736
2737         /* if nothing to do return success */
2738         if (new_tx_cnt == vsi->tx_rings[0]->count &&
2739             new_rx_cnt == vsi->rx_rings[0]->count) {
2740                 netdev_dbg(netdev, "Nothing to change, descriptor count is same as requested\n");
2741                 return 0;
2742         }
2743
2744         /* If there is a AF_XDP UMEM attached to any of Rx rings,
2745          * disallow changing the number of descriptors -- regardless
2746          * if the netdev is running or not.
2747          */
2748         if (ice_xsk_any_rx_ring_ena(vsi))
2749                 return -EBUSY;
2750
2751         while (test_and_set_bit(__ICE_CFG_BUSY, pf->state)) {
2752                 timeout--;
2753                 if (!timeout)
2754                         return -EBUSY;
2755                 usleep_range(1000, 2000);
2756         }
2757
2758         /* set for the next time the netdev is started */
2759         if (!netif_running(vsi->netdev)) {
2760                 for (i = 0; i < vsi->alloc_txq; i++)
2761                         vsi->tx_rings[i]->count = new_tx_cnt;
2762                 for (i = 0; i < vsi->alloc_rxq; i++)
2763                         vsi->rx_rings[i]->count = new_rx_cnt;
2764                 if (ice_is_xdp_ena_vsi(vsi))
2765                         for (i = 0; i < vsi->num_xdp_txq; i++)
2766                                 vsi->xdp_rings[i]->count = new_tx_cnt;
2767                 vsi->num_tx_desc = (u16)new_tx_cnt;
2768                 vsi->num_rx_desc = (u16)new_rx_cnt;
2769                 netdev_dbg(netdev, "Link is down, descriptor count change happens when link is brought up\n");
2770                 goto done;
2771         }
2772
2773         if (new_tx_cnt == vsi->tx_rings[0]->count)
2774                 goto process_rx;
2775
2776         /* alloc updated Tx resources */
2777         netdev_info(netdev, "Changing Tx descriptor count from %d to %d\n",
2778                     vsi->tx_rings[0]->count, new_tx_cnt);
2779
2780         tx_rings = kcalloc(vsi->num_txq, sizeof(*tx_rings), GFP_KERNEL);
2781         if (!tx_rings) {
2782                 err = -ENOMEM;
2783                 goto done;
2784         }
2785
2786         ice_for_each_txq(vsi, i) {
2787                 /* clone ring and setup updated count */
2788                 tx_rings[i] = *vsi->tx_rings[i];
2789                 tx_rings[i].count = new_tx_cnt;
2790                 tx_rings[i].desc = NULL;
2791                 tx_rings[i].tx_buf = NULL;
2792                 err = ice_setup_tx_ring(&tx_rings[i]);
2793                 if (err) {
2794                         while (i--)
2795                                 ice_clean_tx_ring(&tx_rings[i]);
2796                         kfree(tx_rings);
2797                         goto done;
2798                 }
2799         }
2800
2801         if (!ice_is_xdp_ena_vsi(vsi))
2802                 goto process_rx;
2803
2804         /* alloc updated XDP resources */
2805         netdev_info(netdev, "Changing XDP descriptor count from %d to %d\n",
2806                     vsi->xdp_rings[0]->count, new_tx_cnt);
2807
2808         xdp_rings = kcalloc(vsi->num_xdp_txq, sizeof(*xdp_rings), GFP_KERNEL);
2809         if (!xdp_rings) {
2810                 err = -ENOMEM;
2811                 goto free_tx;
2812         }
2813
2814         for (i = 0; i < vsi->num_xdp_txq; i++) {
2815                 /* clone ring and setup updated count */
2816                 xdp_rings[i] = *vsi->xdp_rings[i];
2817                 xdp_rings[i].count = new_tx_cnt;
2818                 xdp_rings[i].desc = NULL;
2819                 xdp_rings[i].tx_buf = NULL;
2820                 err = ice_setup_tx_ring(&xdp_rings[i]);
2821                 if (err) {
2822                         while (i--)
2823                                 ice_clean_tx_ring(&xdp_rings[i]);
2824                         kfree(xdp_rings);
2825                         goto free_tx;
2826                 }
2827                 ice_set_ring_xdp(&xdp_rings[i]);
2828         }
2829
2830 process_rx:
2831         if (new_rx_cnt == vsi->rx_rings[0]->count)
2832                 goto process_link;
2833
2834         /* alloc updated Rx resources */
2835         netdev_info(netdev, "Changing Rx descriptor count from %d to %d\n",
2836                     vsi->rx_rings[0]->count, new_rx_cnt);
2837
2838         rx_rings = kcalloc(vsi->num_rxq, sizeof(*rx_rings), GFP_KERNEL);
2839         if (!rx_rings) {
2840                 err = -ENOMEM;
2841                 goto done;
2842         }
2843
2844         ice_for_each_rxq(vsi, i) {
2845                 /* clone ring and setup updated count */
2846                 rx_rings[i] = *vsi->rx_rings[i];
2847                 rx_rings[i].count = new_rx_cnt;
2848                 rx_rings[i].desc = NULL;
2849                 rx_rings[i].rx_buf = NULL;
2850                 /* this is to allow wr32 to have something to write to
2851                  * during early allocation of Rx buffers
2852                  */
2853                 rx_rings[i].tail = vsi->back->hw.hw_addr + PRTGEN_STATUS;
2854
2855                 err = ice_setup_rx_ring(&rx_rings[i]);
2856                 if (err)
2857                         goto rx_unwind;
2858
2859                 /* allocate Rx buffers */
2860                 err = ice_alloc_rx_bufs(&rx_rings[i],
2861                                         ICE_DESC_UNUSED(&rx_rings[i]));
2862 rx_unwind:
2863                 if (err) {
2864                         while (i) {
2865                                 i--;
2866                                 ice_free_rx_ring(&rx_rings[i]);
2867                         }
2868                         kfree(rx_rings);
2869                         err = -ENOMEM;
2870                         goto free_tx;
2871                 }
2872         }
2873
2874 process_link:
2875         /* Bring interface down, copy in the new ring info, then restore the
2876          * interface. if VSI is up, bring it down and then back up
2877          */
2878         if (!test_and_set_bit(ICE_VSI_DOWN, vsi->state)) {
2879                 ice_down(vsi);
2880
2881                 if (tx_rings) {
2882                         ice_for_each_txq(vsi, i) {
2883                                 ice_free_tx_ring(vsi->tx_rings[i]);
2884                                 *vsi->tx_rings[i] = tx_rings[i];
2885                         }
2886                         kfree(tx_rings);
2887                 }
2888
2889                 if (rx_rings) {
2890                         ice_for_each_rxq(vsi, i) {
2891                                 ice_free_rx_ring(vsi->rx_rings[i]);
2892                                 /* copy the real tail offset */
2893                                 rx_rings[i].tail = vsi->rx_rings[i]->tail;
2894                                 /* this is to fake out the allocation routine
2895                                  * into thinking it has to realloc everything
2896                                  * but the recycling logic will let us re-use
2897                                  * the buffers allocated above
2898                                  */
2899                                 rx_rings[i].next_to_use = 0;
2900                                 rx_rings[i].next_to_clean = 0;
2901                                 rx_rings[i].next_to_alloc = 0;
2902                                 *vsi->rx_rings[i] = rx_rings[i];
2903                         }
2904                         kfree(rx_rings);
2905                 }
2906
2907                 if (xdp_rings) {
2908                         for (i = 0; i < vsi->num_xdp_txq; i++) {
2909                                 ice_free_tx_ring(vsi->xdp_rings[i]);
2910                                 *vsi->xdp_rings[i] = xdp_rings[i];
2911                         }
2912                         kfree(xdp_rings);
2913                 }
2914
2915                 vsi->num_tx_desc = new_tx_cnt;
2916                 vsi->num_rx_desc = new_rx_cnt;
2917                 ice_up(vsi);
2918         }
2919         goto done;
2920
2921 free_tx:
2922         /* error cleanup if the Rx allocations failed after getting Tx */
2923         if (tx_rings) {
2924                 ice_for_each_txq(vsi, i)
2925                         ice_free_tx_ring(&tx_rings[i]);
2926                 kfree(tx_rings);
2927         }
2928
2929 done:
2930         clear_bit(__ICE_CFG_BUSY, pf->state);
2931         return err;
2932 }
2933
2934 /**
2935  * ice_get_pauseparam - Get Flow Control status
2936  * @netdev: network interface device structure
2937  * @pause: ethernet pause (flow control) parameters
2938  *
2939  * Get requested flow control status from PHY capability.
2940  * If autoneg is true, then ethtool will send the ETHTOOL_GSET ioctl which
2941  * is handled by ice_get_link_ksettings. ice_get_link_ksettings will report
2942  * the negotiated Rx/Tx pause via lp_advertising.
2943  */
2944 static void
2945 ice_get_pauseparam(struct net_device *netdev, struct ethtool_pauseparam *pause)
2946 {
2947         struct ice_netdev_priv *np = netdev_priv(netdev);
2948         struct ice_port_info *pi = np->vsi->port_info;
2949         struct ice_aqc_get_phy_caps_data *pcaps;
2950         struct ice_dcbx_cfg *dcbx_cfg;
2951         enum ice_status status;
2952
2953         /* Initialize pause params */
2954         pause->rx_pause = 0;
2955         pause->tx_pause = 0;
2956
2957         dcbx_cfg = &pi->qos_cfg.local_dcbx_cfg;
2958
2959         pcaps = kzalloc(sizeof(*pcaps), GFP_KERNEL);
2960         if (!pcaps)
2961                 return;
2962
2963         /* Get current PHY config */
2964         status = ice_aq_get_phy_caps(pi, false, ICE_AQC_REPORT_ACTIVE_CFG, pcaps,
2965                                      NULL);
2966         if (status)
2967                 goto out;
2968
2969         pause->autoneg = ice_is_phy_caps_an_enabled(pcaps) ? AUTONEG_ENABLE :
2970                                                              AUTONEG_DISABLE;
2971
2972         if (dcbx_cfg->pfc.pfcena)
2973                 /* PFC enabled so report LFC as off */
2974                 goto out;
2975
2976         if (pcaps->caps & ICE_AQC_PHY_EN_TX_LINK_PAUSE)
2977                 pause->tx_pause = 1;
2978         if (pcaps->caps & ICE_AQC_PHY_EN_RX_LINK_PAUSE)
2979                 pause->rx_pause = 1;
2980
2981 out:
2982         kfree(pcaps);
2983 }
2984
2985 /**
2986  * ice_set_pauseparam - Set Flow Control parameter
2987  * @netdev: network interface device structure
2988  * @pause: return Tx/Rx flow control status
2989  */
2990 static int
2991 ice_set_pauseparam(struct net_device *netdev, struct ethtool_pauseparam *pause)
2992 {
2993         struct ice_netdev_priv *np = netdev_priv(netdev);
2994         struct ice_aqc_get_phy_caps_data *pcaps;
2995         struct ice_link_status *hw_link_info;
2996         struct ice_pf *pf = np->vsi->back;
2997         struct ice_dcbx_cfg *dcbx_cfg;
2998         struct ice_vsi *vsi = np->vsi;
2999         struct ice_hw *hw = &pf->hw;
3000         struct ice_port_info *pi;
3001         enum ice_status status;
3002         u8 aq_failures;
3003         bool link_up;
3004         int err = 0;
3005         u32 is_an;
3006
3007         pi = vsi->port_info;
3008         hw_link_info = &pi->phy.link_info;
3009         dcbx_cfg = &pi->qos_cfg.local_dcbx_cfg;
3010         link_up = hw_link_info->link_info & ICE_AQ_LINK_UP;
3011
3012         /* Changing the port's flow control is not supported if this isn't the
3013          * PF VSI
3014          */
3015         if (vsi->type != ICE_VSI_PF) {
3016                 netdev_info(netdev, "Changing flow control parameters only supported for PF VSI\n");
3017                 return -EOPNOTSUPP;
3018         }
3019
3020         /* Get pause param reports configured and negotiated flow control pause
3021          * when ETHTOOL_GLINKSETTINGS is defined. Since ETHTOOL_GLINKSETTINGS is
3022          * defined get pause param pause->autoneg reports SW configured setting,
3023          * so compare pause->autoneg with SW configured to prevent the user from
3024          * using set pause param to chance autoneg.
3025          */
3026         pcaps = kzalloc(sizeof(*pcaps), GFP_KERNEL);
3027         if (!pcaps)
3028                 return -ENOMEM;
3029
3030         /* Get current PHY config */
3031         status = ice_aq_get_phy_caps(pi, false, ICE_AQC_REPORT_ACTIVE_CFG, pcaps,
3032                                      NULL);
3033         if (status) {
3034                 kfree(pcaps);
3035                 return -EIO;
3036         }
3037
3038         is_an = ice_is_phy_caps_an_enabled(pcaps) ? AUTONEG_ENABLE :
3039                                                     AUTONEG_DISABLE;
3040
3041         kfree(pcaps);
3042
3043         if (pause->autoneg != is_an) {
3044                 netdev_info(netdev, "To change autoneg please use: ethtool -s <dev> autoneg <on|off>\n");
3045                 return -EOPNOTSUPP;
3046         }
3047
3048         /* If we have link and don't have autoneg */
3049         if (!test_bit(__ICE_DOWN, pf->state) &&
3050             !(hw_link_info->an_info & ICE_AQ_AN_COMPLETED)) {
3051                 /* Send message that it might not necessarily work*/
3052                 netdev_info(netdev, "Autoneg did not complete so changing settings may not result in an actual change.\n");
3053         }
3054
3055         if (dcbx_cfg->pfc.pfcena) {
3056                 netdev_info(netdev, "Priority flow control enabled. Cannot set link flow control.\n");
3057                 return -EOPNOTSUPP;
3058         }
3059         if (pause->rx_pause && pause->tx_pause)
3060                 pi->fc.req_mode = ICE_FC_FULL;
3061         else if (pause->rx_pause && !pause->tx_pause)
3062                 pi->fc.req_mode = ICE_FC_RX_PAUSE;
3063         else if (!pause->rx_pause && pause->tx_pause)
3064                 pi->fc.req_mode = ICE_FC_TX_PAUSE;
3065         else if (!pause->rx_pause && !pause->tx_pause)
3066                 pi->fc.req_mode = ICE_FC_NONE;
3067         else
3068                 return -EINVAL;
3069
3070         /* Set the FC mode and only restart AN if link is up */
3071         status = ice_set_fc(pi, &aq_failures, link_up);
3072
3073         if (aq_failures & ICE_SET_FC_AQ_FAIL_GET) {
3074                 netdev_info(netdev, "Set fc failed on the get_phy_capabilities call with err %s aq_err %s\n",
3075                             ice_stat_str(status),
3076                             ice_aq_str(hw->adminq.sq_last_status));
3077                 err = -EAGAIN;
3078         } else if (aq_failures & ICE_SET_FC_AQ_FAIL_SET) {
3079                 netdev_info(netdev, "Set fc failed on the set_phy_config call with err %s aq_err %s\n",
3080                             ice_stat_str(status),
3081                             ice_aq_str(hw->adminq.sq_last_status));
3082                 err = -EAGAIN;
3083         } else if (aq_failures & ICE_SET_FC_AQ_FAIL_UPDATE) {
3084                 netdev_info(netdev, "Set fc failed on the get_link_info call with err %s aq_err %s\n",
3085                             ice_stat_str(status),
3086                             ice_aq_str(hw->adminq.sq_last_status));
3087                 err = -EAGAIN;
3088         }
3089
3090         return err;
3091 }
3092
3093 /**
3094  * ice_get_rxfh_key_size - get the RSS hash key size
3095  * @netdev: network interface device structure
3096  *
3097  * Returns the table size.
3098  */
3099 static u32 ice_get_rxfh_key_size(struct net_device __always_unused *netdev)
3100 {
3101         return ICE_VSIQF_HKEY_ARRAY_SIZE;
3102 }
3103
3104 /**
3105  * ice_get_rxfh_indir_size - get the Rx flow hash indirection table size
3106  * @netdev: network interface device structure
3107  *
3108  * Returns the table size.
3109  */
3110 static u32 ice_get_rxfh_indir_size(struct net_device *netdev)
3111 {
3112         struct ice_netdev_priv *np = netdev_priv(netdev);
3113
3114         return np->vsi->rss_table_size;
3115 }
3116
3117 /**
3118  * ice_get_rxfh - get the Rx flow hash indirection table
3119  * @netdev: network interface device structure
3120  * @indir: indirection table
3121  * @key: hash key
3122  * @hfunc: hash function
3123  *
3124  * Reads the indirection table directly from the hardware.
3125  */
3126 static int
3127 ice_get_rxfh(struct net_device *netdev, u32 *indir, u8 *key, u8 *hfunc)
3128 {
3129         struct ice_netdev_priv *np = netdev_priv(netdev);
3130         struct ice_vsi *vsi = np->vsi;
3131         struct ice_pf *pf = vsi->back;
3132         int err, i;
3133         u8 *lut;
3134
3135         if (hfunc)
3136                 *hfunc = ETH_RSS_HASH_TOP;
3137
3138         if (!indir)
3139                 return 0;
3140
3141         if (!test_bit(ICE_FLAG_RSS_ENA, pf->flags)) {
3142                 /* RSS not supported return error here */
3143                 netdev_warn(netdev, "RSS is not configured on this VSI!\n");
3144                 return -EIO;
3145         }
3146
3147         lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
3148         if (!lut)
3149                 return -ENOMEM;
3150
3151         err = ice_get_rss_key(vsi, key);
3152         if (err)
3153                 goto out;
3154
3155         err = ice_get_rss_lut(vsi, lut, vsi->rss_table_size);
3156         if (err)
3157                 goto out;
3158
3159         for (i = 0; i < vsi->rss_table_size; i++)
3160                 indir[i] = (u32)(lut[i]);
3161
3162 out:
3163         kfree(lut);
3164         return err;
3165 }
3166
3167 /**
3168  * ice_set_rxfh - set the Rx flow hash indirection table
3169  * @netdev: network interface device structure
3170  * @indir: indirection table
3171  * @key: hash key
3172  * @hfunc: hash function
3173  *
3174  * Returns -EINVAL if the table specifies an invalid queue ID, otherwise
3175  * returns 0 after programming the table.
3176  */
3177 static int
3178 ice_set_rxfh(struct net_device *netdev, const u32 *indir, const u8 *key,
3179              const u8 hfunc)
3180 {
3181         struct ice_netdev_priv *np = netdev_priv(netdev);
3182         struct ice_vsi *vsi = np->vsi;
3183         struct ice_pf *pf = vsi->back;
3184         struct device *dev;
3185         int err;
3186
3187         dev = ice_pf_to_dev(pf);
3188         if (hfunc != ETH_RSS_HASH_NO_CHANGE && hfunc != ETH_RSS_HASH_TOP)
3189                 return -EOPNOTSUPP;
3190
3191         if (!test_bit(ICE_FLAG_RSS_ENA, pf->flags)) {
3192                 /* RSS not supported return error here */
3193                 netdev_warn(netdev, "RSS is not configured on this VSI!\n");
3194                 return -EIO;
3195         }
3196
3197         if (key) {
3198                 if (!vsi->rss_hkey_user) {
3199                         vsi->rss_hkey_user =
3200                                 devm_kzalloc(dev, ICE_VSIQF_HKEY_ARRAY_SIZE,
3201                                              GFP_KERNEL);
3202                         if (!vsi->rss_hkey_user)
3203                                 return -ENOMEM;
3204                 }
3205                 memcpy(vsi->rss_hkey_user, key, ICE_VSIQF_HKEY_ARRAY_SIZE);
3206
3207                 err = ice_set_rss_key(vsi, vsi->rss_hkey_user);
3208                 if (err)
3209                         return err;
3210         }
3211
3212         if (!vsi->rss_lut_user) {
3213                 vsi->rss_lut_user = devm_kzalloc(dev, vsi->rss_table_size,
3214                                                  GFP_KERNEL);
3215                 if (!vsi->rss_lut_user)
3216                         return -ENOMEM;
3217         }
3218
3219         /* Each 32 bits pointed by 'indir' is stored with a lut entry */
3220         if (indir) {
3221                 int i;
3222
3223                 for (i = 0; i < vsi->rss_table_size; i++)
3224                         vsi->rss_lut_user[i] = (u8)(indir[i]);
3225         } else {
3226                 ice_fill_rss_lut(vsi->rss_lut_user, vsi->rss_table_size,
3227                                  vsi->rss_size);
3228         }
3229
3230         err = ice_set_rss_lut(vsi, vsi->rss_lut_user, vsi->rss_table_size);
3231         if (err)
3232                 return err;
3233
3234         return 0;
3235 }
3236
3237 /**
3238  * ice_get_max_txq - return the maximum number of Tx queues for in a PF
3239  * @pf: PF structure
3240  */
3241 static int ice_get_max_txq(struct ice_pf *pf)
3242 {
3243         return min3(pf->num_lan_msix, (u16)num_online_cpus(),
3244                     (u16)pf->hw.func_caps.common_cap.num_txq);
3245 }
3246
3247 /**
3248  * ice_get_max_rxq - return the maximum number of Rx queues for in a PF
3249  * @pf: PF structure
3250  */
3251 static int ice_get_max_rxq(struct ice_pf *pf)
3252 {
3253         return min3(pf->num_lan_msix, (u16)num_online_cpus(),
3254                     (u16)pf->hw.func_caps.common_cap.num_rxq);
3255 }
3256
3257 /**
3258  * ice_get_combined_cnt - return the current number of combined channels
3259  * @vsi: PF VSI pointer
3260  *
3261  * Go through all queue vectors and count ones that have both Rx and Tx ring
3262  * attached
3263  */
3264 static u32 ice_get_combined_cnt(struct ice_vsi *vsi)
3265 {
3266         u32 combined = 0;
3267         int q_idx;
3268
3269         ice_for_each_q_vector(vsi, q_idx) {
3270                 struct ice_q_vector *q_vector = vsi->q_vectors[q_idx];
3271
3272                 if (q_vector->rx.ring && q_vector->tx.ring)
3273                         combined++;
3274         }
3275
3276         return combined;
3277 }
3278
3279 /**
3280  * ice_get_channels - get the current and max supported channels
3281  * @dev: network interface device structure
3282  * @ch: ethtool channel data structure
3283  */
3284 static void
3285 ice_get_channels(struct net_device *dev, struct ethtool_channels *ch)
3286 {
3287         struct ice_netdev_priv *np = netdev_priv(dev);
3288         struct ice_vsi *vsi = np->vsi;
3289         struct ice_pf *pf = vsi->back;
3290
3291         /* report maximum channels */
3292         ch->max_rx = ice_get_max_rxq(pf);
3293         ch->max_tx = ice_get_max_txq(pf);
3294         ch->max_combined = min_t(int, ch->max_rx, ch->max_tx);
3295
3296         /* report current channels */
3297         ch->combined_count = ice_get_combined_cnt(vsi);
3298         ch->rx_count = vsi->num_rxq - ch->combined_count;
3299         ch->tx_count = vsi->num_txq - ch->combined_count;
3300
3301         /* report other queues */
3302         ch->other_count = test_bit(ICE_FLAG_FD_ENA, pf->flags) ? 1 : 0;
3303         ch->max_other = ch->other_count;
3304 }
3305
3306 /**
3307  * ice_get_valid_rss_size - return valid number of RSS queues
3308  * @hw: pointer to the HW structure
3309  * @new_size: requested RSS queues
3310  */
3311 static int ice_get_valid_rss_size(struct ice_hw *hw, int new_size)
3312 {
3313         struct ice_hw_common_caps *caps = &hw->func_caps.common_cap;
3314
3315         return min_t(int, new_size, BIT(caps->rss_table_entry_width));
3316 }
3317
3318 /**
3319  * ice_vsi_set_dflt_rss_lut - set default RSS LUT with requested RSS size
3320  * @vsi: VSI to reconfigure RSS LUT on
3321  * @req_rss_size: requested range of queue numbers for hashing
3322  *
3323  * Set the VSI's RSS parameters, configure the RSS LUT based on these.
3324  */
3325 static int ice_vsi_set_dflt_rss_lut(struct ice_vsi *vsi, int req_rss_size)
3326 {
3327         struct ice_pf *pf = vsi->back;
3328         struct device *dev;
3329         struct ice_hw *hw;
3330         int err;
3331         u8 *lut;
3332
3333         dev = ice_pf_to_dev(pf);
3334         hw = &pf->hw;
3335
3336         if (!req_rss_size)
3337                 return -EINVAL;
3338
3339         lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
3340         if (!lut)
3341                 return -ENOMEM;
3342
3343         /* set RSS LUT parameters */
3344         if (!test_bit(ICE_FLAG_RSS_ENA, pf->flags))
3345                 vsi->rss_size = 1;
3346         else
3347                 vsi->rss_size = ice_get_valid_rss_size(hw, req_rss_size);
3348
3349         /* create/set RSS LUT */
3350         ice_fill_rss_lut(lut, vsi->rss_table_size, vsi->rss_size);
3351         err = ice_set_rss_lut(vsi, lut, vsi->rss_table_size);
3352         if (err)
3353                 dev_err(dev, "Cannot set RSS lut, err %d aq_err %s\n", err,
3354                         ice_aq_str(hw->adminq.sq_last_status));
3355
3356         kfree(lut);
3357         return err;
3358 }
3359
3360 /**
3361  * ice_set_channels - set the number channels
3362  * @dev: network interface device structure
3363  * @ch: ethtool channel data structure
3364  */
3365 static int ice_set_channels(struct net_device *dev, struct ethtool_channels *ch)
3366 {
3367         struct ice_netdev_priv *np = netdev_priv(dev);
3368         struct ice_vsi *vsi = np->vsi;
3369         struct ice_pf *pf = vsi->back;
3370         int new_rx = 0, new_tx = 0;
3371         u32 curr_combined;
3372
3373         /* do not support changing channels in Safe Mode */
3374         if (ice_is_safe_mode(pf)) {
3375                 netdev_err(dev, "Changing channel in Safe Mode is not supported\n");
3376                 return -EOPNOTSUPP;
3377         }
3378         /* do not support changing other_count */
3379         if (ch->other_count != (test_bit(ICE_FLAG_FD_ENA, pf->flags) ? 1U : 0U))
3380                 return -EINVAL;
3381
3382         if (test_bit(ICE_FLAG_FD_ENA, pf->flags) && pf->hw.fdir_active_fltr) {
3383                 netdev_err(dev, "Cannot set channels when Flow Director filters are active\n");
3384                 return -EOPNOTSUPP;
3385         }
3386
3387         curr_combined = ice_get_combined_cnt(vsi);
3388
3389         /* these checks are for cases where user didn't specify a particular
3390          * value on cmd line but we get non-zero value anyway via
3391          * get_channels(); look at ethtool.c in ethtool repository (the user
3392          * space part), particularly, do_schannels() routine
3393          */
3394         if (ch->rx_count == vsi->num_rxq - curr_combined)
3395                 ch->rx_count = 0;
3396         if (ch->tx_count == vsi->num_txq - curr_combined)
3397                 ch->tx_count = 0;
3398         if (ch->combined_count == curr_combined)
3399                 ch->combined_count = 0;
3400
3401         if (!(ch->combined_count || (ch->rx_count && ch->tx_count))) {
3402                 netdev_err(dev, "Please specify at least 1 Rx and 1 Tx channel\n");
3403                 return -EINVAL;
3404         }
3405
3406         new_rx = ch->combined_count + ch->rx_count;
3407         new_tx = ch->combined_count + ch->tx_count;
3408
3409         if (new_rx > ice_get_max_rxq(pf)) {
3410                 netdev_err(dev, "Maximum allowed Rx channels is %d\n",
3411                            ice_get_max_rxq(pf));
3412                 return -EINVAL;
3413         }
3414         if (new_tx > ice_get_max_txq(pf)) {
3415                 netdev_err(dev, "Maximum allowed Tx channels is %d\n",
3416                            ice_get_max_txq(pf));
3417                 return -EINVAL;
3418         }
3419
3420         ice_vsi_recfg_qs(vsi, new_rx, new_tx);
3421
3422         if (!netif_is_rxfh_configured(dev))
3423                 return ice_vsi_set_dflt_rss_lut(vsi, new_rx);
3424
3425         /* Update rss_size due to change in Rx queues */
3426         vsi->rss_size = ice_get_valid_rss_size(&pf->hw, new_rx);
3427
3428         return 0;
3429 }
3430
3431 /**
3432  * ice_get_wol - get current Wake on LAN configuration
3433  * @netdev: network interface device structure
3434  * @wol: Ethtool structure to retrieve WoL settings
3435  */
3436 static void ice_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
3437 {
3438         struct ice_netdev_priv *np = netdev_priv(netdev);
3439         struct ice_pf *pf = np->vsi->back;
3440
3441         if (np->vsi->type != ICE_VSI_PF)
3442                 netdev_warn(netdev, "Wake on LAN is not supported on this interface!\n");
3443
3444         /* Get WoL settings based on the HW capability */
3445         if (ice_is_wol_supported(&pf->hw)) {
3446                 wol->supported = WAKE_MAGIC;
3447                 wol->wolopts = pf->wol_ena ? WAKE_MAGIC : 0;
3448         } else {
3449                 wol->supported = 0;
3450                 wol->wolopts = 0;
3451         }
3452 }
3453
3454 /**
3455  * ice_set_wol - set Wake on LAN on supported device
3456  * @netdev: network interface device structure
3457  * @wol: Ethtool structure to set WoL
3458  */
3459 static int ice_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
3460 {
3461         struct ice_netdev_priv *np = netdev_priv(netdev);
3462         struct ice_vsi *vsi = np->vsi;
3463         struct ice_pf *pf = vsi->back;
3464
3465         if (vsi->type != ICE_VSI_PF || !ice_is_wol_supported(&pf->hw))
3466                 return -EOPNOTSUPP;
3467
3468         /* only magic packet is supported */
3469         if (wol->wolopts && wol->wolopts != WAKE_MAGIC)
3470                 return -EOPNOTSUPP;
3471
3472         /* Set WoL only if there is a new value */
3473         if (pf->wol_ena != !!wol->wolopts) {
3474                 pf->wol_ena = !!wol->wolopts;
3475                 device_set_wakeup_enable(ice_pf_to_dev(pf), pf->wol_ena);
3476                 netdev_dbg(netdev, "WoL magic packet %sabled\n",
3477                            pf->wol_ena ? "en" : "dis");
3478         }
3479
3480         return 0;
3481 }
3482
3483 enum ice_container_type {
3484         ICE_RX_CONTAINER,
3485         ICE_TX_CONTAINER,
3486 };
3487
3488 /**
3489  * ice_get_rc_coalesce - get ITR values for specific ring container
3490  * @ec: ethtool structure to fill with driver's coalesce settings
3491  * @c_type: container type, Rx or Tx
3492  * @rc: ring container that the ITR values will come from
3493  *
3494  * Query the device for ice_ring_container specific ITR values. This is
3495  * done per ice_ring_container because each q_vector can have 1 or more rings
3496  * and all of said ring(s) will have the same ITR values.
3497  *
3498  * Returns 0 on success, negative otherwise.
3499  */
3500 static int
3501 ice_get_rc_coalesce(struct ethtool_coalesce *ec, enum ice_container_type c_type,
3502                     struct ice_ring_container *rc)
3503 {
3504         struct ice_pf *pf;
3505
3506         if (!rc->ring)
3507                 return -EINVAL;
3508
3509         pf = rc->ring->vsi->back;
3510
3511         switch (c_type) {
3512         case ICE_RX_CONTAINER:
3513                 ec->use_adaptive_rx_coalesce = ITR_IS_DYNAMIC(rc->itr_setting);
3514                 ec->rx_coalesce_usecs = rc->itr_setting & ~ICE_ITR_DYNAMIC;
3515                 ec->rx_coalesce_usecs_high = rc->ring->q_vector->intrl;
3516                 break;
3517         case ICE_TX_CONTAINER:
3518                 ec->use_adaptive_tx_coalesce = ITR_IS_DYNAMIC(rc->itr_setting);
3519                 ec->tx_coalesce_usecs = rc->itr_setting & ~ICE_ITR_DYNAMIC;
3520                 break;
3521         default:
3522                 dev_dbg(ice_pf_to_dev(pf), "Invalid c_type %d\n", c_type);
3523                 return -EINVAL;
3524         }
3525
3526         return 0;
3527 }
3528
3529 /**
3530  * ice_get_q_coalesce - get a queue's ITR/INTRL (coalesce) settings
3531  * @vsi: VSI associated to the queue for getting ITR/INTRL (coalesce) settings
3532  * @ec: coalesce settings to program the device with
3533  * @q_num: update ITR/INTRL (coalesce) settings for this queue number/index
3534  *
3535  * Return 0 on success, and negative under the following conditions:
3536  * 1. Getting Tx or Rx ITR/INTRL (coalesce) settings failed.
3537  * 2. The q_num passed in is not a valid number/index for Tx and Rx rings.
3538  */
3539 static int
3540 ice_get_q_coalesce(struct ice_vsi *vsi, struct ethtool_coalesce *ec, int q_num)
3541 {
3542         if (q_num < vsi->num_rxq && q_num < vsi->num_txq) {
3543                 if (ice_get_rc_coalesce(ec, ICE_RX_CONTAINER,
3544                                         &vsi->rx_rings[q_num]->q_vector->rx))
3545                         return -EINVAL;
3546                 if (ice_get_rc_coalesce(ec, ICE_TX_CONTAINER,
3547                                         &vsi->tx_rings[q_num]->q_vector->tx))
3548                         return -EINVAL;
3549         } else if (q_num < vsi->num_rxq) {
3550                 if (ice_get_rc_coalesce(ec, ICE_RX_CONTAINER,
3551                                         &vsi->rx_rings[q_num]->q_vector->rx))
3552                         return -EINVAL;
3553         } else if (q_num < vsi->num_txq) {
3554                 if (ice_get_rc_coalesce(ec, ICE_TX_CONTAINER,
3555                                         &vsi->tx_rings[q_num]->q_vector->tx))
3556                         return -EINVAL;
3557         } else {
3558                 return -EINVAL;
3559         }
3560
3561         return 0;
3562 }
3563
3564 /**
3565  * __ice_get_coalesce - get ITR/INTRL values for the device
3566  * @netdev: pointer to the netdev associated with this query
3567  * @ec: ethtool structure to fill with driver's coalesce settings
3568  * @q_num: queue number to get the coalesce settings for
3569  *
3570  * If the caller passes in a negative q_num then we return coalesce settings
3571  * based on queue number 0, else use the actual q_num passed in.
3572  */
3573 static int
3574 __ice_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *ec,
3575                    int q_num)
3576 {
3577         struct ice_netdev_priv *np = netdev_priv(netdev);
3578         struct ice_vsi *vsi = np->vsi;
3579
3580         if (q_num < 0)
3581                 q_num = 0;
3582
3583         if (ice_get_q_coalesce(vsi, ec, q_num))
3584                 return -EINVAL;
3585
3586         return 0;
3587 }
3588
3589 static int
3590 ice_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *ec)
3591 {
3592         return __ice_get_coalesce(netdev, ec, -1);
3593 }
3594
3595 static int
3596 ice_get_per_q_coalesce(struct net_device *netdev, u32 q_num,
3597                        struct ethtool_coalesce *ec)
3598 {
3599         return __ice_get_coalesce(netdev, ec, q_num);
3600 }
3601
3602 /**
3603  * ice_set_rc_coalesce - set ITR values for specific ring container
3604  * @c_type: container type, Rx or Tx
3605  * @ec: ethtool structure from user to update ITR settings
3606  * @rc: ring container that the ITR values will come from
3607  * @vsi: VSI associated to the ring container
3608  *
3609  * Set specific ITR values. This is done per ice_ring_container because each
3610  * q_vector can have 1 or more rings and all of said ring(s) will have the same
3611  * ITR values.
3612  *
3613  * Returns 0 on success, negative otherwise.
3614  */
3615 static int
3616 ice_set_rc_coalesce(enum ice_container_type c_type, struct ethtool_coalesce *ec,
3617                     struct ice_ring_container *rc, struct ice_vsi *vsi)
3618 {
3619         const char *c_type_str = (c_type == ICE_RX_CONTAINER) ? "rx" : "tx";
3620         u32 use_adaptive_coalesce, coalesce_usecs;
3621         struct ice_pf *pf = vsi->back;
3622         u16 itr_setting;
3623
3624         if (!rc->ring)
3625                 return -EINVAL;
3626
3627         switch (c_type) {
3628         case ICE_RX_CONTAINER:
3629                 if (ec->rx_coalesce_usecs_high > ICE_MAX_INTRL ||
3630                     (ec->rx_coalesce_usecs_high &&
3631                      ec->rx_coalesce_usecs_high < pf->hw.intrl_gran)) {
3632                         netdev_info(vsi->netdev, "Invalid value, %s-usecs-high valid values are 0 (disabled), %d-%d\n",
3633                                     c_type_str, pf->hw.intrl_gran,
3634                                     ICE_MAX_INTRL);
3635                         return -EINVAL;
3636                 }
3637                 if (ec->rx_coalesce_usecs_high != rc->ring->q_vector->intrl) {
3638                         rc->ring->q_vector->intrl = ec->rx_coalesce_usecs_high;
3639                         wr32(&pf->hw, GLINT_RATE(rc->ring->q_vector->reg_idx),
3640                              ice_intrl_usec_to_reg(ec->rx_coalesce_usecs_high,
3641                                                    pf->hw.intrl_gran));
3642                 }
3643
3644                 use_adaptive_coalesce = ec->use_adaptive_rx_coalesce;
3645                 coalesce_usecs = ec->rx_coalesce_usecs;
3646
3647                 break;
3648         case ICE_TX_CONTAINER:
3649                 use_adaptive_coalesce = ec->use_adaptive_tx_coalesce;
3650                 coalesce_usecs = ec->tx_coalesce_usecs;
3651
3652                 break;
3653         default:
3654                 dev_dbg(ice_pf_to_dev(pf), "Invalid container type %d\n",
3655                         c_type);
3656                 return -EINVAL;
3657         }
3658
3659         itr_setting = rc->itr_setting & ~ICE_ITR_DYNAMIC;
3660         if (coalesce_usecs != itr_setting && use_adaptive_coalesce) {
3661                 netdev_info(vsi->netdev, "%s interrupt throttling cannot be changed if adaptive-%s is enabled\n",
3662                             c_type_str, c_type_str);
3663                 return -EINVAL;
3664         }
3665
3666         if (coalesce_usecs > ICE_ITR_MAX) {
3667                 netdev_info(vsi->netdev, "Invalid value, %s-usecs range is 0-%d\n",
3668                             c_type_str, ICE_ITR_MAX);
3669                 return -EINVAL;
3670         }
3671
3672         if (use_adaptive_coalesce) {
3673                 rc->itr_setting |= ICE_ITR_DYNAMIC;
3674         } else {
3675                 /* save the user set usecs */
3676                 rc->itr_setting = coalesce_usecs;
3677                 /* device ITR granularity is in 2 usec increments */
3678                 rc->target_itr = ITR_REG_ALIGN(rc->itr_setting);
3679         }
3680
3681         return 0;
3682 }
3683
3684 /**
3685  * ice_set_q_coalesce - set a queue's ITR/INTRL (coalesce) settings
3686  * @vsi: VSI associated to the queue that need updating
3687  * @ec: coalesce settings to program the device with
3688  * @q_num: update ITR/INTRL (coalesce) settings for this queue number/index
3689  *
3690  * Return 0 on success, and negative under the following conditions:
3691  * 1. Setting Tx or Rx ITR/INTRL (coalesce) settings failed.
3692  * 2. The q_num passed in is not a valid number/index for Tx and Rx rings.
3693  */
3694 static int
3695 ice_set_q_coalesce(struct ice_vsi *vsi, struct ethtool_coalesce *ec, int q_num)
3696 {
3697         if (q_num < vsi->num_rxq && q_num < vsi->num_txq) {
3698                 if (ice_set_rc_coalesce(ICE_RX_CONTAINER, ec,
3699                                         &vsi->rx_rings[q_num]->q_vector->rx,
3700                                         vsi))
3701                         return -EINVAL;
3702
3703                 if (ice_set_rc_coalesce(ICE_TX_CONTAINER, ec,
3704                                         &vsi->tx_rings[q_num]->q_vector->tx,
3705                                         vsi))
3706                         return -EINVAL;
3707         } else if (q_num < vsi->num_rxq) {
3708                 if (ice_set_rc_coalesce(ICE_RX_CONTAINER, ec,
3709                                         &vsi->rx_rings[q_num]->q_vector->rx,
3710                                         vsi))
3711                         return -EINVAL;
3712         } else if (q_num < vsi->num_txq) {
3713                 if (ice_set_rc_coalesce(ICE_TX_CONTAINER, ec,
3714                                         &vsi->tx_rings[q_num]->q_vector->tx,
3715                                         vsi))
3716                         return -EINVAL;
3717         } else {
3718                 return -EINVAL;
3719         }
3720
3721         return 0;
3722 }
3723
3724 /**
3725  * ice_print_if_odd_usecs - print message if user tries to set odd [tx|rx]-usecs
3726  * @netdev: netdev used for print
3727  * @itr_setting: previous user setting
3728  * @use_adaptive_coalesce: if adaptive coalesce is enabled or being enabled
3729  * @coalesce_usecs: requested value of [tx|rx]-usecs
3730  * @c_type_str: either "rx" or "tx" to match user set field of [tx|rx]-usecs
3731  */
3732 static void
3733 ice_print_if_odd_usecs(struct net_device *netdev, u16 itr_setting,
3734                        u32 use_adaptive_coalesce, u32 coalesce_usecs,
3735                        const char *c_type_str)
3736 {
3737         if (use_adaptive_coalesce)
3738                 return;
3739
3740         itr_setting = ITR_TO_REG(itr_setting);
3741
3742         if (itr_setting != coalesce_usecs && (coalesce_usecs % 2))
3743                 netdev_info(netdev, "User set %s-usecs to %d, device only supports even values. Rounding down and attempting to set %s-usecs to %d\n",
3744                             c_type_str, coalesce_usecs, c_type_str,
3745                             ITR_REG_ALIGN(coalesce_usecs));
3746 }
3747
3748 /**
3749  * __ice_set_coalesce - set ITR/INTRL values for the device
3750  * @netdev: pointer to the netdev associated with this query
3751  * @ec: ethtool structure to fill with driver's coalesce settings
3752  * @q_num: queue number to get the coalesce settings for
3753  *
3754  * If the caller passes in a negative q_num then we set the coalesce settings
3755  * for all Tx/Rx queues, else use the actual q_num passed in.
3756  */
3757 static int
3758 __ice_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *ec,
3759                    int q_num)
3760 {
3761         struct ice_netdev_priv *np = netdev_priv(netdev);
3762         struct ice_vsi *vsi = np->vsi;
3763
3764         if (q_num < 0) {
3765                 struct ice_q_vector *q_vector = vsi->q_vectors[0];
3766                 int v_idx;
3767
3768                 if (q_vector) {
3769                         ice_print_if_odd_usecs(netdev, q_vector->rx.itr_setting,
3770                                                ec->use_adaptive_rx_coalesce,
3771                                                ec->rx_coalesce_usecs, "rx");
3772
3773                         ice_print_if_odd_usecs(netdev, q_vector->tx.itr_setting,
3774                                                ec->use_adaptive_tx_coalesce,
3775                                                ec->tx_coalesce_usecs, "tx");
3776                 }
3777
3778                 ice_for_each_q_vector(vsi, v_idx) {
3779                         /* In some cases if DCB is configured the num_[rx|tx]q
3780                          * can be less than vsi->num_q_vectors. This check
3781                          * accounts for that so we don't report a false failure
3782                          */
3783                         if (v_idx >= vsi->num_rxq && v_idx >= vsi->num_txq)
3784                                 goto set_complete;
3785
3786                         if (ice_set_q_coalesce(vsi, ec, v_idx))
3787                                 return -EINVAL;
3788                 }
3789                 goto set_complete;
3790         }
3791
3792         if (ice_set_q_coalesce(vsi, ec, q_num))
3793                 return -EINVAL;
3794
3795 set_complete:
3796
3797         return 0;
3798 }
3799
3800 static int
3801 ice_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *ec)
3802 {
3803         return __ice_set_coalesce(netdev, ec, -1);
3804 }
3805
3806 static int
3807 ice_set_per_q_coalesce(struct net_device *netdev, u32 q_num,
3808                        struct ethtool_coalesce *ec)
3809 {
3810         return __ice_set_coalesce(netdev, ec, q_num);
3811 }
3812
3813 #define ICE_I2C_EEPROM_DEV_ADDR         0xA0
3814 #define ICE_I2C_EEPROM_DEV_ADDR2        0xA2
3815 #define ICE_MODULE_TYPE_SFP             0x03
3816 #define ICE_MODULE_TYPE_QSFP_PLUS       0x0D
3817 #define ICE_MODULE_TYPE_QSFP28          0x11
3818 #define ICE_MODULE_SFF_ADDR_MODE        0x04
3819 #define ICE_MODULE_SFF_DIAG_CAPAB       0x40
3820 #define ICE_MODULE_REVISION_ADDR        0x01
3821 #define ICE_MODULE_SFF_8472_COMP        0x5E
3822 #define ICE_MODULE_SFF_8472_SWAP        0x5C
3823 #define ICE_MODULE_QSFP_MAX_LEN         640
3824
3825 /**
3826  * ice_get_module_info - get SFF module type and revision information
3827  * @netdev: network interface device structure
3828  * @modinfo: module EEPROM size and layout information structure
3829  */
3830 static int
3831 ice_get_module_info(struct net_device *netdev,
3832                     struct ethtool_modinfo *modinfo)
3833 {
3834         struct ice_netdev_priv *np = netdev_priv(netdev);
3835         struct ice_vsi *vsi = np->vsi;
3836         struct ice_pf *pf = vsi->back;
3837         struct ice_hw *hw = &pf->hw;
3838         enum ice_status status;
3839         u8 sff8472_comp = 0;
3840         u8 sff8472_swap = 0;
3841         u8 sff8636_rev = 0;
3842         u8 value = 0;
3843
3844         status = ice_aq_sff_eeprom(hw, 0, ICE_I2C_EEPROM_DEV_ADDR, 0x00, 0x00,
3845                                    0, &value, 1, 0, NULL);
3846         if (status)
3847                 return -EIO;
3848
3849         switch (value) {
3850         case ICE_MODULE_TYPE_SFP:
3851                 status = ice_aq_sff_eeprom(hw, 0, ICE_I2C_EEPROM_DEV_ADDR,
3852                                            ICE_MODULE_SFF_8472_COMP, 0x00, 0,
3853                                            &sff8472_comp, 1, 0, NULL);
3854                 if (status)
3855                         return -EIO;
3856                 status = ice_aq_sff_eeprom(hw, 0, ICE_I2C_EEPROM_DEV_ADDR,
3857                                            ICE_MODULE_SFF_8472_SWAP, 0x00, 0,
3858                                            &sff8472_swap, 1, 0, NULL);
3859                 if (status)
3860                         return -EIO;
3861
3862                 if (sff8472_swap & ICE_MODULE_SFF_ADDR_MODE) {
3863                         modinfo->type = ETH_MODULE_SFF_8079;
3864                         modinfo->eeprom_len = ETH_MODULE_SFF_8079_LEN;
3865                 } else if (sff8472_comp &&
3866                            (sff8472_swap & ICE_MODULE_SFF_DIAG_CAPAB)) {
3867                         modinfo->type = ETH_MODULE_SFF_8472;
3868                         modinfo->eeprom_len = ETH_MODULE_SFF_8472_LEN;
3869                 } else {
3870                         modinfo->type = ETH_MODULE_SFF_8079;
3871                         modinfo->eeprom_len = ETH_MODULE_SFF_8079_LEN;
3872                 }
3873                 break;
3874         case ICE_MODULE_TYPE_QSFP_PLUS:
3875         case ICE_MODULE_TYPE_QSFP28:
3876                 status = ice_aq_sff_eeprom(hw, 0, ICE_I2C_EEPROM_DEV_ADDR,
3877                                            ICE_MODULE_REVISION_ADDR, 0x00, 0,
3878                                            &sff8636_rev, 1, 0, NULL);
3879                 if (status)
3880                         return -EIO;
3881                 /* Check revision compliance */
3882                 if (sff8636_rev > 0x02) {
3883                         /* Module is SFF-8636 compliant */
3884                         modinfo->type = ETH_MODULE_SFF_8636;
3885                         modinfo->eeprom_len = ICE_MODULE_QSFP_MAX_LEN;
3886                 } else {
3887                         modinfo->type = ETH_MODULE_SFF_8436;
3888                         modinfo->eeprom_len = ICE_MODULE_QSFP_MAX_LEN;
3889                 }
3890                 break;
3891         default:
3892                 netdev_warn(netdev, "SFF Module Type not recognized.\n");
3893                 return -EINVAL;
3894         }
3895         return 0;
3896 }
3897
3898 /**
3899  * ice_get_module_eeprom - fill buffer with SFF EEPROM contents
3900  * @netdev: network interface device structure
3901  * @ee: EEPROM dump request structure
3902  * @data: buffer to be filled with EEPROM contents
3903  */
3904 static int
3905 ice_get_module_eeprom(struct net_device *netdev,
3906                       struct ethtool_eeprom *ee, u8 *data)
3907 {
3908         struct ice_netdev_priv *np = netdev_priv(netdev);
3909         u8 addr = ICE_I2C_EEPROM_DEV_ADDR;
3910         struct ice_vsi *vsi = np->vsi;
3911         struct ice_pf *pf = vsi->back;
3912         struct ice_hw *hw = &pf->hw;
3913         enum ice_status status;
3914         bool is_sfp = false;
3915         unsigned int i;
3916         u16 offset = 0;
3917         u8 value = 0;
3918         u8 page = 0;
3919
3920         if (!ee || !ee->len || !data)
3921                 return -EINVAL;
3922
3923         status = ice_aq_sff_eeprom(hw, 0, addr, offset, page, 0, &value, 1, 0,
3924                                    NULL);
3925         if (status)
3926                 return -EIO;
3927
3928         if (value == ICE_MODULE_TYPE_SFP)
3929                 is_sfp = true;
3930
3931         for (i = 0; i < ee->len; i++) {
3932                 offset = i + ee->offset;
3933
3934                 /* Check if we need to access the other memory page */
3935                 if (is_sfp) {
3936                         if (offset >= ETH_MODULE_SFF_8079_LEN) {
3937                                 offset -= ETH_MODULE_SFF_8079_LEN;
3938                                 addr = ICE_I2C_EEPROM_DEV_ADDR2;
3939                         }
3940                 } else {
3941                         while (offset >= ETH_MODULE_SFF_8436_LEN) {
3942                                 /* Compute memory page number and offset. */
3943                                 offset -= ETH_MODULE_SFF_8436_LEN / 2;
3944                                 page++;
3945                         }
3946                 }
3947
3948                 status = ice_aq_sff_eeprom(hw, 0, addr, offset, page, !is_sfp,
3949                                            &value, 1, 0, NULL);
3950                 if (status)
3951                         value = 0;
3952                 data[i] = value;
3953         }
3954         return 0;
3955 }
3956
3957 static const struct ethtool_ops ice_ethtool_ops = {
3958         .supported_coalesce_params = ETHTOOL_COALESCE_USECS |
3959                                      ETHTOOL_COALESCE_USE_ADAPTIVE |
3960                                      ETHTOOL_COALESCE_RX_USECS_HIGH,
3961         .get_link_ksettings     = ice_get_link_ksettings,
3962         .set_link_ksettings     = ice_set_link_ksettings,
3963         .get_drvinfo            = ice_get_drvinfo,
3964         .get_regs_len           = ice_get_regs_len,
3965         .get_regs               = ice_get_regs,
3966         .get_wol                = ice_get_wol,
3967         .set_wol                = ice_set_wol,
3968         .get_msglevel           = ice_get_msglevel,
3969         .set_msglevel           = ice_set_msglevel,
3970         .self_test              = ice_self_test,
3971         .get_link               = ethtool_op_get_link,
3972         .get_eeprom_len         = ice_get_eeprom_len,
3973         .get_eeprom             = ice_get_eeprom,
3974         .get_coalesce           = ice_get_coalesce,
3975         .set_coalesce           = ice_set_coalesce,
3976         .get_strings            = ice_get_strings,
3977         .set_phys_id            = ice_set_phys_id,
3978         .get_ethtool_stats      = ice_get_ethtool_stats,
3979         .get_priv_flags         = ice_get_priv_flags,
3980         .set_priv_flags         = ice_set_priv_flags,
3981         .get_sset_count         = ice_get_sset_count,
3982         .get_rxnfc              = ice_get_rxnfc,
3983         .set_rxnfc              = ice_set_rxnfc,
3984         .get_ringparam          = ice_get_ringparam,
3985         .set_ringparam          = ice_set_ringparam,
3986         .nway_reset             = ice_nway_reset,
3987         .get_pauseparam         = ice_get_pauseparam,
3988         .set_pauseparam         = ice_set_pauseparam,
3989         .get_rxfh_key_size      = ice_get_rxfh_key_size,
3990         .get_rxfh_indir_size    = ice_get_rxfh_indir_size,
3991         .get_rxfh               = ice_get_rxfh,
3992         .set_rxfh               = ice_set_rxfh,
3993         .get_channels           = ice_get_channels,
3994         .set_channels           = ice_set_channels,
3995         .get_ts_info            = ethtool_op_get_ts_info,
3996         .get_per_queue_coalesce = ice_get_per_q_coalesce,
3997         .set_per_queue_coalesce = ice_set_per_q_coalesce,
3998         .get_fecparam           = ice_get_fecparam,
3999         .set_fecparam           = ice_set_fecparam,
4000         .get_module_info        = ice_get_module_info,
4001         .get_module_eeprom      = ice_get_module_eeprom,
4002 };
4003
4004 static const struct ethtool_ops ice_ethtool_safe_mode_ops = {
4005         .get_link_ksettings     = ice_get_link_ksettings,
4006         .set_link_ksettings     = ice_set_link_ksettings,
4007         .get_drvinfo            = ice_get_drvinfo,
4008         .get_regs_len           = ice_get_regs_len,
4009         .get_regs               = ice_get_regs,
4010         .get_wol                = ice_get_wol,
4011         .set_wol                = ice_set_wol,
4012         .get_msglevel           = ice_get_msglevel,
4013         .set_msglevel           = ice_set_msglevel,
4014         .get_link               = ethtool_op_get_link,
4015         .get_eeprom_len         = ice_get_eeprom_len,
4016         .get_eeprom             = ice_get_eeprom,
4017         .get_strings            = ice_get_strings,
4018         .get_ethtool_stats      = ice_get_ethtool_stats,
4019         .get_sset_count         = ice_get_sset_count,
4020         .get_ringparam          = ice_get_ringparam,
4021         .set_ringparam          = ice_set_ringparam,
4022         .nway_reset             = ice_nway_reset,
4023         .get_channels           = ice_get_channels,
4024 };
4025
4026 /**
4027  * ice_set_ethtool_safe_mode_ops - setup safe mode ethtool ops
4028  * @netdev: network interface device structure
4029  */
4030 void ice_set_ethtool_safe_mode_ops(struct net_device *netdev)
4031 {
4032         netdev->ethtool_ops = &ice_ethtool_safe_mode_ops;
4033 }
4034
4035 /**
4036  * ice_set_ethtool_ops - setup netdev ethtool ops
4037  * @netdev: network interface device structure
4038  *
4039  * setup netdev ethtool ops with ice specific ops
4040  */
4041 void ice_set_ethtool_ops(struct net_device *netdev)
4042 {
4043         netdev->ethtool_ops = &ice_ethtool_ops;
4044 }