1 // SPDX-License-Identifier: GPL-2.0+
2 // Copyright (c) 2016-2017 Hisilicon Limited.
3
4 #include <linux/etherdevice.h>
5 #include <linux/string.h>
6 #include <linux/string_choices.h>
7 #include <linux/phy.h>
8 #include <linux/sfp.h>
9
10 #include "hns3_enet.h"
11 #include "hns3_ethtool.h"
12
13 /* tqp related stats */
14 #define HNS3_TQP_STAT(_string, _member) { \
15 .stats_string = _string, \
16 .stats_offset = offsetof(struct hns3_enet_ring, stats) +\
17 offsetof(struct ring_stats, _member), \
18 }
19
20 static const struct hns3_stats hns3_txq_stats[] = {
21 /* Tx per-queue statistics */
22 HNS3_TQP_STAT("dropped", sw_err_cnt),
23 HNS3_TQP_STAT("seg_pkt_cnt", seg_pkt_cnt),
24 HNS3_TQP_STAT("packets", tx_pkts),
25 HNS3_TQP_STAT("bytes", tx_bytes),
26 HNS3_TQP_STAT("more", tx_more),
27 HNS3_TQP_STAT("push", tx_push),
28 HNS3_TQP_STAT("mem_doorbell", tx_mem_doorbell),
29 HNS3_TQP_STAT("wake", restart_queue),
30 HNS3_TQP_STAT("busy", tx_busy),
31 HNS3_TQP_STAT("copy", tx_copy),
32 HNS3_TQP_STAT("vlan_err", tx_vlan_err),
33 HNS3_TQP_STAT("l4_proto_err", tx_l4_proto_err),
34 HNS3_TQP_STAT("l2l3l4_err", tx_l2l3l4_err),
35 HNS3_TQP_STAT("tso_err", tx_tso_err),
36 HNS3_TQP_STAT("over_max_recursion", over_max_recursion),
37 HNS3_TQP_STAT("hw_limitation", hw_limitation),
38 HNS3_TQP_STAT("bounce", tx_bounce),
39 HNS3_TQP_STAT("spare_full", tx_spare_full),
40 HNS3_TQP_STAT("copy_bits_err", copy_bits_err),
41 HNS3_TQP_STAT("sgl", tx_sgl),
42 HNS3_TQP_STAT("skb2sgl_err", skb2sgl_err),
43 HNS3_TQP_STAT("map_sg_err", map_sg_err),
44 };
45
46 #define HNS3_TXQ_STATS_COUNT ARRAY_SIZE(hns3_txq_stats)
47
48 static const struct hns3_stats hns3_rxq_stats[] = {
49 /* Rx per-queue statistics */
50 HNS3_TQP_STAT("dropped", sw_err_cnt),
51 HNS3_TQP_STAT("seg_pkt_cnt", seg_pkt_cnt),
52 HNS3_TQP_STAT("packets", rx_pkts),
53 HNS3_TQP_STAT("bytes", rx_bytes),
54 HNS3_TQP_STAT("errors", rx_err_cnt),
55 HNS3_TQP_STAT("reuse_pg_cnt", reuse_pg_cnt),
56 HNS3_TQP_STAT("err_pkt_len", err_pkt_len),
57 HNS3_TQP_STAT("err_bd_num", err_bd_num),
58 HNS3_TQP_STAT("l2_err", l2_err),
59 HNS3_TQP_STAT("l3l4_csum_err", l3l4_csum_err),
60 HNS3_TQP_STAT("csum_complete", csum_complete),
61 HNS3_TQP_STAT("multicast", rx_multicast),
62 HNS3_TQP_STAT("non_reuse_pg", non_reuse_pg),
63 HNS3_TQP_STAT("frag_alloc_err", frag_alloc_err),
64 HNS3_TQP_STAT("frag_alloc", frag_alloc),
65 };
66
67 #define HNS3_PRIV_FLAGS_LEN ARRAY_SIZE(hns3_priv_flags)
68
69 #define HNS3_RXQ_STATS_COUNT ARRAY_SIZE(hns3_rxq_stats)
70
71 #define HNS3_TQP_STATS_COUNT (HNS3_TXQ_STATS_COUNT + HNS3_RXQ_STATS_COUNT)
72
73 #define HNS3_NIC_LB_TEST_PKT_NUM 1
74 #define HNS3_NIC_LB_TEST_RING_ID 0
75 #define HNS3_NIC_LB_TEST_PACKET_SIZE 128
76 #define HNS3_NIC_LB_SETUP_USEC 10000
77
78 /* Nic loopback test err */
79 #define HNS3_NIC_LB_TEST_NO_MEM_ERR 1
80 #define HNS3_NIC_LB_TEST_TX_CNT_ERR 2
81 #define HNS3_NIC_LB_TEST_RX_CNT_ERR 3
82 #define HNS3_NIC_LB_TEST_UNEXECUTED 4
83
84 static int hns3_get_sset_count(struct net_device *netdev, int stringset);
85
hns3_lp_setup(struct net_device * ndev,enum hnae3_loop loop,bool en)86 static int hns3_lp_setup(struct net_device *ndev, enum hnae3_loop loop, bool en)
87 {
88 struct hnae3_handle *h = hns3_get_handle(ndev);
89 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(h);
90 int ret;
91
92 if (!h->ae_algo->ops->set_loopback ||
93 !h->ae_algo->ops->set_promisc_mode)
94 return -EOPNOTSUPP;
95
96 switch (loop) {
97 case HNAE3_LOOP_SERIAL_SERDES:
98 case HNAE3_LOOP_PARALLEL_SERDES:
99 case HNAE3_LOOP_APP:
100 case HNAE3_LOOP_PHY:
101 case HNAE3_LOOP_EXTERNAL:
102 ret = h->ae_algo->ops->set_loopback(h, loop, en);
103 break;
104 default:
105 ret = -ENOTSUPP;
106 break;
107 }
108
109 if (ret || ae_dev->dev_version >= HNAE3_DEVICE_VERSION_V2)
110 return ret;
111
112 if (en)
113 h->ae_algo->ops->set_promisc_mode(h, true, true);
114 else
115 /* recover promisc mode before loopback test */
116 hns3_request_update_promisc_mode(h);
117
118 return ret;
119 }
120
hns3_lp_up(struct net_device * ndev,enum hnae3_loop loop_mode)121 static int hns3_lp_up(struct net_device *ndev, enum hnae3_loop loop_mode)
122 {
123 struct hnae3_handle *h = hns3_get_handle(ndev);
124 int ret;
125
126 ret = hns3_nic_reset_all_ring(h);
127 if (ret)
128 return ret;
129
130 ret = hns3_lp_setup(ndev, loop_mode, true);
131 usleep_range(HNS3_NIC_LB_SETUP_USEC, HNS3_NIC_LB_SETUP_USEC * 2);
132
133 return ret;
134 }
135
hns3_lp_down(struct net_device * ndev,enum hnae3_loop loop_mode)136 static int hns3_lp_down(struct net_device *ndev, enum hnae3_loop loop_mode)
137 {
138 int ret;
139
140 ret = hns3_lp_setup(ndev, loop_mode, false);
141 if (ret) {
142 netdev_err(ndev, "lb_setup return error: %d\n", ret);
143 return ret;
144 }
145
146 usleep_range(HNS3_NIC_LB_SETUP_USEC, HNS3_NIC_LB_SETUP_USEC * 2);
147
148 return 0;
149 }
150
hns3_lp_setup_skb(struct sk_buff * skb)151 static void hns3_lp_setup_skb(struct sk_buff *skb)
152 {
153 #define HNS3_NIC_LB_DST_MAC_ADDR 0x1f
154
155 struct net_device *ndev = skb->dev;
156 struct hnae3_handle *handle;
157 struct hnae3_ae_dev *ae_dev;
158 unsigned char *packet;
159 struct ethhdr *ethh;
160 unsigned int i;
161
162 skb_reserve(skb, NET_IP_ALIGN);
163 ethh = skb_put(skb, sizeof(struct ethhdr));
164 packet = skb_put(skb, HNS3_NIC_LB_TEST_PACKET_SIZE);
165
166 memcpy(ethh->h_dest, ndev->dev_addr, ETH_ALEN);
167
168 /* The dst mac addr of loopback packet is the same as the host'
169 * mac addr, the SSU component may loop back the packet to host
170 * before the packet reaches mac or serdes, which will defect
171 * the purpose of mac or serdes selftest.
172 */
173 handle = hns3_get_handle(ndev);
174 ae_dev = hns3_get_ae_dev(handle);
175 if (ae_dev->dev_version < HNAE3_DEVICE_VERSION_V2)
176 ethh->h_dest[5] += HNS3_NIC_LB_DST_MAC_ADDR;
177 eth_zero_addr(ethh->h_source);
178 ethh->h_proto = htons(ETH_P_ARP);
179 skb_reset_mac_header(skb);
180
181 for (i = 0; i < HNS3_NIC_LB_TEST_PACKET_SIZE; i++)
182 packet[i] = (unsigned char)(i & 0xff);
183 }
184
hns3_lb_check_skb_data(struct hns3_enet_ring * ring,struct sk_buff * skb)185 static void hns3_lb_check_skb_data(struct hns3_enet_ring *ring,
186 struct sk_buff *skb)
187 {
188 struct hns3_enet_tqp_vector *tqp_vector = ring->tqp_vector;
189 unsigned char *packet = skb->data;
190 u32 len = skb_headlen(skb);
191 u32 i;
192
193 len = min_t(u32, len, HNS3_NIC_LB_TEST_PACKET_SIZE);
194
195 for (i = 0; i < len; i++)
196 if (packet[i] != (unsigned char)(i & 0xff))
197 break;
198
199 /* The packet is correctly received */
200 if (i == HNS3_NIC_LB_TEST_PACKET_SIZE)
201 tqp_vector->rx_group.total_packets++;
202 else
203 print_hex_dump(KERN_ERR, "selftest:", DUMP_PREFIX_OFFSET, 16, 1,
204 skb->data, len, true);
205
206 dev_kfree_skb_any(skb);
207 }
208
hns3_lb_check_rx_ring(struct hns3_nic_priv * priv,u32 budget)209 static u32 hns3_lb_check_rx_ring(struct hns3_nic_priv *priv, u32 budget)
210 {
211 struct hnae3_handle *h = priv->ae_handle;
212 struct hnae3_knic_private_info *kinfo;
213 u32 i, rcv_good_pkt_total = 0;
214
215 kinfo = &h->kinfo;
216 for (i = kinfo->num_tqps; i < kinfo->num_tqps * 2; i++) {
217 struct hns3_enet_ring *ring = &priv->ring[i];
218 struct hns3_enet_ring_group *rx_group;
219 u64 pre_rx_pkt;
220
221 rx_group = &ring->tqp_vector->rx_group;
222 pre_rx_pkt = rx_group->total_packets;
223
224 preempt_disable();
225 hns3_clean_rx_ring(ring, budget, hns3_lb_check_skb_data);
226 preempt_enable();
227
228 rcv_good_pkt_total += (rx_group->total_packets - pre_rx_pkt);
229 rx_group->total_packets = pre_rx_pkt;
230 }
231 return rcv_good_pkt_total;
232 }
233
hns3_lb_clear_tx_ring(struct hns3_nic_priv * priv,u32 start_ringid,u32 end_ringid)234 static void hns3_lb_clear_tx_ring(struct hns3_nic_priv *priv, u32 start_ringid,
235 u32 end_ringid)
236 {
237 u32 i;
238
239 for (i = start_ringid; i <= end_ringid; i++) {
240 struct hns3_enet_ring *ring = &priv->ring[i];
241
242 hns3_clean_tx_ring(ring, 0);
243 }
244 }
245
246 /**
247 * hns3_lp_run_test - run loopback test
248 * @ndev: net device
249 * @mode: loopback type
250 *
251 * Return: %0 for success or a NIC loopback test error code on failure
252 */
hns3_lp_run_test(struct net_device * ndev,enum hnae3_loop mode)253 static int hns3_lp_run_test(struct net_device *ndev, enum hnae3_loop mode)
254 {
255 struct hns3_nic_priv *priv = netdev_priv(ndev);
256 struct sk_buff *skb;
257 u32 i, good_cnt;
258 int ret_val = 0;
259
260 skb = alloc_skb(HNS3_NIC_LB_TEST_PACKET_SIZE + ETH_HLEN + NET_IP_ALIGN,
261 GFP_KERNEL);
262 if (!skb)
263 return HNS3_NIC_LB_TEST_NO_MEM_ERR;
264
265 skb->dev = ndev;
266 hns3_lp_setup_skb(skb);
267 skb->queue_mapping = HNS3_NIC_LB_TEST_RING_ID;
268
269 good_cnt = 0;
270 for (i = 0; i < HNS3_NIC_LB_TEST_PKT_NUM; i++) {
271 netdev_tx_t tx_ret;
272
273 skb_get(skb);
274 tx_ret = hns3_nic_net_xmit(skb, ndev);
275 if (tx_ret == NETDEV_TX_OK) {
276 good_cnt++;
277 } else {
278 kfree_skb(skb);
279 netdev_err(ndev, "hns3_lb_run_test xmit failed: %d\n",
280 tx_ret);
281 }
282 }
283 if (good_cnt != HNS3_NIC_LB_TEST_PKT_NUM) {
284 ret_val = HNS3_NIC_LB_TEST_TX_CNT_ERR;
285 netdev_err(ndev, "mode %d sent fail, cnt=0x%x, budget=0x%x\n",
286 mode, good_cnt, HNS3_NIC_LB_TEST_PKT_NUM);
287 goto out;
288 }
289
290 /* Allow 200 milliseconds for packets to go from Tx to Rx */
291 msleep(200);
292
293 good_cnt = hns3_lb_check_rx_ring(priv, HNS3_NIC_LB_TEST_PKT_NUM);
294 if (good_cnt != HNS3_NIC_LB_TEST_PKT_NUM) {
295 ret_val = HNS3_NIC_LB_TEST_RX_CNT_ERR;
296 netdev_err(ndev, "mode %d recv fail, cnt=0x%x, budget=0x%x\n",
297 mode, good_cnt, HNS3_NIC_LB_TEST_PKT_NUM);
298 }
299
300 out:
301 hns3_lb_clear_tx_ring(priv, HNS3_NIC_LB_TEST_RING_ID,
302 HNS3_NIC_LB_TEST_RING_ID);
303
304 kfree_skb(skb);
305 return ret_val;
306 }
307
hns3_set_selftest_param(struct hnae3_handle * h,int (* st_param)[2])308 static void hns3_set_selftest_param(struct hnae3_handle *h, int (*st_param)[2])
309 {
310 st_param[HNAE3_LOOP_EXTERNAL][0] = HNAE3_LOOP_EXTERNAL;
311 st_param[HNAE3_LOOP_EXTERNAL][1] =
312 h->flags & HNAE3_SUPPORT_EXTERNAL_LOOPBACK;
313
314 st_param[HNAE3_LOOP_APP][0] = HNAE3_LOOP_APP;
315 st_param[HNAE3_LOOP_APP][1] =
316 h->flags & HNAE3_SUPPORT_APP_LOOPBACK;
317
318 st_param[HNAE3_LOOP_SERIAL_SERDES][0] = HNAE3_LOOP_SERIAL_SERDES;
319 st_param[HNAE3_LOOP_SERIAL_SERDES][1] =
320 h->flags & HNAE3_SUPPORT_SERDES_SERIAL_LOOPBACK;
321
322 st_param[HNAE3_LOOP_PARALLEL_SERDES][0] =
323 HNAE3_LOOP_PARALLEL_SERDES;
324 st_param[HNAE3_LOOP_PARALLEL_SERDES][1] =
325 h->flags & HNAE3_SUPPORT_SERDES_PARALLEL_LOOPBACK;
326
327 st_param[HNAE3_LOOP_PHY][0] = HNAE3_LOOP_PHY;
328 st_param[HNAE3_LOOP_PHY][1] =
329 h->flags & HNAE3_SUPPORT_PHY_LOOPBACK;
330 }
331
hns3_selftest_prepare(struct net_device * ndev,bool if_running)332 static void hns3_selftest_prepare(struct net_device *ndev, bool if_running)
333 {
334 struct hns3_nic_priv *priv = netdev_priv(ndev);
335 struct hnae3_handle *h = priv->ae_handle;
336
337 if (if_running)
338 ndev->netdev_ops->ndo_stop(ndev);
339
340 #if IS_ENABLED(CONFIG_VLAN_8021Q)
341 /* Disable the vlan filter for selftest does not support it */
342 if (h->ae_algo->ops->enable_vlan_filter &&
343 ndev->features & NETIF_F_HW_VLAN_CTAG_FILTER)
344 h->ae_algo->ops->enable_vlan_filter(h, false);
345 #endif
346
347 /* Tell firmware to stop mac autoneg before loopback test start,
348 * otherwise loopback test may be failed when the port is still
349 * negotiating.
350 */
351 if (h->ae_algo->ops->halt_autoneg)
352 h->ae_algo->ops->halt_autoneg(h, true);
353
354 set_bit(HNS3_NIC_STATE_TESTING, &priv->state);
355 }
356
hns3_selftest_restore(struct net_device * ndev,bool if_running)357 static void hns3_selftest_restore(struct net_device *ndev, bool if_running)
358 {
359 struct hns3_nic_priv *priv = netdev_priv(ndev);
360 struct hnae3_handle *h = priv->ae_handle;
361
362 clear_bit(HNS3_NIC_STATE_TESTING, &priv->state);
363
364 if (h->ae_algo->ops->halt_autoneg)
365 h->ae_algo->ops->halt_autoneg(h, false);
366
367 #if IS_ENABLED(CONFIG_VLAN_8021Q)
368 if (h->ae_algo->ops->enable_vlan_filter &&
369 ndev->features & NETIF_F_HW_VLAN_CTAG_FILTER)
370 h->ae_algo->ops->enable_vlan_filter(h, true);
371 #endif
372
373 if (if_running)
374 ndev->netdev_ops->ndo_open(ndev);
375 }
376
hns3_do_selftest(struct net_device * ndev,int (* st_param)[2],struct ethtool_test * eth_test,u64 * data)377 static void hns3_do_selftest(struct net_device *ndev, int (*st_param)[2],
378 struct ethtool_test *eth_test, u64 *data)
379 {
380 int test_index = HNAE3_LOOP_APP;
381 u32 i;
382
383 for (i = HNAE3_LOOP_APP; i < HNAE3_LOOP_NONE; i++) {
384 enum hnae3_loop loop_type = (enum hnae3_loop)st_param[i][0];
385
386 if (!st_param[i][1])
387 continue;
388
389 data[test_index] = hns3_lp_up(ndev, loop_type);
390 if (!data[test_index])
391 data[test_index] = hns3_lp_run_test(ndev, loop_type);
392
393 hns3_lp_down(ndev, loop_type);
394
395 if (data[test_index])
396 eth_test->flags |= ETH_TEST_FL_FAILED;
397
398 test_index++;
399 }
400 }
401
hns3_do_external_lb(struct net_device * ndev,struct ethtool_test * eth_test,u64 * data)402 static void hns3_do_external_lb(struct net_device *ndev,
403 struct ethtool_test *eth_test, u64 *data)
404 {
405 data[HNAE3_LOOP_EXTERNAL] = hns3_lp_up(ndev, HNAE3_LOOP_EXTERNAL);
406 if (!data[HNAE3_LOOP_EXTERNAL])
407 data[HNAE3_LOOP_EXTERNAL] = hns3_lp_run_test(ndev, HNAE3_LOOP_EXTERNAL);
408 hns3_lp_down(ndev, HNAE3_LOOP_EXTERNAL);
409
410 if (data[HNAE3_LOOP_EXTERNAL])
411 eth_test->flags |= ETH_TEST_FL_FAILED;
412
413 eth_test->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE;
414 }
415
416 /**
417 * hns3_self_test - self test
418 * @ndev: net device
419 * @eth_test: test cmd
420 * @data: test result
421 */
hns3_self_test(struct net_device * ndev,struct ethtool_test * eth_test,u64 * data)422 static void hns3_self_test(struct net_device *ndev,
423 struct ethtool_test *eth_test, u64 *data)
424 {
425 int cnt = hns3_get_sset_count(ndev, ETH_SS_TEST);
426 struct hns3_nic_priv *priv = netdev_priv(ndev);
427 struct hnae3_handle *h = priv->ae_handle;
428 int st_param[HNAE3_LOOP_NONE][2];
429 bool if_running = netif_running(ndev);
430 int i;
431
432 /* initialize the loopback test result, avoid marking an unexcuted
433 * loopback test as PASS.
434 */
435 for (i = 0; i < cnt; i++)
436 data[i] = HNS3_NIC_LB_TEST_UNEXECUTED;
437
438 if (hns3_nic_resetting(ndev)) {
439 netdev_err(ndev, "dev resetting!\n");
440 goto failure;
441 }
442
443 if (!(eth_test->flags & ETH_TEST_FL_OFFLINE))
444 goto failure;
445
446 if (netif_msg_ifdown(h))
447 netdev_info(ndev, "self test start\n");
448
449 hns3_set_selftest_param(h, st_param);
450
451 /* external loopback test requires that the link is up and the duplex is
452 * full, do external test first to reduce the whole test time
453 */
454 if (eth_test->flags & ETH_TEST_FL_EXTERNAL_LB) {
455 hns3_external_lb_prepare(ndev, if_running);
456 hns3_do_external_lb(ndev, eth_test, data);
457 hns3_external_lb_restore(ndev, if_running);
458 }
459
460 hns3_selftest_prepare(ndev, if_running);
461 hns3_do_selftest(ndev, st_param, eth_test, data);
462 hns3_selftest_restore(ndev, if_running);
463
464 if (netif_msg_ifdown(h))
465 netdev_info(ndev, "self test end\n");
466 return;
467
468 failure:
469 eth_test->flags |= ETH_TEST_FL_FAILED;
470 }
471
hns3_update_limit_promisc_mode(struct net_device * netdev,bool enable)472 static void hns3_update_limit_promisc_mode(struct net_device *netdev,
473 bool enable)
474 {
475 struct hnae3_handle *handle = hns3_get_handle(netdev);
476
477 if (enable)
478 set_bit(HNAE3_PFLAG_LIMIT_PROMISC, &handle->priv_flags);
479 else
480 clear_bit(HNAE3_PFLAG_LIMIT_PROMISC, &handle->priv_flags);
481
482 hns3_request_update_promisc_mode(handle);
483 }
484
485 static const struct hns3_pflag_desc hns3_priv_flags[HNAE3_PFLAG_MAX] = {
486 { "limit_promisc", hns3_update_limit_promisc_mode }
487 };
488
hns3_get_sset_count(struct net_device * netdev,int stringset)489 static int hns3_get_sset_count(struct net_device *netdev, int stringset)
490 {
491 struct hnae3_handle *h = hns3_get_handle(netdev);
492 const struct hnae3_ae_ops *ops = hns3_get_ops(h);
493
494 if (!ops->get_sset_count)
495 return -EOPNOTSUPP;
496
497 switch (stringset) {
498 case ETH_SS_STATS:
499 return ((HNS3_TQP_STATS_COUNT * h->kinfo.num_tqps) +
500 ops->get_sset_count(h, stringset));
501
502 case ETH_SS_TEST:
503 return ops->get_sset_count(h, stringset);
504
505 case ETH_SS_PRIV_FLAGS:
506 return HNAE3_PFLAG_MAX;
507
508 default:
509 return -EOPNOTSUPP;
510 }
511 }
512
hns3_update_strings(u8 ** data,const struct hns3_stats * stats,u32 stat_count,u32 num_tqps,const char * prefix)513 static void hns3_update_strings(u8 **data, const struct hns3_stats *stats,
514 u32 stat_count, u32 num_tqps,
515 const char *prefix)
516 {
517 u32 i, j;
518
519 for (i = 0; i < num_tqps; i++)
520 for (j = 0; j < stat_count; j++)
521 ethtool_sprintf(data, "%s%u_%s", prefix, i,
522 stats[j].stats_string);
523 }
524
hns3_get_strings_tqps(struct hnae3_handle * handle,u8 ** data)525 static void hns3_get_strings_tqps(struct hnae3_handle *handle, u8 **data)
526 {
527 struct hnae3_knic_private_info *kinfo = &handle->kinfo;
528 const char tx_prefix[] = "txq";
529 const char rx_prefix[] = "rxq";
530
531 /* get strings for Tx */
532 hns3_update_strings(data, hns3_txq_stats, HNS3_TXQ_STATS_COUNT,
533 kinfo->num_tqps, tx_prefix);
534
535 /* get strings for Rx */
536 hns3_update_strings(data, hns3_rxq_stats, HNS3_RXQ_STATS_COUNT,
537 kinfo->num_tqps, rx_prefix);
538 }
539
hns3_get_strings(struct net_device * netdev,u32 stringset,u8 * data)540 static void hns3_get_strings(struct net_device *netdev, u32 stringset, u8 *data)
541 {
542 struct hnae3_handle *h = hns3_get_handle(netdev);
543 const struct hnae3_ae_ops *ops = hns3_get_ops(h);
544 u32 i;
545
546 if (!ops->get_strings)
547 return;
548
549 switch (stringset) {
550 case ETH_SS_STATS:
551 hns3_get_strings_tqps(h, &data);
552 ops->get_strings(h, stringset, &data);
553 break;
554 case ETH_SS_TEST:
555 ops->get_strings(h, stringset, &data);
556 break;
557 case ETH_SS_PRIV_FLAGS:
558 for (i = 0; i < HNS3_PRIV_FLAGS_LEN; i++)
559 ethtool_puts(&data, hns3_priv_flags[i].name);
560 break;
561 default:
562 break;
563 }
564 }
565
hns3_get_stats_tqps(struct hnae3_handle * handle,u64 * data)566 static u64 *hns3_get_stats_tqps(struct hnae3_handle *handle, u64 *data)
567 {
568 struct hnae3_knic_private_info *kinfo = &handle->kinfo;
569 struct hns3_nic_priv *nic_priv = handle->priv;
570 struct hns3_enet_ring *ring;
571 u8 *stat;
572 u32 i, j;
573
574 /* get stats for Tx */
575 for (i = 0; i < kinfo->num_tqps; i++) {
576 ring = &nic_priv->ring[i];
577 for (j = 0; j < HNS3_TXQ_STATS_COUNT; j++) {
578 stat = (u8 *)ring + hns3_txq_stats[j].stats_offset;
579 *data++ = *(u64 *)stat;
580 }
581 }
582
583 /* get stats for Rx */
584 for (i = 0; i < kinfo->num_tqps; i++) {
585 ring = &nic_priv->ring[i + kinfo->num_tqps];
586 for (j = 0; j < HNS3_RXQ_STATS_COUNT; j++) {
587 stat = (u8 *)ring + hns3_rxq_stats[j].stats_offset;
588 *data++ = *(u64 *)stat;
589 }
590 }
591
592 return data;
593 }
594
595 /* hns3_get_stats - get detail statistics.
596 * @netdev: net device
597 * @stats: statistics info.
598 * @data: statistics data.
599 */
hns3_get_stats(struct net_device * netdev,struct ethtool_stats * stats,u64 * data)600 static void hns3_get_stats(struct net_device *netdev,
601 struct ethtool_stats *stats, u64 *data)
602 {
603 struct hnae3_handle *h = hns3_get_handle(netdev);
604 u64 *p = data;
605
606 if (hns3_nic_resetting(netdev)) {
607 netdev_err(netdev, "dev resetting, could not get stats\n");
608 return;
609 }
610
611 if (!h->ae_algo->ops->get_stats || !h->ae_algo->ops->update_stats) {
612 netdev_err(netdev, "could not get any statistics\n");
613 return;
614 }
615
616 h->ae_algo->ops->update_stats(h);
617
618 /* get per-queue stats */
619 p = hns3_get_stats_tqps(h, p);
620
621 /* get MAC & other misc hardware stats */
622 h->ae_algo->ops->get_stats(h, p);
623 }
624
hns3_get_drvinfo(struct net_device * netdev,struct ethtool_drvinfo * drvinfo)625 static void hns3_get_drvinfo(struct net_device *netdev,
626 struct ethtool_drvinfo *drvinfo)
627 {
628 struct hns3_nic_priv *priv = netdev_priv(netdev);
629 struct hnae3_handle *h = priv->ae_handle;
630 u32 fw_version;
631
632 if (!h->ae_algo->ops->get_fw_version) {
633 netdev_err(netdev, "could not get fw version!\n");
634 return;
635 }
636
637 strscpy(drvinfo->driver, dev_driver_string(&h->pdev->dev),
638 sizeof(drvinfo->driver));
639
640 strscpy(drvinfo->bus_info, pci_name(h->pdev),
641 sizeof(drvinfo->bus_info));
642
643 fw_version = priv->ae_handle->ae_algo->ops->get_fw_version(h);
644
645 snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version),
646 "%lu.%lu.%lu.%lu",
647 hnae3_get_field(fw_version, HNAE3_FW_VERSION_BYTE3_MASK,
648 HNAE3_FW_VERSION_BYTE3_SHIFT),
649 hnae3_get_field(fw_version, HNAE3_FW_VERSION_BYTE2_MASK,
650 HNAE3_FW_VERSION_BYTE2_SHIFT),
651 hnae3_get_field(fw_version, HNAE3_FW_VERSION_BYTE1_MASK,
652 HNAE3_FW_VERSION_BYTE1_SHIFT),
653 hnae3_get_field(fw_version, HNAE3_FW_VERSION_BYTE0_MASK,
654 HNAE3_FW_VERSION_BYTE0_SHIFT));
655 }
656
hns3_get_link(struct net_device * netdev)657 static u32 hns3_get_link(struct net_device *netdev)
658 {
659 struct hnae3_handle *h = hns3_get_handle(netdev);
660
661 if (h->ae_algo->ops->get_status)
662 return h->ae_algo->ops->get_status(h);
663 else
664 return 0;
665 }
666
hns3_get_ringparam(struct net_device * netdev,struct ethtool_ringparam * param,struct kernel_ethtool_ringparam * kernel_param,struct netlink_ext_ack * extack)667 static void hns3_get_ringparam(struct net_device *netdev,
668 struct ethtool_ringparam *param,
669 struct kernel_ethtool_ringparam *kernel_param,
670 struct netlink_ext_ack *extack)
671 {
672 struct hns3_nic_priv *priv = netdev_priv(netdev);
673 struct hnae3_handle *h = priv->ae_handle;
674 int rx_queue_index = h->kinfo.num_tqps;
675
676 if (hns3_nic_resetting(netdev) || !priv->ring) {
677 netdev_err(netdev, "failed to get ringparam value, due to dev resetting or uninited\n");
678 return;
679 }
680
681 param->tx_max_pending = HNS3_RING_MAX_PENDING;
682 param->rx_max_pending = HNS3_RING_MAX_PENDING;
683
684 param->tx_pending = priv->ring[0].desc_num;
685 param->rx_pending = priv->ring[rx_queue_index].desc_num;
686 kernel_param->rx_buf_len = priv->ring[rx_queue_index].buf_size;
687 kernel_param->tx_push = test_bit(HNS3_NIC_STATE_TX_PUSH_ENABLE,
688 &priv->state);
689 }
690
hns3_get_pauseparam(struct net_device * netdev,struct ethtool_pauseparam * param)691 static void hns3_get_pauseparam(struct net_device *netdev,
692 struct ethtool_pauseparam *param)
693 {
694 struct hnae3_handle *h = hns3_get_handle(netdev);
695 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(h);
696
697 if (!test_bit(HNAE3_DEV_SUPPORT_PAUSE_B, ae_dev->caps))
698 return;
699
700 if (h->ae_algo->ops->get_pauseparam)
701 h->ae_algo->ops->get_pauseparam(h, ¶m->autoneg,
702 ¶m->rx_pause, ¶m->tx_pause);
703 }
704
hns3_set_pauseparam(struct net_device * netdev,struct ethtool_pauseparam * param)705 static int hns3_set_pauseparam(struct net_device *netdev,
706 struct ethtool_pauseparam *param)
707 {
708 struct hnae3_handle *h = hns3_get_handle(netdev);
709 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(h);
710
711 if (!test_bit(HNAE3_DEV_SUPPORT_PAUSE_B, ae_dev->caps))
712 return -EOPNOTSUPP;
713
714 netif_dbg(h, drv, netdev,
715 "set pauseparam: autoneg=%u, rx:%u, tx:%u\n",
716 param->autoneg, param->rx_pause, param->tx_pause);
717
718 if (h->ae_algo->ops->set_pauseparam)
719 return h->ae_algo->ops->set_pauseparam(h, param->autoneg,
720 param->rx_pause,
721 param->tx_pause);
722 return -EOPNOTSUPP;
723 }
724
hns3_get_ksettings(struct hnae3_handle * h,struct ethtool_link_ksettings * cmd)725 static void hns3_get_ksettings(struct hnae3_handle *h,
726 struct ethtool_link_ksettings *cmd)
727 {
728 const struct hnae3_ae_ops *ops = hns3_get_ops(h);
729
730 /* 1.auto_neg & speed & duplex from cmd */
731 if (ops->get_ksettings_an_result)
732 ops->get_ksettings_an_result(h,
733 &cmd->base.autoneg,
734 &cmd->base.speed,
735 &cmd->base.duplex,
736 &cmd->lanes);
737
738 /* 2.get link mode */
739 if (ops->get_link_mode)
740 ops->get_link_mode(h,
741 cmd->link_modes.supported,
742 cmd->link_modes.advertising);
743
744 /* 3.mdix_ctrl&mdix get from phy reg */
745 if (ops->get_mdix_mode)
746 ops->get_mdix_mode(h, &cmd->base.eth_tp_mdix_ctrl,
747 &cmd->base.eth_tp_mdix);
748 }
749
hns3_get_link_ksettings(struct net_device * netdev,struct ethtool_link_ksettings * cmd)750 static int hns3_get_link_ksettings(struct net_device *netdev,
751 struct ethtool_link_ksettings *cmd)
752 {
753 struct hnae3_handle *h = hns3_get_handle(netdev);
754 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(h);
755 const struct hnae3_ae_ops *ops;
756 u8 module_type;
757 u8 media_type;
758 u8 link_stat;
759
760 ops = h->ae_algo->ops;
761 if (ops->get_media_type)
762 ops->get_media_type(h, &media_type, &module_type);
763 else
764 return -EOPNOTSUPP;
765
766 switch (media_type) {
767 case HNAE3_MEDIA_TYPE_NONE:
768 cmd->base.port = PORT_NONE;
769 hns3_get_ksettings(h, cmd);
770 break;
771 case HNAE3_MEDIA_TYPE_FIBER:
772 if (module_type == HNAE3_MODULE_TYPE_UNKNOWN)
773 cmd->base.port = PORT_OTHER;
774 else if (module_type == HNAE3_MODULE_TYPE_CR)
775 cmd->base.port = PORT_DA;
776 else
777 cmd->base.port = PORT_FIBRE;
778
779 hns3_get_ksettings(h, cmd);
780 break;
781 case HNAE3_MEDIA_TYPE_BACKPLANE:
782 cmd->base.port = PORT_NONE;
783 hns3_get_ksettings(h, cmd);
784 break;
785 case HNAE3_MEDIA_TYPE_COPPER:
786 cmd->base.port = PORT_TP;
787 if (test_bit(HNAE3_DEV_SUPPORT_PHY_IMP_B, ae_dev->caps) &&
788 ops->get_phy_link_ksettings)
789 ops->get_phy_link_ksettings(h, cmd);
790 else if (!netdev->phydev)
791 hns3_get_ksettings(h, cmd);
792 else
793 phy_ethtool_ksettings_get(netdev->phydev, cmd);
794 break;
795 default:
796
797 netdev_warn(netdev, "Unknown media type\n");
798 return 0;
799 }
800
801 /* mdio_support */
802 cmd->base.mdio_support = ETH_MDIO_SUPPORTS_C22;
803
804 link_stat = hns3_get_link(netdev);
805 if (!link_stat) {
806 cmd->base.speed = SPEED_UNKNOWN;
807 cmd->base.duplex = DUPLEX_UNKNOWN;
808 }
809
810 return 0;
811 }
812
hns3_check_ksettings_param(const struct net_device * netdev,const struct ethtool_link_ksettings * cmd,u8 media_type)813 static int hns3_check_ksettings_param(const struct net_device *netdev,
814 const struct ethtool_link_ksettings *cmd,
815 u8 media_type)
816 {
817 struct hnae3_handle *handle = hns3_get_handle(netdev);
818 const struct hnae3_ae_ops *ops = hns3_get_ops(handle);
819 u32 lane_num;
820 u8 autoneg;
821 u32 speed;
822 u8 duplex;
823 int ret;
824
825 /* hw doesn't support use specified speed and duplex to negotiate,
826 * unnecessary to check them when autoneg on.
827 */
828 if (cmd->base.autoneg)
829 return 0;
830
831 if (ops->get_ksettings_an_result) {
832 ops->get_ksettings_an_result(handle, &autoneg, &speed, &duplex, &lane_num);
833 if (cmd->base.autoneg == autoneg && cmd->base.speed == speed &&
834 cmd->base.duplex == duplex && cmd->lanes == lane_num)
835 return 0;
836 }
837
838 if (cmd->base.duplex == DUPLEX_HALF &&
839 media_type != HNAE3_MEDIA_TYPE_COPPER) {
840 netdev_err(netdev,
841 "only copper port supports half duplex!\n");
842 return -EINVAL;
843 }
844
845 if (ops->check_port_speed) {
846 ret = ops->check_port_speed(handle, cmd->base.speed);
847 if (ret) {
848 netdev_err(netdev, "unsupported speed\n");
849 return ret;
850 }
851 }
852
853 return 0;
854 }
855
hns3_set_link_ksettings(struct net_device * netdev,const struct ethtool_link_ksettings * cmd)856 static int hns3_set_link_ksettings(struct net_device *netdev,
857 const struct ethtool_link_ksettings *cmd)
858 {
859 struct hnae3_handle *handle = hns3_get_handle(netdev);
860 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(handle);
861 const struct hnae3_ae_ops *ops = hns3_get_ops(handle);
862 u8 module_type = HNAE3_MODULE_TYPE_UNKNOWN;
863 u8 media_type = HNAE3_MEDIA_TYPE_UNKNOWN;
864 int ret;
865
866 /* Chip don't support this mode. */
867 if (cmd->base.speed == SPEED_1000 && cmd->base.duplex == DUPLEX_HALF)
868 return -EINVAL;
869
870 if (cmd->lanes && !hnae3_ae_dev_lane_num_supported(ae_dev))
871 return -EOPNOTSUPP;
872
873 netif_dbg(handle, drv, netdev,
874 "set link(%s): autoneg=%u, speed=%u, duplex=%u, lanes=%u\n",
875 netdev->phydev ? "phy" : "mac",
876 cmd->base.autoneg, cmd->base.speed, cmd->base.duplex,
877 cmd->lanes);
878
879 if (!ops->get_media_type)
880 return -EOPNOTSUPP;
881 ops->get_media_type(handle, &media_type, &module_type);
882
883 if (media_type == HNAE3_MEDIA_TYPE_COPPER) {
884 if (!ops->set_phy_link_ksettings)
885 return -EOPNOTSUPP;
886 ret = ops->set_phy_link_ksettings(handle, cmd);
887 if (ret != -ENODEV)
888 return ret;
889 /* PHY_INEXISTENT, use MAC-level configuration */
890 }
891
892 if (ae_dev->dev_version < HNAE3_DEVICE_VERSION_V2)
893 return -EOPNOTSUPP;
894
895 ret = hns3_check_ksettings_param(netdev, cmd, media_type);
896 if (ret)
897 return ret;
898
899 if (ops->set_autoneg) {
900 ret = ops->set_autoneg(handle, cmd->base.autoneg);
901 if (ret)
902 return ret;
903 }
904
905 /* hw doesn't support use specified speed and duplex to negotiate,
906 * ignore them when autoneg on.
907 */
908 if (cmd->base.autoneg) {
909 netdev_info(netdev,
910 "autoneg is on, ignore the speed and duplex\n");
911 return 0;
912 }
913
914 if (ops->cfg_mac_speed_dup_h)
915 ret = ops->cfg_mac_speed_dup_h(handle, cmd->base.speed,
916 cmd->base.duplex, (u8)(cmd->lanes));
917
918 return ret;
919 }
920
hns3_get_rss_key_size(struct net_device * netdev)921 static u32 hns3_get_rss_key_size(struct net_device *netdev)
922 {
923 struct hnae3_handle *h = hns3_get_handle(netdev);
924
925 if (!h->ae_algo->ops->get_rss_key_size)
926 return 0;
927
928 return h->ae_algo->ops->get_rss_key_size(h);
929 }
930
hns3_get_rss_indir_size(struct net_device * netdev)931 static u32 hns3_get_rss_indir_size(struct net_device *netdev)
932 {
933 struct hnae3_handle *h = hns3_get_handle(netdev);
934 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(h);
935
936 return ae_dev->dev_specs.rss_ind_tbl_size;
937 }
938
hns3_get_rss(struct net_device * netdev,struct ethtool_rxfh_param * rxfh)939 static int hns3_get_rss(struct net_device *netdev,
940 struct ethtool_rxfh_param *rxfh)
941 {
942 struct hnae3_handle *h = hns3_get_handle(netdev);
943
944 if (!h->ae_algo->ops->get_rss)
945 return -EOPNOTSUPP;
946
947 return h->ae_algo->ops->get_rss(h, rxfh->indir, rxfh->key,
948 &rxfh->hfunc);
949 }
950
hns3_set_rss(struct net_device * netdev,struct ethtool_rxfh_param * rxfh,struct netlink_ext_ack * extack)951 static int hns3_set_rss(struct net_device *netdev,
952 struct ethtool_rxfh_param *rxfh,
953 struct netlink_ext_ack *extack)
954 {
955 struct hnae3_handle *h = hns3_get_handle(netdev);
956 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(h);
957
958 if (!h->ae_algo->ops->set_rss)
959 return -EOPNOTSUPP;
960
961 if ((ae_dev->dev_version < HNAE3_DEVICE_VERSION_V2 &&
962 rxfh->hfunc != ETH_RSS_HASH_TOP) ||
963 (rxfh->hfunc != ETH_RSS_HASH_NO_CHANGE &&
964 rxfh->hfunc != ETH_RSS_HASH_TOP &&
965 rxfh->hfunc != ETH_RSS_HASH_XOR)) {
966 netdev_err(netdev, "hash func not supported\n");
967 return -EOPNOTSUPP;
968 }
969
970 if (!rxfh->indir) {
971 netdev_err(netdev,
972 "set rss failed for indir is empty\n");
973 return -EOPNOTSUPP;
974 }
975
976 return h->ae_algo->ops->set_rss(h, rxfh->indir, rxfh->key,
977 rxfh->hfunc);
978 }
979
hns3_get_rxfh_fields(struct net_device * netdev,struct ethtool_rxfh_fields * cmd)980 static int hns3_get_rxfh_fields(struct net_device *netdev,
981 struct ethtool_rxfh_fields *cmd)
982 {
983 struct hnae3_handle *h = hns3_get_handle(netdev);
984
985 if (h->ae_algo->ops->get_rss_tuple)
986 return h->ae_algo->ops->get_rss_tuple(h, cmd);
987 return -EOPNOTSUPP;
988 }
989
hns3_get_rx_ring_count(struct net_device * netdev)990 static u32 hns3_get_rx_ring_count(struct net_device *netdev)
991 {
992 struct hnae3_handle *h = hns3_get_handle(netdev);
993
994 return h->kinfo.num_tqps;
995 }
996
hns3_get_rxnfc(struct net_device * netdev,struct ethtool_rxnfc * cmd,u32 * rule_locs)997 static int hns3_get_rxnfc(struct net_device *netdev,
998 struct ethtool_rxnfc *cmd,
999 u32 *rule_locs)
1000 {
1001 struct hnae3_handle *h = hns3_get_handle(netdev);
1002
1003 switch (cmd->cmd) {
1004 case ETHTOOL_GRXCLSRLCNT:
1005 if (h->ae_algo->ops->get_fd_rule_cnt)
1006 return h->ae_algo->ops->get_fd_rule_cnt(h, cmd);
1007 return -EOPNOTSUPP;
1008 case ETHTOOL_GRXCLSRULE:
1009 if (h->ae_algo->ops->get_fd_rule_info)
1010 return h->ae_algo->ops->get_fd_rule_info(h, cmd);
1011 return -EOPNOTSUPP;
1012 case ETHTOOL_GRXCLSRLALL:
1013 if (h->ae_algo->ops->get_fd_all_rules)
1014 return h->ae_algo->ops->get_fd_all_rules(h, cmd,
1015 rule_locs);
1016 return -EOPNOTSUPP;
1017 default:
1018 return -EOPNOTSUPP;
1019 }
1020 }
1021
1022 static const struct hns3_reset_type_map hns3_reset_type[] = {
1023 {ETH_RESET_MGMT, HNAE3_IMP_RESET},
1024 {ETH_RESET_ALL, HNAE3_GLOBAL_RESET},
1025 {ETH_RESET_DEDICATED, HNAE3_FUNC_RESET},
1026 };
1027
1028 static const struct hns3_reset_type_map hns3vf_reset_type[] = {
1029 {ETH_RESET_DEDICATED, HNAE3_VF_FUNC_RESET},
1030 };
1031
hns3_set_reset(struct net_device * netdev,u32 * flags)1032 static int hns3_set_reset(struct net_device *netdev, u32 *flags)
1033 {
1034 enum hnae3_reset_type rst_type = HNAE3_NONE_RESET;
1035 struct hnae3_handle *h = hns3_get_handle(netdev);
1036 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(h);
1037 const struct hnae3_ae_ops *ops = hns3_get_ops(h);
1038 const struct hns3_reset_type_map *rst_type_map;
1039 enum ethtool_reset_flags rst_flags;
1040 u32 i, size;
1041
1042 if (ops->ae_dev_resetting && ops->ae_dev_resetting(h))
1043 return -EBUSY;
1044
1045 if (!ops->set_default_reset_request || !ops->reset_event)
1046 return -EOPNOTSUPP;
1047
1048 if (h->flags & HNAE3_SUPPORT_VF) {
1049 rst_type_map = hns3vf_reset_type;
1050 size = ARRAY_SIZE(hns3vf_reset_type);
1051 } else {
1052 rst_type_map = hns3_reset_type;
1053 size = ARRAY_SIZE(hns3_reset_type);
1054 }
1055
1056 for (i = 0; i < size; i++) {
1057 if (rst_type_map[i].rst_flags == *flags) {
1058 rst_type = rst_type_map[i].rst_type;
1059 rst_flags = rst_type_map[i].rst_flags;
1060 break;
1061 }
1062 }
1063
1064 if (rst_type == HNAE3_NONE_RESET ||
1065 (rst_type == HNAE3_IMP_RESET &&
1066 ae_dev->dev_version <= HNAE3_DEVICE_VERSION_V2))
1067 return -EOPNOTSUPP;
1068
1069 netdev_info(netdev, "Setting reset type %d\n", rst_type);
1070
1071 ops->set_default_reset_request(ae_dev, rst_type);
1072
1073 ops->reset_event(h->pdev, h);
1074
1075 *flags &= ~rst_flags;
1076
1077 return 0;
1078 }
1079
hns3_change_all_ring_bd_num(struct hns3_nic_priv * priv,u32 tx_desc_num,u32 rx_desc_num)1080 static void hns3_change_all_ring_bd_num(struct hns3_nic_priv *priv,
1081 u32 tx_desc_num, u32 rx_desc_num)
1082 {
1083 struct hnae3_handle *h = priv->ae_handle;
1084 int i;
1085
1086 h->kinfo.num_tx_desc = tx_desc_num;
1087 h->kinfo.num_rx_desc = rx_desc_num;
1088
1089 for (i = 0; i < h->kinfo.num_tqps; i++) {
1090 priv->ring[i].desc_num = tx_desc_num;
1091 priv->ring[i + h->kinfo.num_tqps].desc_num = rx_desc_num;
1092 }
1093 }
1094
hns3_backup_ringparam(struct hns3_nic_priv * priv)1095 static struct hns3_enet_ring *hns3_backup_ringparam(struct hns3_nic_priv *priv)
1096 {
1097 struct hnae3_handle *handle = priv->ae_handle;
1098 struct hns3_enet_ring *tmp_rings;
1099 int i;
1100
1101 tmp_rings = kzalloc_objs(struct hns3_enet_ring,
1102 handle->kinfo.num_tqps * 2);
1103 if (!tmp_rings)
1104 return NULL;
1105
1106 for (i = 0; i < handle->kinfo.num_tqps * 2; i++) {
1107 memcpy(&tmp_rings[i], &priv->ring[i],
1108 sizeof(struct hns3_enet_ring));
1109 tmp_rings[i].skb = NULL;
1110 }
1111
1112 return tmp_rings;
1113 }
1114
hns3_check_ringparam(struct net_device * ndev,struct ethtool_ringparam * param,struct kernel_ethtool_ringparam * kernel_param)1115 static int hns3_check_ringparam(struct net_device *ndev,
1116 struct ethtool_ringparam *param,
1117 struct kernel_ethtool_ringparam *kernel_param)
1118 {
1119 #define RX_BUF_LEN_2K 2048
1120 #define RX_BUF_LEN_4K 4096
1121
1122 struct hns3_nic_priv *priv = netdev_priv(ndev);
1123
1124 if (hns3_nic_resetting(ndev) || !priv->ring) {
1125 netdev_err(ndev, "failed to set ringparam value, due to dev resetting or uninited\n");
1126 return -EBUSY;
1127 }
1128
1129
1130 if (param->rx_mini_pending || param->rx_jumbo_pending)
1131 return -EINVAL;
1132
1133 if (kernel_param->rx_buf_len != RX_BUF_LEN_2K &&
1134 kernel_param->rx_buf_len != RX_BUF_LEN_4K) {
1135 netdev_err(ndev, "Rx buf len only support 2048 and 4096\n");
1136 return -EINVAL;
1137 }
1138
1139 if (param->tx_pending > HNS3_RING_MAX_PENDING ||
1140 param->tx_pending < HNS3_RING_MIN_PENDING ||
1141 param->rx_pending > HNS3_RING_MAX_PENDING ||
1142 param->rx_pending < HNS3_RING_MIN_PENDING) {
1143 netdev_err(ndev, "Queue depth out of range [%d-%d]\n",
1144 HNS3_RING_MIN_PENDING, HNS3_RING_MAX_PENDING);
1145 return -EINVAL;
1146 }
1147
1148 return 0;
1149 }
1150
1151 static bool
hns3_is_ringparam_changed(struct net_device * ndev,struct ethtool_ringparam * param,struct kernel_ethtool_ringparam * kernel_param,struct hns3_ring_param * old_ringparam,struct hns3_ring_param * new_ringparam)1152 hns3_is_ringparam_changed(struct net_device *ndev,
1153 struct ethtool_ringparam *param,
1154 struct kernel_ethtool_ringparam *kernel_param,
1155 struct hns3_ring_param *old_ringparam,
1156 struct hns3_ring_param *new_ringparam)
1157 {
1158 struct hns3_nic_priv *priv = netdev_priv(ndev);
1159 struct hnae3_handle *h = priv->ae_handle;
1160 u16 queue_num = h->kinfo.num_tqps;
1161
1162 new_ringparam->tx_desc_num = ALIGN(param->tx_pending,
1163 HNS3_RING_BD_MULTIPLE);
1164 new_ringparam->rx_desc_num = ALIGN(param->rx_pending,
1165 HNS3_RING_BD_MULTIPLE);
1166 old_ringparam->tx_desc_num = priv->ring[0].desc_num;
1167 old_ringparam->rx_desc_num = priv->ring[queue_num].desc_num;
1168 old_ringparam->rx_buf_len = priv->ring[queue_num].buf_size;
1169 new_ringparam->rx_buf_len = kernel_param->rx_buf_len;
1170
1171 if (old_ringparam->tx_desc_num == new_ringparam->tx_desc_num &&
1172 old_ringparam->rx_desc_num == new_ringparam->rx_desc_num &&
1173 old_ringparam->rx_buf_len == new_ringparam->rx_buf_len) {
1174 netdev_info(ndev, "descriptor number and rx buffer length not changed\n");
1175 return false;
1176 }
1177
1178 return true;
1179 }
1180
hns3_change_rx_buf_len(struct net_device * ndev,u32 rx_buf_len)1181 static int hns3_change_rx_buf_len(struct net_device *ndev, u32 rx_buf_len)
1182 {
1183 struct hns3_nic_priv *priv = netdev_priv(ndev);
1184 struct hnae3_handle *h = priv->ae_handle;
1185 int i;
1186
1187 h->kinfo.rx_buf_len = rx_buf_len;
1188
1189 for (i = 0; i < h->kinfo.num_tqps; i++) {
1190 h->kinfo.tqp[i]->buf_size = rx_buf_len;
1191 priv->ring[i + h->kinfo.num_tqps].buf_size = rx_buf_len;
1192 }
1193
1194 return 0;
1195 }
1196
hns3_set_tx_push(struct net_device * netdev,u32 tx_push)1197 static int hns3_set_tx_push(struct net_device *netdev, u32 tx_push)
1198 {
1199 struct hns3_nic_priv *priv = netdev_priv(netdev);
1200 struct hnae3_handle *h = hns3_get_handle(netdev);
1201 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(h);
1202 u32 old_state = test_bit(HNS3_NIC_STATE_TX_PUSH_ENABLE, &priv->state);
1203
1204 if (!test_bit(HNAE3_DEV_SUPPORT_TX_PUSH_B, ae_dev->caps) && tx_push)
1205 return -EOPNOTSUPP;
1206
1207 if (tx_push == old_state)
1208 return 0;
1209
1210 netdev_dbg(netdev, "Changing tx push from %s to %s\n",
1211 str_on_off(old_state), str_on_off(tx_push));
1212
1213 if (tx_push)
1214 set_bit(HNS3_NIC_STATE_TX_PUSH_ENABLE, &priv->state);
1215 else
1216 clear_bit(HNS3_NIC_STATE_TX_PUSH_ENABLE, &priv->state);
1217
1218 return 0;
1219 }
1220
hns3_set_ringparam(struct net_device * ndev,struct ethtool_ringparam * param,struct kernel_ethtool_ringparam * kernel_param,struct netlink_ext_ack * extack)1221 static int hns3_set_ringparam(struct net_device *ndev,
1222 struct ethtool_ringparam *param,
1223 struct kernel_ethtool_ringparam *kernel_param,
1224 struct netlink_ext_ack *extack)
1225 {
1226 struct hns3_ring_param old_ringparam, new_ringparam;
1227 struct hns3_nic_priv *priv = netdev_priv(ndev);
1228 struct hnae3_handle *h = priv->ae_handle;
1229 struct hns3_enet_ring *tmp_rings;
1230 bool if_running = netif_running(ndev);
1231 int ret, i;
1232
1233 ret = hns3_check_ringparam(ndev, param, kernel_param);
1234 if (ret)
1235 return ret;
1236
1237 ret = hns3_set_tx_push(ndev, kernel_param->tx_push);
1238 if (ret)
1239 return ret;
1240
1241 if (!hns3_is_ringparam_changed(ndev, param, kernel_param,
1242 &old_ringparam, &new_ringparam))
1243 return 0;
1244
1245 tmp_rings = hns3_backup_ringparam(priv);
1246 if (!tmp_rings) {
1247 netdev_err(ndev, "backup ring param failed by allocating memory fail\n");
1248 return -ENOMEM;
1249 }
1250
1251 netdev_info(ndev,
1252 "Changing Tx/Rx ring depth from %u/%u to %u/%u, Changing rx buffer len from %u to %u\n",
1253 old_ringparam.tx_desc_num, old_ringparam.rx_desc_num,
1254 new_ringparam.tx_desc_num, new_ringparam.rx_desc_num,
1255 old_ringparam.rx_buf_len, new_ringparam.rx_buf_len);
1256
1257 if (if_running)
1258 ndev->netdev_ops->ndo_stop(ndev);
1259
1260 hns3_change_all_ring_bd_num(priv, new_ringparam.tx_desc_num,
1261 new_ringparam.rx_desc_num);
1262 hns3_change_rx_buf_len(ndev, new_ringparam.rx_buf_len);
1263 ret = hns3_init_all_ring(priv);
1264 if (ret) {
1265 netdev_err(ndev, "set ringparam fail, revert to old value(%d)\n",
1266 ret);
1267
1268 hns3_change_rx_buf_len(ndev, old_ringparam.rx_buf_len);
1269 hns3_change_all_ring_bd_num(priv, old_ringparam.tx_desc_num,
1270 old_ringparam.rx_desc_num);
1271 for (i = 0; i < h->kinfo.num_tqps * 2; i++)
1272 memcpy(&priv->ring[i], &tmp_rings[i],
1273 sizeof(struct hns3_enet_ring));
1274 } else {
1275 for (i = 0; i < h->kinfo.num_tqps * 2; i++)
1276 hns3_fini_ring(&tmp_rings[i]);
1277 }
1278
1279 kfree(tmp_rings);
1280
1281 if (if_running)
1282 ret = ndev->netdev_ops->ndo_open(ndev);
1283
1284 return ret;
1285 }
1286
hns3_set_rxfh_fields(struct net_device * netdev,const struct ethtool_rxfh_fields * cmd,struct netlink_ext_ack * extack)1287 static int hns3_set_rxfh_fields(struct net_device *netdev,
1288 const struct ethtool_rxfh_fields *cmd,
1289 struct netlink_ext_ack *extack)
1290 {
1291 struct hnae3_handle *h = hns3_get_handle(netdev);
1292
1293 if (h->ae_algo->ops->set_rss_tuple)
1294 return h->ae_algo->ops->set_rss_tuple(h, cmd);
1295 return -EOPNOTSUPP;
1296 }
1297
hns3_set_rxnfc(struct net_device * netdev,struct ethtool_rxnfc * cmd)1298 static int hns3_set_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd)
1299 {
1300 struct hnae3_handle *h = hns3_get_handle(netdev);
1301
1302 switch (cmd->cmd) {
1303 case ETHTOOL_SRXCLSRLINS:
1304 if (h->ae_algo->ops->add_fd_entry)
1305 return h->ae_algo->ops->add_fd_entry(h, cmd);
1306 return -EOPNOTSUPP;
1307 case ETHTOOL_SRXCLSRLDEL:
1308 if (h->ae_algo->ops->del_fd_entry)
1309 return h->ae_algo->ops->del_fd_entry(h, cmd);
1310 return -EOPNOTSUPP;
1311 default:
1312 return -EOPNOTSUPP;
1313 }
1314 }
1315
hns3_nway_reset(struct net_device * netdev)1316 static int hns3_nway_reset(struct net_device *netdev)
1317 {
1318 struct hnae3_handle *handle = hns3_get_handle(netdev);
1319 const struct hnae3_ae_ops *ops = hns3_get_ops(handle);
1320 struct phy_device *phy = netdev->phydev;
1321 int autoneg;
1322
1323 if (!netif_running(netdev))
1324 return 0;
1325
1326 if (hns3_nic_resetting(netdev)) {
1327 netdev_err(netdev, "dev resetting!\n");
1328 return -EBUSY;
1329 }
1330
1331 if (!ops->get_autoneg || !ops->restart_autoneg)
1332 return -EOPNOTSUPP;
1333
1334 autoneg = ops->get_autoneg(handle);
1335 if (autoneg != AUTONEG_ENABLE) {
1336 netdev_err(netdev,
1337 "Autoneg is off, don't support to restart it\n");
1338 return -EINVAL;
1339 }
1340
1341 netif_dbg(handle, drv, netdev,
1342 "nway reset (using %s)\n", phy ? "phy" : "mac");
1343
1344 if (phy)
1345 return genphy_restart_aneg(phy);
1346
1347 return ops->restart_autoneg(handle);
1348 }
1349
hns3_get_channels(struct net_device * netdev,struct ethtool_channels * ch)1350 static void hns3_get_channels(struct net_device *netdev,
1351 struct ethtool_channels *ch)
1352 {
1353 struct hnae3_handle *h = hns3_get_handle(netdev);
1354
1355 if (h->ae_algo->ops->get_channels)
1356 h->ae_algo->ops->get_channels(h, ch);
1357 }
1358
hns3_get_coalesce(struct net_device * netdev,struct ethtool_coalesce * cmd,struct kernel_ethtool_coalesce * kernel_coal,struct netlink_ext_ack * extack)1359 static int hns3_get_coalesce(struct net_device *netdev,
1360 struct ethtool_coalesce *cmd,
1361 struct kernel_ethtool_coalesce *kernel_coal,
1362 struct netlink_ext_ack *extack)
1363 {
1364 struct hns3_nic_priv *priv = netdev_priv(netdev);
1365 struct hns3_enet_coalesce *tx_coal = &priv->tx_coal;
1366 struct hns3_enet_coalesce *rx_coal = &priv->rx_coal;
1367 struct hnae3_handle *h = priv->ae_handle;
1368
1369 if (hns3_nic_resetting(netdev))
1370 return -EBUSY;
1371
1372 cmd->use_adaptive_tx_coalesce = tx_coal->adapt_enable;
1373 cmd->use_adaptive_rx_coalesce = rx_coal->adapt_enable;
1374
1375 cmd->tx_coalesce_usecs = tx_coal->int_gl;
1376 cmd->rx_coalesce_usecs = rx_coal->int_gl;
1377
1378 cmd->tx_coalesce_usecs_high = h->kinfo.int_rl_setting;
1379 cmd->rx_coalesce_usecs_high = h->kinfo.int_rl_setting;
1380
1381 cmd->tx_max_coalesced_frames = tx_coal->int_ql;
1382 cmd->rx_max_coalesced_frames = rx_coal->int_ql;
1383
1384 kernel_coal->use_cqe_mode_tx = (priv->tx_cqe_mode ==
1385 DIM_CQ_PERIOD_MODE_START_FROM_CQE);
1386 kernel_coal->use_cqe_mode_rx = (priv->rx_cqe_mode ==
1387 DIM_CQ_PERIOD_MODE_START_FROM_CQE);
1388
1389 return 0;
1390 }
1391
hns3_check_gl_coalesce_para(struct net_device * netdev,struct ethtool_coalesce * cmd)1392 static int hns3_check_gl_coalesce_para(struct net_device *netdev,
1393 struct ethtool_coalesce *cmd)
1394 {
1395 struct hnae3_handle *handle = hns3_get_handle(netdev);
1396 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(handle);
1397 u32 rx_gl, tx_gl;
1398
1399 if (cmd->rx_coalesce_usecs > ae_dev->dev_specs.max_int_gl) {
1400 netdev_err(netdev,
1401 "invalid rx-usecs value, rx-usecs range is 0-%u\n",
1402 ae_dev->dev_specs.max_int_gl);
1403 return -EINVAL;
1404 }
1405
1406 if (cmd->tx_coalesce_usecs > ae_dev->dev_specs.max_int_gl) {
1407 netdev_err(netdev,
1408 "invalid tx-usecs value, tx-usecs range is 0-%u\n",
1409 ae_dev->dev_specs.max_int_gl);
1410 return -EINVAL;
1411 }
1412
1413 /* device version above V3(include V3), GL uses 1us unit,
1414 * so the round down is not needed.
1415 */
1416 if (ae_dev->dev_version >= HNAE3_DEVICE_VERSION_V3)
1417 return 0;
1418
1419 rx_gl = hns3_gl_round_down(cmd->rx_coalesce_usecs);
1420 if (rx_gl != cmd->rx_coalesce_usecs) {
1421 netdev_info(netdev,
1422 "rx_usecs(%u) rounded down to %u, because it must be multiple of 2.\n",
1423 cmd->rx_coalesce_usecs, rx_gl);
1424 }
1425
1426 tx_gl = hns3_gl_round_down(cmd->tx_coalesce_usecs);
1427 if (tx_gl != cmd->tx_coalesce_usecs) {
1428 netdev_info(netdev,
1429 "tx_usecs(%u) rounded down to %u, because it must be multiple of 2.\n",
1430 cmd->tx_coalesce_usecs, tx_gl);
1431 }
1432
1433 return 0;
1434 }
1435
hns3_check_rl_coalesce_para(struct net_device * netdev,struct ethtool_coalesce * cmd)1436 static int hns3_check_rl_coalesce_para(struct net_device *netdev,
1437 struct ethtool_coalesce *cmd)
1438 {
1439 u32 rl;
1440
1441 if (cmd->tx_coalesce_usecs_high != cmd->rx_coalesce_usecs_high) {
1442 netdev_err(netdev,
1443 "tx_usecs_high must be same as rx_usecs_high.\n");
1444 return -EINVAL;
1445 }
1446
1447 if (cmd->rx_coalesce_usecs_high > HNS3_INT_RL_MAX) {
1448 netdev_err(netdev,
1449 "Invalid usecs_high value, usecs_high range is 0-%d\n",
1450 HNS3_INT_RL_MAX);
1451 return -EINVAL;
1452 }
1453
1454 rl = hns3_rl_round_down(cmd->rx_coalesce_usecs_high);
1455 if (rl != cmd->rx_coalesce_usecs_high) {
1456 netdev_info(netdev,
1457 "usecs_high(%u) rounded down to %u, because it must be multiple of 4.\n",
1458 cmd->rx_coalesce_usecs_high, rl);
1459 }
1460
1461 return 0;
1462 }
1463
hns3_check_ql_coalesce_param(struct net_device * netdev,struct ethtool_coalesce * cmd)1464 static int hns3_check_ql_coalesce_param(struct net_device *netdev,
1465 struct ethtool_coalesce *cmd)
1466 {
1467 struct hnae3_handle *handle = hns3_get_handle(netdev);
1468 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(handle);
1469
1470 if ((cmd->tx_max_coalesced_frames || cmd->rx_max_coalesced_frames) &&
1471 !ae_dev->dev_specs.int_ql_max) {
1472 netdev_err(netdev, "coalesced frames is not supported\n");
1473 return -EOPNOTSUPP;
1474 }
1475
1476 if (cmd->tx_max_coalesced_frames > ae_dev->dev_specs.int_ql_max ||
1477 cmd->rx_max_coalesced_frames > ae_dev->dev_specs.int_ql_max) {
1478 netdev_err(netdev,
1479 "invalid coalesced_frames value, range is 0-%u\n",
1480 ae_dev->dev_specs.int_ql_max);
1481 return -ERANGE;
1482 }
1483
1484 return 0;
1485 }
1486
1487 static int
hns3_check_cqe_coalesce_param(struct net_device * netdev,struct kernel_ethtool_coalesce * kernel_coal)1488 hns3_check_cqe_coalesce_param(struct net_device *netdev,
1489 struct kernel_ethtool_coalesce *kernel_coal)
1490 {
1491 struct hnae3_handle *handle = hns3_get_handle(netdev);
1492 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(handle);
1493
1494 if ((kernel_coal->use_cqe_mode_tx || kernel_coal->use_cqe_mode_rx) &&
1495 !hnae3_ae_dev_cq_supported(ae_dev)) {
1496 netdev_err(netdev, "coalesced cqe mode is not supported\n");
1497 return -EOPNOTSUPP;
1498 }
1499
1500 return 0;
1501 }
1502
1503 static int
hns3_check_coalesce_para(struct net_device * netdev,struct ethtool_coalesce * cmd,struct kernel_ethtool_coalesce * kernel_coal)1504 hns3_check_coalesce_para(struct net_device *netdev,
1505 struct ethtool_coalesce *cmd,
1506 struct kernel_ethtool_coalesce *kernel_coal)
1507 {
1508 int ret;
1509
1510 ret = hns3_check_cqe_coalesce_param(netdev, kernel_coal);
1511 if (ret)
1512 return ret;
1513
1514 ret = hns3_check_gl_coalesce_para(netdev, cmd);
1515 if (ret) {
1516 netdev_err(netdev,
1517 "Check gl coalesce param fail. ret = %d\n", ret);
1518 return ret;
1519 }
1520
1521 ret = hns3_check_rl_coalesce_para(netdev, cmd);
1522 if (ret) {
1523 netdev_err(netdev,
1524 "Check rl coalesce param fail. ret = %d\n", ret);
1525 return ret;
1526 }
1527
1528 return hns3_check_ql_coalesce_param(netdev, cmd);
1529 }
1530
hns3_set_coalesce_per_queue(struct net_device * netdev,struct ethtool_coalesce * cmd,u32 queue)1531 static void hns3_set_coalesce_per_queue(struct net_device *netdev,
1532 struct ethtool_coalesce *cmd,
1533 u32 queue)
1534 {
1535 struct hns3_enet_tqp_vector *tx_vector, *rx_vector;
1536 struct hns3_nic_priv *priv = netdev_priv(netdev);
1537 struct hnae3_handle *h = priv->ae_handle;
1538 int queue_num = h->kinfo.num_tqps;
1539
1540 tx_vector = priv->ring[queue].tqp_vector;
1541 rx_vector = priv->ring[queue_num + queue].tqp_vector;
1542
1543 tx_vector->tx_group.coal.adapt_enable =
1544 cmd->use_adaptive_tx_coalesce;
1545 rx_vector->rx_group.coal.adapt_enable =
1546 cmd->use_adaptive_rx_coalesce;
1547
1548 tx_vector->tx_group.coal.int_gl = cmd->tx_coalesce_usecs;
1549 rx_vector->rx_group.coal.int_gl = cmd->rx_coalesce_usecs;
1550
1551 tx_vector->tx_group.coal.int_ql = cmd->tx_max_coalesced_frames;
1552 rx_vector->rx_group.coal.int_ql = cmd->rx_max_coalesced_frames;
1553
1554 hns3_set_vector_coalesce_tx_gl(tx_vector,
1555 tx_vector->tx_group.coal.int_gl);
1556 hns3_set_vector_coalesce_rx_gl(rx_vector,
1557 rx_vector->rx_group.coal.int_gl);
1558
1559 hns3_set_vector_coalesce_rl(tx_vector, h->kinfo.int_rl_setting);
1560 hns3_set_vector_coalesce_rl(rx_vector, h->kinfo.int_rl_setting);
1561
1562 if (tx_vector->tx_group.coal.ql_enable)
1563 hns3_set_vector_coalesce_tx_ql(tx_vector,
1564 tx_vector->tx_group.coal.int_ql);
1565 if (rx_vector->rx_group.coal.ql_enable)
1566 hns3_set_vector_coalesce_rx_ql(rx_vector,
1567 rx_vector->rx_group.coal.int_ql);
1568 }
1569
hns3_set_coalesce(struct net_device * netdev,struct ethtool_coalesce * cmd,struct kernel_ethtool_coalesce * kernel_coal,struct netlink_ext_ack * extack)1570 static int hns3_set_coalesce(struct net_device *netdev,
1571 struct ethtool_coalesce *cmd,
1572 struct kernel_ethtool_coalesce *kernel_coal,
1573 struct netlink_ext_ack *extack)
1574 {
1575 struct hnae3_handle *h = hns3_get_handle(netdev);
1576 struct hns3_nic_priv *priv = netdev_priv(netdev);
1577 struct hns3_enet_coalesce *tx_coal = &priv->tx_coal;
1578 struct hns3_enet_coalesce *rx_coal = &priv->rx_coal;
1579 u16 queue_num = h->kinfo.num_tqps;
1580 enum dim_cq_period_mode tx_mode;
1581 enum dim_cq_period_mode rx_mode;
1582 int ret;
1583 int i;
1584
1585 if (hns3_nic_resetting(netdev))
1586 return -EBUSY;
1587
1588 ret = hns3_check_coalesce_para(netdev, cmd, kernel_coal);
1589 if (ret)
1590 return ret;
1591
1592 h->kinfo.int_rl_setting =
1593 hns3_rl_round_down(cmd->rx_coalesce_usecs_high);
1594
1595 tx_coal->adapt_enable = cmd->use_adaptive_tx_coalesce;
1596 rx_coal->adapt_enable = cmd->use_adaptive_rx_coalesce;
1597
1598 tx_coal->int_gl = cmd->tx_coalesce_usecs;
1599 rx_coal->int_gl = cmd->rx_coalesce_usecs;
1600
1601 tx_coal->int_ql = cmd->tx_max_coalesced_frames;
1602 rx_coal->int_ql = cmd->rx_max_coalesced_frames;
1603
1604 for (i = 0; i < queue_num; i++)
1605 hns3_set_coalesce_per_queue(netdev, cmd, i);
1606
1607 tx_mode = kernel_coal->use_cqe_mode_tx ?
1608 DIM_CQ_PERIOD_MODE_START_FROM_CQE :
1609 DIM_CQ_PERIOD_MODE_START_FROM_EQE;
1610 rx_mode = kernel_coal->use_cqe_mode_rx ?
1611 DIM_CQ_PERIOD_MODE_START_FROM_CQE :
1612 DIM_CQ_PERIOD_MODE_START_FROM_EQE;
1613 hns3_cq_period_mode_init(priv, tx_mode, rx_mode);
1614
1615 return 0;
1616 }
1617
hns3_get_regs_len(struct net_device * netdev)1618 static int hns3_get_regs_len(struct net_device *netdev)
1619 {
1620 struct hnae3_handle *h = hns3_get_handle(netdev);
1621
1622 if (!h->ae_algo->ops->get_regs_len)
1623 return -EOPNOTSUPP;
1624
1625 return h->ae_algo->ops->get_regs_len(h);
1626 }
1627
hns3_get_regs(struct net_device * netdev,struct ethtool_regs * cmd,void * data)1628 static void hns3_get_regs(struct net_device *netdev,
1629 struct ethtool_regs *cmd, void *data)
1630 {
1631 struct hnae3_handle *h = hns3_get_handle(netdev);
1632
1633 if (!h->ae_algo->ops->get_regs)
1634 return;
1635
1636 h->ae_algo->ops->get_regs(h, &cmd->version, data);
1637 }
1638
hns3_set_phys_id(struct net_device * netdev,enum ethtool_phys_id_state state)1639 static int hns3_set_phys_id(struct net_device *netdev,
1640 enum ethtool_phys_id_state state)
1641 {
1642 struct hnae3_handle *h = hns3_get_handle(netdev);
1643
1644 if (!h->ae_algo->ops->set_led_id)
1645 return -EOPNOTSUPP;
1646
1647 return h->ae_algo->ops->set_led_id(h, state);
1648 }
1649
hns3_get_msglevel(struct net_device * netdev)1650 static u32 hns3_get_msglevel(struct net_device *netdev)
1651 {
1652 struct hnae3_handle *h = hns3_get_handle(netdev);
1653
1654 return h->msg_enable;
1655 }
1656
hns3_set_msglevel(struct net_device * netdev,u32 msg_level)1657 static void hns3_set_msglevel(struct net_device *netdev, u32 msg_level)
1658 {
1659 struct hnae3_handle *h = hns3_get_handle(netdev);
1660
1661 h->msg_enable = msg_level;
1662 }
1663
hns3_get_fec_stats(struct net_device * netdev,struct ethtool_fec_stats * fec_stats,struct ethtool_fec_hist * hist)1664 static void hns3_get_fec_stats(struct net_device *netdev,
1665 struct ethtool_fec_stats *fec_stats,
1666 struct ethtool_fec_hist *hist)
1667 {
1668 struct hnae3_handle *handle = hns3_get_handle(netdev);
1669 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(handle);
1670 const struct hnae3_ae_ops *ops = hns3_get_ops(handle);
1671
1672 if (!hnae3_ae_dev_fec_stats_supported(ae_dev) || !ops->get_fec_stats)
1673 return;
1674
1675 ops->get_fec_stats(handle, fec_stats);
1676 }
1677
1678 /* Translate local fec value into ethtool value. */
loc_to_eth_fec(u8 loc_fec)1679 static unsigned int loc_to_eth_fec(u8 loc_fec)
1680 {
1681 u32 eth_fec = 0;
1682
1683 if (loc_fec & BIT(HNAE3_FEC_AUTO))
1684 eth_fec |= ETHTOOL_FEC_AUTO;
1685 if (loc_fec & BIT(HNAE3_FEC_RS))
1686 eth_fec |= ETHTOOL_FEC_RS;
1687 if (loc_fec & BIT(HNAE3_FEC_LLRS))
1688 eth_fec |= ETHTOOL_FEC_LLRS;
1689 if (loc_fec & BIT(HNAE3_FEC_BASER))
1690 eth_fec |= ETHTOOL_FEC_BASER;
1691 if (loc_fec & BIT(HNAE3_FEC_NONE))
1692 eth_fec |= ETHTOOL_FEC_OFF;
1693
1694 return eth_fec;
1695 }
1696
1697 /* Translate ethtool fec value into local value. */
eth_to_loc_fec(unsigned int eth_fec)1698 static unsigned int eth_to_loc_fec(unsigned int eth_fec)
1699 {
1700 u32 loc_fec = 0;
1701
1702 if (eth_fec & ETHTOOL_FEC_OFF)
1703 loc_fec |= BIT(HNAE3_FEC_NONE);
1704 if (eth_fec & ETHTOOL_FEC_AUTO)
1705 loc_fec |= BIT(HNAE3_FEC_AUTO);
1706 if (eth_fec & ETHTOOL_FEC_RS)
1707 loc_fec |= BIT(HNAE3_FEC_RS);
1708 if (eth_fec & ETHTOOL_FEC_LLRS)
1709 loc_fec |= BIT(HNAE3_FEC_LLRS);
1710 if (eth_fec & ETHTOOL_FEC_BASER)
1711 loc_fec |= BIT(HNAE3_FEC_BASER);
1712
1713 return loc_fec;
1714 }
1715
hns3_get_fecparam(struct net_device * netdev,struct ethtool_fecparam * fec)1716 static int hns3_get_fecparam(struct net_device *netdev,
1717 struct ethtool_fecparam *fec)
1718 {
1719 struct hnae3_handle *handle = hns3_get_handle(netdev);
1720 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(handle);
1721 const struct hnae3_ae_ops *ops = hns3_get_ops(handle);
1722 u8 fec_ability;
1723 u8 fec_mode;
1724
1725 if (!test_bit(HNAE3_DEV_SUPPORT_FEC_B, ae_dev->caps))
1726 return -EOPNOTSUPP;
1727
1728 if (!ops->get_fec)
1729 return -EOPNOTSUPP;
1730
1731 ops->get_fec(handle, &fec_ability, &fec_mode);
1732
1733 fec->fec = loc_to_eth_fec(fec_ability);
1734 fec->active_fec = loc_to_eth_fec(fec_mode);
1735 if (!fec->active_fec)
1736 fec->active_fec = ETHTOOL_FEC_OFF;
1737
1738 return 0;
1739 }
1740
hns3_set_fecparam(struct net_device * netdev,struct ethtool_fecparam * fec)1741 static int hns3_set_fecparam(struct net_device *netdev,
1742 struct ethtool_fecparam *fec)
1743 {
1744 struct hnae3_handle *handle = hns3_get_handle(netdev);
1745 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(handle);
1746 const struct hnae3_ae_ops *ops = hns3_get_ops(handle);
1747 u32 fec_mode;
1748
1749 if (!test_bit(HNAE3_DEV_SUPPORT_FEC_B, ae_dev->caps))
1750 return -EOPNOTSUPP;
1751
1752 if (!ops->set_fec)
1753 return -EOPNOTSUPP;
1754 fec_mode = eth_to_loc_fec(fec->fec);
1755
1756 netif_dbg(handle, drv, netdev, "set fecparam: mode=%u\n", fec_mode);
1757
1758 return ops->set_fec(handle, fec_mode);
1759 }
1760
hns3_get_module_info(struct net_device * netdev,struct ethtool_modinfo * modinfo)1761 static int hns3_get_module_info(struct net_device *netdev,
1762 struct ethtool_modinfo *modinfo)
1763 {
1764 #define HNS3_SFF_8636_V1_3 0x03
1765
1766 struct hnae3_handle *handle = hns3_get_handle(netdev);
1767 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(handle);
1768 const struct hnae3_ae_ops *ops = hns3_get_ops(handle);
1769 struct hns3_sfp_type sfp_type;
1770 int ret;
1771
1772 if (ae_dev->dev_version < HNAE3_DEVICE_VERSION_V2 ||
1773 !ops->get_module_eeprom)
1774 return -EOPNOTSUPP;
1775
1776 memset(&sfp_type, 0, sizeof(sfp_type));
1777 ret = ops->get_module_eeprom(handle, 0, sizeof(sfp_type) / sizeof(u8),
1778 (u8 *)&sfp_type);
1779 if (ret)
1780 return ret;
1781
1782 switch (sfp_type.type) {
1783 case SFF8024_ID_SFP:
1784 modinfo->type = ETH_MODULE_SFF_8472;
1785 modinfo->eeprom_len = ETH_MODULE_SFF_8472_LEN;
1786 break;
1787 case SFF8024_ID_QSFP_8438:
1788 modinfo->type = ETH_MODULE_SFF_8436;
1789 modinfo->eeprom_len = ETH_MODULE_SFF_8436_MAX_LEN;
1790 break;
1791 case SFF8024_ID_QSFP_8436_8636:
1792 if (sfp_type.ext_type < HNS3_SFF_8636_V1_3) {
1793 modinfo->type = ETH_MODULE_SFF_8436;
1794 modinfo->eeprom_len = ETH_MODULE_SFF_8436_MAX_LEN;
1795 } else {
1796 modinfo->type = ETH_MODULE_SFF_8636;
1797 modinfo->eeprom_len = ETH_MODULE_SFF_8636_MAX_LEN;
1798 }
1799 break;
1800 case SFF8024_ID_QSFP28_8636:
1801 modinfo->type = ETH_MODULE_SFF_8636;
1802 modinfo->eeprom_len = ETH_MODULE_SFF_8636_MAX_LEN;
1803 break;
1804 default:
1805 netdev_err(netdev, "Optical module unknown: %#x\n",
1806 sfp_type.type);
1807 return -EINVAL;
1808 }
1809
1810 return 0;
1811 }
1812
hns3_get_module_eeprom(struct net_device * netdev,struct ethtool_eeprom * ee,u8 * data)1813 static int hns3_get_module_eeprom(struct net_device *netdev,
1814 struct ethtool_eeprom *ee, u8 *data)
1815 {
1816 struct hnae3_handle *handle = hns3_get_handle(netdev);
1817 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(handle);
1818 const struct hnae3_ae_ops *ops = hns3_get_ops(handle);
1819
1820 if (ae_dev->dev_version < HNAE3_DEVICE_VERSION_V2 ||
1821 !ops->get_module_eeprom)
1822 return -EOPNOTSUPP;
1823
1824 if (!ee->len)
1825 return -EINVAL;
1826
1827 memset(data, 0, ee->len);
1828
1829 return ops->get_module_eeprom(handle, ee->offset, ee->len, data);
1830 }
1831
hns3_get_priv_flags(struct net_device * netdev)1832 static u32 hns3_get_priv_flags(struct net_device *netdev)
1833 {
1834 struct hnae3_handle *handle = hns3_get_handle(netdev);
1835
1836 return handle->priv_flags;
1837 }
1838
hns3_check_priv_flags(struct hnae3_handle * h,u32 changed)1839 static int hns3_check_priv_flags(struct hnae3_handle *h, u32 changed)
1840 {
1841 u32 i;
1842
1843 for (i = 0; i < HNAE3_PFLAG_MAX; i++)
1844 if ((changed & BIT(i)) && !test_bit(i, &h->supported_pflags)) {
1845 netdev_err(h->netdev, "%s is unsupported\n",
1846 hns3_priv_flags[i].name);
1847 return -EOPNOTSUPP;
1848 }
1849
1850 return 0;
1851 }
1852
hns3_set_priv_flags(struct net_device * netdev,u32 pflags)1853 static int hns3_set_priv_flags(struct net_device *netdev, u32 pflags)
1854 {
1855 struct hnae3_handle *handle = hns3_get_handle(netdev);
1856 u32 changed = pflags ^ handle->priv_flags;
1857 int ret;
1858 u32 i;
1859
1860 ret = hns3_check_priv_flags(handle, changed);
1861 if (ret)
1862 return ret;
1863
1864 for (i = 0; i < HNAE3_PFLAG_MAX; i++) {
1865 if (changed & BIT(i)) {
1866 bool enable = !(handle->priv_flags & BIT(i));
1867
1868 if (enable)
1869 handle->priv_flags |= BIT(i);
1870 else
1871 handle->priv_flags &= ~BIT(i);
1872 hns3_priv_flags[i].handler(netdev, enable);
1873 }
1874 }
1875
1876 return 0;
1877 }
1878
hns3_get_tunable(struct net_device * netdev,const struct ethtool_tunable * tuna,void * data)1879 static int hns3_get_tunable(struct net_device *netdev,
1880 const struct ethtool_tunable *tuna,
1881 void *data)
1882 {
1883 struct hns3_nic_priv *priv = netdev_priv(netdev);
1884 struct hnae3_handle *h = priv->ae_handle;
1885 int ret = 0;
1886
1887 switch (tuna->id) {
1888 case ETHTOOL_TX_COPYBREAK:
1889 /* all the tx rings have the same tx_copybreak */
1890 *(u32 *)data = priv->tx_copybreak;
1891 break;
1892 case ETHTOOL_RX_COPYBREAK:
1893 *(u32 *)data = priv->rx_copybreak;
1894 break;
1895 case ETHTOOL_TX_COPYBREAK_BUF_SIZE:
1896 *(u32 *)data = h->kinfo.tx_spare_buf_size;
1897 break;
1898 case ETHTOOL_PFC_PREVENTION_TOUT:
1899 if (!h->ae_algo->ops->get_pfc_prevention_tout)
1900 return -EOPNOTSUPP;
1901
1902 ret = h->ae_algo->ops->get_pfc_prevention_tout(h, (u16 *)data);
1903 break;
1904 default:
1905 ret = -EOPNOTSUPP;
1906 break;
1907 }
1908
1909 return ret;
1910 }
1911
hns3_set_tx_spare_buf_size(struct net_device * netdev,u32 data)1912 static int hns3_set_tx_spare_buf_size(struct net_device *netdev,
1913 u32 data)
1914 {
1915 struct hns3_nic_priv *priv = netdev_priv(netdev);
1916 struct hnae3_handle *h = priv->ae_handle;
1917 int ret;
1918
1919 h->kinfo.tx_spare_buf_size = data;
1920
1921 ret = hns3_reset_notify(h, HNAE3_DOWN_CLIENT);
1922 if (ret)
1923 return ret;
1924
1925 ret = hns3_reset_notify(h, HNAE3_UNINIT_CLIENT);
1926 if (ret)
1927 return ret;
1928
1929 ret = hns3_reset_notify(h, HNAE3_INIT_CLIENT);
1930 if (ret)
1931 return ret;
1932
1933 ret = hns3_reset_notify(h, HNAE3_UP_CLIENT);
1934 if (ret)
1935 hns3_reset_notify(h, HNAE3_UNINIT_CLIENT);
1936
1937 return ret;
1938 }
1939
hns3_check_tx_copybreak(struct net_device * netdev,u32 copybreak)1940 static int hns3_check_tx_copybreak(struct net_device *netdev, u32 copybreak)
1941 {
1942 struct hns3_nic_priv *priv = netdev_priv(netdev);
1943
1944 if (copybreak < priv->min_tx_copybreak) {
1945 netdev_err(netdev, "tx copybreak %u should be no less than %u!\n",
1946 copybreak, priv->min_tx_copybreak);
1947 return -EINVAL;
1948 }
1949 return 0;
1950 }
1951
hns3_check_tx_spare_buf_size(struct net_device * netdev,u32 buf_size)1952 static int hns3_check_tx_spare_buf_size(struct net_device *netdev, u32 buf_size)
1953 {
1954 struct hns3_nic_priv *priv = netdev_priv(netdev);
1955
1956 if (buf_size < priv->min_tx_spare_buf_size) {
1957 netdev_err(netdev,
1958 "tx spare buf size %u should be no less than %u!\n",
1959 buf_size, priv->min_tx_spare_buf_size);
1960 return -EINVAL;
1961 }
1962 return 0;
1963 }
1964
hns3_set_tunable(struct net_device * netdev,const struct ethtool_tunable * tuna,const void * data)1965 static int hns3_set_tunable(struct net_device *netdev,
1966 const struct ethtool_tunable *tuna,
1967 const void *data)
1968 {
1969 struct hns3_nic_priv *priv = netdev_priv(netdev);
1970 u32 old_tx_spare_buf_size, new_tx_spare_buf_size;
1971 struct hnae3_handle *h = priv->ae_handle;
1972 int i, ret = 0;
1973
1974 if (hns3_nic_resetting(netdev) || !priv->ring) {
1975 netdev_err(netdev, "failed to set tunable value, dev resetting!\n");
1976 return -EBUSY;
1977 }
1978
1979 switch (tuna->id) {
1980 case ETHTOOL_TX_COPYBREAK:
1981 ret = hns3_check_tx_copybreak(netdev, *(u32 *)data);
1982 if (ret)
1983 return ret;
1984
1985 priv->tx_copybreak = *(u32 *)data;
1986
1987 for (i = 0; i < h->kinfo.num_tqps; i++)
1988 priv->ring[i].tx_copybreak = priv->tx_copybreak;
1989
1990 break;
1991 case ETHTOOL_RX_COPYBREAK:
1992 priv->rx_copybreak = *(u32 *)data;
1993
1994 for (i = h->kinfo.num_tqps; i < h->kinfo.num_tqps * 2; i++)
1995 priv->ring[i].rx_copybreak = priv->rx_copybreak;
1996
1997 break;
1998 case ETHTOOL_TX_COPYBREAK_BUF_SIZE:
1999 ret = hns3_check_tx_spare_buf_size(netdev, *(u32 *)data);
2000 if (ret)
2001 return ret;
2002
2003 old_tx_spare_buf_size = h->kinfo.tx_spare_buf_size;
2004 new_tx_spare_buf_size = *(u32 *)data;
2005 netdev_info(netdev, "request to set tx spare buf size from %u to %u\n",
2006 old_tx_spare_buf_size, new_tx_spare_buf_size);
2007 ret = hns3_set_tx_spare_buf_size(netdev, new_tx_spare_buf_size);
2008 if (ret ||
2009 (!priv->ring->tx_spare && new_tx_spare_buf_size != 0)) {
2010 int ret1;
2011
2012 netdev_warn(netdev, "change tx spare buf size fail, revert to old value\n");
2013 ret1 = hns3_set_tx_spare_buf_size(netdev,
2014 old_tx_spare_buf_size);
2015 if (ret1) {
2016 netdev_err(netdev, "revert to old tx spare buf size fail\n");
2017 return ret1;
2018 }
2019
2020 return ret;
2021 }
2022
2023 if (!priv->ring->tx_spare)
2024 netdev_info(netdev, "the active tx spare buf size is 0, disable tx spare buffer\n");
2025 else
2026 netdev_info(netdev, "the active tx spare buf size is %u, due to page order\n",
2027 priv->ring->tx_spare->len);
2028
2029 break;
2030 case ETHTOOL_PFC_PREVENTION_TOUT:
2031 if (!h->ae_algo->ops->set_pfc_prevention_tout)
2032 return -EOPNOTSUPP;
2033
2034 ret = h->ae_algo->ops->set_pfc_prevention_tout(h, *(u16 *)data);
2035 break;
2036 default:
2037 ret = -EOPNOTSUPP;
2038 break;
2039 }
2040
2041 return ret;
2042 }
2043
2044 #define HNS3_ETHTOOL_COALESCE (ETHTOOL_COALESCE_USECS | \
2045 ETHTOOL_COALESCE_USE_ADAPTIVE | \
2046 ETHTOOL_COALESCE_RX_USECS_HIGH | \
2047 ETHTOOL_COALESCE_TX_USECS_HIGH | \
2048 ETHTOOL_COALESCE_MAX_FRAMES | \
2049 ETHTOOL_COALESCE_USE_CQE)
2050
2051 #define HNS3_ETHTOOL_RING (ETHTOOL_RING_USE_RX_BUF_LEN | \
2052 ETHTOOL_RING_USE_TX_PUSH)
2053
hns3_get_ts_info(struct net_device * netdev,struct kernel_ethtool_ts_info * info)2054 static int hns3_get_ts_info(struct net_device *netdev,
2055 struct kernel_ethtool_ts_info *info)
2056 {
2057 struct hnae3_handle *handle = hns3_get_handle(netdev);
2058
2059 if (handle->ae_algo->ops->get_ts_info)
2060 return handle->ae_algo->ops->get_ts_info(handle, info);
2061
2062 return ethtool_op_get_ts_info(netdev, info);
2063 }
2064
2065 static const struct hns3_ethtool_link_ext_state_mapping
2066 hns3_link_ext_state_map[] = {
2067 {1, ETHTOOL_LINK_EXT_STATE_AUTONEG,
2068 ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_HCD},
2069 {2, ETHTOOL_LINK_EXT_STATE_AUTONEG,
2070 ETHTOOL_LINK_EXT_SUBSTATE_AN_ACK_NOT_RECEIVED},
2071
2072 {256, ETHTOOL_LINK_EXT_STATE_LINK_TRAINING_FAILURE,
2073 ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_INHIBIT_TIMEOUT},
2074 {257, ETHTOOL_LINK_EXT_STATE_LINK_TRAINING_FAILURE,
2075 ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_PARTNER_DID_NOT_SET_RECEIVER_READY},
2076 {512, ETHTOOL_LINK_EXT_STATE_LINK_TRAINING_FAILURE,
2077 ETHTOOL_LINK_EXT_SUBSTATE_LT_REMOTE_FAULT},
2078
2079 {513, ETHTOOL_LINK_EXT_STATE_LINK_LOGICAL_MISMATCH,
2080 ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_ACQUIRE_BLOCK_LOCK},
2081 {514, ETHTOOL_LINK_EXT_STATE_LINK_LOGICAL_MISMATCH,
2082 ETHTOOL_LINK_EXT_SUBSTATE_LLM_FC_FEC_IS_NOT_LOCKED},
2083 {515, ETHTOOL_LINK_EXT_STATE_LINK_LOGICAL_MISMATCH,
2084 ETHTOOL_LINK_EXT_SUBSTATE_LLM_RS_FEC_IS_NOT_LOCKED},
2085
2086 {768, ETHTOOL_LINK_EXT_STATE_BAD_SIGNAL_INTEGRITY,
2087 ETHTOOL_LINK_EXT_SUBSTATE_BSI_LARGE_NUMBER_OF_PHYSICAL_ERRORS},
2088 {769, ETHTOOL_LINK_EXT_STATE_BAD_SIGNAL_INTEGRITY,
2089 ETHTOOL_LINK_EXT_SUBSTATE_BSI_SERDES_REFERENCE_CLOCK_LOST},
2090 {770, ETHTOOL_LINK_EXT_STATE_BAD_SIGNAL_INTEGRITY,
2091 ETHTOOL_LINK_EXT_SUBSTATE_BSI_SERDES_ALOS},
2092
2093 {1024, ETHTOOL_LINK_EXT_STATE_NO_CABLE, 0},
2094 {1025, ETHTOOL_LINK_EXT_STATE_CABLE_ISSUE,
2095 ETHTOOL_LINK_EXT_SUBSTATE_CI_UNSUPPORTED_CABLE},
2096
2097 {1026, ETHTOOL_LINK_EXT_STATE_EEPROM_ISSUE, 0},
2098 };
2099
hns3_get_link_ext_state(struct net_device * netdev,struct ethtool_link_ext_state_info * info)2100 static int hns3_get_link_ext_state(struct net_device *netdev,
2101 struct ethtool_link_ext_state_info *info)
2102 {
2103 const struct hns3_ethtool_link_ext_state_mapping *map;
2104 struct hnae3_handle *h = hns3_get_handle(netdev);
2105 u32 status_code, i;
2106 int ret;
2107
2108 if (netif_carrier_ok(netdev))
2109 return -ENODATA;
2110
2111 if (!h->ae_algo->ops->get_link_diagnosis_info)
2112 return -EOPNOTSUPP;
2113
2114 ret = h->ae_algo->ops->get_link_diagnosis_info(h, &status_code);
2115 if (ret)
2116 return ret;
2117
2118 for (i = 0; i < ARRAY_SIZE(hns3_link_ext_state_map); i++) {
2119 map = &hns3_link_ext_state_map[i];
2120 if (map->status_code == status_code) {
2121 info->link_ext_state = map->link_ext_state;
2122 info->__link_ext_substate = map->link_ext_substate;
2123 return 0;
2124 }
2125 }
2126
2127 return -ENODATA;
2128 }
2129
hns3_get_wol(struct net_device * netdev,struct ethtool_wolinfo * wol)2130 static void hns3_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2131 {
2132 struct hnae3_handle *handle = hns3_get_handle(netdev);
2133 const struct hnae3_ae_ops *ops = hns3_get_ops(handle);
2134 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(handle);
2135
2136 if (!hnae3_ae_dev_wol_supported(ae_dev))
2137 return;
2138
2139 ops->get_wol(handle, wol);
2140 }
2141
hns3_set_wol(struct net_device * netdev,struct ethtool_wolinfo * wol)2142 static int hns3_set_wol(struct net_device *netdev,
2143 struct ethtool_wolinfo *wol)
2144 {
2145 struct hnae3_handle *handle = hns3_get_handle(netdev);
2146 const struct hnae3_ae_ops *ops = hns3_get_ops(handle);
2147 struct hnae3_ae_dev *ae_dev = hns3_get_ae_dev(handle);
2148
2149 if (!hnae3_ae_dev_wol_supported(ae_dev))
2150 return -EOPNOTSUPP;
2151
2152 return ops->set_wol(handle, wol);
2153 }
2154
2155 static const struct ethtool_ops hns3vf_ethtool_ops = {
2156 .supported_coalesce_params = HNS3_ETHTOOL_COALESCE,
2157 .supported_ring_params = HNS3_ETHTOOL_RING,
2158 .get_drvinfo = hns3_get_drvinfo,
2159 .get_ringparam = hns3_get_ringparam,
2160 .set_ringparam = hns3_set_ringparam,
2161 .get_strings = hns3_get_strings,
2162 .get_ethtool_stats = hns3_get_stats,
2163 .get_sset_count = hns3_get_sset_count,
2164 .get_rxnfc = hns3_get_rxnfc,
2165 .set_rxnfc = hns3_set_rxnfc,
2166 .get_rx_ring_count = hns3_get_rx_ring_count,
2167 .get_rxfh_key_size = hns3_get_rss_key_size,
2168 .get_rxfh_indir_size = hns3_get_rss_indir_size,
2169 .get_rxfh = hns3_get_rss,
2170 .set_rxfh = hns3_set_rss,
2171 .get_rxfh_fields = hns3_get_rxfh_fields,
2172 .set_rxfh_fields = hns3_set_rxfh_fields,
2173 .get_link_ksettings = hns3_get_link_ksettings,
2174 .get_channels = hns3_get_channels,
2175 .set_channels = hns3_set_channels,
2176 .get_coalesce = hns3_get_coalesce,
2177 .set_coalesce = hns3_set_coalesce,
2178 .get_regs_len = hns3_get_regs_len,
2179 .get_regs = hns3_get_regs,
2180 .get_link = hns3_get_link,
2181 .get_msglevel = hns3_get_msglevel,
2182 .set_msglevel = hns3_set_msglevel,
2183 .get_priv_flags = hns3_get_priv_flags,
2184 .set_priv_flags = hns3_set_priv_flags,
2185 .get_tunable = hns3_get_tunable,
2186 .set_tunable = hns3_set_tunable,
2187 .reset = hns3_set_reset,
2188 };
2189
2190 static const struct ethtool_ops hns3_ethtool_ops = {
2191 .supported_coalesce_params = HNS3_ETHTOOL_COALESCE,
2192 .supported_ring_params = HNS3_ETHTOOL_RING,
2193 .cap_link_lanes_supported = true,
2194 .self_test = hns3_self_test,
2195 .get_drvinfo = hns3_get_drvinfo,
2196 .get_link = hns3_get_link,
2197 .get_ringparam = hns3_get_ringparam,
2198 .set_ringparam = hns3_set_ringparam,
2199 .get_pauseparam = hns3_get_pauseparam,
2200 .set_pauseparam = hns3_set_pauseparam,
2201 .get_strings = hns3_get_strings,
2202 .get_ethtool_stats = hns3_get_stats,
2203 .get_sset_count = hns3_get_sset_count,
2204 .get_rxnfc = hns3_get_rxnfc,
2205 .set_rxnfc = hns3_set_rxnfc,
2206 .get_rx_ring_count = hns3_get_rx_ring_count,
2207 .get_rxfh_key_size = hns3_get_rss_key_size,
2208 .get_rxfh_indir_size = hns3_get_rss_indir_size,
2209 .get_rxfh = hns3_get_rss,
2210 .set_rxfh = hns3_set_rss,
2211 .get_rxfh_fields = hns3_get_rxfh_fields,
2212 .set_rxfh_fields = hns3_set_rxfh_fields,
2213 .get_link_ksettings = hns3_get_link_ksettings,
2214 .set_link_ksettings = hns3_set_link_ksettings,
2215 .nway_reset = hns3_nway_reset,
2216 .get_channels = hns3_get_channels,
2217 .set_channels = hns3_set_channels,
2218 .get_coalesce = hns3_get_coalesce,
2219 .set_coalesce = hns3_set_coalesce,
2220 .get_regs_len = hns3_get_regs_len,
2221 .get_regs = hns3_get_regs,
2222 .set_phys_id = hns3_set_phys_id,
2223 .get_msglevel = hns3_get_msglevel,
2224 .set_msglevel = hns3_set_msglevel,
2225 .get_fecparam = hns3_get_fecparam,
2226 .set_fecparam = hns3_set_fecparam,
2227 .get_fec_stats = hns3_get_fec_stats,
2228 .get_module_info = hns3_get_module_info,
2229 .get_module_eeprom = hns3_get_module_eeprom,
2230 .get_priv_flags = hns3_get_priv_flags,
2231 .set_priv_flags = hns3_set_priv_flags,
2232 .get_ts_info = hns3_get_ts_info,
2233 .get_tunable = hns3_get_tunable,
2234 .set_tunable = hns3_set_tunable,
2235 .reset = hns3_set_reset,
2236 .get_link_ext_state = hns3_get_link_ext_state,
2237 .get_wol = hns3_get_wol,
2238 .set_wol = hns3_set_wol,
2239 };
2240
hns3_ethtool_set_ops(struct net_device * netdev)2241 void hns3_ethtool_set_ops(struct net_device *netdev)
2242 {
2243 struct hnae3_handle *h = hns3_get_handle(netdev);
2244
2245 if (h->flags & HNAE3_SUPPORT_VF)
2246 netdev->ethtool_ops = &hns3vf_ethtool_ops;
2247 else
2248 netdev->ethtool_ops = &hns3_ethtool_ops;
2249 }
2250