3ea697c54462930efd5dfff2ed8ac2ef34f4cff4
[dpdk.git] / drivers / net / nfp / nfp_common.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright (c) 2014-2018 Netronome Systems, Inc.
3  * All rights reserved.
4  *
5  * Small portions derived from code Copyright(c) 2010-2015 Intel Corporation.
6  */
7
8 /*
9  * vim:shiftwidth=8:noexpandtab
10  *
11  * @file dpdk/pmd/nfp_common.c
12  *
13  * Netronome vNIC DPDK Poll-Mode Driver: Common files
14  */
15
16 #include <rte_byteorder.h>
17 #include <rte_common.h>
18 #include <rte_log.h>
19 #include <rte_debug.h>
20 #include <ethdev_driver.h>
21 #include <ethdev_pci.h>
22 #include <rte_dev.h>
23 #include <rte_ether.h>
24 #include <rte_malloc.h>
25 #include <rte_memzone.h>
26 #include <rte_mempool.h>
27 #include <rte_version.h>
28 #include <rte_string_fns.h>
29 #include <rte_alarm.h>
30 #include <rte_spinlock.h>
31 #include <rte_service_component.h>
32
33 #include "nfpcore/nfp_cpp.h"
34 #include "nfpcore/nfp_nffw.h"
35 #include "nfpcore/nfp_hwinfo.h"
36 #include "nfpcore/nfp_mip.h"
37 #include "nfpcore/nfp_rtsym.h"
38 #include "nfpcore/nfp_nsp.h"
39
40 #include "nfp_common.h"
41 #include "nfp_rxtx.h"
42 #include "nfp_logs.h"
43 #include "nfp_ctrl.h"
44 #include "nfp_cpp_bridge.h"
45
46 #include <sys/types.h>
47 #include <sys/socket.h>
48 #include <sys/un.h>
49 #include <unistd.h>
50 #include <stdio.h>
51 #include <sys/ioctl.h>
52 #include <errno.h>
53
54 static int
55 __nfp_net_reconfig(struct nfp_net_hw *hw, uint32_t update)
56 {
57         int cnt;
58         uint32_t new;
59         struct timespec wait;
60
61         PMD_DRV_LOG(DEBUG, "Writing to the configuration queue (%p)...",
62                     hw->qcp_cfg);
63
64         if (hw->qcp_cfg == NULL)
65                 rte_panic("Bad configuration queue pointer\n");
66
67         nfp_qcp_ptr_add(hw->qcp_cfg, NFP_QCP_WRITE_PTR, 1);
68
69         wait.tv_sec = 0;
70         wait.tv_nsec = 1000000;
71
72         PMD_DRV_LOG(DEBUG, "Polling for update ack...");
73
74         /* Poll update field, waiting for NFP to ack the config */
75         for (cnt = 0; ; cnt++) {
76                 new = nn_cfg_readl(hw, NFP_NET_CFG_UPDATE);
77                 if (new == 0)
78                         break;
79                 if (new & NFP_NET_CFG_UPDATE_ERR) {
80                         PMD_INIT_LOG(ERR, "Reconfig error: 0x%08x", new);
81                         return -1;
82                 }
83                 if (cnt >= NFP_NET_POLL_TIMEOUT) {
84                         PMD_INIT_LOG(ERR, "Reconfig timeout for 0x%08x after"
85                                           " %dms", update, cnt);
86                         rte_panic("Exiting\n");
87                 }
88                 nanosleep(&wait, 0); /* waiting for a 1ms */
89         }
90         PMD_DRV_LOG(DEBUG, "Ack DONE");
91         return 0;
92 }
93
94 /*
95  * Reconfigure the NIC
96  * @nn:    device to reconfigure
97  * @ctrl:    The value for the ctrl field in the BAR config
98  * @update:  The value for the update field in the BAR config
99  *
100  * Write the update word to the BAR and ping the reconfig queue. Then poll
101  * until the firmware has acknowledged the update by zeroing the update word.
102  */
103 int
104 nfp_net_reconfig(struct nfp_net_hw *hw, uint32_t ctrl, uint32_t update)
105 {
106         uint32_t err;
107
108         PMD_DRV_LOG(DEBUG, "nfp_net_reconfig: ctrl=%08x update=%08x",
109                     ctrl, update);
110
111         rte_spinlock_lock(&hw->reconfig_lock);
112
113         nn_cfg_writel(hw, NFP_NET_CFG_CTRL, ctrl);
114         nn_cfg_writel(hw, NFP_NET_CFG_UPDATE, update);
115
116         rte_wmb();
117
118         err = __nfp_net_reconfig(hw, update);
119
120         rte_spinlock_unlock(&hw->reconfig_lock);
121
122         if (!err)
123                 return 0;
124
125         /*
126          * Reconfig errors imply situations where they can be handled.
127          * Otherwise, rte_panic is called inside __nfp_net_reconfig
128          */
129         PMD_INIT_LOG(ERR, "Error nfp_net reconfig for ctrl: %x update: %x",
130                      ctrl, update);
131         return -EIO;
132 }
133
134 /*
135  * Configure an Ethernet device. This function must be invoked first
136  * before any other function in the Ethernet API. This function can
137  * also be re-invoked when a device is in the stopped state.
138  */
139 int
140 nfp_net_configure(struct rte_eth_dev *dev)
141 {
142         struct rte_eth_conf *dev_conf;
143         struct rte_eth_rxmode *rxmode;
144         struct rte_eth_txmode *txmode;
145         struct nfp_net_hw *hw;
146
147         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
148
149         /*
150          * A DPDK app sends info about how many queues to use and how
151          * those queues need to be configured. This is used by the
152          * DPDK core and it makes sure no more queues than those
153          * advertised by the driver are requested. This function is
154          * called after that internal process
155          */
156
157         PMD_INIT_LOG(DEBUG, "Configure");
158
159         dev_conf = &dev->data->dev_conf;
160         rxmode = &dev_conf->rxmode;
161         txmode = &dev_conf->txmode;
162
163         if (rxmode->mq_mode & RTE_ETH_MQ_RX_RSS_FLAG)
164                 rxmode->offloads |= RTE_ETH_RX_OFFLOAD_RSS_HASH;
165
166         /* Checking TX mode */
167         if (txmode->mq_mode) {
168                 PMD_INIT_LOG(INFO, "TX mq_mode DCB and VMDq not supported");
169                 return -EINVAL;
170         }
171
172         /* Checking RX mode */
173         if (rxmode->mq_mode & RTE_ETH_MQ_RX_RSS &&
174             !(hw->cap & NFP_NET_CFG_CTRL_RSS)) {
175                 PMD_INIT_LOG(INFO, "RSS not supported");
176                 return -EINVAL;
177         }
178
179         return 0;
180 }
181
182 void
183 nfp_net_enable_queues(struct rte_eth_dev *dev)
184 {
185         struct nfp_net_hw *hw;
186         uint64_t enabled_queues = 0;
187         int i;
188
189         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
190
191         /* Enabling the required TX queues in the device */
192         for (i = 0; i < dev->data->nb_tx_queues; i++)
193                 enabled_queues |= (1 << i);
194
195         nn_cfg_writeq(hw, NFP_NET_CFG_TXRS_ENABLE, enabled_queues);
196
197         enabled_queues = 0;
198
199         /* Enabling the required RX queues in the device */
200         for (i = 0; i < dev->data->nb_rx_queues; i++)
201                 enabled_queues |= (1 << i);
202
203         nn_cfg_writeq(hw, NFP_NET_CFG_RXRS_ENABLE, enabled_queues);
204 }
205
206 void
207 nfp_net_disable_queues(struct rte_eth_dev *dev)
208 {
209         struct nfp_net_hw *hw;
210         uint32_t new_ctrl, update = 0;
211
212         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
213
214         nn_cfg_writeq(hw, NFP_NET_CFG_TXRS_ENABLE, 0);
215         nn_cfg_writeq(hw, NFP_NET_CFG_RXRS_ENABLE, 0);
216
217         new_ctrl = hw->ctrl & ~NFP_NET_CFG_CTRL_ENABLE;
218         update = NFP_NET_CFG_UPDATE_GEN | NFP_NET_CFG_UPDATE_RING |
219                  NFP_NET_CFG_UPDATE_MSIX;
220
221         if (hw->cap & NFP_NET_CFG_CTRL_RINGCFG)
222                 new_ctrl &= ~NFP_NET_CFG_CTRL_RINGCFG;
223
224         /* If an error when reconfig we avoid to change hw state */
225         if (nfp_net_reconfig(hw, new_ctrl, update) < 0)
226                 return;
227
228         hw->ctrl = new_ctrl;
229 }
230
231 void
232 nfp_net_params_setup(struct nfp_net_hw *hw)
233 {
234         nn_cfg_writel(hw, NFP_NET_CFG_MTU, hw->mtu);
235         nn_cfg_writel(hw, NFP_NET_CFG_FLBUFSZ, hw->flbufsz);
236 }
237
238 void
239 nfp_net_cfg_queue_setup(struct nfp_net_hw *hw)
240 {
241         hw->qcp_cfg = hw->tx_bar + NFP_QCP_QUEUE_ADDR_SZ;
242 }
243
244 #define ETH_ADDR_LEN    6
245
246 void
247 nfp_eth_copy_mac(uint8_t *dst, const uint8_t *src)
248 {
249         int i;
250
251         for (i = 0; i < ETH_ADDR_LEN; i++)
252                 dst[i] = src[i];
253 }
254
255 void
256 nfp_net_write_mac(struct nfp_net_hw *hw, uint8_t *mac)
257 {
258         uint32_t mac0 = *(uint32_t *)mac;
259         uint16_t mac1;
260
261         nn_writel(rte_cpu_to_be_32(mac0), hw->ctrl_bar + NFP_NET_CFG_MACADDR);
262
263         mac += 4;
264         mac1 = *(uint16_t *)mac;
265         nn_writew(rte_cpu_to_be_16(mac1),
266                   hw->ctrl_bar + NFP_NET_CFG_MACADDR + 6);
267 }
268
269 int
270 nfp_set_mac_addr(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr)
271 {
272         struct nfp_net_hw *hw;
273         uint32_t update, ctrl;
274
275         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
276         if ((hw->ctrl & NFP_NET_CFG_CTRL_ENABLE) &&
277             !(hw->cap & NFP_NET_CFG_CTRL_LIVE_ADDR)) {
278                 PMD_INIT_LOG(INFO, "MAC address unable to change when"
279                                   " port enabled");
280                 return -EBUSY;
281         }
282
283         if ((hw->ctrl & NFP_NET_CFG_CTRL_ENABLE) &&
284             !(hw->cap & NFP_NET_CFG_CTRL_LIVE_ADDR))
285                 return -EBUSY;
286
287         /* Writing new MAC to the specific port BAR address */
288         nfp_net_write_mac(hw, (uint8_t *)mac_addr);
289
290         /* Signal the NIC about the change */
291         update = NFP_NET_CFG_UPDATE_MACADDR;
292         ctrl = hw->ctrl;
293         if ((hw->ctrl & NFP_NET_CFG_CTRL_ENABLE) &&
294             (hw->cap & NFP_NET_CFG_CTRL_LIVE_ADDR))
295                 ctrl |= NFP_NET_CFG_CTRL_LIVE_ADDR;
296         if (nfp_net_reconfig(hw, ctrl, update) < 0) {
297                 PMD_INIT_LOG(INFO, "MAC address update failed");
298                 return -EIO;
299         }
300         return 0;
301 }
302
303 int
304 nfp_configure_rx_interrupt(struct rte_eth_dev *dev,
305                            struct rte_intr_handle *intr_handle)
306 {
307         struct nfp_net_hw *hw;
308         int i;
309
310         if (!intr_handle->intr_vec) {
311                 intr_handle->intr_vec =
312                         rte_zmalloc("intr_vec",
313                                     dev->data->nb_rx_queues * sizeof(int), 0);
314                 if (!intr_handle->intr_vec) {
315                         PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
316                                      " intr_vec", dev->data->nb_rx_queues);
317                         return -ENOMEM;
318                 }
319         }
320
321         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
322
323         if (intr_handle->type == RTE_INTR_HANDLE_UIO) {
324                 PMD_INIT_LOG(INFO, "VF: enabling RX interrupt with UIO");
325                 /* UIO just supports one queue and no LSC*/
326                 nn_cfg_writeb(hw, NFP_NET_CFG_RXR_VEC(0), 0);
327                 intr_handle->intr_vec[0] = 0;
328         } else {
329                 PMD_INIT_LOG(INFO, "VF: enabling RX interrupt with VFIO");
330                 for (i = 0; i < dev->data->nb_rx_queues; i++) {
331                         /*
332                          * The first msix vector is reserved for non
333                          * efd interrupts
334                         */
335                         nn_cfg_writeb(hw, NFP_NET_CFG_RXR_VEC(i), i + 1);
336                         intr_handle->intr_vec[i] = i + 1;
337                         PMD_INIT_LOG(DEBUG, "intr_vec[%d]= %d", i,
338                                             intr_handle->intr_vec[i]);
339                 }
340         }
341
342         /* Avoiding TX interrupts */
343         hw->ctrl |= NFP_NET_CFG_CTRL_MSIX_TX_OFF;
344         return 0;
345 }
346
347 uint32_t
348 nfp_check_offloads(struct rte_eth_dev *dev)
349 {
350         struct nfp_net_hw *hw;
351         struct rte_eth_conf *dev_conf;
352         struct rte_eth_rxmode *rxmode;
353         struct rte_eth_txmode *txmode;
354         uint32_t ctrl = 0;
355
356         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
357
358         dev_conf = &dev->data->dev_conf;
359         rxmode = &dev_conf->rxmode;
360         txmode = &dev_conf->txmode;
361
362         if (rxmode->offloads & RTE_ETH_RX_OFFLOAD_IPV4_CKSUM) {
363                 if (hw->cap & NFP_NET_CFG_CTRL_RXCSUM)
364                         ctrl |= NFP_NET_CFG_CTRL_RXCSUM;
365         }
366
367         if (rxmode->offloads & RTE_ETH_RX_OFFLOAD_VLAN_STRIP) {
368                 if (hw->cap & NFP_NET_CFG_CTRL_RXVLAN)
369                         ctrl |= NFP_NET_CFG_CTRL_RXVLAN;
370         }
371
372         hw->mtu = dev->data->mtu;
373
374         if (txmode->offloads & RTE_ETH_TX_OFFLOAD_VLAN_INSERT)
375                 ctrl |= NFP_NET_CFG_CTRL_TXVLAN;
376
377         /* L2 broadcast */
378         if (hw->cap & NFP_NET_CFG_CTRL_L2BC)
379                 ctrl |= NFP_NET_CFG_CTRL_L2BC;
380
381         /* L2 multicast */
382         if (hw->cap & NFP_NET_CFG_CTRL_L2MC)
383                 ctrl |= NFP_NET_CFG_CTRL_L2MC;
384
385         /* TX checksum offload */
386         if (txmode->offloads & RTE_ETH_TX_OFFLOAD_IPV4_CKSUM ||
387             txmode->offloads & RTE_ETH_TX_OFFLOAD_UDP_CKSUM ||
388             txmode->offloads & RTE_ETH_TX_OFFLOAD_TCP_CKSUM)
389                 ctrl |= NFP_NET_CFG_CTRL_TXCSUM;
390
391         /* LSO offload */
392         if (txmode->offloads & RTE_ETH_TX_OFFLOAD_TCP_TSO) {
393                 if (hw->cap & NFP_NET_CFG_CTRL_LSO)
394                         ctrl |= NFP_NET_CFG_CTRL_LSO;
395                 else
396                         ctrl |= NFP_NET_CFG_CTRL_LSO2;
397         }
398
399         /* RX gather */
400         if (txmode->offloads & RTE_ETH_TX_OFFLOAD_MULTI_SEGS)
401                 ctrl |= NFP_NET_CFG_CTRL_GATHER;
402
403         return ctrl;
404 }
405
406 int
407 nfp_net_promisc_enable(struct rte_eth_dev *dev)
408 {
409         uint32_t new_ctrl, update = 0;
410         struct nfp_net_hw *hw;
411         int ret;
412
413         PMD_DRV_LOG(DEBUG, "Promiscuous mode enable");
414
415         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
416
417         if (!(hw->cap & NFP_NET_CFG_CTRL_PROMISC)) {
418                 PMD_INIT_LOG(INFO, "Promiscuous mode not supported");
419                 return -ENOTSUP;
420         }
421
422         if (hw->ctrl & NFP_NET_CFG_CTRL_PROMISC) {
423                 PMD_DRV_LOG(INFO, "Promiscuous mode already enabled");
424                 return 0;
425         }
426
427         new_ctrl = hw->ctrl | NFP_NET_CFG_CTRL_PROMISC;
428         update = NFP_NET_CFG_UPDATE_GEN;
429
430         /*
431          * DPDK sets promiscuous mode on just after this call assuming
432          * it can not fail ...
433          */
434         ret = nfp_net_reconfig(hw, new_ctrl, update);
435         if (ret < 0)
436                 return ret;
437
438         hw->ctrl = new_ctrl;
439
440         return 0;
441 }
442
443 int
444 nfp_net_promisc_disable(struct rte_eth_dev *dev)
445 {
446         uint32_t new_ctrl, update = 0;
447         struct nfp_net_hw *hw;
448         int ret;
449
450         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
451
452         if ((hw->ctrl & NFP_NET_CFG_CTRL_PROMISC) == 0) {
453                 PMD_DRV_LOG(INFO, "Promiscuous mode already disabled");
454                 return 0;
455         }
456
457         new_ctrl = hw->ctrl & ~NFP_NET_CFG_CTRL_PROMISC;
458         update = NFP_NET_CFG_UPDATE_GEN;
459
460         /*
461          * DPDK sets promiscuous mode off just before this call
462          * assuming it can not fail ...
463          */
464         ret = nfp_net_reconfig(hw, new_ctrl, update);
465         if (ret < 0)
466                 return ret;
467
468         hw->ctrl = new_ctrl;
469
470         return 0;
471 }
472
473 /*
474  * return 0 means link status changed, -1 means not changed
475  *
476  * Wait to complete is needed as it can take up to 9 seconds to get the Link
477  * status.
478  */
479 int
480 nfp_net_link_update(struct rte_eth_dev *dev, __rte_unused int wait_to_complete)
481 {
482         struct nfp_net_hw *hw;
483         struct rte_eth_link link;
484         uint32_t nn_link_status;
485         int ret;
486
487         static const uint32_t ls_to_ethtool[] = {
488                 [NFP_NET_CFG_STS_LINK_RATE_UNSUPPORTED] = RTE_ETH_SPEED_NUM_NONE,
489                 [NFP_NET_CFG_STS_LINK_RATE_UNKNOWN]     = RTE_ETH_SPEED_NUM_NONE,
490                 [NFP_NET_CFG_STS_LINK_RATE_1G]          = RTE_ETH_SPEED_NUM_1G,
491                 [NFP_NET_CFG_STS_LINK_RATE_10G]         = RTE_ETH_SPEED_NUM_10G,
492                 [NFP_NET_CFG_STS_LINK_RATE_25G]         = RTE_ETH_SPEED_NUM_25G,
493                 [NFP_NET_CFG_STS_LINK_RATE_40G]         = RTE_ETH_SPEED_NUM_40G,
494                 [NFP_NET_CFG_STS_LINK_RATE_50G]         = RTE_ETH_SPEED_NUM_50G,
495                 [NFP_NET_CFG_STS_LINK_RATE_100G]        = RTE_ETH_SPEED_NUM_100G,
496         };
497
498         PMD_DRV_LOG(DEBUG, "Link update");
499
500         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
501
502         nn_link_status = nn_cfg_readl(hw, NFP_NET_CFG_STS);
503
504         memset(&link, 0, sizeof(struct rte_eth_link));
505
506         if (nn_link_status & NFP_NET_CFG_STS_LINK)
507                 link.link_status = RTE_ETH_LINK_UP;
508
509         link.link_duplex = RTE_ETH_LINK_FULL_DUPLEX;
510
511         nn_link_status = (nn_link_status >> NFP_NET_CFG_STS_LINK_RATE_SHIFT) &
512                          NFP_NET_CFG_STS_LINK_RATE_MASK;
513
514         if (nn_link_status >= RTE_DIM(ls_to_ethtool))
515                 link.link_speed = RTE_ETH_SPEED_NUM_NONE;
516         else
517                 link.link_speed = ls_to_ethtool[nn_link_status];
518
519         ret = rte_eth_linkstatus_set(dev, &link);
520         if (ret == 0) {
521                 if (link.link_status)
522                         PMD_DRV_LOG(INFO, "NIC Link is Up");
523                 else
524                         PMD_DRV_LOG(INFO, "NIC Link is Down");
525         }
526         return ret;
527 }
528
529 int
530 nfp_net_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
531 {
532         int i;
533         struct nfp_net_hw *hw;
534         struct rte_eth_stats nfp_dev_stats;
535
536         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
537
538         /* RTE_ETHDEV_QUEUE_STAT_CNTRS default value is 16 */
539
540         memset(&nfp_dev_stats, 0, sizeof(nfp_dev_stats));
541
542         /* reading per RX ring stats */
543         for (i = 0; i < dev->data->nb_rx_queues; i++) {
544                 if (i == RTE_ETHDEV_QUEUE_STAT_CNTRS)
545                         break;
546
547                 nfp_dev_stats.q_ipackets[i] =
548                         nn_cfg_readq(hw, NFP_NET_CFG_RXR_STATS(i));
549
550                 nfp_dev_stats.q_ipackets[i] -=
551                         hw->eth_stats_base.q_ipackets[i];
552
553                 nfp_dev_stats.q_ibytes[i] =
554                         nn_cfg_readq(hw, NFP_NET_CFG_RXR_STATS(i) + 0x8);
555
556                 nfp_dev_stats.q_ibytes[i] -=
557                         hw->eth_stats_base.q_ibytes[i];
558         }
559
560         /* reading per TX ring stats */
561         for (i = 0; i < dev->data->nb_tx_queues; i++) {
562                 if (i == RTE_ETHDEV_QUEUE_STAT_CNTRS)
563                         break;
564
565                 nfp_dev_stats.q_opackets[i] =
566                         nn_cfg_readq(hw, NFP_NET_CFG_TXR_STATS(i));
567
568                 nfp_dev_stats.q_opackets[i] -=
569                         hw->eth_stats_base.q_opackets[i];
570
571                 nfp_dev_stats.q_obytes[i] =
572                         nn_cfg_readq(hw, NFP_NET_CFG_TXR_STATS(i) + 0x8);
573
574                 nfp_dev_stats.q_obytes[i] -=
575                         hw->eth_stats_base.q_obytes[i];
576         }
577
578         nfp_dev_stats.ipackets =
579                 nn_cfg_readq(hw, NFP_NET_CFG_STATS_RX_FRAMES);
580
581         nfp_dev_stats.ipackets -= hw->eth_stats_base.ipackets;
582
583         nfp_dev_stats.ibytes =
584                 nn_cfg_readq(hw, NFP_NET_CFG_STATS_RX_OCTETS);
585
586         nfp_dev_stats.ibytes -= hw->eth_stats_base.ibytes;
587
588         nfp_dev_stats.opackets =
589                 nn_cfg_readq(hw, NFP_NET_CFG_STATS_TX_FRAMES);
590
591         nfp_dev_stats.opackets -= hw->eth_stats_base.opackets;
592
593         nfp_dev_stats.obytes =
594                 nn_cfg_readq(hw, NFP_NET_CFG_STATS_TX_OCTETS);
595
596         nfp_dev_stats.obytes -= hw->eth_stats_base.obytes;
597
598         /* reading general device stats */
599         nfp_dev_stats.ierrors =
600                 nn_cfg_readq(hw, NFP_NET_CFG_STATS_RX_ERRORS);
601
602         nfp_dev_stats.ierrors -= hw->eth_stats_base.ierrors;
603
604         nfp_dev_stats.oerrors =
605                 nn_cfg_readq(hw, NFP_NET_CFG_STATS_TX_ERRORS);
606
607         nfp_dev_stats.oerrors -= hw->eth_stats_base.oerrors;
608
609         /* RX ring mbuf allocation failures */
610         nfp_dev_stats.rx_nombuf = dev->data->rx_mbuf_alloc_failed;
611
612         nfp_dev_stats.imissed =
613                 nn_cfg_readq(hw, NFP_NET_CFG_STATS_RX_DISCARDS);
614
615         nfp_dev_stats.imissed -= hw->eth_stats_base.imissed;
616
617         if (stats) {
618                 memcpy(stats, &nfp_dev_stats, sizeof(*stats));
619                 return 0;
620         }
621         return -EINVAL;
622 }
623
624 int
625 nfp_net_stats_reset(struct rte_eth_dev *dev)
626 {
627         int i;
628         struct nfp_net_hw *hw;
629
630         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
631
632         /*
633          * hw->eth_stats_base records the per counter starting point.
634          * Lets update it now
635          */
636
637         /* reading per RX ring stats */
638         for (i = 0; i < dev->data->nb_rx_queues; i++) {
639                 if (i == RTE_ETHDEV_QUEUE_STAT_CNTRS)
640                         break;
641
642                 hw->eth_stats_base.q_ipackets[i] =
643                         nn_cfg_readq(hw, NFP_NET_CFG_RXR_STATS(i));
644
645                 hw->eth_stats_base.q_ibytes[i] =
646                         nn_cfg_readq(hw, NFP_NET_CFG_RXR_STATS(i) + 0x8);
647         }
648
649         /* reading per TX ring stats */
650         for (i = 0; i < dev->data->nb_tx_queues; i++) {
651                 if (i == RTE_ETHDEV_QUEUE_STAT_CNTRS)
652                         break;
653
654                 hw->eth_stats_base.q_opackets[i] =
655                         nn_cfg_readq(hw, NFP_NET_CFG_TXR_STATS(i));
656
657                 hw->eth_stats_base.q_obytes[i] =
658                         nn_cfg_readq(hw, NFP_NET_CFG_TXR_STATS(i) + 0x8);
659         }
660
661         hw->eth_stats_base.ipackets =
662                 nn_cfg_readq(hw, NFP_NET_CFG_STATS_RX_FRAMES);
663
664         hw->eth_stats_base.ibytes =
665                 nn_cfg_readq(hw, NFP_NET_CFG_STATS_RX_OCTETS);
666
667         hw->eth_stats_base.opackets =
668                 nn_cfg_readq(hw, NFP_NET_CFG_STATS_TX_FRAMES);
669
670         hw->eth_stats_base.obytes =
671                 nn_cfg_readq(hw, NFP_NET_CFG_STATS_TX_OCTETS);
672
673         /* reading general device stats */
674         hw->eth_stats_base.ierrors =
675                 nn_cfg_readq(hw, NFP_NET_CFG_STATS_RX_ERRORS);
676
677         hw->eth_stats_base.oerrors =
678                 nn_cfg_readq(hw, NFP_NET_CFG_STATS_TX_ERRORS);
679
680         /* RX ring mbuf allocation failures */
681         dev->data->rx_mbuf_alloc_failed = 0;
682
683         hw->eth_stats_base.imissed =
684                 nn_cfg_readq(hw, NFP_NET_CFG_STATS_RX_DISCARDS);
685
686         return 0;
687 }
688
689 int
690 nfp_net_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
691 {
692         struct nfp_net_hw *hw;
693
694         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
695
696         dev_info->max_rx_queues = (uint16_t)hw->max_rx_queues;
697         dev_info->max_tx_queues = (uint16_t)hw->max_tx_queues;
698         dev_info->min_rx_bufsize = RTE_ETHER_MIN_MTU;
699         dev_info->max_rx_pktlen = hw->max_mtu;
700         /* Next should change when PF support is implemented */
701         dev_info->max_mac_addrs = 1;
702
703         if (hw->cap & NFP_NET_CFG_CTRL_RXVLAN)
704                 dev_info->rx_offload_capa = RTE_ETH_RX_OFFLOAD_VLAN_STRIP;
705
706         if (hw->cap & NFP_NET_CFG_CTRL_RXCSUM)
707                 dev_info->rx_offload_capa |= RTE_ETH_RX_OFFLOAD_IPV4_CKSUM |
708                                              RTE_ETH_RX_OFFLOAD_UDP_CKSUM |
709                                              RTE_ETH_RX_OFFLOAD_TCP_CKSUM;
710
711         if (hw->cap & NFP_NET_CFG_CTRL_TXVLAN)
712                 dev_info->tx_offload_capa = RTE_ETH_TX_OFFLOAD_VLAN_INSERT;
713
714         if (hw->cap & NFP_NET_CFG_CTRL_TXCSUM)
715                 dev_info->tx_offload_capa |= RTE_ETH_TX_OFFLOAD_IPV4_CKSUM |
716                                              RTE_ETH_TX_OFFLOAD_UDP_CKSUM |
717                                              RTE_ETH_TX_OFFLOAD_TCP_CKSUM;
718
719         if (hw->cap & NFP_NET_CFG_CTRL_LSO_ANY)
720                 dev_info->tx_offload_capa |= RTE_ETH_TX_OFFLOAD_TCP_TSO;
721
722         if (hw->cap & NFP_NET_CFG_CTRL_GATHER)
723                 dev_info->tx_offload_capa |= RTE_ETH_TX_OFFLOAD_MULTI_SEGS;
724
725         dev_info->default_rxconf = (struct rte_eth_rxconf) {
726                 .rx_thresh = {
727                         .pthresh = DEFAULT_RX_PTHRESH,
728                         .hthresh = DEFAULT_RX_HTHRESH,
729                         .wthresh = DEFAULT_RX_WTHRESH,
730                 },
731                 .rx_free_thresh = DEFAULT_RX_FREE_THRESH,
732                 .rx_drop_en = 0,
733         };
734
735         dev_info->default_txconf = (struct rte_eth_txconf) {
736                 .tx_thresh = {
737                         .pthresh = DEFAULT_TX_PTHRESH,
738                         .hthresh = DEFAULT_TX_HTHRESH,
739                         .wthresh = DEFAULT_TX_WTHRESH,
740                 },
741                 .tx_free_thresh = DEFAULT_TX_FREE_THRESH,
742                 .tx_rs_thresh = DEFAULT_TX_RSBIT_THRESH,
743         };
744
745         dev_info->rx_desc_lim = (struct rte_eth_desc_lim) {
746                 .nb_max = NFP_NET_MAX_RX_DESC,
747                 .nb_min = NFP_NET_MIN_RX_DESC,
748                 .nb_align = NFP_ALIGN_RING_DESC,
749         };
750
751         dev_info->tx_desc_lim = (struct rte_eth_desc_lim) {
752                 .nb_max = NFP_NET_MAX_TX_DESC,
753                 .nb_min = NFP_NET_MIN_TX_DESC,
754                 .nb_align = NFP_ALIGN_RING_DESC,
755                 .nb_seg_max = NFP_TX_MAX_SEG,
756                 .nb_mtu_seg_max = NFP_TX_MAX_MTU_SEG,
757         };
758
759         if (hw->cap & NFP_NET_CFG_CTRL_RSS) {
760                 dev_info->rx_offload_capa |= RTE_ETH_RX_OFFLOAD_RSS_HASH;
761
762                 dev_info->flow_type_rss_offloads = RTE_ETH_RSS_IPV4 |
763                                                    RTE_ETH_RSS_NONFRAG_IPV4_TCP |
764                                                    RTE_ETH_RSS_NONFRAG_IPV4_UDP |
765                                                    RTE_ETH_RSS_IPV6 |
766                                                    RTE_ETH_RSS_NONFRAG_IPV6_TCP |
767                                                    RTE_ETH_RSS_NONFRAG_IPV6_UDP;
768
769                 dev_info->reta_size = NFP_NET_CFG_RSS_ITBL_SZ;
770                 dev_info->hash_key_size = NFP_NET_CFG_RSS_KEY_SZ;
771         }
772
773         dev_info->speed_capa = RTE_ETH_LINK_SPEED_1G | RTE_ETH_LINK_SPEED_10G |
774                                RTE_ETH_LINK_SPEED_25G | RTE_ETH_LINK_SPEED_40G |
775                                RTE_ETH_LINK_SPEED_50G | RTE_ETH_LINK_SPEED_100G;
776
777         return 0;
778 }
779
780 const uint32_t *
781 nfp_net_supported_ptypes_get(struct rte_eth_dev *dev)
782 {
783         static const uint32_t ptypes[] = {
784                 /* refers to nfp_net_set_hash() */
785                 RTE_PTYPE_INNER_L3_IPV4,
786                 RTE_PTYPE_INNER_L3_IPV6,
787                 RTE_PTYPE_INNER_L3_IPV6_EXT,
788                 RTE_PTYPE_INNER_L4_MASK,
789                 RTE_PTYPE_UNKNOWN
790         };
791
792         if (dev->rx_pkt_burst == nfp_net_recv_pkts)
793                 return ptypes;
794         return NULL;
795 }
796
797 int
798 nfp_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
799 {
800         struct rte_pci_device *pci_dev;
801         struct nfp_net_hw *hw;
802         int base = 0;
803
804         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
805         pci_dev = RTE_ETH_DEV_TO_PCI(dev);
806
807         if (pci_dev->intr_handle.type != RTE_INTR_HANDLE_UIO)
808                 base = 1;
809
810         /* Make sure all updates are written before un-masking */
811         rte_wmb();
812         nn_cfg_writeb(hw, NFP_NET_CFG_ICR(base + queue_id),
813                       NFP_NET_CFG_ICR_UNMASKED);
814         return 0;
815 }
816
817 int
818 nfp_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
819 {
820         struct rte_pci_device *pci_dev;
821         struct nfp_net_hw *hw;
822         int base = 0;
823
824         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
825         pci_dev = RTE_ETH_DEV_TO_PCI(dev);
826
827         if (pci_dev->intr_handle.type != RTE_INTR_HANDLE_UIO)
828                 base = 1;
829
830         /* Make sure all updates are written before un-masking */
831         rte_wmb();
832         nn_cfg_writeb(hw, NFP_NET_CFG_ICR(base + queue_id), 0x1);
833         return 0;
834 }
835
836 static void
837 nfp_net_dev_link_status_print(struct rte_eth_dev *dev)
838 {
839         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
840         struct rte_eth_link link;
841
842         rte_eth_linkstatus_get(dev, &link);
843         if (link.link_status)
844                 PMD_DRV_LOG(INFO, "Port %d: Link Up - speed %u Mbps - %s",
845                             dev->data->port_id, link.link_speed,
846                             link.link_duplex == RTE_ETH_LINK_FULL_DUPLEX
847                             ? "full-duplex" : "half-duplex");
848         else
849                 PMD_DRV_LOG(INFO, " Port %d: Link Down",
850                             dev->data->port_id);
851
852         PMD_DRV_LOG(INFO, "PCI Address: " PCI_PRI_FMT,
853                     pci_dev->addr.domain, pci_dev->addr.bus,
854                     pci_dev->addr.devid, pci_dev->addr.function);
855 }
856
857 /* Interrupt configuration and handling */
858
859 /*
860  * nfp_net_irq_unmask - Unmask an interrupt
861  *
862  * If MSI-X auto-masking is enabled clear the mask bit, otherwise
863  * clear the ICR for the entry.
864  */
865 static void
866 nfp_net_irq_unmask(struct rte_eth_dev *dev)
867 {
868         struct nfp_net_hw *hw;
869         struct rte_pci_device *pci_dev;
870
871         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
872         pci_dev = RTE_ETH_DEV_TO_PCI(dev);
873
874         if (hw->ctrl & NFP_NET_CFG_CTRL_MSIXAUTO) {
875                 /* If MSI-X auto-masking is used, clear the entry */
876                 rte_wmb();
877                 rte_intr_ack(&pci_dev->intr_handle);
878         } else {
879                 /* Make sure all updates are written before un-masking */
880                 rte_wmb();
881                 nn_cfg_writeb(hw, NFP_NET_CFG_ICR(NFP_NET_IRQ_LSC_IDX),
882                               NFP_NET_CFG_ICR_UNMASKED);
883         }
884 }
885
886 /*
887  * Interrupt handler which shall be registered for alarm callback for delayed
888  * handling specific interrupt to wait for the stable nic state. As the NIC
889  * interrupt state is not stable for nfp after link is just down, it needs
890  * to wait 4 seconds to get the stable status.
891  *
892  * @param handle   Pointer to interrupt handle.
893  * @param param    The address of parameter (struct rte_eth_dev *)
894  *
895  * @return  void
896  */
897 void
898 nfp_net_dev_interrupt_delayed_handler(void *param)
899 {
900         struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
901
902         nfp_net_link_update(dev, 0);
903         rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_LSC, NULL);
904
905         nfp_net_dev_link_status_print(dev);
906
907         /* Unmasking */
908         nfp_net_irq_unmask(dev);
909 }
910
911 void
912 nfp_net_dev_interrupt_handler(void *param)
913 {
914         int64_t timeout;
915         struct rte_eth_link link;
916         struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
917
918         PMD_DRV_LOG(DEBUG, "We got a LSC interrupt!!!");
919
920         rte_eth_linkstatus_get(dev, &link);
921
922         nfp_net_link_update(dev, 0);
923
924         /* likely to up */
925         if (!link.link_status) {
926                 /* handle it 1 sec later, wait it being stable */
927                 timeout = NFP_NET_LINK_UP_CHECK_TIMEOUT;
928                 /* likely to down */
929         } else {
930                 /* handle it 4 sec later, wait it being stable */
931                 timeout = NFP_NET_LINK_DOWN_CHECK_TIMEOUT;
932         }
933
934         if (rte_eal_alarm_set(timeout * 1000,
935                               nfp_net_dev_interrupt_delayed_handler,
936                               (void *)dev) < 0) {
937                 PMD_INIT_LOG(ERR, "Error setting alarm");
938                 /* Unmasking */
939                 nfp_net_irq_unmask(dev);
940         }
941 }
942
943 int
944 nfp_net_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
945 {
946         struct nfp_net_hw *hw;
947
948         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
949
950         /* mtu setting is forbidden if port is started */
951         if (dev->data->dev_started) {
952                 PMD_DRV_LOG(ERR, "port %d must be stopped before configuration",
953                             dev->data->port_id);
954                 return -EBUSY;
955         }
956
957         /* writing to configuration space */
958         nn_cfg_writel(hw, NFP_NET_CFG_MTU, mtu);
959
960         hw->mtu = mtu;
961
962         return 0;
963 }
964
965 int
966 nfp_net_vlan_offload_set(struct rte_eth_dev *dev, int mask)
967 {
968         uint32_t new_ctrl, update;
969         struct nfp_net_hw *hw;
970         int ret;
971
972         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
973         new_ctrl = 0;
974
975         /* Enable vlan strip if it is not configured yet */
976         if ((mask & RTE_ETH_VLAN_STRIP_OFFLOAD) &&
977             !(hw->ctrl & NFP_NET_CFG_CTRL_RXVLAN))
978                 new_ctrl = hw->ctrl | NFP_NET_CFG_CTRL_RXVLAN;
979
980         /* Disable vlan strip just if it is configured */
981         if (!(mask & RTE_ETH_VLAN_STRIP_OFFLOAD) &&
982             (hw->ctrl & NFP_NET_CFG_CTRL_RXVLAN))
983                 new_ctrl = hw->ctrl & ~NFP_NET_CFG_CTRL_RXVLAN;
984
985         if (new_ctrl == 0)
986                 return 0;
987
988         update = NFP_NET_CFG_UPDATE_GEN;
989
990         ret = nfp_net_reconfig(hw, new_ctrl, update);
991         if (!ret)
992                 hw->ctrl = new_ctrl;
993
994         return ret;
995 }
996
997 static int
998 nfp_net_rss_reta_write(struct rte_eth_dev *dev,
999                     struct rte_eth_rss_reta_entry64 *reta_conf,
1000                     uint16_t reta_size)
1001 {
1002         uint32_t reta, mask;
1003         int i, j;
1004         int idx, shift;
1005         struct nfp_net_hw *hw =
1006                 NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1007
1008         if (reta_size != NFP_NET_CFG_RSS_ITBL_SZ) {
1009                 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
1010                         "(%d) doesn't match the number hardware can supported "
1011                         "(%d)", reta_size, NFP_NET_CFG_RSS_ITBL_SZ);
1012                 return -EINVAL;
1013         }
1014
1015         /*
1016          * Update Redirection Table. There are 128 8bit-entries which can be
1017          * manage as 32 32bit-entries
1018          */
1019         for (i = 0; i < reta_size; i += 4) {
1020                 /* Handling 4 RSS entries per loop */
1021                 idx = i / RTE_ETH_RETA_GROUP_SIZE;
1022                 shift = i % RTE_ETH_RETA_GROUP_SIZE;
1023                 mask = (uint8_t)((reta_conf[idx].mask >> shift) & 0xF);
1024
1025                 if (!mask)
1026                         continue;
1027
1028                 reta = 0;
1029                 /* If all 4 entries were set, don't need read RETA register */
1030                 if (mask != 0xF)
1031                         reta = nn_cfg_readl(hw, NFP_NET_CFG_RSS_ITBL + i);
1032
1033                 for (j = 0; j < 4; j++) {
1034                         if (!(mask & (0x1 << j)))
1035                                 continue;
1036                         if (mask != 0xF)
1037                                 /* Clearing the entry bits */
1038                                 reta &= ~(0xFF << (8 * j));
1039                         reta |= reta_conf[idx].reta[shift + j] << (8 * j);
1040                 }
1041                 nn_cfg_writel(hw, NFP_NET_CFG_RSS_ITBL + (idx * 64) + shift,
1042                               reta);
1043         }
1044         return 0;
1045 }
1046
1047 /* Update Redirection Table(RETA) of Receive Side Scaling of Ethernet device */
1048 int
1049 nfp_net_reta_update(struct rte_eth_dev *dev,
1050                     struct rte_eth_rss_reta_entry64 *reta_conf,
1051                     uint16_t reta_size)
1052 {
1053         struct nfp_net_hw *hw =
1054                 NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1055         uint32_t update;
1056         int ret;
1057
1058         if (!(hw->ctrl & NFP_NET_CFG_CTRL_RSS))
1059                 return -EINVAL;
1060
1061         ret = nfp_net_rss_reta_write(dev, reta_conf, reta_size);
1062         if (ret != 0)
1063                 return ret;
1064
1065         update = NFP_NET_CFG_UPDATE_RSS;
1066
1067         if (nfp_net_reconfig(hw, hw->ctrl, update) < 0)
1068                 return -EIO;
1069
1070         return 0;
1071 }
1072
1073  /* Query Redirection Table(RETA) of Receive Side Scaling of Ethernet device. */
1074 int
1075 nfp_net_reta_query(struct rte_eth_dev *dev,
1076                    struct rte_eth_rss_reta_entry64 *reta_conf,
1077                    uint16_t reta_size)
1078 {
1079         uint8_t i, j, mask;
1080         int idx, shift;
1081         uint32_t reta;
1082         struct nfp_net_hw *hw;
1083
1084         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1085
1086         if (!(hw->ctrl & NFP_NET_CFG_CTRL_RSS))
1087                 return -EINVAL;
1088
1089         if (reta_size != NFP_NET_CFG_RSS_ITBL_SZ) {
1090                 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
1091                         "(%d) doesn't match the number hardware can supported "
1092                         "(%d)", reta_size, NFP_NET_CFG_RSS_ITBL_SZ);
1093                 return -EINVAL;
1094         }
1095
1096         /*
1097          * Reading Redirection Table. There are 128 8bit-entries which can be
1098          * manage as 32 32bit-entries
1099          */
1100         for (i = 0; i < reta_size; i += 4) {
1101                 /* Handling 4 RSS entries per loop */
1102                 idx = i / RTE_ETH_RETA_GROUP_SIZE;
1103                 shift = i % RTE_ETH_RETA_GROUP_SIZE;
1104                 mask = (uint8_t)((reta_conf[idx].mask >> shift) & 0xF);
1105
1106                 if (!mask)
1107                         continue;
1108
1109                 reta = nn_cfg_readl(hw, NFP_NET_CFG_RSS_ITBL + (idx * 64) +
1110                                     shift);
1111                 for (j = 0; j < 4; j++) {
1112                         if (!(mask & (0x1 << j)))
1113                                 continue;
1114                         reta_conf[idx].reta[shift + j] =
1115                                 (uint8_t)((reta >> (8 * j)) & 0xF);
1116                 }
1117         }
1118         return 0;
1119 }
1120
1121 static int
1122 nfp_net_rss_hash_write(struct rte_eth_dev *dev,
1123                         struct rte_eth_rss_conf *rss_conf)
1124 {
1125         struct nfp_net_hw *hw;
1126         uint64_t rss_hf;
1127         uint32_t cfg_rss_ctrl = 0;
1128         uint8_t key;
1129         int i;
1130
1131         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1132
1133         /* Writing the key byte a byte */
1134         for (i = 0; i < rss_conf->rss_key_len; i++) {
1135                 memcpy(&key, &rss_conf->rss_key[i], 1);
1136                 nn_cfg_writeb(hw, NFP_NET_CFG_RSS_KEY + i, key);
1137         }
1138
1139         rss_hf = rss_conf->rss_hf;
1140
1141         if (rss_hf & RTE_ETH_RSS_IPV4)
1142                 cfg_rss_ctrl |= NFP_NET_CFG_RSS_IPV4;
1143
1144         if (rss_hf & RTE_ETH_RSS_NONFRAG_IPV4_TCP)
1145                 cfg_rss_ctrl |= NFP_NET_CFG_RSS_IPV4_TCP;
1146
1147         if (rss_hf & RTE_ETH_RSS_NONFRAG_IPV4_UDP)
1148                 cfg_rss_ctrl |= NFP_NET_CFG_RSS_IPV4_UDP;
1149
1150         if (rss_hf & RTE_ETH_RSS_IPV6)
1151                 cfg_rss_ctrl |= NFP_NET_CFG_RSS_IPV6;
1152
1153         if (rss_hf & RTE_ETH_RSS_NONFRAG_IPV6_TCP)
1154                 cfg_rss_ctrl |= NFP_NET_CFG_RSS_IPV6_TCP;
1155
1156         if (rss_hf & RTE_ETH_RSS_NONFRAG_IPV6_UDP)
1157                 cfg_rss_ctrl |= NFP_NET_CFG_RSS_IPV6_UDP;
1158
1159         cfg_rss_ctrl |= NFP_NET_CFG_RSS_MASK;
1160         cfg_rss_ctrl |= NFP_NET_CFG_RSS_TOEPLITZ;
1161
1162         /* configuring where to apply the RSS hash */
1163         nn_cfg_writel(hw, NFP_NET_CFG_RSS_CTRL, cfg_rss_ctrl);
1164
1165         /* Writing the key size */
1166         nn_cfg_writeb(hw, NFP_NET_CFG_RSS_KEY_SZ, rss_conf->rss_key_len);
1167
1168         return 0;
1169 }
1170
1171 int
1172 nfp_net_rss_hash_update(struct rte_eth_dev *dev,
1173                         struct rte_eth_rss_conf *rss_conf)
1174 {
1175         uint32_t update;
1176         uint64_t rss_hf;
1177         struct nfp_net_hw *hw;
1178
1179         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1180
1181         rss_hf = rss_conf->rss_hf;
1182
1183         /* Checking if RSS is enabled */
1184         if (!(hw->ctrl & NFP_NET_CFG_CTRL_RSS)) {
1185                 if (rss_hf != 0) { /* Enable RSS? */
1186                         PMD_DRV_LOG(ERR, "RSS unsupported");
1187                         return -EINVAL;
1188                 }
1189                 return 0; /* Nothing to do */
1190         }
1191
1192         if (rss_conf->rss_key_len > NFP_NET_CFG_RSS_KEY_SZ) {
1193                 PMD_DRV_LOG(ERR, "hash key too long");
1194                 return -EINVAL;
1195         }
1196
1197         nfp_net_rss_hash_write(dev, rss_conf);
1198
1199         update = NFP_NET_CFG_UPDATE_RSS;
1200
1201         if (nfp_net_reconfig(hw, hw->ctrl, update) < 0)
1202                 return -EIO;
1203
1204         return 0;
1205 }
1206
1207 int
1208 nfp_net_rss_hash_conf_get(struct rte_eth_dev *dev,
1209                           struct rte_eth_rss_conf *rss_conf)
1210 {
1211         uint64_t rss_hf;
1212         uint32_t cfg_rss_ctrl;
1213         uint8_t key;
1214         int i;
1215         struct nfp_net_hw *hw;
1216
1217         hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1218
1219         if (!(hw->ctrl & NFP_NET_CFG_CTRL_RSS))
1220                 return -EINVAL;
1221
1222         rss_hf = rss_conf->rss_hf;
1223         cfg_rss_ctrl = nn_cfg_readl(hw, NFP_NET_CFG_RSS_CTRL);
1224
1225         if (cfg_rss_ctrl & NFP_NET_CFG_RSS_IPV4)
1226                 rss_hf |= RTE_ETH_RSS_NONFRAG_IPV4_TCP | RTE_ETH_RSS_NONFRAG_IPV4_UDP;
1227
1228         if (cfg_rss_ctrl & NFP_NET_CFG_RSS_IPV4_TCP)
1229                 rss_hf |= RTE_ETH_RSS_NONFRAG_IPV4_TCP;
1230
1231         if (cfg_rss_ctrl & NFP_NET_CFG_RSS_IPV6_TCP)
1232                 rss_hf |= RTE_ETH_RSS_NONFRAG_IPV6_TCP;
1233
1234         if (cfg_rss_ctrl & NFP_NET_CFG_RSS_IPV4_UDP)
1235                 rss_hf |= RTE_ETH_RSS_NONFRAG_IPV4_UDP;
1236
1237         if (cfg_rss_ctrl & NFP_NET_CFG_RSS_IPV6_UDP)
1238                 rss_hf |= RTE_ETH_RSS_NONFRAG_IPV6_UDP;
1239
1240         if (cfg_rss_ctrl & NFP_NET_CFG_RSS_IPV6)
1241                 rss_hf |= RTE_ETH_RSS_NONFRAG_IPV4_UDP | RTE_ETH_RSS_NONFRAG_IPV6_UDP;
1242
1243         /* Propagate current RSS hash functions to caller */
1244         rss_conf->rss_hf = rss_hf;
1245
1246         /* Reading the key size */
1247         rss_conf->rss_key_len = nn_cfg_readl(hw, NFP_NET_CFG_RSS_KEY_SZ);
1248
1249         /* Reading the key byte a byte */
1250         for (i = 0; i < rss_conf->rss_key_len; i++) {
1251                 key = nn_cfg_readb(hw, NFP_NET_CFG_RSS_KEY + i);
1252                 memcpy(&rss_conf->rss_key[i], &key, 1);
1253         }
1254
1255         return 0;
1256 }
1257
1258 int
1259 nfp_net_rss_config_default(struct rte_eth_dev *dev)
1260 {
1261         struct rte_eth_conf *dev_conf;
1262         struct rte_eth_rss_conf rss_conf;
1263         struct rte_eth_rss_reta_entry64 nfp_reta_conf[2];
1264         uint16_t rx_queues = dev->data->nb_rx_queues;
1265         uint16_t queue;
1266         int i, j, ret;
1267
1268         PMD_DRV_LOG(INFO, "setting default RSS conf for %u queues",
1269                 rx_queues);
1270
1271         nfp_reta_conf[0].mask = ~0x0;
1272         nfp_reta_conf[1].mask = ~0x0;
1273
1274         queue = 0;
1275         for (i = 0; i < 0x40; i += 8) {
1276                 for (j = i; j < (i + 8); j++) {
1277                         nfp_reta_conf[0].reta[j] = queue;
1278                         nfp_reta_conf[1].reta[j] = queue++;
1279                         queue %= rx_queues;
1280                 }
1281         }
1282         ret = nfp_net_rss_reta_write(dev, nfp_reta_conf, 0x80);
1283         if (ret != 0)
1284                 return ret;
1285
1286         dev_conf = &dev->data->dev_conf;
1287         if (!dev_conf) {
1288                 PMD_DRV_LOG(INFO, "wrong rss conf");
1289                 return -EINVAL;
1290         }
1291         rss_conf = dev_conf->rx_adv_conf.rss_conf;
1292
1293         ret = nfp_net_rss_hash_write(dev, &rss_conf);
1294
1295         return ret;
1296 }
1297
1298 RTE_LOG_REGISTER_SUFFIX(nfp_logtype_init, init, NOTICE);
1299 RTE_LOG_REGISTER_SUFFIX(nfp_logtype_driver, driver, NOTICE);
1300 /*
1301  * Local variables:
1302  * c-file-style: "Linux"
1303  * indent-tabs-mode: t
1304  * End:
1305  */