blob: 34879c45830923a1bda43129fd08cc03d01935e6 [file] [log] [blame]
Salil76ad4f02017-08-02 16:59:45 +01001/*
2 * Copyright (c) 2016~2017 Hisilicon Limited.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 */
9
10#include <linux/dma-mapping.h>
11#include <linux/etherdevice.h>
12#include <linux/interrupt.h>
13#include <linux/if_vlan.h>
14#include <linux/ip.h>
15#include <linux/ipv6.h>
16#include <linux/module.h>
17#include <linux/pci.h>
18#include <linux/skbuff.h>
19#include <linux/sctp.h>
20#include <linux/vermagic.h>
21#include <net/gre.h>
Yunsheng Lin30d240d2017-10-17 14:51:30 +080022#include <net/pkt_cls.h>
Salil76ad4f02017-08-02 16:59:45 +010023#include <net/vxlan.h>
24
25#include "hnae3.h"
26#include "hns3_enet.h"
27
Yunsheng Lin1db9b1b2017-10-09 15:44:01 +080028static const char hns3_driver_name[] = "hns3";
Salil76ad4f02017-08-02 16:59:45 +010029const char hns3_driver_version[] = VERMAGIC_STRING;
30static const char hns3_driver_string[] =
31 "Hisilicon Ethernet Network Driver for Hip08 Family";
32static const char hns3_copyright[] = "Copyright (c) 2017 Huawei Corporation.";
33static struct hnae3_client client;
34
35/* hns3_pci_tbl - PCI Device ID Table
36 *
37 * Last entry must be all 0s
38 *
39 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
40 * Class, Class Mask, private data (not used) }
41 */
42static const struct pci_device_id hns3_pci_tbl[] = {
43 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_GE), 0},
44 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_25GE), 0},
Yunsheng Line92a0842017-09-20 18:52:50 +080045 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_25GE_RDMA),
Yunsheng Lin2daf4a62017-09-20 18:52:51 +080046 HNAE3_DEV_SUPPORT_ROCE_DCB_BITS},
Yunsheng Line92a0842017-09-20 18:52:50 +080047 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_25GE_RDMA_MACSEC),
Yunsheng Lin2daf4a62017-09-20 18:52:51 +080048 HNAE3_DEV_SUPPORT_ROCE_DCB_BITS},
Yunsheng Line92a0842017-09-20 18:52:50 +080049 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_50GE_RDMA),
Yunsheng Lin2daf4a62017-09-20 18:52:51 +080050 HNAE3_DEV_SUPPORT_ROCE_DCB_BITS},
Yunsheng Line92a0842017-09-20 18:52:50 +080051 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_50GE_RDMA_MACSEC),
Yunsheng Lin2daf4a62017-09-20 18:52:51 +080052 HNAE3_DEV_SUPPORT_ROCE_DCB_BITS},
Yunsheng Line92a0842017-09-20 18:52:50 +080053 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_100G_RDMA_MACSEC),
Yunsheng Lin2daf4a62017-09-20 18:52:51 +080054 HNAE3_DEV_SUPPORT_ROCE_DCB_BITS},
Salil Mehta424eb832017-12-14 18:03:06 +000055 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_100G_VF), 0},
56 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_100G_RDMA_DCB_PFC_VF), 0},
Salil76ad4f02017-08-02 16:59:45 +010057 /* required last entry */
58 {0, }
59};
60MODULE_DEVICE_TABLE(pci, hns3_pci_tbl);
61
62static irqreturn_t hns3_irq_handle(int irq, void *dev)
63{
64 struct hns3_enet_tqp_vector *tqp_vector = dev;
65
66 napi_schedule(&tqp_vector->napi);
67
68 return IRQ_HANDLED;
69}
70
71static void hns3_nic_uninit_irq(struct hns3_nic_priv *priv)
72{
73 struct hns3_enet_tqp_vector *tqp_vectors;
74 unsigned int i;
75
76 for (i = 0; i < priv->vector_num; i++) {
77 tqp_vectors = &priv->tqp_vector[i];
78
79 if (tqp_vectors->irq_init_flag != HNS3_VECTOR_INITED)
80 continue;
81
82 /* release the irq resource */
83 free_irq(tqp_vectors->vector_irq, tqp_vectors);
84 tqp_vectors->irq_init_flag = HNS3_VECTOR_NOT_INITED;
85 }
86}
87
88static int hns3_nic_init_irq(struct hns3_nic_priv *priv)
89{
90 struct hns3_enet_tqp_vector *tqp_vectors;
91 int txrx_int_idx = 0;
92 int rx_int_idx = 0;
93 int tx_int_idx = 0;
94 unsigned int i;
95 int ret;
96
97 for (i = 0; i < priv->vector_num; i++) {
98 tqp_vectors = &priv->tqp_vector[i];
99
100 if (tqp_vectors->irq_init_flag == HNS3_VECTOR_INITED)
101 continue;
102
103 if (tqp_vectors->tx_group.ring && tqp_vectors->rx_group.ring) {
104 snprintf(tqp_vectors->name, HNAE3_INT_NAME_LEN - 1,
105 "%s-%s-%d", priv->netdev->name, "TxRx",
106 txrx_int_idx++);
107 txrx_int_idx++;
108 } else if (tqp_vectors->rx_group.ring) {
109 snprintf(tqp_vectors->name, HNAE3_INT_NAME_LEN - 1,
110 "%s-%s-%d", priv->netdev->name, "Rx",
111 rx_int_idx++);
112 } else if (tqp_vectors->tx_group.ring) {
113 snprintf(tqp_vectors->name, HNAE3_INT_NAME_LEN - 1,
114 "%s-%s-%d", priv->netdev->name, "Tx",
115 tx_int_idx++);
116 } else {
117 /* Skip this unused q_vector */
118 continue;
119 }
120
121 tqp_vectors->name[HNAE3_INT_NAME_LEN - 1] = '\0';
122
123 ret = request_irq(tqp_vectors->vector_irq, hns3_irq_handle, 0,
124 tqp_vectors->name,
125 tqp_vectors);
126 if (ret) {
127 netdev_err(priv->netdev, "request irq(%d) fail\n",
128 tqp_vectors->vector_irq);
129 return ret;
130 }
131
132 tqp_vectors->irq_init_flag = HNS3_VECTOR_INITED;
133 }
134
135 return 0;
136}
137
138static void hns3_mask_vector_irq(struct hns3_enet_tqp_vector *tqp_vector,
139 u32 mask_en)
140{
141 writel(mask_en, tqp_vector->mask_addr);
142}
143
144static void hns3_vector_enable(struct hns3_enet_tqp_vector *tqp_vector)
145{
146 napi_enable(&tqp_vector->napi);
147
148 /* enable vector */
149 hns3_mask_vector_irq(tqp_vector, 1);
150}
151
152static void hns3_vector_disable(struct hns3_enet_tqp_vector *tqp_vector)
153{
154 /* disable vector */
155 hns3_mask_vector_irq(tqp_vector, 0);
156
157 disable_irq(tqp_vector->vector_irq);
158 napi_disable(&tqp_vector->napi);
159}
160
Fuyun Liang434776a2018-01-12 16:23:10 +0800161void hns3_set_vector_coalesce_rl(struct hns3_enet_tqp_vector *tqp_vector,
162 u32 rl_value)
Salil76ad4f02017-08-02 16:59:45 +0100163{
Fuyun Liang434776a2018-01-12 16:23:10 +0800164 u32 rl_reg = hns3_rl_usec_to_reg(rl_value);
165
Salil76ad4f02017-08-02 16:59:45 +0100166 /* this defines the configuration for RL (Interrupt Rate Limiter).
167 * Rl defines rate of interrupts i.e. number of interrupts-per-second
168 * GL and RL(Rate Limiter) are 2 ways to acheive interrupt coalescing
169 */
Fuyun Liang434776a2018-01-12 16:23:10 +0800170
171 if (rl_reg > 0 && !tqp_vector->tx_group.gl_adapt_enable &&
172 !tqp_vector->rx_group.gl_adapt_enable)
173 /* According to the hardware, the range of rl_reg is
174 * 0-59 and the unit is 4.
175 */
176 rl_reg |= HNS3_INT_RL_ENABLE_MASK;
177
178 writel(rl_reg, tqp_vector->mask_addr + HNS3_VECTOR_RL_OFFSET);
179}
180
181void hns3_set_vector_coalesce_rx_gl(struct hns3_enet_tqp_vector *tqp_vector,
182 u32 gl_value)
183{
184 u32 rx_gl_reg = hns3_gl_usec_to_reg(gl_value);
185
186 writel(rx_gl_reg, tqp_vector->mask_addr + HNS3_VECTOR_GL0_OFFSET);
187}
188
189void hns3_set_vector_coalesce_tx_gl(struct hns3_enet_tqp_vector *tqp_vector,
190 u32 gl_value)
191{
192 u32 tx_gl_reg = hns3_gl_usec_to_reg(gl_value);
193
194 writel(tx_gl_reg, tqp_vector->mask_addr + HNS3_VECTOR_GL1_OFFSET);
Salil76ad4f02017-08-02 16:59:45 +0100195}
196
Fuyun Liang5fd47892018-01-12 16:23:11 +0800197static void hns3_vector_gl_rl_init(struct hns3_enet_tqp_vector *tqp_vector,
198 struct hns3_nic_priv *priv)
Salil76ad4f02017-08-02 16:59:45 +0100199{
Fuyun Liang5fd47892018-01-12 16:23:11 +0800200 struct hnae3_handle *h = priv->ae_handle;
201
Salil76ad4f02017-08-02 16:59:45 +0100202 /* initialize the configuration for interrupt coalescing.
203 * 1. GL (Interrupt Gap Limiter)
204 * 2. RL (Interrupt Rate Limiter)
205 */
206
Fuyun Liang5fd47892018-01-12 16:23:11 +0800207 /* Default: enable interrupt coalescing self-adaptive and GL */
208 tqp_vector->tx_group.gl_adapt_enable = 1;
209 tqp_vector->rx_group.gl_adapt_enable = 1;
210
Salil76ad4f02017-08-02 16:59:45 +0100211 tqp_vector->tx_group.int_gl = HNS3_INT_GL_50K;
Fuyun Liang5fd47892018-01-12 16:23:11 +0800212 tqp_vector->rx_group.int_gl = HNS3_INT_GL_50K;
213
214 hns3_set_vector_coalesce_tx_gl(tqp_vector,
215 tqp_vector->tx_group.int_gl);
216 hns3_set_vector_coalesce_rx_gl(tqp_vector,
217 tqp_vector->rx_group.int_gl);
218
219 /* Default: disable RL */
220 h->kinfo.int_rl_setting = 0;
221 hns3_set_vector_coalesce_rl(tqp_vector, h->kinfo.int_rl_setting);
222
Salil76ad4f02017-08-02 16:59:45 +0100223 tqp_vector->rx_group.flow_level = HNS3_FLOW_LOW;
224 tqp_vector->tx_group.flow_level = HNS3_FLOW_LOW;
225}
226
Yunsheng Lin9df8f792017-09-27 09:45:32 +0800227static int hns3_nic_set_real_num_queue(struct net_device *netdev)
228{
Yunsheng Lin9780cb92017-10-09 15:43:56 +0800229 struct hnae3_handle *h = hns3_get_handle(netdev);
Yunsheng Lin9df8f792017-09-27 09:45:32 +0800230 struct hnae3_knic_private_info *kinfo = &h->kinfo;
231 unsigned int queue_size = kinfo->rss_size * kinfo->num_tc;
232 int ret;
233
234 ret = netif_set_real_num_tx_queues(netdev, queue_size);
235 if (ret) {
236 netdev_err(netdev,
237 "netif_set_real_num_tx_queues fail, ret=%d!\n",
238 ret);
239 return ret;
240 }
241
242 ret = netif_set_real_num_rx_queues(netdev, queue_size);
243 if (ret) {
244 netdev_err(netdev,
245 "netif_set_real_num_rx_queues fail, ret=%d!\n", ret);
246 return ret;
247 }
248
249 return 0;
250}
251
Salil76ad4f02017-08-02 16:59:45 +0100252static int hns3_nic_net_up(struct net_device *netdev)
253{
254 struct hns3_nic_priv *priv = netdev_priv(netdev);
255 struct hnae3_handle *h = priv->ae_handle;
256 int i, j;
257 int ret;
258
259 /* get irq resource for all vectors */
260 ret = hns3_nic_init_irq(priv);
261 if (ret) {
262 netdev_err(netdev, "hns init irq failed! ret=%d\n", ret);
263 return ret;
264 }
265
266 /* enable the vectors */
267 for (i = 0; i < priv->vector_num; i++)
268 hns3_vector_enable(&priv->tqp_vector[i]);
269
270 /* start the ae_dev */
271 ret = h->ae_algo->ops->start ? h->ae_algo->ops->start(h) : 0;
272 if (ret)
273 goto out_start_err;
274
Jian Shenb875cc32018-01-05 18:18:11 +0800275 clear_bit(HNS3_NIC_STATE_DOWN, &priv->state);
276
Salil76ad4f02017-08-02 16:59:45 +0100277 return 0;
278
279out_start_err:
280 for (j = i - 1; j >= 0; j--)
281 hns3_vector_disable(&priv->tqp_vector[j]);
282
283 hns3_nic_uninit_irq(priv);
284
285 return ret;
286}
287
288static int hns3_nic_net_open(struct net_device *netdev)
289{
Lipengf8fa222c2017-11-02 20:45:20 +0800290 struct hns3_nic_priv *priv = netdev_priv(netdev);
Salil76ad4f02017-08-02 16:59:45 +0100291 int ret;
292
293 netif_carrier_off(netdev);
294
Yunsheng Lin9df8f792017-09-27 09:45:32 +0800295 ret = hns3_nic_set_real_num_queue(netdev);
296 if (ret)
Salil76ad4f02017-08-02 16:59:45 +0100297 return ret;
Salil76ad4f02017-08-02 16:59:45 +0100298
299 ret = hns3_nic_net_up(netdev);
300 if (ret) {
301 netdev_err(netdev,
302 "hns net up fail, ret=%d!\n", ret);
303 return ret;
304 }
305
Lipengf8fa222c2017-11-02 20:45:20 +0800306 priv->last_reset_time = jiffies;
Salil76ad4f02017-08-02 16:59:45 +0100307 return 0;
308}
309
310static void hns3_nic_net_down(struct net_device *netdev)
311{
312 struct hns3_nic_priv *priv = netdev_priv(netdev);
313 const struct hnae3_ae_ops *ops;
314 int i;
315
Jian Shenb875cc32018-01-05 18:18:11 +0800316 if (test_and_set_bit(HNS3_NIC_STATE_DOWN, &priv->state))
317 return;
318
Salil76ad4f02017-08-02 16:59:45 +0100319 /* stop ae_dev */
320 ops = priv->ae_handle->ae_algo->ops;
321 if (ops->stop)
322 ops->stop(priv->ae_handle);
323
324 /* disable vectors */
325 for (i = 0; i < priv->vector_num; i++)
326 hns3_vector_disable(&priv->tqp_vector[i]);
327
328 /* free irq resources */
329 hns3_nic_uninit_irq(priv);
330}
331
332static int hns3_nic_net_stop(struct net_device *netdev)
333{
334 netif_tx_stop_all_queues(netdev);
335 netif_carrier_off(netdev);
336
337 hns3_nic_net_down(netdev);
338
339 return 0;
340}
341
Salil76ad4f02017-08-02 16:59:45 +0100342static int hns3_nic_uc_sync(struct net_device *netdev,
343 const unsigned char *addr)
344{
Yunsheng Lin9780cb92017-10-09 15:43:56 +0800345 struct hnae3_handle *h = hns3_get_handle(netdev);
Salil76ad4f02017-08-02 16:59:45 +0100346
347 if (h->ae_algo->ops->add_uc_addr)
348 return h->ae_algo->ops->add_uc_addr(h, addr);
349
350 return 0;
351}
352
353static int hns3_nic_uc_unsync(struct net_device *netdev,
354 const unsigned char *addr)
355{
Yunsheng Lin9780cb92017-10-09 15:43:56 +0800356 struct hnae3_handle *h = hns3_get_handle(netdev);
Salil76ad4f02017-08-02 16:59:45 +0100357
358 if (h->ae_algo->ops->rm_uc_addr)
359 return h->ae_algo->ops->rm_uc_addr(h, addr);
360
361 return 0;
362}
363
364static int hns3_nic_mc_sync(struct net_device *netdev,
365 const unsigned char *addr)
366{
Yunsheng Lin9780cb92017-10-09 15:43:56 +0800367 struct hnae3_handle *h = hns3_get_handle(netdev);
Salil76ad4f02017-08-02 16:59:45 +0100368
Dan Carpenter720a8472017-08-10 12:56:14 +0300369 if (h->ae_algo->ops->add_mc_addr)
Salil76ad4f02017-08-02 16:59:45 +0100370 return h->ae_algo->ops->add_mc_addr(h, addr);
371
372 return 0;
373}
374
375static int hns3_nic_mc_unsync(struct net_device *netdev,
376 const unsigned char *addr)
377{
Yunsheng Lin9780cb92017-10-09 15:43:56 +0800378 struct hnae3_handle *h = hns3_get_handle(netdev);
Salil76ad4f02017-08-02 16:59:45 +0100379
Dan Carpenter720a8472017-08-10 12:56:14 +0300380 if (h->ae_algo->ops->rm_mc_addr)
Salil76ad4f02017-08-02 16:59:45 +0100381 return h->ae_algo->ops->rm_mc_addr(h, addr);
382
383 return 0;
384}
385
Yunsheng Lin1db9b1b2017-10-09 15:44:01 +0800386static void hns3_nic_set_rx_mode(struct net_device *netdev)
Salil76ad4f02017-08-02 16:59:45 +0100387{
Yunsheng Lin9780cb92017-10-09 15:43:56 +0800388 struct hnae3_handle *h = hns3_get_handle(netdev);
Salil76ad4f02017-08-02 16:59:45 +0100389
390 if (h->ae_algo->ops->set_promisc_mode) {
391 if (netdev->flags & IFF_PROMISC)
392 h->ae_algo->ops->set_promisc_mode(h, 1);
393 else
394 h->ae_algo->ops->set_promisc_mode(h, 0);
395 }
396 if (__dev_uc_sync(netdev, hns3_nic_uc_sync, hns3_nic_uc_unsync))
397 netdev_err(netdev, "sync uc address fail\n");
398 if (netdev->flags & IFF_MULTICAST)
399 if (__dev_mc_sync(netdev, hns3_nic_mc_sync, hns3_nic_mc_unsync))
400 netdev_err(netdev, "sync mc address fail\n");
401}
402
403static int hns3_set_tso(struct sk_buff *skb, u32 *paylen,
404 u16 *mss, u32 *type_cs_vlan_tso)
405{
406 u32 l4_offset, hdr_len;
407 union l3_hdr_info l3;
408 union l4_hdr_info l4;
409 u32 l4_paylen;
410 int ret;
411
412 if (!skb_is_gso(skb))
413 return 0;
414
415 ret = skb_cow_head(skb, 0);
416 if (ret)
417 return ret;
418
419 l3.hdr = skb_network_header(skb);
420 l4.hdr = skb_transport_header(skb);
421
422 /* Software should clear the IPv4's checksum field when tso is
423 * needed.
424 */
425 if (l3.v4->version == 4)
426 l3.v4->check = 0;
427
428 /* tunnel packet.*/
429 if (skb_shinfo(skb)->gso_type & (SKB_GSO_GRE |
430 SKB_GSO_GRE_CSUM |
431 SKB_GSO_UDP_TUNNEL |
432 SKB_GSO_UDP_TUNNEL_CSUM)) {
433 if ((!(skb_shinfo(skb)->gso_type &
434 SKB_GSO_PARTIAL)) &&
435 (skb_shinfo(skb)->gso_type &
436 SKB_GSO_UDP_TUNNEL_CSUM)) {
437 /* Software should clear the udp's checksum
438 * field when tso is needed.
439 */
440 l4.udp->check = 0;
441 }
442 /* reset l3&l4 pointers from outer to inner headers */
443 l3.hdr = skb_inner_network_header(skb);
444 l4.hdr = skb_inner_transport_header(skb);
445
446 /* Software should clear the IPv4's checksum field when
447 * tso is needed.
448 */
449 if (l3.v4->version == 4)
450 l3.v4->check = 0;
451 }
452
453 /* normal or tunnel packet*/
454 l4_offset = l4.hdr - skb->data;
455 hdr_len = (l4.tcp->doff * 4) + l4_offset;
456
457 /* remove payload length from inner pseudo checksum when tso*/
458 l4_paylen = skb->len - l4_offset;
459 csum_replace_by_diff(&l4.tcp->check,
460 (__force __wsum)htonl(l4_paylen));
461
462 /* find the txbd field values */
463 *paylen = skb->len - hdr_len;
464 hnae_set_bit(*type_cs_vlan_tso,
465 HNS3_TXD_TSO_B, 1);
466
467 /* get MSS for TSO */
468 *mss = skb_shinfo(skb)->gso_size;
469
470 return 0;
471}
472
Salil1898d4e2017-08-18 12:31:39 +0100473static int hns3_get_l4_protocol(struct sk_buff *skb, u8 *ol4_proto,
474 u8 *il4_proto)
Salil76ad4f02017-08-02 16:59:45 +0100475{
476 union {
477 struct iphdr *v4;
478 struct ipv6hdr *v6;
479 unsigned char *hdr;
480 } l3;
481 unsigned char *l4_hdr;
482 unsigned char *exthdr;
483 u8 l4_proto_tmp;
484 __be16 frag_off;
485
486 /* find outer header point */
487 l3.hdr = skb_network_header(skb);
488 l4_hdr = skb_inner_transport_header(skb);
489
490 if (skb->protocol == htons(ETH_P_IPV6)) {
491 exthdr = l3.hdr + sizeof(*l3.v6);
492 l4_proto_tmp = l3.v6->nexthdr;
493 if (l4_hdr != exthdr)
494 ipv6_skip_exthdr(skb, exthdr - skb->data,
495 &l4_proto_tmp, &frag_off);
496 } else if (skb->protocol == htons(ETH_P_IP)) {
497 l4_proto_tmp = l3.v4->protocol;
Salil1898d4e2017-08-18 12:31:39 +0100498 } else {
499 return -EINVAL;
Salil76ad4f02017-08-02 16:59:45 +0100500 }
501
502 *ol4_proto = l4_proto_tmp;
503
504 /* tunnel packet */
505 if (!skb->encapsulation) {
506 *il4_proto = 0;
Salil1898d4e2017-08-18 12:31:39 +0100507 return 0;
Salil76ad4f02017-08-02 16:59:45 +0100508 }
509
510 /* find inner header point */
511 l3.hdr = skb_inner_network_header(skb);
512 l4_hdr = skb_inner_transport_header(skb);
513
514 if (l3.v6->version == 6) {
515 exthdr = l3.hdr + sizeof(*l3.v6);
516 l4_proto_tmp = l3.v6->nexthdr;
517 if (l4_hdr != exthdr)
518 ipv6_skip_exthdr(skb, exthdr - skb->data,
519 &l4_proto_tmp, &frag_off);
520 } else if (l3.v4->version == 4) {
521 l4_proto_tmp = l3.v4->protocol;
522 }
523
524 *il4_proto = l4_proto_tmp;
Salil1898d4e2017-08-18 12:31:39 +0100525
526 return 0;
Salil76ad4f02017-08-02 16:59:45 +0100527}
528
529static void hns3_set_l2l3l4_len(struct sk_buff *skb, u8 ol4_proto,
530 u8 il4_proto, u32 *type_cs_vlan_tso,
531 u32 *ol_type_vlan_len_msec)
532{
533 union {
534 struct iphdr *v4;
535 struct ipv6hdr *v6;
536 unsigned char *hdr;
537 } l3;
538 union {
539 struct tcphdr *tcp;
540 struct udphdr *udp;
541 struct gre_base_hdr *gre;
542 unsigned char *hdr;
543 } l4;
544 unsigned char *l2_hdr;
545 u8 l4_proto = ol4_proto;
546 u32 ol2_len;
547 u32 ol3_len;
548 u32 ol4_len;
549 u32 l2_len;
550 u32 l3_len;
551
552 l3.hdr = skb_network_header(skb);
553 l4.hdr = skb_transport_header(skb);
554
555 /* compute L2 header size for normal packet, defined in 2 Bytes */
556 l2_len = l3.hdr - skb->data;
557 hnae_set_field(*type_cs_vlan_tso, HNS3_TXD_L2LEN_M,
558 HNS3_TXD_L2LEN_S, l2_len >> 1);
559
560 /* tunnel packet*/
561 if (skb->encapsulation) {
562 /* compute OL2 header size, defined in 2 Bytes */
563 ol2_len = l2_len;
564 hnae_set_field(*ol_type_vlan_len_msec,
565 HNS3_TXD_L2LEN_M,
566 HNS3_TXD_L2LEN_S, ol2_len >> 1);
567
568 /* compute OL3 header size, defined in 4 Bytes */
569 ol3_len = l4.hdr - l3.hdr;
570 hnae_set_field(*ol_type_vlan_len_msec, HNS3_TXD_L3LEN_M,
571 HNS3_TXD_L3LEN_S, ol3_len >> 2);
572
573 /* MAC in UDP, MAC in GRE (0x6558)*/
574 if ((ol4_proto == IPPROTO_UDP) || (ol4_proto == IPPROTO_GRE)) {
575 /* switch MAC header ptr from outer to inner header.*/
576 l2_hdr = skb_inner_mac_header(skb);
577
578 /* compute OL4 header size, defined in 4 Bytes. */
579 ol4_len = l2_hdr - l4.hdr;
580 hnae_set_field(*ol_type_vlan_len_msec, HNS3_TXD_L4LEN_M,
581 HNS3_TXD_L4LEN_S, ol4_len >> 2);
582
583 /* switch IP header ptr from outer to inner header */
584 l3.hdr = skb_inner_network_header(skb);
585
586 /* compute inner l2 header size, defined in 2 Bytes. */
587 l2_len = l3.hdr - l2_hdr;
588 hnae_set_field(*type_cs_vlan_tso, HNS3_TXD_L2LEN_M,
589 HNS3_TXD_L2LEN_S, l2_len >> 1);
590 } else {
591 /* skb packet types not supported by hardware,
592 * txbd len fild doesn't be filled.
593 */
594 return;
595 }
596
597 /* switch L4 header pointer from outer to inner */
598 l4.hdr = skb_inner_transport_header(skb);
599
600 l4_proto = il4_proto;
601 }
602
603 /* compute inner(/normal) L3 header size, defined in 4 Bytes */
604 l3_len = l4.hdr - l3.hdr;
605 hnae_set_field(*type_cs_vlan_tso, HNS3_TXD_L3LEN_M,
606 HNS3_TXD_L3LEN_S, l3_len >> 2);
607
608 /* compute inner(/normal) L4 header size, defined in 4 Bytes */
609 switch (l4_proto) {
610 case IPPROTO_TCP:
611 hnae_set_field(*type_cs_vlan_tso, HNS3_TXD_L4LEN_M,
612 HNS3_TXD_L4LEN_S, l4.tcp->doff);
613 break;
614 case IPPROTO_SCTP:
615 hnae_set_field(*type_cs_vlan_tso, HNS3_TXD_L4LEN_M,
616 HNS3_TXD_L4LEN_S, (sizeof(struct sctphdr) >> 2));
617 break;
618 case IPPROTO_UDP:
619 hnae_set_field(*type_cs_vlan_tso, HNS3_TXD_L4LEN_M,
620 HNS3_TXD_L4LEN_S, (sizeof(struct udphdr) >> 2));
621 break;
622 default:
623 /* skb packet types not supported by hardware,
624 * txbd len fild doesn't be filled.
625 */
626 return;
627 }
628}
629
630static int hns3_set_l3l4_type_csum(struct sk_buff *skb, u8 ol4_proto,
631 u8 il4_proto, u32 *type_cs_vlan_tso,
632 u32 *ol_type_vlan_len_msec)
633{
634 union {
635 struct iphdr *v4;
636 struct ipv6hdr *v6;
637 unsigned char *hdr;
638 } l3;
639 u32 l4_proto = ol4_proto;
640
641 l3.hdr = skb_network_header(skb);
642
643 /* define OL3 type and tunnel type(OL4).*/
644 if (skb->encapsulation) {
645 /* define outer network header type.*/
646 if (skb->protocol == htons(ETH_P_IP)) {
647 if (skb_is_gso(skb))
648 hnae_set_field(*ol_type_vlan_len_msec,
649 HNS3_TXD_OL3T_M, HNS3_TXD_OL3T_S,
650 HNS3_OL3T_IPV4_CSUM);
651 else
652 hnae_set_field(*ol_type_vlan_len_msec,
653 HNS3_TXD_OL3T_M, HNS3_TXD_OL3T_S,
654 HNS3_OL3T_IPV4_NO_CSUM);
655
656 } else if (skb->protocol == htons(ETH_P_IPV6)) {
657 hnae_set_field(*ol_type_vlan_len_msec, HNS3_TXD_OL3T_M,
658 HNS3_TXD_OL3T_S, HNS3_OL3T_IPV6);
659 }
660
661 /* define tunnel type(OL4).*/
662 switch (l4_proto) {
663 case IPPROTO_UDP:
664 hnae_set_field(*ol_type_vlan_len_msec,
665 HNS3_TXD_TUNTYPE_M,
666 HNS3_TXD_TUNTYPE_S,
667 HNS3_TUN_MAC_IN_UDP);
668 break;
669 case IPPROTO_GRE:
670 hnae_set_field(*ol_type_vlan_len_msec,
671 HNS3_TXD_TUNTYPE_M,
672 HNS3_TXD_TUNTYPE_S,
673 HNS3_TUN_NVGRE);
674 break;
675 default:
676 /* drop the skb tunnel packet if hardware don't support,
677 * because hardware can't calculate csum when TSO.
678 */
679 if (skb_is_gso(skb))
680 return -EDOM;
681
682 /* the stack computes the IP header already,
683 * driver calculate l4 checksum when not TSO.
684 */
685 skb_checksum_help(skb);
686 return 0;
687 }
688
689 l3.hdr = skb_inner_network_header(skb);
690 l4_proto = il4_proto;
691 }
692
693 if (l3.v4->version == 4) {
694 hnae_set_field(*type_cs_vlan_tso, HNS3_TXD_L3T_M,
695 HNS3_TXD_L3T_S, HNS3_L3T_IPV4);
696
697 /* the stack computes the IP header already, the only time we
698 * need the hardware to recompute it is in the case of TSO.
699 */
700 if (skb_is_gso(skb))
701 hnae_set_bit(*type_cs_vlan_tso, HNS3_TXD_L3CS_B, 1);
702
703 hnae_set_bit(*type_cs_vlan_tso, HNS3_TXD_L4CS_B, 1);
704 } else if (l3.v6->version == 6) {
705 hnae_set_field(*type_cs_vlan_tso, HNS3_TXD_L3T_M,
706 HNS3_TXD_L3T_S, HNS3_L3T_IPV6);
707 hnae_set_bit(*type_cs_vlan_tso, HNS3_TXD_L4CS_B, 1);
708 }
709
710 switch (l4_proto) {
711 case IPPROTO_TCP:
712 hnae_set_field(*type_cs_vlan_tso,
713 HNS3_TXD_L4T_M,
714 HNS3_TXD_L4T_S,
715 HNS3_L4T_TCP);
716 break;
717 case IPPROTO_UDP:
718 hnae_set_field(*type_cs_vlan_tso,
719 HNS3_TXD_L4T_M,
720 HNS3_TXD_L4T_S,
721 HNS3_L4T_UDP);
722 break;
723 case IPPROTO_SCTP:
724 hnae_set_field(*type_cs_vlan_tso,
725 HNS3_TXD_L4T_M,
726 HNS3_TXD_L4T_S,
727 HNS3_L4T_SCTP);
728 break;
729 default:
730 /* drop the skb tunnel packet if hardware don't support,
731 * because hardware can't calculate csum when TSO.
732 */
733 if (skb_is_gso(skb))
734 return -EDOM;
735
736 /* the stack computes the IP header already,
737 * driver calculate l4 checksum when not TSO.
738 */
739 skb_checksum_help(skb);
740 return 0;
741 }
742
743 return 0;
744}
745
746static void hns3_set_txbd_baseinfo(u16 *bdtp_fe_sc_vld_ra_ri, int frag_end)
747{
748 /* Config bd buffer end */
749 hnae_set_field(*bdtp_fe_sc_vld_ra_ri, HNS3_TXD_BDTYPE_M,
750 HNS3_TXD_BDTYPE_M, 0);
751 hnae_set_bit(*bdtp_fe_sc_vld_ra_ri, HNS3_TXD_FE_B, !!frag_end);
752 hnae_set_bit(*bdtp_fe_sc_vld_ra_ri, HNS3_TXD_VLD_B, 1);
Lipeng7036d262017-10-24 21:02:09 +0800753 hnae_set_field(*bdtp_fe_sc_vld_ra_ri, HNS3_TXD_SC_M, HNS3_TXD_SC_S, 0);
Salil76ad4f02017-08-02 16:59:45 +0100754}
755
Peng Li9699cff2017-12-22 12:21:48 +0800756static int hns3_fill_desc_vtags(struct sk_buff *skb,
757 struct hns3_enet_ring *tx_ring,
758 u32 *inner_vlan_flag,
759 u32 *out_vlan_flag,
760 u16 *inner_vtag,
761 u16 *out_vtag)
762{
763#define HNS3_TX_VLAN_PRIO_SHIFT 13
764
765 if (skb->protocol == htons(ETH_P_8021Q) &&
766 !(tx_ring->tqp->handle->kinfo.netdev->features &
767 NETIF_F_HW_VLAN_CTAG_TX)) {
768 /* When HW VLAN acceleration is turned off, and the stack
769 * sets the protocol to 802.1q, the driver just need to
770 * set the protocol to the encapsulated ethertype.
771 */
772 skb->protocol = vlan_get_protocol(skb);
773 return 0;
774 }
775
776 if (skb_vlan_tag_present(skb)) {
777 u16 vlan_tag;
778
779 vlan_tag = skb_vlan_tag_get(skb);
780 vlan_tag |= (skb->priority & 0x7) << HNS3_TX_VLAN_PRIO_SHIFT;
781
782 /* Based on hw strategy, use out_vtag in two layer tag case,
783 * and use inner_vtag in one tag case.
784 */
785 if (skb->protocol == htons(ETH_P_8021Q)) {
786 hnae_set_bit(*out_vlan_flag, HNS3_TXD_OVLAN_B, 1);
787 *out_vtag = vlan_tag;
788 } else {
789 hnae_set_bit(*inner_vlan_flag, HNS3_TXD_VLAN_B, 1);
790 *inner_vtag = vlan_tag;
791 }
792 } else if (skb->protocol == htons(ETH_P_8021Q)) {
793 struct vlan_ethhdr *vhdr;
794 int rc;
795
796 rc = skb_cow_head(skb, 0);
797 if (rc < 0)
798 return rc;
799 vhdr = (struct vlan_ethhdr *)skb->data;
800 vhdr->h_vlan_TCI |= cpu_to_be16((skb->priority & 0x7)
801 << HNS3_TX_VLAN_PRIO_SHIFT);
802 }
803
804 skb->protocol = vlan_get_protocol(skb);
805 return 0;
806}
807
Salil76ad4f02017-08-02 16:59:45 +0100808static int hns3_fill_desc(struct hns3_enet_ring *ring, void *priv,
809 int size, dma_addr_t dma, int frag_end,
810 enum hns_desc_type type)
811{
812 struct hns3_desc_cb *desc_cb = &ring->desc_cb[ring->next_to_use];
813 struct hns3_desc *desc = &ring->desc[ring->next_to_use];
814 u32 ol_type_vlan_len_msec = 0;
815 u16 bdtp_fe_sc_vld_ra_ri = 0;
816 u32 type_cs_vlan_tso = 0;
817 struct sk_buff *skb;
Peng Li9699cff2017-12-22 12:21:48 +0800818 u16 inner_vtag = 0;
819 u16 out_vtag = 0;
Salil76ad4f02017-08-02 16:59:45 +0100820 u32 paylen = 0;
821 u16 mss = 0;
822 __be16 protocol;
823 u8 ol4_proto;
824 u8 il4_proto;
825 int ret;
826
827 /* The txbd's baseinfo of DESC_TYPE_PAGE & DESC_TYPE_SKB */
828 desc_cb->priv = priv;
829 desc_cb->length = size;
830 desc_cb->dma = dma;
831 desc_cb->type = type;
832
833 /* now, fill the descriptor */
834 desc->addr = cpu_to_le64(dma);
835 desc->tx.send_size = cpu_to_le16((u16)size);
836 hns3_set_txbd_baseinfo(&bdtp_fe_sc_vld_ra_ri, frag_end);
837 desc->tx.bdtp_fe_sc_vld_ra_ri = cpu_to_le16(bdtp_fe_sc_vld_ra_ri);
838
839 if (type == DESC_TYPE_SKB) {
840 skb = (struct sk_buff *)priv;
Yunsheng Lina90bb9a2017-10-09 15:44:00 +0800841 paylen = skb->len;
Salil76ad4f02017-08-02 16:59:45 +0100842
Peng Li9699cff2017-12-22 12:21:48 +0800843 ret = hns3_fill_desc_vtags(skb, ring, &type_cs_vlan_tso,
844 &ol_type_vlan_len_msec,
845 &inner_vtag, &out_vtag);
846 if (unlikely(ret))
847 return ret;
848
Salil76ad4f02017-08-02 16:59:45 +0100849 if (skb->ip_summed == CHECKSUM_PARTIAL) {
850 skb_reset_mac_len(skb);
851 protocol = skb->protocol;
852
Salil1898d4e2017-08-18 12:31:39 +0100853 ret = hns3_get_l4_protocol(skb, &ol4_proto, &il4_proto);
854 if (ret)
855 return ret;
Salil76ad4f02017-08-02 16:59:45 +0100856 hns3_set_l2l3l4_len(skb, ol4_proto, il4_proto,
857 &type_cs_vlan_tso,
858 &ol_type_vlan_len_msec);
859 ret = hns3_set_l3l4_type_csum(skb, ol4_proto, il4_proto,
860 &type_cs_vlan_tso,
861 &ol_type_vlan_len_msec);
862 if (ret)
863 return ret;
864
865 ret = hns3_set_tso(skb, &paylen, &mss,
866 &type_cs_vlan_tso);
867 if (ret)
868 return ret;
869 }
870
871 /* Set txbd */
872 desc->tx.ol_type_vlan_len_msec =
873 cpu_to_le32(ol_type_vlan_len_msec);
874 desc->tx.type_cs_vlan_tso_len =
875 cpu_to_le32(type_cs_vlan_tso);
Yunsheng Lina90bb9a2017-10-09 15:44:00 +0800876 desc->tx.paylen = cpu_to_le32(paylen);
Salil76ad4f02017-08-02 16:59:45 +0100877 desc->tx.mss = cpu_to_le16(mss);
Peng Li9699cff2017-12-22 12:21:48 +0800878 desc->tx.vlan_tag = cpu_to_le16(inner_vtag);
879 desc->tx.outer_vlan_tag = cpu_to_le16(out_vtag);
Salil76ad4f02017-08-02 16:59:45 +0100880 }
881
882 /* move ring pointer to next.*/
883 ring_ptr_move_fw(ring, next_to_use);
884
885 return 0;
886}
887
888static int hns3_fill_desc_tso(struct hns3_enet_ring *ring, void *priv,
889 int size, dma_addr_t dma, int frag_end,
890 enum hns_desc_type type)
891{
892 unsigned int frag_buf_num;
893 unsigned int k;
894 int sizeoflast;
895 int ret;
896
897 frag_buf_num = (size + HNS3_MAX_BD_SIZE - 1) / HNS3_MAX_BD_SIZE;
898 sizeoflast = size % HNS3_MAX_BD_SIZE;
899 sizeoflast = sizeoflast ? sizeoflast : HNS3_MAX_BD_SIZE;
900
901 /* When the frag size is bigger than hardware, split this frag */
902 for (k = 0; k < frag_buf_num; k++) {
903 ret = hns3_fill_desc(ring, priv,
904 (k == frag_buf_num - 1) ?
905 sizeoflast : HNS3_MAX_BD_SIZE,
906 dma + HNS3_MAX_BD_SIZE * k,
907 frag_end && (k == frag_buf_num - 1) ? 1 : 0,
908 (type == DESC_TYPE_SKB && !k) ?
909 DESC_TYPE_SKB : DESC_TYPE_PAGE);
910 if (ret)
911 return ret;
912 }
913
914 return 0;
915}
916
917static int hns3_nic_maybe_stop_tso(struct sk_buff **out_skb, int *bnum,
918 struct hns3_enet_ring *ring)
919{
920 struct sk_buff *skb = *out_skb;
921 struct skb_frag_struct *frag;
922 int bdnum_for_frag;
923 int frag_num;
924 int buf_num;
925 int size;
926 int i;
927
928 size = skb_headlen(skb);
929 buf_num = (size + HNS3_MAX_BD_SIZE - 1) / HNS3_MAX_BD_SIZE;
930
931 frag_num = skb_shinfo(skb)->nr_frags;
932 for (i = 0; i < frag_num; i++) {
933 frag = &skb_shinfo(skb)->frags[i];
934 size = skb_frag_size(frag);
935 bdnum_for_frag =
936 (size + HNS3_MAX_BD_SIZE - 1) / HNS3_MAX_BD_SIZE;
937 if (bdnum_for_frag > HNS3_MAX_BD_PER_FRAG)
938 return -ENOMEM;
939
940 buf_num += bdnum_for_frag;
941 }
942
943 if (buf_num > ring_space(ring))
944 return -EBUSY;
945
946 *bnum = buf_num;
947 return 0;
948}
949
950static int hns3_nic_maybe_stop_tx(struct sk_buff **out_skb, int *bnum,
951 struct hns3_enet_ring *ring)
952{
953 struct sk_buff *skb = *out_skb;
954 int buf_num;
955
956 /* No. of segments (plus a header) */
957 buf_num = skb_shinfo(skb)->nr_frags + 1;
958
959 if (buf_num > ring_space(ring))
960 return -EBUSY;
961
962 *bnum = buf_num;
963
964 return 0;
965}
966
967static void hns_nic_dma_unmap(struct hns3_enet_ring *ring, int next_to_use_orig)
968{
969 struct device *dev = ring_to_dev(ring);
970 unsigned int i;
971
972 for (i = 0; i < ring->desc_num; i++) {
973 /* check if this is where we started */
974 if (ring->next_to_use == next_to_use_orig)
975 break;
976
977 /* unmap the descriptor dma address */
978 if (ring->desc_cb[ring->next_to_use].type == DESC_TYPE_SKB)
979 dma_unmap_single(dev,
980 ring->desc_cb[ring->next_to_use].dma,
981 ring->desc_cb[ring->next_to_use].length,
982 DMA_TO_DEVICE);
983 else
984 dma_unmap_page(dev,
985 ring->desc_cb[ring->next_to_use].dma,
986 ring->desc_cb[ring->next_to_use].length,
987 DMA_TO_DEVICE);
988
989 /* rollback one */
990 ring_ptr_move_bw(ring, next_to_use);
991 }
992}
993
Yunsheng Lind43e5ac2017-10-20 10:19:21 +0800994netdev_tx_t hns3_nic_net_xmit(struct sk_buff *skb, struct net_device *netdev)
Salil76ad4f02017-08-02 16:59:45 +0100995{
996 struct hns3_nic_priv *priv = netdev_priv(netdev);
997 struct hns3_nic_ring_data *ring_data =
998 &tx_ring_data(priv, skb->queue_mapping);
999 struct hns3_enet_ring *ring = ring_data->ring;
1000 struct device *dev = priv->dev;
1001 struct netdev_queue *dev_queue;
1002 struct skb_frag_struct *frag;
1003 int next_to_use_head;
1004 int next_to_use_frag;
1005 dma_addr_t dma;
1006 int buf_num;
1007 int seg_num;
1008 int size;
1009 int ret;
1010 int i;
1011
1012 /* Prefetch the data used later */
1013 prefetch(skb->data);
1014
1015 switch (priv->ops.maybe_stop_tx(&skb, &buf_num, ring)) {
1016 case -EBUSY:
1017 u64_stats_update_begin(&ring->syncp);
1018 ring->stats.tx_busy++;
1019 u64_stats_update_end(&ring->syncp);
1020
1021 goto out_net_tx_busy;
1022 case -ENOMEM:
1023 u64_stats_update_begin(&ring->syncp);
1024 ring->stats.sw_err_cnt++;
1025 u64_stats_update_end(&ring->syncp);
1026 netdev_err(netdev, "no memory to xmit!\n");
1027
1028 goto out_err_tx_ok;
1029 default:
1030 break;
1031 }
1032
1033 /* No. of segments (plus a header) */
1034 seg_num = skb_shinfo(skb)->nr_frags + 1;
1035 /* Fill the first part */
1036 size = skb_headlen(skb);
1037
1038 next_to_use_head = ring->next_to_use;
1039
1040 dma = dma_map_single(dev, skb->data, size, DMA_TO_DEVICE);
1041 if (dma_mapping_error(dev, dma)) {
1042 netdev_err(netdev, "TX head DMA map failed\n");
1043 ring->stats.sw_err_cnt++;
1044 goto out_err_tx_ok;
1045 }
1046
1047 ret = priv->ops.fill_desc(ring, skb, size, dma, seg_num == 1 ? 1 : 0,
1048 DESC_TYPE_SKB);
1049 if (ret)
1050 goto head_dma_map_err;
1051
1052 next_to_use_frag = ring->next_to_use;
1053 /* Fill the fragments */
1054 for (i = 1; i < seg_num; i++) {
1055 frag = &skb_shinfo(skb)->frags[i - 1];
1056 size = skb_frag_size(frag);
1057 dma = skb_frag_dma_map(dev, frag, 0, size, DMA_TO_DEVICE);
1058 if (dma_mapping_error(dev, dma)) {
1059 netdev_err(netdev, "TX frag(%d) DMA map failed\n", i);
1060 ring->stats.sw_err_cnt++;
1061 goto frag_dma_map_err;
1062 }
1063 ret = priv->ops.fill_desc(ring, skb_frag_page(frag), size, dma,
1064 seg_num - 1 == i ? 1 : 0,
1065 DESC_TYPE_PAGE);
1066
1067 if (ret)
1068 goto frag_dma_map_err;
1069 }
1070
1071 /* Complete translate all packets */
1072 dev_queue = netdev_get_tx_queue(netdev, ring_data->queue_index);
1073 netdev_tx_sent_queue(dev_queue, skb->len);
1074
1075 wmb(); /* Commit all data before submit */
1076
1077 hnae_queue_xmit(ring->tqp, buf_num);
1078
1079 return NETDEV_TX_OK;
1080
1081frag_dma_map_err:
1082 hns_nic_dma_unmap(ring, next_to_use_frag);
1083
1084head_dma_map_err:
1085 hns_nic_dma_unmap(ring, next_to_use_head);
1086
1087out_err_tx_ok:
1088 dev_kfree_skb_any(skb);
1089 return NETDEV_TX_OK;
1090
1091out_net_tx_busy:
1092 netif_stop_subqueue(netdev, ring_data->queue_index);
1093 smp_mb(); /* Commit all data before submit */
1094
1095 return NETDEV_TX_BUSY;
1096}
1097
1098static int hns3_nic_net_set_mac_address(struct net_device *netdev, void *p)
1099{
Yunsheng Lin9780cb92017-10-09 15:43:56 +08001100 struct hnae3_handle *h = hns3_get_handle(netdev);
Salil76ad4f02017-08-02 16:59:45 +01001101 struct sockaddr *mac_addr = p;
1102 int ret;
1103
1104 if (!mac_addr || !is_valid_ether_addr((const u8 *)mac_addr->sa_data))
1105 return -EADDRNOTAVAIL;
1106
1107 ret = h->ae_algo->ops->set_mac_addr(h, mac_addr->sa_data);
1108 if (ret) {
1109 netdev_err(netdev, "set_mac_address fail, ret=%d!\n", ret);
1110 return ret;
1111 }
1112
1113 ether_addr_copy(netdev->dev_addr, mac_addr->sa_data);
1114
1115 return 0;
1116}
1117
1118static int hns3_nic_set_features(struct net_device *netdev,
1119 netdev_features_t features)
1120{
1121 struct hns3_nic_priv *priv = netdev_priv(netdev);
Peng Li052ece62017-12-22 12:21:47 +08001122 struct hnae3_handle *h = priv->ae_handle;
1123 netdev_features_t changed;
1124 int ret;
Salil76ad4f02017-08-02 16:59:45 +01001125
1126 if (features & (NETIF_F_TSO | NETIF_F_TSO6)) {
1127 priv->ops.fill_desc = hns3_fill_desc_tso;
1128 priv->ops.maybe_stop_tx = hns3_nic_maybe_stop_tso;
1129 } else {
1130 priv->ops.fill_desc = hns3_fill_desc;
1131 priv->ops.maybe_stop_tx = hns3_nic_maybe_stop_tx;
1132 }
1133
Jian Shen391b5e92018-01-05 18:18:05 +08001134 if (features & NETIF_F_HW_VLAN_CTAG_FILTER)
1135 h->ae_algo->ops->enable_vlan_filter(h, true);
1136 else
1137 h->ae_algo->ops->enable_vlan_filter(h, false);
1138
Peng Li052ece62017-12-22 12:21:47 +08001139 changed = netdev->features ^ features;
1140 if (changed & NETIF_F_HW_VLAN_CTAG_RX) {
1141 if (features & NETIF_F_HW_VLAN_CTAG_RX)
1142 ret = h->ae_algo->ops->enable_hw_strip_rxvtag(h, true);
1143 else
1144 ret = h->ae_algo->ops->enable_hw_strip_rxvtag(h, false);
1145
1146 if (ret)
1147 return ret;
1148 }
1149
Salil76ad4f02017-08-02 16:59:45 +01001150 netdev->features = features;
1151 return 0;
1152}
1153
Peng Li6c88d9d2018-01-09 14:50:59 +08001154static void hns3_nic_get_stats64(struct net_device *netdev,
1155 struct rtnl_link_stats64 *stats)
Salil76ad4f02017-08-02 16:59:45 +01001156{
1157 struct hns3_nic_priv *priv = netdev_priv(netdev);
1158 int queue_num = priv->ae_handle->kinfo.num_tqps;
Jian Shenc5f65482018-01-05 18:18:10 +08001159 struct hnae3_handle *handle = priv->ae_handle;
Salil76ad4f02017-08-02 16:59:45 +01001160 struct hns3_enet_ring *ring;
1161 unsigned int start;
1162 unsigned int idx;
1163 u64 tx_bytes = 0;
1164 u64 rx_bytes = 0;
1165 u64 tx_pkts = 0;
1166 u64 rx_pkts = 0;
Jian Shend2a5dca2018-01-05 18:18:12 +08001167 u64 tx_drop = 0;
1168 u64 rx_drop = 0;
Salil76ad4f02017-08-02 16:59:45 +01001169
Jian Shenb875cc32018-01-05 18:18:11 +08001170 if (test_bit(HNS3_NIC_STATE_DOWN, &priv->state))
1171 return;
1172
Jian Shenc5f65482018-01-05 18:18:10 +08001173 handle->ae_algo->ops->update_stats(handle, &netdev->stats);
1174
Salil76ad4f02017-08-02 16:59:45 +01001175 for (idx = 0; idx < queue_num; idx++) {
1176 /* fetch the tx stats */
1177 ring = priv->ring_data[idx].ring;
1178 do {
Salild36d36c2017-08-18 12:31:37 +01001179 start = u64_stats_fetch_begin_irq(&ring->syncp);
Salil76ad4f02017-08-02 16:59:45 +01001180 tx_bytes += ring->stats.tx_bytes;
1181 tx_pkts += ring->stats.tx_pkts;
Jian Shend2a5dca2018-01-05 18:18:12 +08001182 tx_drop += ring->stats.tx_busy;
1183 tx_drop += ring->stats.sw_err_cnt;
Salil76ad4f02017-08-02 16:59:45 +01001184 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
1185
1186 /* fetch the rx stats */
1187 ring = priv->ring_data[idx + queue_num].ring;
1188 do {
Salild36d36c2017-08-18 12:31:37 +01001189 start = u64_stats_fetch_begin_irq(&ring->syncp);
Salil76ad4f02017-08-02 16:59:45 +01001190 rx_bytes += ring->stats.rx_bytes;
1191 rx_pkts += ring->stats.rx_pkts;
Jian Shend2a5dca2018-01-05 18:18:12 +08001192 rx_drop += ring->stats.non_vld_descs;
1193 rx_drop += ring->stats.err_pkt_len;
1194 rx_drop += ring->stats.l2_err;
Salil76ad4f02017-08-02 16:59:45 +01001195 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
1196 }
1197
1198 stats->tx_bytes = tx_bytes;
1199 stats->tx_packets = tx_pkts;
1200 stats->rx_bytes = rx_bytes;
1201 stats->rx_packets = rx_pkts;
1202
1203 stats->rx_errors = netdev->stats.rx_errors;
1204 stats->multicast = netdev->stats.multicast;
1205 stats->rx_length_errors = netdev->stats.rx_length_errors;
1206 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
1207 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
1208
1209 stats->tx_errors = netdev->stats.tx_errors;
Jian Shend2a5dca2018-01-05 18:18:12 +08001210 stats->rx_dropped = rx_drop + netdev->stats.rx_dropped;
1211 stats->tx_dropped = tx_drop + netdev->stats.tx_dropped;
Salil76ad4f02017-08-02 16:59:45 +01001212 stats->collisions = netdev->stats.collisions;
1213 stats->rx_over_errors = netdev->stats.rx_over_errors;
1214 stats->rx_frame_errors = netdev->stats.rx_frame_errors;
1215 stats->rx_fifo_errors = netdev->stats.rx_fifo_errors;
1216 stats->tx_aborted_errors = netdev->stats.tx_aborted_errors;
1217 stats->tx_carrier_errors = netdev->stats.tx_carrier_errors;
1218 stats->tx_fifo_errors = netdev->stats.tx_fifo_errors;
1219 stats->tx_heartbeat_errors = netdev->stats.tx_heartbeat_errors;
1220 stats->tx_window_errors = netdev->stats.tx_window_errors;
1221 stats->rx_compressed = netdev->stats.rx_compressed;
1222 stats->tx_compressed = netdev->stats.tx_compressed;
1223}
1224
1225static void hns3_add_tunnel_port(struct net_device *netdev, u16 port,
1226 enum hns3_udp_tnl_type type)
1227{
1228 struct hns3_nic_priv *priv = netdev_priv(netdev);
1229 struct hns3_udp_tunnel *udp_tnl = &priv->udp_tnl[type];
1230 struct hnae3_handle *h = priv->ae_handle;
1231
1232 if (udp_tnl->used && udp_tnl->dst_port == port) {
1233 udp_tnl->used++;
1234 return;
1235 }
1236
1237 if (udp_tnl->used) {
1238 netdev_warn(netdev,
1239 "UDP tunnel [%d], port [%d] offload\n", type, port);
1240 return;
1241 }
1242
1243 udp_tnl->dst_port = port;
1244 udp_tnl->used = 1;
1245 /* TBD send command to hardware to add port */
1246 if (h->ae_algo->ops->add_tunnel_udp)
1247 h->ae_algo->ops->add_tunnel_udp(h, port);
1248}
1249
1250static void hns3_del_tunnel_port(struct net_device *netdev, u16 port,
1251 enum hns3_udp_tnl_type type)
1252{
1253 struct hns3_nic_priv *priv = netdev_priv(netdev);
1254 struct hns3_udp_tunnel *udp_tnl = &priv->udp_tnl[type];
1255 struct hnae3_handle *h = priv->ae_handle;
1256
1257 if (!udp_tnl->used || udp_tnl->dst_port != port) {
1258 netdev_warn(netdev,
1259 "Invalid UDP tunnel port %d\n", port);
1260 return;
1261 }
1262
1263 udp_tnl->used--;
1264 if (udp_tnl->used)
1265 return;
1266
1267 udp_tnl->dst_port = 0;
1268 /* TBD send command to hardware to del port */
1269 if (h->ae_algo->ops->del_tunnel_udp)
Dan Carpenter9537e7c2017-08-10 12:54:59 +03001270 h->ae_algo->ops->del_tunnel_udp(h, port);
Salil76ad4f02017-08-02 16:59:45 +01001271}
1272
1273/* hns3_nic_udp_tunnel_add - Get notifiacetion about UDP tunnel ports
1274 * @netdev: This physical ports's netdev
1275 * @ti: Tunnel information
1276 */
1277static void hns3_nic_udp_tunnel_add(struct net_device *netdev,
1278 struct udp_tunnel_info *ti)
1279{
1280 u16 port_n = ntohs(ti->port);
1281
1282 switch (ti->type) {
1283 case UDP_TUNNEL_TYPE_VXLAN:
1284 hns3_add_tunnel_port(netdev, port_n, HNS3_UDP_TNL_VXLAN);
1285 break;
1286 case UDP_TUNNEL_TYPE_GENEVE:
1287 hns3_add_tunnel_port(netdev, port_n, HNS3_UDP_TNL_GENEVE);
1288 break;
1289 default:
1290 netdev_err(netdev, "unsupported tunnel type %d\n", ti->type);
1291 break;
1292 }
1293}
1294
1295static void hns3_nic_udp_tunnel_del(struct net_device *netdev,
1296 struct udp_tunnel_info *ti)
1297{
1298 u16 port_n = ntohs(ti->port);
1299
1300 switch (ti->type) {
1301 case UDP_TUNNEL_TYPE_VXLAN:
1302 hns3_del_tunnel_port(netdev, port_n, HNS3_UDP_TNL_VXLAN);
1303 break;
1304 case UDP_TUNNEL_TYPE_GENEVE:
1305 hns3_del_tunnel_port(netdev, port_n, HNS3_UDP_TNL_GENEVE);
1306 break;
1307 default:
1308 break;
1309 }
1310}
1311
Yunsheng Lin30d240d2017-10-17 14:51:30 +08001312static int hns3_setup_tc(struct net_device *netdev, void *type_data)
Salil76ad4f02017-08-02 16:59:45 +01001313{
Yunsheng Lin30d240d2017-10-17 14:51:30 +08001314 struct tc_mqprio_qopt_offload *mqprio_qopt = type_data;
Yunsheng Lin9780cb92017-10-09 15:43:56 +08001315 struct hnae3_handle *h = hns3_get_handle(netdev);
Salil76ad4f02017-08-02 16:59:45 +01001316 struct hnae3_knic_private_info *kinfo = &h->kinfo;
Yunsheng Lin30d240d2017-10-17 14:51:30 +08001317 u8 *prio_tc = mqprio_qopt->qopt.prio_tc_map;
1318 u8 tc = mqprio_qopt->qopt.num_tc;
1319 u16 mode = mqprio_qopt->mode;
1320 u8 hw = mqprio_qopt->qopt.hw;
1321 bool if_running;
Salil76ad4f02017-08-02 16:59:45 +01001322 unsigned int i;
1323 int ret;
1324
Yunsheng Lin30d240d2017-10-17 14:51:30 +08001325 if (!((hw == TC_MQPRIO_HW_OFFLOAD_TCS &&
1326 mode == TC_MQPRIO_MODE_CHANNEL) || (!hw && tc == 0)))
1327 return -EOPNOTSUPP;
1328
Salil76ad4f02017-08-02 16:59:45 +01001329 if (tc > HNAE3_MAX_TC)
1330 return -EINVAL;
1331
Salil76ad4f02017-08-02 16:59:45 +01001332 if (!netdev)
1333 return -EINVAL;
1334
Yunsheng Lin30d240d2017-10-17 14:51:30 +08001335 if_running = netif_running(netdev);
1336 if (if_running) {
1337 hns3_nic_net_stop(netdev);
1338 msleep(100);
Salil76ad4f02017-08-02 16:59:45 +01001339 }
1340
Yunsheng Lin30d240d2017-10-17 14:51:30 +08001341 ret = (kinfo->dcb_ops && kinfo->dcb_ops->setup_tc) ?
1342 kinfo->dcb_ops->setup_tc(h, tc, prio_tc) : -EOPNOTSUPP;
Salil76ad4f02017-08-02 16:59:45 +01001343 if (ret)
Yunsheng Lin30d240d2017-10-17 14:51:30 +08001344 goto out;
Salil76ad4f02017-08-02 16:59:45 +01001345
Yunsheng Lin30d240d2017-10-17 14:51:30 +08001346 if (tc <= 1) {
1347 netdev_reset_tc(netdev);
1348 } else {
1349 ret = netdev_set_num_tc(netdev, tc);
1350 if (ret)
1351 goto out;
1352
1353 for (i = 0; i < HNAE3_MAX_TC; i++) {
1354 if (!kinfo->tc_info[i].enable)
1355 continue;
1356
Salil76ad4f02017-08-02 16:59:45 +01001357 netdev_set_tc_queue(netdev,
1358 kinfo->tc_info[i].tc,
1359 kinfo->tc_info[i].tqp_count,
1360 kinfo->tc_info[i].tqp_offset);
Yunsheng Lin30d240d2017-10-17 14:51:30 +08001361 }
Salil76ad4f02017-08-02 16:59:45 +01001362 }
1363
Yunsheng Lin30d240d2017-10-17 14:51:30 +08001364 ret = hns3_nic_set_real_num_queue(netdev);
1365
1366out:
1367 if (if_running)
1368 hns3_nic_net_open(netdev);
1369
1370 return ret;
Salil76ad4f02017-08-02 16:59:45 +01001371}
1372
Jiri Pirko2572ac52017-08-07 10:15:17 +02001373static int hns3_nic_setup_tc(struct net_device *dev, enum tc_setup_type type,
Jiri Pirkode4784c2017-08-07 10:15:32 +02001374 void *type_data)
Salil76ad4f02017-08-02 16:59:45 +01001375{
Nogah Frankel575ed7d2017-11-06 07:23:42 +01001376 if (type != TC_SETUP_QDISC_MQPRIO)
Jiri Pirko38cf0422017-08-07 10:15:31 +02001377 return -EOPNOTSUPP;
Salil76ad4f02017-08-02 16:59:45 +01001378
Yunsheng Lin30d240d2017-10-17 14:51:30 +08001379 return hns3_setup_tc(dev, type_data);
Salil76ad4f02017-08-02 16:59:45 +01001380}
1381
1382static int hns3_vlan_rx_add_vid(struct net_device *netdev,
1383 __be16 proto, u16 vid)
1384{
Yunsheng Lin9780cb92017-10-09 15:43:56 +08001385 struct hnae3_handle *h = hns3_get_handle(netdev);
Salil76ad4f02017-08-02 16:59:45 +01001386 int ret = -EIO;
1387
1388 if (h->ae_algo->ops->set_vlan_filter)
1389 ret = h->ae_algo->ops->set_vlan_filter(h, proto, vid, false);
1390
1391 return ret;
1392}
1393
1394static int hns3_vlan_rx_kill_vid(struct net_device *netdev,
1395 __be16 proto, u16 vid)
1396{
Yunsheng Lin9780cb92017-10-09 15:43:56 +08001397 struct hnae3_handle *h = hns3_get_handle(netdev);
Salil76ad4f02017-08-02 16:59:45 +01001398 int ret = -EIO;
1399
1400 if (h->ae_algo->ops->set_vlan_filter)
1401 ret = h->ae_algo->ops->set_vlan_filter(h, proto, vid, true);
1402
1403 return ret;
1404}
1405
1406static int hns3_ndo_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan,
1407 u8 qos, __be16 vlan_proto)
1408{
Yunsheng Lin9780cb92017-10-09 15:43:56 +08001409 struct hnae3_handle *h = hns3_get_handle(netdev);
Salil76ad4f02017-08-02 16:59:45 +01001410 int ret = -EIO;
1411
1412 if (h->ae_algo->ops->set_vf_vlan_filter)
1413 ret = h->ae_algo->ops->set_vf_vlan_filter(h, vf, vlan,
1414 qos, vlan_proto);
1415
1416 return ret;
1417}
1418
Salila8e8b7f2017-08-21 17:05:24 +01001419static int hns3_nic_change_mtu(struct net_device *netdev, int new_mtu)
1420{
Yunsheng Lin9780cb92017-10-09 15:43:56 +08001421 struct hnae3_handle *h = hns3_get_handle(netdev);
Salila8e8b7f2017-08-21 17:05:24 +01001422 bool if_running = netif_running(netdev);
1423 int ret;
1424
1425 if (!h->ae_algo->ops->set_mtu)
1426 return -EOPNOTSUPP;
1427
1428 /* if this was called with netdev up then bring netdevice down */
1429 if (if_running) {
1430 (void)hns3_nic_net_stop(netdev);
1431 msleep(100);
1432 }
1433
1434 ret = h->ae_algo->ops->set_mtu(h, new_mtu);
1435 if (ret) {
1436 netdev_err(netdev, "failed to change MTU in hardware %d\n",
1437 ret);
1438 return ret;
1439 }
1440
Fuyun Liang5bad95a2018-01-05 18:18:20 +08001441 netdev->mtu = new_mtu;
1442
Salila8e8b7f2017-08-21 17:05:24 +01001443 /* if the netdev was running earlier, bring it up again */
1444 if (if_running && hns3_nic_net_open(netdev))
1445 ret = -EINVAL;
1446
1447 return ret;
1448}
1449
Lipengf8fa222c2017-11-02 20:45:20 +08001450static bool hns3_get_tx_timeo_queue_info(struct net_device *ndev)
1451{
1452 struct hns3_nic_priv *priv = netdev_priv(ndev);
1453 struct hns3_enet_ring *tx_ring = NULL;
1454 int timeout_queue = 0;
1455 int hw_head, hw_tail;
1456 int i;
1457
1458 /* Find the stopped queue the same way the stack does */
1459 for (i = 0; i < ndev->real_num_tx_queues; i++) {
1460 struct netdev_queue *q;
1461 unsigned long trans_start;
1462
1463 q = netdev_get_tx_queue(ndev, i);
1464 trans_start = q->trans_start;
1465 if (netif_xmit_stopped(q) &&
1466 time_after(jiffies,
1467 (trans_start + ndev->watchdog_timeo))) {
1468 timeout_queue = i;
1469 break;
1470 }
1471 }
1472
1473 if (i == ndev->num_tx_queues) {
1474 netdev_info(ndev,
1475 "no netdev TX timeout queue found, timeout count: %llu\n",
1476 priv->tx_timeout_count);
1477 return false;
1478 }
1479
1480 tx_ring = priv->ring_data[timeout_queue].ring;
1481
1482 hw_head = readl_relaxed(tx_ring->tqp->io_base +
1483 HNS3_RING_TX_RING_HEAD_REG);
1484 hw_tail = readl_relaxed(tx_ring->tqp->io_base +
1485 HNS3_RING_TX_RING_TAIL_REG);
1486 netdev_info(ndev,
1487 "tx_timeout count: %llu, queue id: %d, SW_NTU: 0x%x, SW_NTC: 0x%x, HW_HEAD: 0x%x, HW_TAIL: 0x%x, INT: 0x%x\n",
1488 priv->tx_timeout_count,
1489 timeout_queue,
1490 tx_ring->next_to_use,
1491 tx_ring->next_to_clean,
1492 hw_head,
1493 hw_tail,
1494 readl(tx_ring->tqp_vector->mask_addr));
1495
1496 return true;
1497}
1498
1499static void hns3_nic_net_timeout(struct net_device *ndev)
1500{
1501 struct hns3_nic_priv *priv = netdev_priv(ndev);
1502 unsigned long last_reset_time = priv->last_reset_time;
1503 struct hnae3_handle *h = priv->ae_handle;
1504
1505 if (!hns3_get_tx_timeo_queue_info(ndev))
1506 return;
1507
1508 priv->tx_timeout_count++;
1509
1510 /* This timeout is far away enough from last timeout,
1511 * if timeout again,set the reset type to PF reset
1512 */
1513 if (time_after(jiffies, (last_reset_time + 20 * HZ)))
1514 priv->reset_level = HNAE3_FUNC_RESET;
1515
1516 /* Don't do any new action before the next timeout */
1517 else if (time_before(jiffies, (last_reset_time + ndev->watchdog_timeo)))
1518 return;
1519
1520 priv->last_reset_time = jiffies;
1521
1522 if (h->ae_algo->ops->reset_event)
1523 h->ae_algo->ops->reset_event(h, priv->reset_level);
1524
1525 priv->reset_level++;
1526 if (priv->reset_level > HNAE3_GLOBAL_RESET)
1527 priv->reset_level = HNAE3_GLOBAL_RESET;
1528}
1529
Salil76ad4f02017-08-02 16:59:45 +01001530static const struct net_device_ops hns3_nic_netdev_ops = {
1531 .ndo_open = hns3_nic_net_open,
1532 .ndo_stop = hns3_nic_net_stop,
1533 .ndo_start_xmit = hns3_nic_net_xmit,
Lipengf8fa222c2017-11-02 20:45:20 +08001534 .ndo_tx_timeout = hns3_nic_net_timeout,
Salil76ad4f02017-08-02 16:59:45 +01001535 .ndo_set_mac_address = hns3_nic_net_set_mac_address,
Salila8e8b7f2017-08-21 17:05:24 +01001536 .ndo_change_mtu = hns3_nic_change_mtu,
Salil76ad4f02017-08-02 16:59:45 +01001537 .ndo_set_features = hns3_nic_set_features,
1538 .ndo_get_stats64 = hns3_nic_get_stats64,
1539 .ndo_setup_tc = hns3_nic_setup_tc,
1540 .ndo_set_rx_mode = hns3_nic_set_rx_mode,
1541 .ndo_udp_tunnel_add = hns3_nic_udp_tunnel_add,
1542 .ndo_udp_tunnel_del = hns3_nic_udp_tunnel_del,
1543 .ndo_vlan_rx_add_vid = hns3_vlan_rx_add_vid,
1544 .ndo_vlan_rx_kill_vid = hns3_vlan_rx_kill_vid,
1545 .ndo_set_vf_vlan = hns3_ndo_set_vf_vlan,
1546};
1547
1548/* hns3_probe - Device initialization routine
1549 * @pdev: PCI device information struct
1550 * @ent: entry in hns3_pci_tbl
1551 *
1552 * hns3_probe initializes a PF identified by a pci_dev structure.
1553 * The OS initialization, configuring of the PF private structure,
1554 * and a hardware reset occur.
1555 *
1556 * Returns 0 on success, negative on failure
1557 */
1558static int hns3_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1559{
1560 struct hnae3_ae_dev *ae_dev;
1561 int ret;
1562
1563 ae_dev = devm_kzalloc(&pdev->dev, sizeof(*ae_dev),
1564 GFP_KERNEL);
1565 if (!ae_dev) {
1566 ret = -ENOMEM;
1567 return ret;
1568 }
1569
1570 ae_dev->pdev = pdev;
Yunsheng Line92a0842017-09-20 18:52:50 +08001571 ae_dev->flag = ent->driver_data;
Salil76ad4f02017-08-02 16:59:45 +01001572 ae_dev->dev_type = HNAE3_DEV_KNIC;
1573 pci_set_drvdata(pdev, ae_dev);
1574
1575 return hnae3_register_ae_dev(ae_dev);
1576}
1577
1578/* hns3_remove - Device removal routine
1579 * @pdev: PCI device information struct
1580 */
1581static void hns3_remove(struct pci_dev *pdev)
1582{
1583 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(pdev);
1584
1585 hnae3_unregister_ae_dev(ae_dev);
1586
1587 devm_kfree(&pdev->dev, ae_dev);
1588
1589 pci_set_drvdata(pdev, NULL);
1590}
1591
1592static struct pci_driver hns3_driver = {
1593 .name = hns3_driver_name,
1594 .id_table = hns3_pci_tbl,
1595 .probe = hns3_probe,
1596 .remove = hns3_remove,
1597};
1598
1599/* set default feature to hns3 */
1600static void hns3_set_default_feature(struct net_device *netdev)
1601{
Jian Shen391b5e92018-01-05 18:18:05 +08001602 struct hnae3_handle *h = hns3_get_handle(netdev);
1603
Salil76ad4f02017-08-02 16:59:45 +01001604 netdev->priv_flags |= IFF_UNICAST_FLT;
1605
1606 netdev->hw_enc_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
1607 NETIF_F_RXCSUM | NETIF_F_SG | NETIF_F_GSO |
1608 NETIF_F_GRO | NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_GSO_GRE |
1609 NETIF_F_GSO_GRE_CSUM | NETIF_F_GSO_UDP_TUNNEL |
1610 NETIF_F_GSO_UDP_TUNNEL_CSUM;
1611
1612 netdev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
1613
1614 netdev->gso_partial_features |= NETIF_F_GSO_GRE_CSUM;
1615
1616 netdev->features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
1617 NETIF_F_HW_VLAN_CTAG_FILTER |
Peng Li052ece62017-12-22 12:21:47 +08001618 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX |
Salil76ad4f02017-08-02 16:59:45 +01001619 NETIF_F_RXCSUM | NETIF_F_SG | NETIF_F_GSO |
1620 NETIF_F_GRO | NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_GSO_GRE |
1621 NETIF_F_GSO_GRE_CSUM | NETIF_F_GSO_UDP_TUNNEL |
1622 NETIF_F_GSO_UDP_TUNNEL_CSUM;
1623
1624 netdev->vlan_features |=
1625 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | NETIF_F_RXCSUM |
1626 NETIF_F_SG | NETIF_F_GSO | NETIF_F_GRO |
1627 NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_GSO_GRE |
1628 NETIF_F_GSO_GRE_CSUM | NETIF_F_GSO_UDP_TUNNEL |
1629 NETIF_F_GSO_UDP_TUNNEL_CSUM;
1630
1631 netdev->hw_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
Jian Shen30ba2ab2018-01-05 18:18:06 +08001632 NETIF_F_HW_VLAN_CTAG_TX |
Salil76ad4f02017-08-02 16:59:45 +01001633 NETIF_F_RXCSUM | NETIF_F_SG | NETIF_F_GSO |
1634 NETIF_F_GRO | NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_GSO_GRE |
1635 NETIF_F_GSO_GRE_CSUM | NETIF_F_GSO_UDP_TUNNEL |
1636 NETIF_F_GSO_UDP_TUNNEL_CSUM;
Jian Shen391b5e92018-01-05 18:18:05 +08001637
1638 if (!(h->flags & HNAE3_SUPPORT_VF))
Jian Shen30ba2ab2018-01-05 18:18:06 +08001639 netdev->hw_features |=
1640 NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_CTAG_RX;
Salil76ad4f02017-08-02 16:59:45 +01001641}
1642
1643static int hns3_alloc_buffer(struct hns3_enet_ring *ring,
1644 struct hns3_desc_cb *cb)
1645{
1646 unsigned int order = hnae_page_order(ring);
1647 struct page *p;
1648
1649 p = dev_alloc_pages(order);
1650 if (!p)
1651 return -ENOMEM;
1652
1653 cb->priv = p;
1654 cb->page_offset = 0;
1655 cb->reuse_flag = 0;
1656 cb->buf = page_address(p);
1657 cb->length = hnae_page_size(ring);
1658 cb->type = DESC_TYPE_PAGE;
1659
Salil76ad4f02017-08-02 16:59:45 +01001660 return 0;
1661}
1662
1663static void hns3_free_buffer(struct hns3_enet_ring *ring,
1664 struct hns3_desc_cb *cb)
1665{
1666 if (cb->type == DESC_TYPE_SKB)
1667 dev_kfree_skb_any((struct sk_buff *)cb->priv);
1668 else if (!HNAE3_IS_TX_RING(ring))
1669 put_page((struct page *)cb->priv);
1670 memset(cb, 0, sizeof(*cb));
1671}
1672
1673static int hns3_map_buffer(struct hns3_enet_ring *ring, struct hns3_desc_cb *cb)
1674{
1675 cb->dma = dma_map_page(ring_to_dev(ring), cb->priv, 0,
1676 cb->length, ring_to_dma_dir(ring));
1677
1678 if (dma_mapping_error(ring_to_dev(ring), cb->dma))
1679 return -EIO;
1680
1681 return 0;
1682}
1683
1684static void hns3_unmap_buffer(struct hns3_enet_ring *ring,
1685 struct hns3_desc_cb *cb)
1686{
1687 if (cb->type == DESC_TYPE_SKB)
1688 dma_unmap_single(ring_to_dev(ring), cb->dma, cb->length,
1689 ring_to_dma_dir(ring));
1690 else
1691 dma_unmap_page(ring_to_dev(ring), cb->dma, cb->length,
1692 ring_to_dma_dir(ring));
1693}
1694
1695static void hns3_buffer_detach(struct hns3_enet_ring *ring, int i)
1696{
1697 hns3_unmap_buffer(ring, &ring->desc_cb[i]);
1698 ring->desc[i].addr = 0;
1699}
1700
1701static void hns3_free_buffer_detach(struct hns3_enet_ring *ring, int i)
1702{
1703 struct hns3_desc_cb *cb = &ring->desc_cb[i];
1704
1705 if (!ring->desc_cb[i].dma)
1706 return;
1707
1708 hns3_buffer_detach(ring, i);
1709 hns3_free_buffer(ring, cb);
1710}
1711
1712static void hns3_free_buffers(struct hns3_enet_ring *ring)
1713{
1714 int i;
1715
1716 for (i = 0; i < ring->desc_num; i++)
1717 hns3_free_buffer_detach(ring, i);
1718}
1719
1720/* free desc along with its attached buffer */
1721static void hns3_free_desc(struct hns3_enet_ring *ring)
1722{
1723 hns3_free_buffers(ring);
1724
1725 dma_unmap_single(ring_to_dev(ring), ring->desc_dma_addr,
1726 ring->desc_num * sizeof(ring->desc[0]),
1727 DMA_BIDIRECTIONAL);
1728 ring->desc_dma_addr = 0;
1729 kfree(ring->desc);
1730 ring->desc = NULL;
1731}
1732
1733static int hns3_alloc_desc(struct hns3_enet_ring *ring)
1734{
1735 int size = ring->desc_num * sizeof(ring->desc[0]);
1736
1737 ring->desc = kzalloc(size, GFP_KERNEL);
1738 if (!ring->desc)
1739 return -ENOMEM;
1740
1741 ring->desc_dma_addr = dma_map_single(ring_to_dev(ring), ring->desc,
1742 size, DMA_BIDIRECTIONAL);
1743 if (dma_mapping_error(ring_to_dev(ring), ring->desc_dma_addr)) {
1744 ring->desc_dma_addr = 0;
1745 kfree(ring->desc);
1746 ring->desc = NULL;
1747 return -ENOMEM;
1748 }
1749
1750 return 0;
1751}
1752
1753static int hns3_reserve_buffer_map(struct hns3_enet_ring *ring,
1754 struct hns3_desc_cb *cb)
1755{
1756 int ret;
1757
1758 ret = hns3_alloc_buffer(ring, cb);
1759 if (ret)
1760 goto out;
1761
1762 ret = hns3_map_buffer(ring, cb);
1763 if (ret)
1764 goto out_with_buf;
1765
1766 return 0;
1767
1768out_with_buf:
Lipeng564883b2017-10-23 19:51:02 +08001769 hns3_free_buffer(ring, cb);
Salil76ad4f02017-08-02 16:59:45 +01001770out:
1771 return ret;
1772}
1773
1774static int hns3_alloc_buffer_attach(struct hns3_enet_ring *ring, int i)
1775{
1776 int ret = hns3_reserve_buffer_map(ring, &ring->desc_cb[i]);
1777
1778 if (ret)
1779 return ret;
1780
1781 ring->desc[i].addr = cpu_to_le64(ring->desc_cb[i].dma);
1782
1783 return 0;
1784}
1785
1786/* Allocate memory for raw pkg, and map with dma */
1787static int hns3_alloc_ring_buffers(struct hns3_enet_ring *ring)
1788{
1789 int i, j, ret;
1790
1791 for (i = 0; i < ring->desc_num; i++) {
1792 ret = hns3_alloc_buffer_attach(ring, i);
1793 if (ret)
1794 goto out_buffer_fail;
1795 }
1796
1797 return 0;
1798
1799out_buffer_fail:
1800 for (j = i - 1; j >= 0; j--)
1801 hns3_free_buffer_detach(ring, j);
1802 return ret;
1803}
1804
1805/* detach a in-used buffer and replace with a reserved one */
1806static void hns3_replace_buffer(struct hns3_enet_ring *ring, int i,
1807 struct hns3_desc_cb *res_cb)
1808{
Lipengb9077422017-10-23 19:51:01 +08001809 hns3_unmap_buffer(ring, &ring->desc_cb[i]);
Salil76ad4f02017-08-02 16:59:45 +01001810 ring->desc_cb[i] = *res_cb;
1811 ring->desc[i].addr = cpu_to_le64(ring->desc_cb[i].dma);
1812}
1813
1814static void hns3_reuse_buffer(struct hns3_enet_ring *ring, int i)
1815{
1816 ring->desc_cb[i].reuse_flag = 0;
1817 ring->desc[i].addr = cpu_to_le64(ring->desc_cb[i].dma
1818 + ring->desc_cb[i].page_offset);
1819}
1820
1821static void hns3_nic_reclaim_one_desc(struct hns3_enet_ring *ring, int *bytes,
1822 int *pkts)
1823{
1824 struct hns3_desc_cb *desc_cb = &ring->desc_cb[ring->next_to_clean];
1825
1826 (*pkts) += (desc_cb->type == DESC_TYPE_SKB);
1827 (*bytes) += desc_cb->length;
1828 /* desc_cb will be cleaned, after hnae_free_buffer_detach*/
1829 hns3_free_buffer_detach(ring, ring->next_to_clean);
1830
1831 ring_ptr_move_fw(ring, next_to_clean);
1832}
1833
1834static int is_valid_clean_head(struct hns3_enet_ring *ring, int h)
1835{
1836 int u = ring->next_to_use;
1837 int c = ring->next_to_clean;
1838
1839 if (unlikely(h > ring->desc_num))
1840 return 0;
1841
1842 return u > c ? (h > c && h <= u) : (h > c || h <= u);
1843}
1844
Lipeng24e750c2017-10-23 19:51:07 +08001845bool hns3_clean_tx_ring(struct hns3_enet_ring *ring, int budget)
Salil76ad4f02017-08-02 16:59:45 +01001846{
1847 struct net_device *netdev = ring->tqp->handle->kinfo.netdev;
1848 struct netdev_queue *dev_queue;
1849 int bytes, pkts;
1850 int head;
1851
1852 head = readl_relaxed(ring->tqp->io_base + HNS3_RING_TX_RING_HEAD_REG);
1853 rmb(); /* Make sure head is ready before touch any data */
1854
1855 if (is_ring_empty(ring) || head == ring->next_to_clean)
Lipeng24e750c2017-10-23 19:51:07 +08001856 return true; /* no data to poll */
Salil76ad4f02017-08-02 16:59:45 +01001857
1858 if (!is_valid_clean_head(ring, head)) {
1859 netdev_err(netdev, "wrong head (%d, %d-%d)\n", head,
1860 ring->next_to_use, ring->next_to_clean);
1861
1862 u64_stats_update_begin(&ring->syncp);
1863 ring->stats.io_err_cnt++;
1864 u64_stats_update_end(&ring->syncp);
Lipeng24e750c2017-10-23 19:51:07 +08001865 return true;
Salil76ad4f02017-08-02 16:59:45 +01001866 }
1867
1868 bytes = 0;
1869 pkts = 0;
1870 while (head != ring->next_to_clean && budget) {
1871 hns3_nic_reclaim_one_desc(ring, &bytes, &pkts);
1872 /* Issue prefetch for next Tx descriptor */
1873 prefetch(&ring->desc_cb[ring->next_to_clean]);
1874 budget--;
1875 }
1876
1877 ring->tqp_vector->tx_group.total_bytes += bytes;
1878 ring->tqp_vector->tx_group.total_packets += pkts;
1879
1880 u64_stats_update_begin(&ring->syncp);
1881 ring->stats.tx_bytes += bytes;
1882 ring->stats.tx_pkts += pkts;
1883 u64_stats_update_end(&ring->syncp);
1884
1885 dev_queue = netdev_get_tx_queue(netdev, ring->tqp->tqp_index);
1886 netdev_tx_completed_queue(dev_queue, pkts, bytes);
1887
1888 if (unlikely(pkts && netif_carrier_ok(netdev) &&
1889 (ring_space(ring) > HNS3_MAX_BD_PER_PKT))) {
1890 /* Make sure that anybody stopping the queue after this
1891 * sees the new next_to_clean.
1892 */
1893 smp_mb();
1894 if (netif_tx_queue_stopped(dev_queue)) {
1895 netif_tx_wake_queue(dev_queue);
1896 ring->stats.restart_queue++;
1897 }
1898 }
1899
1900 return !!budget;
1901}
1902
1903static int hns3_desc_unused(struct hns3_enet_ring *ring)
1904{
1905 int ntc = ring->next_to_clean;
1906 int ntu = ring->next_to_use;
1907
1908 return ((ntc >= ntu) ? 0 : ring->desc_num) + ntc - ntu;
1909}
1910
1911static void
1912hns3_nic_alloc_rx_buffers(struct hns3_enet_ring *ring, int cleand_count)
1913{
1914 struct hns3_desc_cb *desc_cb;
1915 struct hns3_desc_cb res_cbs;
1916 int i, ret;
1917
1918 for (i = 0; i < cleand_count; i++) {
1919 desc_cb = &ring->desc_cb[ring->next_to_use];
1920 if (desc_cb->reuse_flag) {
1921 u64_stats_update_begin(&ring->syncp);
1922 ring->stats.reuse_pg_cnt++;
1923 u64_stats_update_end(&ring->syncp);
1924
1925 hns3_reuse_buffer(ring, ring->next_to_use);
1926 } else {
1927 ret = hns3_reserve_buffer_map(ring, &res_cbs);
1928 if (ret) {
1929 u64_stats_update_begin(&ring->syncp);
1930 ring->stats.sw_err_cnt++;
1931 u64_stats_update_end(&ring->syncp);
1932
1933 netdev_err(ring->tqp->handle->kinfo.netdev,
1934 "hnae reserve buffer map failed.\n");
1935 break;
1936 }
1937 hns3_replace_buffer(ring, ring->next_to_use, &res_cbs);
1938 }
1939
1940 ring_ptr_move_fw(ring, next_to_use);
1941 }
1942
1943 wmb(); /* Make all data has been write before submit */
1944 writel_relaxed(i, ring->tqp->io_base + HNS3_RING_RX_RING_HEAD_REG);
1945}
1946
1947/* hns3_nic_get_headlen - determine size of header for LRO/GRO
1948 * @data: pointer to the start of the headers
1949 * @max: total length of section to find headers in
1950 *
1951 * This function is meant to determine the length of headers that will
1952 * be recognized by hardware for LRO, GRO, and RSC offloads. The main
1953 * motivation of doing this is to only perform one pull for IPv4 TCP
1954 * packets so that we can do basic things like calculating the gso_size
1955 * based on the average data per packet.
1956 */
1957static unsigned int hns3_nic_get_headlen(unsigned char *data, u32 flag,
1958 unsigned int max_size)
1959{
1960 unsigned char *network;
1961 u8 hlen;
1962
1963 /* This should never happen, but better safe than sorry */
1964 if (max_size < ETH_HLEN)
1965 return max_size;
1966
1967 /* Initialize network frame pointer */
1968 network = data;
1969
1970 /* Set first protocol and move network header forward */
1971 network += ETH_HLEN;
1972
1973 /* Handle any vlan tag if present */
1974 if (hnae_get_field(flag, HNS3_RXD_VLAN_M, HNS3_RXD_VLAN_S)
1975 == HNS3_RX_FLAG_VLAN_PRESENT) {
1976 if ((typeof(max_size))(network - data) > (max_size - VLAN_HLEN))
1977 return max_size;
1978
1979 network += VLAN_HLEN;
1980 }
1981
1982 /* Handle L3 protocols */
1983 if (hnae_get_field(flag, HNS3_RXD_L3ID_M, HNS3_RXD_L3ID_S)
1984 == HNS3_RX_FLAG_L3ID_IPV4) {
1985 if ((typeof(max_size))(network - data) >
1986 (max_size - sizeof(struct iphdr)))
1987 return max_size;
1988
1989 /* Access ihl as a u8 to avoid unaligned access on ia64 */
1990 hlen = (network[0] & 0x0F) << 2;
1991
1992 /* Verify hlen meets minimum size requirements */
1993 if (hlen < sizeof(struct iphdr))
1994 return network - data;
1995
1996 /* Record next protocol if header is present */
1997 } else if (hnae_get_field(flag, HNS3_RXD_L3ID_M, HNS3_RXD_L3ID_S)
1998 == HNS3_RX_FLAG_L3ID_IPV6) {
1999 if ((typeof(max_size))(network - data) >
2000 (max_size - sizeof(struct ipv6hdr)))
2001 return max_size;
2002
2003 /* Record next protocol */
2004 hlen = sizeof(struct ipv6hdr);
2005 } else {
2006 return network - data;
2007 }
2008
2009 /* Relocate pointer to start of L4 header */
2010 network += hlen;
2011
2012 /* Finally sort out TCP/UDP */
2013 if (hnae_get_field(flag, HNS3_RXD_L4ID_M, HNS3_RXD_L4ID_S)
2014 == HNS3_RX_FLAG_L4ID_TCP) {
2015 if ((typeof(max_size))(network - data) >
2016 (max_size - sizeof(struct tcphdr)))
2017 return max_size;
2018
2019 /* Access doff as a u8 to avoid unaligned access on ia64 */
2020 hlen = (network[12] & 0xF0) >> 2;
2021
2022 /* Verify hlen meets minimum size requirements */
2023 if (hlen < sizeof(struct tcphdr))
2024 return network - data;
2025
2026 network += hlen;
2027 } else if (hnae_get_field(flag, HNS3_RXD_L4ID_M, HNS3_RXD_L4ID_S)
2028 == HNS3_RX_FLAG_L4ID_UDP) {
2029 if ((typeof(max_size))(network - data) >
2030 (max_size - sizeof(struct udphdr)))
2031 return max_size;
2032
2033 network += sizeof(struct udphdr);
2034 }
2035
2036 /* If everything has gone correctly network should be the
2037 * data section of the packet and will be the end of the header.
2038 * If not then it probably represents the end of the last recognized
2039 * header.
2040 */
2041 if ((typeof(max_size))(network - data) < max_size)
2042 return network - data;
2043 else
2044 return max_size;
2045}
2046
2047static void hns3_nic_reuse_page(struct sk_buff *skb, int i,
2048 struct hns3_enet_ring *ring, int pull_len,
2049 struct hns3_desc_cb *desc_cb)
2050{
2051 struct hns3_desc *desc;
2052 int truesize, size;
2053 int last_offset;
2054 bool twobufs;
2055
2056 twobufs = ((PAGE_SIZE < 8192) &&
2057 hnae_buf_size(ring) == HNS3_BUFFER_SIZE_2048);
2058
2059 desc = &ring->desc[ring->next_to_clean];
2060 size = le16_to_cpu(desc->rx.size);
2061
2062 if (twobufs) {
2063 truesize = hnae_buf_size(ring);
2064 } else {
2065 truesize = ALIGN(size, L1_CACHE_BYTES);
2066 last_offset = hnae_page_size(ring) - hnae_buf_size(ring);
2067 }
2068
2069 skb_add_rx_frag(skb, i, desc_cb->priv, desc_cb->page_offset + pull_len,
2070 size - pull_len, truesize - pull_len);
2071
2072 /* Avoid re-using remote pages,flag default unreuse */
2073 if (unlikely(page_to_nid(desc_cb->priv) != numa_node_id()))
2074 return;
2075
2076 if (twobufs) {
2077 /* If we are only owner of page we can reuse it */
2078 if (likely(page_count(desc_cb->priv) == 1)) {
2079 /* Flip page offset to other buffer */
2080 desc_cb->page_offset ^= truesize;
2081
2082 desc_cb->reuse_flag = 1;
2083 /* bump ref count on page before it is given*/
2084 get_page(desc_cb->priv);
2085 }
2086 return;
2087 }
2088
2089 /* Move offset up to the next cache line */
2090 desc_cb->page_offset += truesize;
2091
2092 if (desc_cb->page_offset <= last_offset) {
2093 desc_cb->reuse_flag = 1;
2094 /* Bump ref count on page before it is given*/
2095 get_page(desc_cb->priv);
2096 }
2097}
2098
2099static void hns3_rx_checksum(struct hns3_enet_ring *ring, struct sk_buff *skb,
2100 struct hns3_desc *desc)
2101{
2102 struct net_device *netdev = ring->tqp->handle->kinfo.netdev;
2103 int l3_type, l4_type;
2104 u32 bd_base_info;
2105 int ol4_type;
2106 u32 l234info;
2107
2108 bd_base_info = le32_to_cpu(desc->rx.bd_base_info);
2109 l234info = le32_to_cpu(desc->rx.l234_info);
2110
2111 skb->ip_summed = CHECKSUM_NONE;
2112
2113 skb_checksum_none_assert(skb);
2114
2115 if (!(netdev->features & NETIF_F_RXCSUM))
2116 return;
2117
2118 /* check if hardware has done checksum */
2119 if (!hnae_get_bit(bd_base_info, HNS3_RXD_L3L4P_B))
2120 return;
2121
2122 if (unlikely(hnae_get_bit(l234info, HNS3_RXD_L3E_B) ||
2123 hnae_get_bit(l234info, HNS3_RXD_L4E_B) ||
2124 hnae_get_bit(l234info, HNS3_RXD_OL3E_B) ||
2125 hnae_get_bit(l234info, HNS3_RXD_OL4E_B))) {
2126 netdev_err(netdev, "L3/L4 error pkt\n");
2127 u64_stats_update_begin(&ring->syncp);
2128 ring->stats.l3l4_csum_err++;
2129 u64_stats_update_end(&ring->syncp);
2130
2131 return;
2132 }
2133
2134 l3_type = hnae_get_field(l234info, HNS3_RXD_L3ID_M,
2135 HNS3_RXD_L3ID_S);
2136 l4_type = hnae_get_field(l234info, HNS3_RXD_L4ID_M,
2137 HNS3_RXD_L4ID_S);
2138
2139 ol4_type = hnae_get_field(l234info, HNS3_RXD_OL4ID_M, HNS3_RXD_OL4ID_S);
2140 switch (ol4_type) {
2141 case HNS3_OL4_TYPE_MAC_IN_UDP:
2142 case HNS3_OL4_TYPE_NVGRE:
2143 skb->csum_level = 1;
2144 case HNS3_OL4_TYPE_NO_TUN:
2145 /* Can checksum ipv4 or ipv6 + UDP/TCP/SCTP packets */
2146 if (l3_type == HNS3_L3_TYPE_IPV4 ||
2147 (l3_type == HNS3_L3_TYPE_IPV6 &&
2148 (l4_type == HNS3_L4_TYPE_UDP ||
2149 l4_type == HNS3_L4_TYPE_TCP ||
2150 l4_type == HNS3_L4_TYPE_SCTP)))
2151 skb->ip_summed = CHECKSUM_UNNECESSARY;
2152 break;
2153 }
2154}
2155
Yunsheng Lind43e5ac2017-10-20 10:19:21 +08002156static void hns3_rx_skb(struct hns3_enet_ring *ring, struct sk_buff *skb)
2157{
2158 napi_gro_receive(&ring->tqp_vector->napi, skb);
2159}
2160
Salil76ad4f02017-08-02 16:59:45 +01002161static int hns3_handle_rx_bd(struct hns3_enet_ring *ring,
2162 struct sk_buff **out_skb, int *out_bnum)
2163{
2164 struct net_device *netdev = ring->tqp->handle->kinfo.netdev;
2165 struct hns3_desc_cb *desc_cb;
2166 struct hns3_desc *desc;
2167 struct sk_buff *skb;
2168 unsigned char *va;
2169 u32 bd_base_info;
2170 int pull_len;
2171 u32 l234info;
2172 int length;
2173 int bnum;
2174
2175 desc = &ring->desc[ring->next_to_clean];
2176 desc_cb = &ring->desc_cb[ring->next_to_clean];
2177
2178 prefetch(desc);
2179
2180 length = le16_to_cpu(desc->rx.pkt_len);
2181 bd_base_info = le32_to_cpu(desc->rx.bd_base_info);
2182 l234info = le32_to_cpu(desc->rx.l234_info);
2183
2184 /* Check valid BD */
2185 if (!hnae_get_bit(bd_base_info, HNS3_RXD_VLD_B))
2186 return -EFAULT;
2187
2188 va = (unsigned char *)desc_cb->buf + desc_cb->page_offset;
2189
2190 /* Prefetch first cache line of first page
2191 * Idea is to cache few bytes of the header of the packet. Our L1 Cache
2192 * line size is 64B so need to prefetch twice to make it 128B. But in
2193 * actual we can have greater size of caches with 128B Level 1 cache
2194 * lines. In such a case, single fetch would suffice to cache in the
2195 * relevant part of the header.
2196 */
2197 prefetch(va);
2198#if L1_CACHE_BYTES < 128
2199 prefetch(va + L1_CACHE_BYTES);
2200#endif
2201
2202 skb = *out_skb = napi_alloc_skb(&ring->tqp_vector->napi,
2203 HNS3_RX_HEAD_SIZE);
2204 if (unlikely(!skb)) {
2205 netdev_err(netdev, "alloc rx skb fail\n");
2206
2207 u64_stats_update_begin(&ring->syncp);
2208 ring->stats.sw_err_cnt++;
2209 u64_stats_update_end(&ring->syncp);
2210
2211 return -ENOMEM;
2212 }
2213
2214 prefetchw(skb->data);
2215
Peng Li9699cff2017-12-22 12:21:48 +08002216 /* Based on hw strategy, the tag offloaded will be stored at
2217 * ot_vlan_tag in two layer tag case, and stored at vlan_tag
2218 * in one layer tag case.
2219 */
2220 if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX) {
2221 u16 vlan_tag;
2222
2223 vlan_tag = le16_to_cpu(desc->rx.ot_vlan_tag);
2224 if (!(vlan_tag & VLAN_VID_MASK))
2225 vlan_tag = le16_to_cpu(desc->rx.vlan_tag);
2226 if (vlan_tag & VLAN_VID_MASK)
2227 __vlan_hwaccel_put_tag(skb,
2228 htons(ETH_P_8021Q),
2229 vlan_tag);
2230 }
2231
Salil76ad4f02017-08-02 16:59:45 +01002232 bnum = 1;
2233 if (length <= HNS3_RX_HEAD_SIZE) {
2234 memcpy(__skb_put(skb, length), va, ALIGN(length, sizeof(long)));
2235
2236 /* We can reuse buffer as-is, just make sure it is local */
2237 if (likely(page_to_nid(desc_cb->priv) == numa_node_id()))
2238 desc_cb->reuse_flag = 1;
2239 else /* This page cannot be reused so discard it */
2240 put_page(desc_cb->priv);
2241
2242 ring_ptr_move_fw(ring, next_to_clean);
2243 } else {
2244 u64_stats_update_begin(&ring->syncp);
2245 ring->stats.seg_pkt_cnt++;
2246 u64_stats_update_end(&ring->syncp);
2247
2248 pull_len = hns3_nic_get_headlen(va, l234info,
2249 HNS3_RX_HEAD_SIZE);
2250 memcpy(__skb_put(skb, pull_len), va,
2251 ALIGN(pull_len, sizeof(long)));
2252
2253 hns3_nic_reuse_page(skb, 0, ring, pull_len, desc_cb);
2254 ring_ptr_move_fw(ring, next_to_clean);
2255
2256 while (!hnae_get_bit(bd_base_info, HNS3_RXD_FE_B)) {
2257 desc = &ring->desc[ring->next_to_clean];
2258 desc_cb = &ring->desc_cb[ring->next_to_clean];
2259 bd_base_info = le32_to_cpu(desc->rx.bd_base_info);
2260 hns3_nic_reuse_page(skb, bnum, ring, 0, desc_cb);
2261 ring_ptr_move_fw(ring, next_to_clean);
2262 bnum++;
2263 }
2264 }
2265
2266 *out_bnum = bnum;
2267
2268 if (unlikely(!hnae_get_bit(bd_base_info, HNS3_RXD_VLD_B))) {
2269 netdev_err(netdev, "no valid bd,%016llx,%016llx\n",
2270 ((u64 *)desc)[0], ((u64 *)desc)[1]);
2271 u64_stats_update_begin(&ring->syncp);
2272 ring->stats.non_vld_descs++;
2273 u64_stats_update_end(&ring->syncp);
2274
2275 dev_kfree_skb_any(skb);
2276 return -EINVAL;
2277 }
2278
2279 if (unlikely((!desc->rx.pkt_len) ||
2280 hnae_get_bit(l234info, HNS3_RXD_TRUNCAT_B))) {
2281 netdev_err(netdev, "truncated pkt\n");
2282 u64_stats_update_begin(&ring->syncp);
2283 ring->stats.err_pkt_len++;
2284 u64_stats_update_end(&ring->syncp);
2285
2286 dev_kfree_skb_any(skb);
2287 return -EFAULT;
2288 }
2289
2290 if (unlikely(hnae_get_bit(l234info, HNS3_RXD_L2E_B))) {
2291 netdev_err(netdev, "L2 error pkt\n");
2292 u64_stats_update_begin(&ring->syncp);
2293 ring->stats.l2_err++;
2294 u64_stats_update_end(&ring->syncp);
2295
2296 dev_kfree_skb_any(skb);
2297 return -EFAULT;
2298 }
2299
2300 u64_stats_update_begin(&ring->syncp);
2301 ring->stats.rx_pkts++;
2302 ring->stats.rx_bytes += skb->len;
2303 u64_stats_update_end(&ring->syncp);
2304
2305 ring->tqp_vector->rx_group.total_bytes += skb->len;
2306
2307 hns3_rx_checksum(ring, skb, desc);
2308 return 0;
2309}
2310
Yunsheng Lind43e5ac2017-10-20 10:19:21 +08002311int hns3_clean_rx_ring(
2312 struct hns3_enet_ring *ring, int budget,
2313 void (*rx_fn)(struct hns3_enet_ring *, struct sk_buff *))
Salil76ad4f02017-08-02 16:59:45 +01002314{
2315#define RCB_NOF_ALLOC_RX_BUFF_ONCE 16
2316 struct net_device *netdev = ring->tqp->handle->kinfo.netdev;
2317 int recv_pkts, recv_bds, clean_count, err;
2318 int unused_count = hns3_desc_unused(ring);
2319 struct sk_buff *skb = NULL;
2320 int num, bnum = 0;
2321
2322 num = readl_relaxed(ring->tqp->io_base + HNS3_RING_RX_RING_FBDNUM_REG);
2323 rmb(); /* Make sure num taken effect before the other data is touched */
2324
2325 recv_pkts = 0, recv_bds = 0, clean_count = 0;
2326 num -= unused_count;
2327
2328 while (recv_pkts < budget && recv_bds < num) {
2329 /* Reuse or realloc buffers */
2330 if (clean_count + unused_count >= RCB_NOF_ALLOC_RX_BUFF_ONCE) {
2331 hns3_nic_alloc_rx_buffers(ring,
2332 clean_count + unused_count);
2333 clean_count = 0;
2334 unused_count = hns3_desc_unused(ring);
2335 }
2336
2337 /* Poll one pkt */
2338 err = hns3_handle_rx_bd(ring, &skb, &bnum);
2339 if (unlikely(!skb)) /* This fault cannot be repaired */
2340 goto out;
2341
2342 recv_bds += bnum;
2343 clean_count += bnum;
2344 if (unlikely(err)) { /* Do jump the err */
2345 recv_pkts++;
2346 continue;
2347 }
2348
2349 /* Do update ip stack process */
2350 skb->protocol = eth_type_trans(skb, netdev);
Yunsheng Lind43e5ac2017-10-20 10:19:21 +08002351 rx_fn(ring, skb);
Salil76ad4f02017-08-02 16:59:45 +01002352
2353 recv_pkts++;
2354 }
2355
2356out:
2357 /* Make all data has been write before submit */
2358 if (clean_count + unused_count > 0)
2359 hns3_nic_alloc_rx_buffers(ring,
2360 clean_count + unused_count);
2361
2362 return recv_pkts;
2363}
2364
2365static bool hns3_get_new_int_gl(struct hns3_enet_ring_group *ring_group)
2366{
2367#define HNS3_RX_ULTRA_PACKET_RATE 40000
2368 enum hns3_flow_level_range new_flow_level;
2369 struct hns3_enet_tqp_vector *tqp_vector;
2370 int packets_per_secs;
2371 int bytes_per_usecs;
2372 u16 new_int_gl;
2373 int usecs;
2374
2375 if (!ring_group->int_gl)
2376 return false;
2377
2378 if (ring_group->total_packets == 0) {
2379 ring_group->int_gl = HNS3_INT_GL_50K;
2380 ring_group->flow_level = HNS3_FLOW_LOW;
2381 return true;
2382 }
2383
2384 /* Simple throttlerate management
2385 * 0-10MB/s lower (50000 ints/s)
2386 * 10-20MB/s middle (20000 ints/s)
2387 * 20-1249MB/s high (18000 ints/s)
2388 * > 40000pps ultra (8000 ints/s)
2389 */
2390 new_flow_level = ring_group->flow_level;
2391 new_int_gl = ring_group->int_gl;
2392 tqp_vector = ring_group->ring->tqp_vector;
2393 usecs = (ring_group->int_gl << 1);
2394 bytes_per_usecs = ring_group->total_bytes / usecs;
2395 /* 1000000 microseconds */
2396 packets_per_secs = ring_group->total_packets * 1000000 / usecs;
2397
2398 switch (new_flow_level) {
2399 case HNS3_FLOW_LOW:
2400 if (bytes_per_usecs > 10)
2401 new_flow_level = HNS3_FLOW_MID;
2402 break;
2403 case HNS3_FLOW_MID:
2404 if (bytes_per_usecs > 20)
2405 new_flow_level = HNS3_FLOW_HIGH;
2406 else if (bytes_per_usecs <= 10)
2407 new_flow_level = HNS3_FLOW_LOW;
2408 break;
2409 case HNS3_FLOW_HIGH:
2410 case HNS3_FLOW_ULTRA:
2411 default:
2412 if (bytes_per_usecs <= 20)
2413 new_flow_level = HNS3_FLOW_MID;
2414 break;
2415 }
2416
2417 if ((packets_per_secs > HNS3_RX_ULTRA_PACKET_RATE) &&
2418 (&tqp_vector->rx_group == ring_group))
2419 new_flow_level = HNS3_FLOW_ULTRA;
2420
2421 switch (new_flow_level) {
2422 case HNS3_FLOW_LOW:
2423 new_int_gl = HNS3_INT_GL_50K;
2424 break;
2425 case HNS3_FLOW_MID:
2426 new_int_gl = HNS3_INT_GL_20K;
2427 break;
2428 case HNS3_FLOW_HIGH:
2429 new_int_gl = HNS3_INT_GL_18K;
2430 break;
2431 case HNS3_FLOW_ULTRA:
2432 new_int_gl = HNS3_INT_GL_8K;
2433 break;
2434 default:
2435 break;
2436 }
2437
2438 ring_group->total_bytes = 0;
2439 ring_group->total_packets = 0;
2440 ring_group->flow_level = new_flow_level;
2441 if (new_int_gl != ring_group->int_gl) {
2442 ring_group->int_gl = new_int_gl;
2443 return true;
2444 }
2445 return false;
2446}
2447
2448static void hns3_update_new_int_gl(struct hns3_enet_tqp_vector *tqp_vector)
2449{
Fuyun Liang8b1ff1e2018-01-12 16:23:12 +08002450 struct hns3_enet_ring_group *rx_group = &tqp_vector->rx_group;
2451 struct hns3_enet_ring_group *tx_group = &tqp_vector->tx_group;
2452 bool rx_update, tx_update;
Salil76ad4f02017-08-02 16:59:45 +01002453
Fuyun Liang8b1ff1e2018-01-12 16:23:12 +08002454 if (rx_group->gl_adapt_enable) {
2455 rx_update = hns3_get_new_int_gl(rx_group);
2456 if (rx_update)
2457 hns3_set_vector_coalesce_rx_gl(tqp_vector,
2458 rx_group->int_gl);
2459 }
2460
2461 if (tx_group->gl_adapt_enable) {
2462 tx_update = hns3_get_new_int_gl(&tqp_vector->tx_group);
2463 if (tx_update)
2464 hns3_set_vector_coalesce_tx_gl(tqp_vector,
2465 tx_group->int_gl);
Salil76ad4f02017-08-02 16:59:45 +01002466 }
2467}
2468
2469static int hns3_nic_common_poll(struct napi_struct *napi, int budget)
2470{
2471 struct hns3_enet_ring *ring;
2472 int rx_pkt_total = 0;
2473
2474 struct hns3_enet_tqp_vector *tqp_vector =
2475 container_of(napi, struct hns3_enet_tqp_vector, napi);
2476 bool clean_complete = true;
2477 int rx_budget;
2478
2479 /* Since the actual Tx work is minimal, we can give the Tx a larger
2480 * budget and be more aggressive about cleaning up the Tx descriptors.
2481 */
2482 hns3_for_each_ring(ring, tqp_vector->tx_group) {
2483 if (!hns3_clean_tx_ring(ring, budget))
2484 clean_complete = false;
2485 }
2486
2487 /* make sure rx ring budget not smaller than 1 */
2488 rx_budget = max(budget / tqp_vector->num_tqps, 1);
2489
2490 hns3_for_each_ring(ring, tqp_vector->rx_group) {
Yunsheng Lind43e5ac2017-10-20 10:19:21 +08002491 int rx_cleaned = hns3_clean_rx_ring(ring, rx_budget,
2492 hns3_rx_skb);
Salil76ad4f02017-08-02 16:59:45 +01002493
2494 if (rx_cleaned >= rx_budget)
2495 clean_complete = false;
2496
2497 rx_pkt_total += rx_cleaned;
2498 }
2499
2500 tqp_vector->rx_group.total_packets += rx_pkt_total;
2501
2502 if (!clean_complete)
2503 return budget;
2504
2505 napi_complete(napi);
2506 hns3_update_new_int_gl(tqp_vector);
2507 hns3_mask_vector_irq(tqp_vector, 1);
2508
2509 return rx_pkt_total;
2510}
2511
2512static int hns3_get_vector_ring_chain(struct hns3_enet_tqp_vector *tqp_vector,
2513 struct hnae3_ring_chain_node *head)
2514{
2515 struct pci_dev *pdev = tqp_vector->handle->pdev;
2516 struct hnae3_ring_chain_node *cur_chain = head;
2517 struct hnae3_ring_chain_node *chain;
2518 struct hns3_enet_ring *tx_ring;
2519 struct hns3_enet_ring *rx_ring;
2520
2521 tx_ring = tqp_vector->tx_group.ring;
2522 if (tx_ring) {
2523 cur_chain->tqp_index = tx_ring->tqp->tqp_index;
2524 hnae_set_bit(cur_chain->flag, HNAE3_RING_TYPE_B,
2525 HNAE3_RING_TYPE_TX);
Fuyun Liang11af96a2018-01-12 16:23:15 +08002526 hnae_set_field(cur_chain->int_gl_idx, HNAE3_RING_GL_IDX_M,
2527 HNAE3_RING_GL_IDX_S, HNAE3_RING_GL_TX);
Salil76ad4f02017-08-02 16:59:45 +01002528
2529 cur_chain->next = NULL;
2530
2531 while (tx_ring->next) {
2532 tx_ring = tx_ring->next;
2533
2534 chain = devm_kzalloc(&pdev->dev, sizeof(*chain),
2535 GFP_KERNEL);
2536 if (!chain)
2537 return -ENOMEM;
2538
2539 cur_chain->next = chain;
2540 chain->tqp_index = tx_ring->tqp->tqp_index;
2541 hnae_set_bit(chain->flag, HNAE3_RING_TYPE_B,
2542 HNAE3_RING_TYPE_TX);
Fuyun Liang11af96a2018-01-12 16:23:15 +08002543 hnae_set_field(chain->int_gl_idx,
2544 HNAE3_RING_GL_IDX_M,
2545 HNAE3_RING_GL_IDX_S,
2546 HNAE3_RING_GL_TX);
Salil76ad4f02017-08-02 16:59:45 +01002547
2548 cur_chain = chain;
2549 }
2550 }
2551
2552 rx_ring = tqp_vector->rx_group.ring;
2553 if (!tx_ring && rx_ring) {
2554 cur_chain->next = NULL;
2555 cur_chain->tqp_index = rx_ring->tqp->tqp_index;
2556 hnae_set_bit(cur_chain->flag, HNAE3_RING_TYPE_B,
2557 HNAE3_RING_TYPE_RX);
Fuyun Liang11af96a2018-01-12 16:23:15 +08002558 hnae_set_field(cur_chain->int_gl_idx, HNAE3_RING_GL_IDX_M,
2559 HNAE3_RING_GL_IDX_S, HNAE3_RING_GL_RX);
Salil76ad4f02017-08-02 16:59:45 +01002560
2561 rx_ring = rx_ring->next;
2562 }
2563
2564 while (rx_ring) {
2565 chain = devm_kzalloc(&pdev->dev, sizeof(*chain), GFP_KERNEL);
2566 if (!chain)
2567 return -ENOMEM;
2568
2569 cur_chain->next = chain;
2570 chain->tqp_index = rx_ring->tqp->tqp_index;
2571 hnae_set_bit(chain->flag, HNAE3_RING_TYPE_B,
2572 HNAE3_RING_TYPE_RX);
Fuyun Liang11af96a2018-01-12 16:23:15 +08002573 hnae_set_field(chain->int_gl_idx, HNAE3_RING_GL_IDX_M,
2574 HNAE3_RING_GL_IDX_S, HNAE3_RING_GL_RX);
2575
Salil76ad4f02017-08-02 16:59:45 +01002576 cur_chain = chain;
2577
2578 rx_ring = rx_ring->next;
2579 }
2580
2581 return 0;
2582}
2583
2584static void hns3_free_vector_ring_chain(struct hns3_enet_tqp_vector *tqp_vector,
2585 struct hnae3_ring_chain_node *head)
2586{
2587 struct pci_dev *pdev = tqp_vector->handle->pdev;
2588 struct hnae3_ring_chain_node *chain_tmp, *chain;
2589
2590 chain = head->next;
2591
2592 while (chain) {
2593 chain_tmp = chain->next;
2594 devm_kfree(&pdev->dev, chain);
2595 chain = chain_tmp;
2596 }
2597}
2598
2599static void hns3_add_ring_to_group(struct hns3_enet_ring_group *group,
2600 struct hns3_enet_ring *ring)
2601{
2602 ring->next = group->ring;
2603 group->ring = ring;
2604
2605 group->count++;
2606}
2607
2608static int hns3_nic_init_vector_data(struct hns3_nic_priv *priv)
2609{
2610 struct hnae3_ring_chain_node vector_ring_chain;
2611 struct hnae3_handle *h = priv->ae_handle;
2612 struct hns3_enet_tqp_vector *tqp_vector;
2613 struct hnae3_vector_info *vector;
2614 struct pci_dev *pdev = h->pdev;
2615 u16 tqp_num = h->kinfo.num_tqps;
2616 u16 vector_num;
2617 int ret = 0;
2618 u16 i;
2619
2620 /* RSS size, cpu online and vector_num should be the same */
2621 /* Should consider 2p/4p later */
2622 vector_num = min_t(u16, num_online_cpus(), tqp_num);
2623 vector = devm_kcalloc(&pdev->dev, vector_num, sizeof(*vector),
2624 GFP_KERNEL);
2625 if (!vector)
2626 return -ENOMEM;
2627
2628 vector_num = h->ae_algo->ops->get_vector(h, vector_num, vector);
2629
2630 priv->vector_num = vector_num;
2631 priv->tqp_vector = (struct hns3_enet_tqp_vector *)
2632 devm_kcalloc(&pdev->dev, vector_num, sizeof(*priv->tqp_vector),
2633 GFP_KERNEL);
2634 if (!priv->tqp_vector)
2635 return -ENOMEM;
2636
2637 for (i = 0; i < tqp_num; i++) {
2638 u16 vector_i = i % vector_num;
2639
2640 tqp_vector = &priv->tqp_vector[vector_i];
2641
2642 hns3_add_ring_to_group(&tqp_vector->tx_group,
2643 priv->ring_data[i].ring);
2644
2645 hns3_add_ring_to_group(&tqp_vector->rx_group,
2646 priv->ring_data[i + tqp_num].ring);
2647
2648 tqp_vector->idx = vector_i;
2649 tqp_vector->mask_addr = vector[vector_i].io_addr;
2650 tqp_vector->vector_irq = vector[vector_i].vector;
2651 tqp_vector->num_tqps++;
2652
2653 priv->ring_data[i].ring->tqp_vector = tqp_vector;
2654 priv->ring_data[i + tqp_num].ring->tqp_vector = tqp_vector;
2655 }
2656
2657 for (i = 0; i < vector_num; i++) {
2658 tqp_vector = &priv->tqp_vector[i];
2659
2660 tqp_vector->rx_group.total_bytes = 0;
2661 tqp_vector->rx_group.total_packets = 0;
2662 tqp_vector->tx_group.total_bytes = 0;
2663 tqp_vector->tx_group.total_packets = 0;
Fuyun Liang5fd47892018-01-12 16:23:11 +08002664 hns3_vector_gl_rl_init(tqp_vector, priv);
Salil76ad4f02017-08-02 16:59:45 +01002665 tqp_vector->handle = h;
2666
2667 ret = hns3_get_vector_ring_chain(tqp_vector,
2668 &vector_ring_chain);
2669 if (ret)
2670 goto out;
2671
2672 ret = h->ae_algo->ops->map_ring_to_vector(h,
2673 tqp_vector->vector_irq, &vector_ring_chain);
2674 if (ret)
2675 goto out;
2676
2677 hns3_free_vector_ring_chain(tqp_vector, &vector_ring_chain);
2678
2679 netif_napi_add(priv->netdev, &tqp_vector->napi,
2680 hns3_nic_common_poll, NAPI_POLL_WEIGHT);
2681 }
2682
2683out:
2684 devm_kfree(&pdev->dev, vector);
2685 return ret;
2686}
2687
2688static int hns3_nic_uninit_vector_data(struct hns3_nic_priv *priv)
2689{
2690 struct hnae3_ring_chain_node vector_ring_chain;
2691 struct hnae3_handle *h = priv->ae_handle;
2692 struct hns3_enet_tqp_vector *tqp_vector;
2693 struct pci_dev *pdev = h->pdev;
2694 int i, ret;
2695
2696 for (i = 0; i < priv->vector_num; i++) {
2697 tqp_vector = &priv->tqp_vector[i];
2698
2699 ret = hns3_get_vector_ring_chain(tqp_vector,
2700 &vector_ring_chain);
2701 if (ret)
2702 return ret;
2703
2704 ret = h->ae_algo->ops->unmap_ring_from_vector(h,
2705 tqp_vector->vector_irq, &vector_ring_chain);
2706 if (ret)
2707 return ret;
2708
2709 hns3_free_vector_ring_chain(tqp_vector, &vector_ring_chain);
2710
2711 if (priv->tqp_vector[i].irq_init_flag == HNS3_VECTOR_INITED) {
2712 (void)irq_set_affinity_hint(
2713 priv->tqp_vector[i].vector_irq,
2714 NULL);
qumingguangae064e62017-11-02 20:45:22 +08002715 free_irq(priv->tqp_vector[i].vector_irq,
2716 &priv->tqp_vector[i]);
Salil76ad4f02017-08-02 16:59:45 +01002717 }
2718
2719 priv->ring_data[i].ring->irq_init_flag = HNS3_VECTOR_NOT_INITED;
2720
2721 netif_napi_del(&priv->tqp_vector[i].napi);
2722 }
2723
2724 devm_kfree(&pdev->dev, priv->tqp_vector);
2725
2726 return 0;
2727}
2728
2729static int hns3_ring_get_cfg(struct hnae3_queue *q, struct hns3_nic_priv *priv,
2730 int ring_type)
2731{
2732 struct hns3_nic_ring_data *ring_data = priv->ring_data;
2733 int queue_num = priv->ae_handle->kinfo.num_tqps;
2734 struct pci_dev *pdev = priv->ae_handle->pdev;
2735 struct hns3_enet_ring *ring;
2736
2737 ring = devm_kzalloc(&pdev->dev, sizeof(*ring), GFP_KERNEL);
2738 if (!ring)
2739 return -ENOMEM;
2740
2741 if (ring_type == HNAE3_RING_TYPE_TX) {
2742 ring_data[q->tqp_index].ring = ring;
Lipeng66b44732017-10-23 19:51:05 +08002743 ring_data[q->tqp_index].queue_index = q->tqp_index;
Salil76ad4f02017-08-02 16:59:45 +01002744 ring->io_base = (u8 __iomem *)q->io_base + HNS3_TX_REG_OFFSET;
2745 } else {
2746 ring_data[q->tqp_index + queue_num].ring = ring;
Lipeng66b44732017-10-23 19:51:05 +08002747 ring_data[q->tqp_index + queue_num].queue_index = q->tqp_index;
Salil76ad4f02017-08-02 16:59:45 +01002748 ring->io_base = q->io_base;
2749 }
2750
2751 hnae_set_bit(ring->flag, HNAE3_RING_TYPE_B, ring_type);
2752
Salil76ad4f02017-08-02 16:59:45 +01002753 ring->tqp = q;
2754 ring->desc = NULL;
2755 ring->desc_cb = NULL;
2756 ring->dev = priv->dev;
2757 ring->desc_dma_addr = 0;
2758 ring->buf_size = q->buf_size;
2759 ring->desc_num = q->desc_num;
2760 ring->next_to_use = 0;
2761 ring->next_to_clean = 0;
2762
2763 return 0;
2764}
2765
2766static int hns3_queue_to_ring(struct hnae3_queue *tqp,
2767 struct hns3_nic_priv *priv)
2768{
2769 int ret;
2770
2771 ret = hns3_ring_get_cfg(tqp, priv, HNAE3_RING_TYPE_TX);
2772 if (ret)
2773 return ret;
2774
2775 ret = hns3_ring_get_cfg(tqp, priv, HNAE3_RING_TYPE_RX);
2776 if (ret)
2777 return ret;
2778
2779 return 0;
2780}
2781
2782static int hns3_get_ring_config(struct hns3_nic_priv *priv)
2783{
2784 struct hnae3_handle *h = priv->ae_handle;
2785 struct pci_dev *pdev = h->pdev;
2786 int i, ret;
2787
2788 priv->ring_data = devm_kzalloc(&pdev->dev, h->kinfo.num_tqps *
2789 sizeof(*priv->ring_data) * 2,
2790 GFP_KERNEL);
2791 if (!priv->ring_data)
2792 return -ENOMEM;
2793
2794 for (i = 0; i < h->kinfo.num_tqps; i++) {
2795 ret = hns3_queue_to_ring(h->kinfo.tqp[i], priv);
2796 if (ret)
2797 goto err;
2798 }
2799
2800 return 0;
2801err:
2802 devm_kfree(&pdev->dev, priv->ring_data);
2803 return ret;
2804}
2805
Peng Li09f2af62017-12-22 12:21:41 +08002806static void hns3_put_ring_config(struct hns3_nic_priv *priv)
2807{
2808 struct hnae3_handle *h = priv->ae_handle;
2809 int i;
2810
2811 for (i = 0; i < h->kinfo.num_tqps; i++) {
2812 devm_kfree(priv->dev, priv->ring_data[i].ring);
2813 devm_kfree(priv->dev,
2814 priv->ring_data[i + h->kinfo.num_tqps].ring);
2815 }
2816 devm_kfree(priv->dev, priv->ring_data);
2817}
2818
Salil76ad4f02017-08-02 16:59:45 +01002819static int hns3_alloc_ring_memory(struct hns3_enet_ring *ring)
2820{
2821 int ret;
2822
2823 if (ring->desc_num <= 0 || ring->buf_size <= 0)
2824 return -EINVAL;
2825
2826 ring->desc_cb = kcalloc(ring->desc_num, sizeof(ring->desc_cb[0]),
2827 GFP_KERNEL);
2828 if (!ring->desc_cb) {
2829 ret = -ENOMEM;
2830 goto out;
2831 }
2832
2833 ret = hns3_alloc_desc(ring);
2834 if (ret)
2835 goto out_with_desc_cb;
2836
2837 if (!HNAE3_IS_TX_RING(ring)) {
2838 ret = hns3_alloc_ring_buffers(ring);
2839 if (ret)
2840 goto out_with_desc;
2841 }
2842
2843 return 0;
2844
2845out_with_desc:
2846 hns3_free_desc(ring);
2847out_with_desc_cb:
2848 kfree(ring->desc_cb);
2849 ring->desc_cb = NULL;
2850out:
2851 return ret;
2852}
2853
2854static void hns3_fini_ring(struct hns3_enet_ring *ring)
2855{
2856 hns3_free_desc(ring);
2857 kfree(ring->desc_cb);
2858 ring->desc_cb = NULL;
2859 ring->next_to_clean = 0;
2860 ring->next_to_use = 0;
2861}
2862
Yunsheng Lin1db9b1b2017-10-09 15:44:01 +08002863static int hns3_buf_size2type(u32 buf_size)
Salil76ad4f02017-08-02 16:59:45 +01002864{
2865 int bd_size_type;
2866
2867 switch (buf_size) {
2868 case 512:
2869 bd_size_type = HNS3_BD_SIZE_512_TYPE;
2870 break;
2871 case 1024:
2872 bd_size_type = HNS3_BD_SIZE_1024_TYPE;
2873 break;
2874 case 2048:
2875 bd_size_type = HNS3_BD_SIZE_2048_TYPE;
2876 break;
2877 case 4096:
2878 bd_size_type = HNS3_BD_SIZE_4096_TYPE;
2879 break;
2880 default:
2881 bd_size_type = HNS3_BD_SIZE_2048_TYPE;
2882 }
2883
2884 return bd_size_type;
2885}
2886
2887static void hns3_init_ring_hw(struct hns3_enet_ring *ring)
2888{
2889 dma_addr_t dma = ring->desc_dma_addr;
2890 struct hnae3_queue *q = ring->tqp;
2891
2892 if (!HNAE3_IS_TX_RING(ring)) {
2893 hns3_write_dev(q, HNS3_RING_RX_RING_BASEADDR_L_REG,
2894 (u32)dma);
2895 hns3_write_dev(q, HNS3_RING_RX_RING_BASEADDR_H_REG,
2896 (u32)((dma >> 31) >> 1));
2897
2898 hns3_write_dev(q, HNS3_RING_RX_RING_BD_LEN_REG,
2899 hns3_buf_size2type(ring->buf_size));
2900 hns3_write_dev(q, HNS3_RING_RX_RING_BD_NUM_REG,
2901 ring->desc_num / 8 - 1);
2902
2903 } else {
2904 hns3_write_dev(q, HNS3_RING_TX_RING_BASEADDR_L_REG,
2905 (u32)dma);
2906 hns3_write_dev(q, HNS3_RING_TX_RING_BASEADDR_H_REG,
2907 (u32)((dma >> 31) >> 1));
2908
2909 hns3_write_dev(q, HNS3_RING_TX_RING_BD_LEN_REG,
2910 hns3_buf_size2type(ring->buf_size));
2911 hns3_write_dev(q, HNS3_RING_TX_RING_BD_NUM_REG,
2912 ring->desc_num / 8 - 1);
2913 }
2914}
2915
Lipeng5668abd2017-10-10 16:42:04 +08002916int hns3_init_all_ring(struct hns3_nic_priv *priv)
Salil76ad4f02017-08-02 16:59:45 +01002917{
2918 struct hnae3_handle *h = priv->ae_handle;
2919 int ring_num = h->kinfo.num_tqps * 2;
2920 int i, j;
2921 int ret;
2922
2923 for (i = 0; i < ring_num; i++) {
2924 ret = hns3_alloc_ring_memory(priv->ring_data[i].ring);
2925 if (ret) {
2926 dev_err(priv->dev,
2927 "Alloc ring memory fail! ret=%d\n", ret);
2928 goto out_when_alloc_ring_memory;
2929 }
2930
2931 hns3_init_ring_hw(priv->ring_data[i].ring);
2932
2933 u64_stats_init(&priv->ring_data[i].ring->syncp);
2934 }
2935
2936 return 0;
2937
2938out_when_alloc_ring_memory:
2939 for (j = i - 1; j >= 0; j--)
Lipengee83f772017-10-10 16:42:03 +08002940 hns3_fini_ring(priv->ring_data[j].ring);
Salil76ad4f02017-08-02 16:59:45 +01002941
2942 return -ENOMEM;
2943}
2944
Lipeng5668abd2017-10-10 16:42:04 +08002945int hns3_uninit_all_ring(struct hns3_nic_priv *priv)
Salil76ad4f02017-08-02 16:59:45 +01002946{
2947 struct hnae3_handle *h = priv->ae_handle;
2948 int i;
2949
2950 for (i = 0; i < h->kinfo.num_tqps; i++) {
2951 if (h->ae_algo->ops->reset_queue)
2952 h->ae_algo->ops->reset_queue(h, i);
2953
2954 hns3_fini_ring(priv->ring_data[i].ring);
Peng Li99fdf6b2017-12-22 12:21:43 +08002955 devm_kfree(priv->dev, priv->ring_data[i].ring);
Salil76ad4f02017-08-02 16:59:45 +01002956 hns3_fini_ring(priv->ring_data[i + h->kinfo.num_tqps].ring);
Peng Li99fdf6b2017-12-22 12:21:43 +08002957 devm_kfree(priv->dev,
2958 priv->ring_data[i + h->kinfo.num_tqps].ring);
Salil76ad4f02017-08-02 16:59:45 +01002959 }
Peng Li99fdf6b2017-12-22 12:21:43 +08002960 devm_kfree(priv->dev, priv->ring_data);
Salil76ad4f02017-08-02 16:59:45 +01002961
2962 return 0;
2963}
2964
2965/* Set mac addr if it is configured. or leave it to the AE driver */
2966static void hns3_init_mac_addr(struct net_device *netdev)
2967{
2968 struct hns3_nic_priv *priv = netdev_priv(netdev);
2969 struct hnae3_handle *h = priv->ae_handle;
2970 u8 mac_addr_temp[ETH_ALEN];
2971
2972 if (h->ae_algo->ops->get_mac_addr) {
2973 h->ae_algo->ops->get_mac_addr(h, mac_addr_temp);
2974 ether_addr_copy(netdev->dev_addr, mac_addr_temp);
2975 }
2976
2977 /* Check if the MAC address is valid, if not get a random one */
2978 if (!is_valid_ether_addr(netdev->dev_addr)) {
2979 eth_hw_addr_random(netdev);
2980 dev_warn(priv->dev, "using random MAC address %pM\n",
2981 netdev->dev_addr);
Salil76ad4f02017-08-02 16:59:45 +01002982 }
Lipeng139e8792017-09-19 17:17:13 +01002983
2984 if (h->ae_algo->ops->set_mac_addr)
2985 h->ae_algo->ops->set_mac_addr(h, netdev->dev_addr);
2986
Salil76ad4f02017-08-02 16:59:45 +01002987}
2988
2989static void hns3_nic_set_priv_ops(struct net_device *netdev)
2990{
2991 struct hns3_nic_priv *priv = netdev_priv(netdev);
2992
2993 if ((netdev->features & NETIF_F_TSO) ||
2994 (netdev->features & NETIF_F_TSO6)) {
2995 priv->ops.fill_desc = hns3_fill_desc_tso;
2996 priv->ops.maybe_stop_tx = hns3_nic_maybe_stop_tso;
2997 } else {
2998 priv->ops.fill_desc = hns3_fill_desc;
2999 priv->ops.maybe_stop_tx = hns3_nic_maybe_stop_tx;
3000 }
3001}
3002
3003static int hns3_client_init(struct hnae3_handle *handle)
3004{
3005 struct pci_dev *pdev = handle->pdev;
3006 struct hns3_nic_priv *priv;
3007 struct net_device *netdev;
3008 int ret;
3009
3010 netdev = alloc_etherdev_mq(sizeof(struct hns3_nic_priv),
3011 handle->kinfo.num_tqps);
3012 if (!netdev)
3013 return -ENOMEM;
3014
3015 priv = netdev_priv(netdev);
3016 priv->dev = &pdev->dev;
3017 priv->netdev = netdev;
3018 priv->ae_handle = handle;
Lipengf8fa222c2017-11-02 20:45:20 +08003019 priv->last_reset_time = jiffies;
3020 priv->reset_level = HNAE3_FUNC_RESET;
3021 priv->tx_timeout_count = 0;
Salil76ad4f02017-08-02 16:59:45 +01003022
3023 handle->kinfo.netdev = netdev;
3024 handle->priv = (void *)priv;
3025
3026 hns3_init_mac_addr(netdev);
3027
3028 hns3_set_default_feature(netdev);
3029
3030 netdev->watchdog_timeo = HNS3_TX_TIMEOUT;
3031 netdev->priv_flags |= IFF_UNICAST_FLT;
3032 netdev->netdev_ops = &hns3_nic_netdev_ops;
3033 SET_NETDEV_DEV(netdev, &pdev->dev);
3034 hns3_ethtool_set_ops(netdev);
3035 hns3_nic_set_priv_ops(netdev);
3036
3037 /* Carrier off reporting is important to ethtool even BEFORE open */
3038 netif_carrier_off(netdev);
3039
3040 ret = hns3_get_ring_config(priv);
3041 if (ret) {
3042 ret = -ENOMEM;
3043 goto out_get_ring_cfg;
3044 }
3045
3046 ret = hns3_nic_init_vector_data(priv);
3047 if (ret) {
3048 ret = -ENOMEM;
3049 goto out_init_vector_data;
3050 }
3051
3052 ret = hns3_init_all_ring(priv);
3053 if (ret) {
3054 ret = -ENOMEM;
3055 goto out_init_ring_data;
3056 }
3057
3058 ret = register_netdev(netdev);
3059 if (ret) {
3060 dev_err(priv->dev, "probe register netdev fail!\n");
3061 goto out_reg_netdev_fail;
3062 }
3063
Yunsheng Lin986743d2017-09-27 09:45:30 +08003064 hns3_dcbnl_setup(handle);
3065
Salila8e8b7f2017-08-21 17:05:24 +01003066 /* MTU range: (ETH_MIN_MTU(kernel default) - 9706) */
3067 netdev->max_mtu = HNS3_MAX_MTU - (ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
3068
Salil76ad4f02017-08-02 16:59:45 +01003069 return ret;
3070
3071out_reg_netdev_fail:
3072out_init_ring_data:
3073 (void)hns3_nic_uninit_vector_data(priv);
3074 priv->ring_data = NULL;
3075out_init_vector_data:
3076out_get_ring_cfg:
3077 priv->ae_handle = NULL;
3078 free_netdev(netdev);
3079 return ret;
3080}
3081
3082static void hns3_client_uninit(struct hnae3_handle *handle, bool reset)
3083{
3084 struct net_device *netdev = handle->kinfo.netdev;
3085 struct hns3_nic_priv *priv = netdev_priv(netdev);
3086 int ret;
3087
3088 if (netdev->reg_state != NETREG_UNINITIALIZED)
3089 unregister_netdev(netdev);
3090
3091 ret = hns3_nic_uninit_vector_data(priv);
3092 if (ret)
3093 netdev_err(netdev, "uninit vector error\n");
3094
3095 ret = hns3_uninit_all_ring(priv);
3096 if (ret)
3097 netdev_err(netdev, "uninit ring error\n");
3098
3099 priv->ring_data = NULL;
3100
3101 free_netdev(netdev);
3102}
3103
3104static void hns3_link_status_change(struct hnae3_handle *handle, bool linkup)
3105{
3106 struct net_device *netdev = handle->kinfo.netdev;
3107
3108 if (!netdev)
3109 return;
3110
3111 if (linkup) {
3112 netif_carrier_on(netdev);
3113 netif_tx_wake_all_queues(netdev);
3114 netdev_info(netdev, "link up\n");
3115 } else {
3116 netif_carrier_off(netdev);
3117 netif_tx_stop_all_queues(netdev);
3118 netdev_info(netdev, "link down\n");
3119 }
3120}
3121
Yunsheng Lin9df8f792017-09-27 09:45:32 +08003122static int hns3_client_setup_tc(struct hnae3_handle *handle, u8 tc)
3123{
3124 struct hnae3_knic_private_info *kinfo = &handle->kinfo;
3125 struct net_device *ndev = kinfo->netdev;
Colin Ian King075cfdd2017-09-29 20:51:23 +01003126 bool if_running;
Yunsheng Lin9df8f792017-09-27 09:45:32 +08003127 int ret;
3128 u8 i;
3129
3130 if (tc > HNAE3_MAX_TC)
3131 return -EINVAL;
3132
3133 if (!ndev)
3134 return -ENODEV;
3135
Colin Ian King075cfdd2017-09-29 20:51:23 +01003136 if_running = netif_running(ndev);
3137
Yunsheng Lin9df8f792017-09-27 09:45:32 +08003138 ret = netdev_set_num_tc(ndev, tc);
3139 if (ret)
3140 return ret;
3141
3142 if (if_running) {
3143 (void)hns3_nic_net_stop(ndev);
3144 msleep(100);
3145 }
3146
3147 ret = (kinfo->dcb_ops && kinfo->dcb_ops->map_update) ?
3148 kinfo->dcb_ops->map_update(handle) : -EOPNOTSUPP;
3149 if (ret)
3150 goto err_out;
3151
3152 if (tc <= 1) {
3153 netdev_reset_tc(ndev);
3154 goto out;
3155 }
3156
3157 for (i = 0; i < HNAE3_MAX_TC; i++) {
3158 struct hnae3_tc_info *tc_info = &kinfo->tc_info[i];
3159
3160 if (tc_info->enable)
3161 netdev_set_tc_queue(ndev,
3162 tc_info->tc,
3163 tc_info->tqp_count,
3164 tc_info->tqp_offset);
3165 }
3166
3167 for (i = 0; i < HNAE3_MAX_USER_PRIO; i++) {
3168 netdev_set_prio_tc_map(ndev, i,
3169 kinfo->prio_tc[i]);
3170 }
3171
3172out:
3173 ret = hns3_nic_set_real_num_queue(ndev);
3174
3175err_out:
3176 if (if_running)
3177 (void)hns3_nic_net_open(ndev);
3178
3179 return ret;
3180}
3181
Lipengbb6b94a2017-11-02 20:45:21 +08003182static void hns3_recover_hw_addr(struct net_device *ndev)
3183{
3184 struct netdev_hw_addr_list *list;
3185 struct netdev_hw_addr *ha, *tmp;
3186
3187 /* go through and sync uc_addr entries to the device */
3188 list = &ndev->uc;
3189 list_for_each_entry_safe(ha, tmp, &list->list, list)
3190 hns3_nic_uc_sync(ndev, ha->addr);
3191
3192 /* go through and sync mc_addr entries to the device */
3193 list = &ndev->mc;
3194 list_for_each_entry_safe(ha, tmp, &list->list, list)
3195 hns3_nic_mc_sync(ndev, ha->addr);
3196}
3197
3198static void hns3_drop_skb_data(struct hns3_enet_ring *ring, struct sk_buff *skb)
3199{
3200 dev_kfree_skb_any(skb);
3201}
3202
3203static void hns3_clear_all_ring(struct hnae3_handle *h)
3204{
3205 struct net_device *ndev = h->kinfo.netdev;
3206 struct hns3_nic_priv *priv = netdev_priv(ndev);
3207 u32 i;
3208
3209 for (i = 0; i < h->kinfo.num_tqps; i++) {
3210 struct netdev_queue *dev_queue;
3211 struct hns3_enet_ring *ring;
3212
3213 ring = priv->ring_data[i].ring;
3214 hns3_clean_tx_ring(ring, ring->desc_num);
3215 dev_queue = netdev_get_tx_queue(ndev,
3216 priv->ring_data[i].queue_index);
3217 netdev_tx_reset_queue(dev_queue);
3218
3219 ring = priv->ring_data[i + h->kinfo.num_tqps].ring;
3220 hns3_clean_rx_ring(ring, ring->desc_num, hns3_drop_skb_data);
3221 }
3222}
3223
3224static int hns3_reset_notify_down_enet(struct hnae3_handle *handle)
3225{
3226 struct hnae3_knic_private_info *kinfo = &handle->kinfo;
3227 struct net_device *ndev = kinfo->netdev;
3228
3229 if (!netif_running(ndev))
3230 return -EIO;
3231
3232 return hns3_nic_net_stop(ndev);
3233}
3234
3235static int hns3_reset_notify_up_enet(struct hnae3_handle *handle)
3236{
3237 struct hnae3_knic_private_info *kinfo = &handle->kinfo;
3238 struct hns3_nic_priv *priv = netdev_priv(kinfo->netdev);
3239 int ret = 0;
3240
3241 if (netif_running(kinfo->netdev)) {
3242 ret = hns3_nic_net_up(kinfo->netdev);
3243 if (ret) {
3244 netdev_err(kinfo->netdev,
3245 "hns net up fail, ret=%d!\n", ret);
3246 return ret;
3247 }
3248
3249 priv->last_reset_time = jiffies;
3250 }
3251
3252 return ret;
3253}
3254
3255static int hns3_reset_notify_init_enet(struct hnae3_handle *handle)
3256{
3257 struct net_device *netdev = handle->kinfo.netdev;
3258 struct hns3_nic_priv *priv = netdev_priv(netdev);
3259 int ret;
3260
3261 priv->reset_level = 1;
3262 hns3_init_mac_addr(netdev);
3263 hns3_nic_set_rx_mode(netdev);
3264 hns3_recover_hw_addr(netdev);
3265
3266 /* Carrier off reporting is important to ethtool even BEFORE open */
3267 netif_carrier_off(netdev);
3268
3269 ret = hns3_get_ring_config(priv);
3270 if (ret)
3271 return ret;
3272
3273 ret = hns3_nic_init_vector_data(priv);
3274 if (ret)
3275 return ret;
3276
3277 ret = hns3_init_all_ring(priv);
3278 if (ret) {
3279 hns3_nic_uninit_vector_data(priv);
3280 priv->ring_data = NULL;
3281 }
3282
3283 return ret;
3284}
3285
3286static int hns3_reset_notify_uninit_enet(struct hnae3_handle *handle)
3287{
3288 struct net_device *netdev = handle->kinfo.netdev;
3289 struct hns3_nic_priv *priv = netdev_priv(netdev);
3290 int ret;
3291
3292 hns3_clear_all_ring(handle);
3293
3294 ret = hns3_nic_uninit_vector_data(priv);
3295 if (ret) {
3296 netdev_err(netdev, "uninit vector error\n");
3297 return ret;
3298 }
3299
3300 ret = hns3_uninit_all_ring(priv);
3301 if (ret)
3302 netdev_err(netdev, "uninit ring error\n");
3303
3304 priv->ring_data = NULL;
3305
3306 return ret;
3307}
3308
3309static int hns3_reset_notify(struct hnae3_handle *handle,
3310 enum hnae3_reset_notify_type type)
3311{
3312 int ret = 0;
3313
3314 switch (type) {
3315 case HNAE3_UP_CLIENT:
3316 ret = hns3_reset_notify_up_enet(handle);
3317 break;
3318 case HNAE3_DOWN_CLIENT:
3319 ret = hns3_reset_notify_down_enet(handle);
3320 break;
3321 case HNAE3_INIT_CLIENT:
3322 ret = hns3_reset_notify_init_enet(handle);
3323 break;
3324 case HNAE3_UNINIT_CLIENT:
3325 ret = hns3_reset_notify_uninit_enet(handle);
3326 break;
3327 default:
3328 break;
3329 }
3330
3331 return ret;
3332}
3333
Peng Li09f2af62017-12-22 12:21:41 +08003334static u16 hns3_get_max_available_channels(struct net_device *netdev)
3335{
3336 struct hnae3_handle *h = hns3_get_handle(netdev);
3337 u16 free_tqps, max_rss_size, max_tqps;
3338
3339 h->ae_algo->ops->get_tqps_and_rss_info(h, &free_tqps, &max_rss_size);
3340 max_tqps = h->kinfo.num_tc * max_rss_size;
3341
3342 return min_t(u16, max_tqps, (free_tqps + h->kinfo.num_tqps));
3343}
3344
3345static int hns3_modify_tqp_num(struct net_device *netdev, u16 new_tqp_num)
3346{
3347 struct hns3_nic_priv *priv = netdev_priv(netdev);
3348 struct hnae3_handle *h = hns3_get_handle(netdev);
3349 int ret;
3350
3351 ret = h->ae_algo->ops->set_channels(h, new_tqp_num);
3352 if (ret)
3353 return ret;
3354
3355 ret = hns3_get_ring_config(priv);
3356 if (ret)
3357 return ret;
3358
3359 ret = hns3_nic_init_vector_data(priv);
3360 if (ret)
3361 goto err_uninit_vector;
3362
3363 ret = hns3_init_all_ring(priv);
3364 if (ret)
3365 goto err_put_ring;
3366
3367 return 0;
3368
3369err_put_ring:
3370 hns3_put_ring_config(priv);
3371err_uninit_vector:
3372 hns3_nic_uninit_vector_data(priv);
3373 return ret;
3374}
3375
3376static int hns3_adjust_tqps_num(u8 num_tc, u32 new_tqp_num)
3377{
3378 return (new_tqp_num / num_tc) * num_tc;
3379}
3380
3381int hns3_set_channels(struct net_device *netdev,
3382 struct ethtool_channels *ch)
3383{
3384 struct hns3_nic_priv *priv = netdev_priv(netdev);
3385 struct hnae3_handle *h = hns3_get_handle(netdev);
3386 struct hnae3_knic_private_info *kinfo = &h->kinfo;
3387 bool if_running = netif_running(netdev);
3388 u32 new_tqp_num = ch->combined_count;
3389 u16 org_tqp_num;
3390 int ret;
3391
3392 if (ch->rx_count || ch->tx_count)
3393 return -EINVAL;
3394
3395 if (new_tqp_num > hns3_get_max_available_channels(netdev) ||
3396 new_tqp_num < kinfo->num_tc) {
3397 dev_err(&netdev->dev,
3398 "Change tqps fail, the tqp range is from %d to %d",
3399 kinfo->num_tc,
3400 hns3_get_max_available_channels(netdev));
3401 return -EINVAL;
3402 }
3403
3404 new_tqp_num = hns3_adjust_tqps_num(kinfo->num_tc, new_tqp_num);
3405 if (kinfo->num_tqps == new_tqp_num)
3406 return 0;
3407
3408 if (if_running)
3409 dev_close(netdev);
3410
3411 hns3_clear_all_ring(h);
3412
3413 ret = hns3_nic_uninit_vector_data(priv);
3414 if (ret) {
3415 dev_err(&netdev->dev,
3416 "Unbind vector with tqp fail, nothing is changed");
3417 goto open_netdev;
3418 }
3419
3420 hns3_uninit_all_ring(priv);
3421
3422 org_tqp_num = h->kinfo.num_tqps;
3423 ret = hns3_modify_tqp_num(netdev, new_tqp_num);
3424 if (ret) {
3425 ret = hns3_modify_tqp_num(netdev, org_tqp_num);
3426 if (ret) {
3427 /* If revert to old tqp failed, fatal error occurred */
3428 dev_err(&netdev->dev,
3429 "Revert to old tqp num fail, ret=%d", ret);
3430 return ret;
3431 }
3432 dev_info(&netdev->dev,
3433 "Change tqp num fail, Revert to old tqp num");
3434 }
3435
3436open_netdev:
3437 if (if_running)
3438 dev_open(netdev);
3439
3440 return ret;
3441}
3442
Yunsheng Lin1db9b1b2017-10-09 15:44:01 +08003443static const struct hnae3_client_ops client_ops = {
Salil76ad4f02017-08-02 16:59:45 +01003444 .init_instance = hns3_client_init,
3445 .uninit_instance = hns3_client_uninit,
3446 .link_status_change = hns3_link_status_change,
Yunsheng Lin9df8f792017-09-27 09:45:32 +08003447 .setup_tc = hns3_client_setup_tc,
Lipengbb6b94a2017-11-02 20:45:21 +08003448 .reset_notify = hns3_reset_notify,
Salil76ad4f02017-08-02 16:59:45 +01003449};
3450
3451/* hns3_init_module - Driver registration routine
3452 * hns3_init_module is the first routine called when the driver is
3453 * loaded. All it does is register with the PCI subsystem.
3454 */
3455static int __init hns3_init_module(void)
3456{
3457 int ret;
3458
3459 pr_info("%s: %s - version\n", hns3_driver_name, hns3_driver_string);
3460 pr_info("%s: %s\n", hns3_driver_name, hns3_copyright);
3461
3462 client.type = HNAE3_CLIENT_KNIC;
3463 snprintf(client.name, HNAE3_CLIENT_NAME_LENGTH - 1, "%s",
3464 hns3_driver_name);
3465
3466 client.ops = &client_ops;
3467
3468 ret = hnae3_register_client(&client);
3469 if (ret)
3470 return ret;
3471
3472 ret = pci_register_driver(&hns3_driver);
3473 if (ret)
3474 hnae3_unregister_client(&client);
3475
3476 return ret;
3477}
3478module_init(hns3_init_module);
3479
3480/* hns3_exit_module - Driver exit cleanup routine
3481 * hns3_exit_module is called just before the driver is removed
3482 * from memory.
3483 */
3484static void __exit hns3_exit_module(void)
3485{
3486 pci_unregister_driver(&hns3_driver);
3487 hnae3_unregister_client(&client);
3488}
3489module_exit(hns3_exit_module);
3490
3491MODULE_DESCRIPTION("HNS3: Hisilicon Ethernet Driver");
3492MODULE_AUTHOR("Huawei Tech. Co., Ltd.");
3493MODULE_LICENSE("GPL");
3494MODULE_ALIAS("pci:hns-nic");