1 /* * SPDX-License-Identifier: BSD-3-Clause
3 * Copyright (c) 2016 Freescale Semiconductor, Inc. All rights reserved.
4 * Copyright 2016-2020 NXP
12 #include <rte_ethdev_driver.h>
13 #include <rte_malloc.h>
14 #include <rte_memcpy.h>
15 #include <rte_string_fns.h>
16 #include <rte_cycles.h>
17 #include <rte_kvargs.h>
19 #include <rte_fslmc.h>
20 #include <rte_flow_driver.h>
22 #include "dpaa2_pmd_logs.h"
23 #include <fslmc_vfio.h>
24 #include <dpaa2_hw_pvt.h>
25 #include <dpaa2_hw_mempool.h>
26 #include <dpaa2_hw_dpio.h>
27 #include <mc/fsl_dpmng.h>
28 #include "dpaa2_ethdev.h"
29 #include "dpaa2_sparser.h"
30 #include <fsl_qbman_debug.h>
32 #define DRIVER_LOOPBACK_MODE "drv_loopback"
33 #define DRIVER_NO_PREFETCH_MODE "drv_no_prefetch"
35 /* Supported Rx offloads */
36 static uint64_t dev_rx_offloads_sup =
37 DEV_RX_OFFLOAD_CHECKSUM |
38 DEV_RX_OFFLOAD_SCTP_CKSUM |
39 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
40 DEV_RX_OFFLOAD_OUTER_UDP_CKSUM |
41 DEV_RX_OFFLOAD_VLAN_STRIP |
42 DEV_RX_OFFLOAD_VLAN_FILTER |
43 DEV_RX_OFFLOAD_JUMBO_FRAME |
44 DEV_RX_OFFLOAD_TIMESTAMP;
46 /* Rx offloads which cannot be disabled */
47 static uint64_t dev_rx_offloads_nodis =
48 DEV_RX_OFFLOAD_RSS_HASH |
49 DEV_RX_OFFLOAD_SCATTER;
51 /* Supported Tx offloads */
52 static uint64_t dev_tx_offloads_sup =
53 DEV_TX_OFFLOAD_VLAN_INSERT |
54 DEV_TX_OFFLOAD_IPV4_CKSUM |
55 DEV_TX_OFFLOAD_UDP_CKSUM |
56 DEV_TX_OFFLOAD_TCP_CKSUM |
57 DEV_TX_OFFLOAD_SCTP_CKSUM |
58 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
59 DEV_TX_OFFLOAD_MT_LOCKFREE |
60 DEV_TX_OFFLOAD_MBUF_FAST_FREE;
62 /* Tx offloads which cannot be disabled */
63 static uint64_t dev_tx_offloads_nodis =
64 DEV_TX_OFFLOAD_MULTI_SEGS;
66 /* enable timestamp in mbuf */
67 bool dpaa2_enable_ts[RTE_MAX_ETHPORTS];
69 struct rte_dpaa2_xstats_name_off {
70 char name[RTE_ETH_XSTATS_NAME_SIZE];
71 uint8_t page_id; /* dpni statistics page id */
72 uint8_t stats_id; /* stats id in the given page */
75 static const struct rte_dpaa2_xstats_name_off dpaa2_xstats_strings[] = {
76 {"ingress_multicast_frames", 0, 2},
77 {"ingress_multicast_bytes", 0, 3},
78 {"ingress_broadcast_frames", 0, 4},
79 {"ingress_broadcast_bytes", 0, 5},
80 {"egress_multicast_frames", 1, 2},
81 {"egress_multicast_bytes", 1, 3},
82 {"egress_broadcast_frames", 1, 4},
83 {"egress_broadcast_bytes", 1, 5},
84 {"ingress_filtered_frames", 2, 0},
85 {"ingress_discarded_frames", 2, 1},
86 {"ingress_nobuffer_discards", 2, 2},
87 {"egress_discarded_frames", 2, 3},
88 {"egress_confirmed_frames", 2, 4},
89 {"cgr_reject_frames", 4, 0},
90 {"cgr_reject_bytes", 4, 1},
93 static const enum rte_filter_op dpaa2_supported_filter_ops[] = {
95 RTE_ETH_FILTER_DELETE,
96 RTE_ETH_FILTER_UPDATE,
101 static struct rte_dpaa2_driver rte_dpaa2_pmd;
102 static int dpaa2_dev_uninit(struct rte_eth_dev *eth_dev);
103 static int dpaa2_dev_link_update(struct rte_eth_dev *dev,
104 int wait_to_complete);
105 static int dpaa2_dev_set_link_up(struct rte_eth_dev *dev);
106 static int dpaa2_dev_set_link_down(struct rte_eth_dev *dev);
107 static int dpaa2_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
110 dpaa2_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
113 struct dpaa2_dev_priv *priv = dev->data->dev_private;
114 struct fsl_mc_io *dpni = dev->process_private;
116 PMD_INIT_FUNC_TRACE();
119 DPAA2_PMD_ERR("dpni is NULL");
124 ret = dpni_add_vlan_id(dpni, CMD_PRI_LOW, priv->token,
127 ret = dpni_remove_vlan_id(dpni, CMD_PRI_LOW,
128 priv->token, vlan_id);
131 DPAA2_PMD_ERR("ret = %d Unable to add/rem vlan %d hwid =%d",
132 ret, vlan_id, priv->hw_id);
138 dpaa2_vlan_offload_set(struct rte_eth_dev *dev, int mask)
140 struct dpaa2_dev_priv *priv = dev->data->dev_private;
141 struct fsl_mc_io *dpni = dev->process_private;
144 PMD_INIT_FUNC_TRACE();
146 if (mask & ETH_VLAN_FILTER_MASK) {
147 /* VLAN Filter not avaialble */
148 if (!priv->max_vlan_filters) {
149 DPAA2_PMD_INFO("VLAN filter not available");
153 if (dev->data->dev_conf.rxmode.offloads &
154 DEV_RX_OFFLOAD_VLAN_FILTER)
155 ret = dpni_enable_vlan_filter(dpni, CMD_PRI_LOW,
158 ret = dpni_enable_vlan_filter(dpni, CMD_PRI_LOW,
161 DPAA2_PMD_INFO("Unable to set vlan filter = %d", ret);
168 dpaa2_vlan_tpid_set(struct rte_eth_dev *dev,
169 enum rte_vlan_type vlan_type __rte_unused,
172 struct dpaa2_dev_priv *priv = dev->data->dev_private;
173 struct fsl_mc_io *dpni = dev->process_private;
176 PMD_INIT_FUNC_TRACE();
178 /* nothing to be done for standard vlan tpids */
179 if (tpid == 0x8100 || tpid == 0x88A8)
182 ret = dpni_add_custom_tpid(dpni, CMD_PRI_LOW,
185 DPAA2_PMD_INFO("Unable to set vlan tpid = %d", ret);
186 /* if already configured tpids, remove them first */
188 struct dpni_custom_tpid_cfg tpid_list = {0};
190 ret = dpni_get_custom_tpid(dpni, CMD_PRI_LOW,
191 priv->token, &tpid_list);
194 ret = dpni_remove_custom_tpid(dpni, CMD_PRI_LOW,
195 priv->token, tpid_list.tpid1);
198 ret = dpni_add_custom_tpid(dpni, CMD_PRI_LOW,
206 dpaa2_fw_version_get(struct rte_eth_dev *dev,
211 struct fsl_mc_io *dpni = dev->process_private;
212 struct mc_soc_version mc_plat_info = {0};
213 struct mc_version mc_ver_info = {0};
215 PMD_INIT_FUNC_TRACE();
217 if (mc_get_soc_version(dpni, CMD_PRI_LOW, &mc_plat_info))
218 DPAA2_PMD_WARN("\tmc_get_soc_version failed");
220 if (mc_get_version(dpni, CMD_PRI_LOW, &mc_ver_info))
221 DPAA2_PMD_WARN("\tmc_get_version failed");
223 ret = snprintf(fw_version, fw_size,
228 mc_ver_info.revision);
230 ret += 1; /* add the size of '\0' */
231 if (fw_size < (uint32_t)ret)
238 dpaa2_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
240 struct dpaa2_dev_priv *priv = dev->data->dev_private;
242 PMD_INIT_FUNC_TRACE();
244 dev_info->if_index = priv->hw_id;
246 dev_info->max_mac_addrs = priv->max_mac_filters;
247 dev_info->max_rx_pktlen = DPAA2_MAX_RX_PKT_LEN;
248 dev_info->min_rx_bufsize = DPAA2_MIN_RX_BUF_SIZE;
249 dev_info->max_rx_queues = (uint16_t)priv->nb_rx_queues;
250 dev_info->max_tx_queues = (uint16_t)priv->nb_tx_queues;
251 dev_info->rx_offload_capa = dev_rx_offloads_sup |
252 dev_rx_offloads_nodis;
253 dev_info->tx_offload_capa = dev_tx_offloads_sup |
254 dev_tx_offloads_nodis;
255 dev_info->speed_capa = ETH_LINK_SPEED_1G |
256 ETH_LINK_SPEED_2_5G |
259 dev_info->max_hash_mac_addrs = 0;
260 dev_info->max_vfs = 0;
261 dev_info->max_vmdq_pools = ETH_16_POOLS;
262 dev_info->flow_type_rss_offloads = DPAA2_RSS_OFFLOAD_ALL;
264 dev_info->default_rxportconf.burst_size = dpaa2_dqrr_size;
265 /* same is rx size for best perf */
266 dev_info->default_txportconf.burst_size = dpaa2_dqrr_size;
268 dev_info->default_rxportconf.nb_queues = 1;
269 dev_info->default_txportconf.nb_queues = 1;
270 dev_info->default_txportconf.ring_size = CONG_ENTER_TX_THRESHOLD;
271 dev_info->default_rxportconf.ring_size = DPAA2_RX_DEFAULT_NBDESC;
273 if (dpaa2_svr_family == SVR_LX2160A) {
274 dev_info->speed_capa |= ETH_LINK_SPEED_25G |
284 dpaa2_dev_rx_burst_mode_get(struct rte_eth_dev *dev,
285 __rte_unused uint16_t queue_id,
286 struct rte_eth_burst_mode *mode)
288 struct rte_eth_conf *eth_conf = &dev->data->dev_conf;
291 const struct burst_info {
294 } rx_offload_map[] = {
295 {DEV_RX_OFFLOAD_CHECKSUM, " Checksum,"},
296 {DEV_RX_OFFLOAD_SCTP_CKSUM, " SCTP csum,"},
297 {DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM, " Outer IPV4 csum,"},
298 {DEV_RX_OFFLOAD_OUTER_UDP_CKSUM, " Outer UDP csum,"},
299 {DEV_RX_OFFLOAD_VLAN_STRIP, " VLAN strip,"},
300 {DEV_RX_OFFLOAD_VLAN_FILTER, " VLAN filter,"},
301 {DEV_RX_OFFLOAD_JUMBO_FRAME, " Jumbo frame,"},
302 {DEV_RX_OFFLOAD_TIMESTAMP, " Timestamp,"},
303 {DEV_RX_OFFLOAD_RSS_HASH, " RSS,"},
304 {DEV_RX_OFFLOAD_SCATTER, " Scattered,"}
307 /* Update Rx offload info */
308 for (i = 0; i < RTE_DIM(rx_offload_map); i++) {
309 if (eth_conf->rxmode.offloads & rx_offload_map[i].flags) {
310 snprintf(mode->info, sizeof(mode->info), "%s",
311 rx_offload_map[i].output);
320 dpaa2_dev_tx_burst_mode_get(struct rte_eth_dev *dev,
321 __rte_unused uint16_t queue_id,
322 struct rte_eth_burst_mode *mode)
324 struct rte_eth_conf *eth_conf = &dev->data->dev_conf;
327 const struct burst_info {
330 } tx_offload_map[] = {
331 {DEV_TX_OFFLOAD_VLAN_INSERT, " VLAN Insert,"},
332 {DEV_TX_OFFLOAD_IPV4_CKSUM, " IPV4 csum,"},
333 {DEV_TX_OFFLOAD_UDP_CKSUM, " UDP csum,"},
334 {DEV_TX_OFFLOAD_TCP_CKSUM, " TCP csum,"},
335 {DEV_TX_OFFLOAD_SCTP_CKSUM, " SCTP csum,"},
336 {DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM, " Outer IPV4 csum,"},
337 {DEV_TX_OFFLOAD_MT_LOCKFREE, " MT lockfree,"},
338 {DEV_TX_OFFLOAD_MBUF_FAST_FREE, " MBUF free disable,"},
339 {DEV_TX_OFFLOAD_MULTI_SEGS, " Scattered,"}
342 /* Update Tx offload info */
343 for (i = 0; i < RTE_DIM(tx_offload_map); i++) {
344 if (eth_conf->txmode.offloads & tx_offload_map[i].flags) {
345 snprintf(mode->info, sizeof(mode->info), "%s",
346 tx_offload_map[i].output);
355 dpaa2_alloc_rx_tx_queues(struct rte_eth_dev *dev)
357 struct dpaa2_dev_priv *priv = dev->data->dev_private;
360 uint8_t num_rxqueue_per_tc;
361 struct dpaa2_queue *mc_q, *mcq;
364 struct dpaa2_queue *dpaa2_q;
366 PMD_INIT_FUNC_TRACE();
368 num_rxqueue_per_tc = (priv->nb_rx_queues / priv->num_rx_tc);
369 if (priv->tx_conf_en)
370 tot_queues = priv->nb_rx_queues + 2 * priv->nb_tx_queues;
372 tot_queues = priv->nb_rx_queues + priv->nb_tx_queues;
373 mc_q = rte_malloc(NULL, sizeof(struct dpaa2_queue) * tot_queues,
374 RTE_CACHE_LINE_SIZE);
376 DPAA2_PMD_ERR("Memory allocation failed for rx/tx queues");
380 for (i = 0; i < priv->nb_rx_queues; i++) {
381 mc_q->eth_data = dev->data;
382 priv->rx_vq[i] = mc_q++;
383 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[i];
384 dpaa2_q->q_storage = rte_malloc("dq_storage",
385 sizeof(struct queue_storage_info_t),
386 RTE_CACHE_LINE_SIZE);
387 if (!dpaa2_q->q_storage)
390 memset(dpaa2_q->q_storage, 0,
391 sizeof(struct queue_storage_info_t));
392 if (dpaa2_alloc_dq_storage(dpaa2_q->q_storage))
396 for (i = 0; i < priv->nb_tx_queues; i++) {
397 mc_q->eth_data = dev->data;
398 mc_q->flow_id = 0xffff;
399 priv->tx_vq[i] = mc_q++;
400 dpaa2_q = (struct dpaa2_queue *)priv->tx_vq[i];
401 dpaa2_q->cscn = rte_malloc(NULL,
402 sizeof(struct qbman_result), 16);
407 if (priv->tx_conf_en) {
408 /*Setup tx confirmation queues*/
409 for (i = 0; i < priv->nb_tx_queues; i++) {
410 mc_q->eth_data = dev->data;
413 priv->tx_conf_vq[i] = mc_q++;
414 dpaa2_q = (struct dpaa2_queue *)priv->tx_conf_vq[i];
416 rte_malloc("dq_storage",
417 sizeof(struct queue_storage_info_t),
418 RTE_CACHE_LINE_SIZE);
419 if (!dpaa2_q->q_storage)
422 memset(dpaa2_q->q_storage, 0,
423 sizeof(struct queue_storage_info_t));
424 if (dpaa2_alloc_dq_storage(dpaa2_q->q_storage))
430 for (dist_idx = 0; dist_idx < priv->nb_rx_queues; dist_idx++) {
431 mcq = (struct dpaa2_queue *)priv->rx_vq[vq_id];
432 mcq->tc_index = dist_idx / num_rxqueue_per_tc;
433 mcq->flow_id = dist_idx % num_rxqueue_per_tc;
441 dpaa2_q = (struct dpaa2_queue *)priv->tx_conf_vq[i];
442 rte_free(dpaa2_q->q_storage);
443 priv->tx_conf_vq[i--] = NULL;
445 i = priv->nb_tx_queues;
449 dpaa2_q = (struct dpaa2_queue *)priv->tx_vq[i];
450 rte_free(dpaa2_q->cscn);
451 priv->tx_vq[i--] = NULL;
453 i = priv->nb_rx_queues;
456 mc_q = priv->rx_vq[0];
458 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[i];
459 dpaa2_free_dq_storage(dpaa2_q->q_storage);
460 rte_free(dpaa2_q->q_storage);
461 priv->rx_vq[i--] = NULL;
468 dpaa2_free_rx_tx_queues(struct rte_eth_dev *dev)
470 struct dpaa2_dev_priv *priv = dev->data->dev_private;
471 struct dpaa2_queue *dpaa2_q;
474 PMD_INIT_FUNC_TRACE();
476 /* Queue allocation base */
477 if (priv->rx_vq[0]) {
478 /* cleaning up queue storage */
479 for (i = 0; i < priv->nb_rx_queues; i++) {
480 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[i];
481 if (dpaa2_q->q_storage)
482 rte_free(dpaa2_q->q_storage);
484 /* cleanup tx queue cscn */
485 for (i = 0; i < priv->nb_tx_queues; i++) {
486 dpaa2_q = (struct dpaa2_queue *)priv->tx_vq[i];
487 rte_free(dpaa2_q->cscn);
489 if (priv->tx_conf_en) {
490 /* cleanup tx conf queue storage */
491 for (i = 0; i < priv->nb_tx_queues; i++) {
492 dpaa2_q = (struct dpaa2_queue *)
494 rte_free(dpaa2_q->q_storage);
497 /*free memory for all queues (RX+TX) */
498 rte_free(priv->rx_vq[0]);
499 priv->rx_vq[0] = NULL;
504 dpaa2_eth_dev_configure(struct rte_eth_dev *dev)
506 struct dpaa2_dev_priv *priv = dev->data->dev_private;
507 struct fsl_mc_io *dpni = dev->process_private;
508 struct rte_eth_conf *eth_conf = &dev->data->dev_conf;
509 uint64_t rx_offloads = eth_conf->rxmode.offloads;
510 uint64_t tx_offloads = eth_conf->txmode.offloads;
511 int rx_l3_csum_offload = false;
512 int rx_l4_csum_offload = false;
513 int tx_l3_csum_offload = false;
514 int tx_l4_csum_offload = false;
517 PMD_INIT_FUNC_TRACE();
519 /* Rx offloads which are enabled by default */
520 if (dev_rx_offloads_nodis & ~rx_offloads) {
522 "Some of rx offloads enabled by default - requested 0x%" PRIx64
523 " fixed are 0x%" PRIx64,
524 rx_offloads, dev_rx_offloads_nodis);
527 /* Tx offloads which are enabled by default */
528 if (dev_tx_offloads_nodis & ~tx_offloads) {
530 "Some of tx offloads enabled by default - requested 0x%" PRIx64
531 " fixed are 0x%" PRIx64,
532 tx_offloads, dev_tx_offloads_nodis);
535 if (rx_offloads & DEV_RX_OFFLOAD_JUMBO_FRAME) {
536 if (eth_conf->rxmode.max_rx_pkt_len <= DPAA2_MAX_RX_PKT_LEN) {
537 ret = dpni_set_max_frame_length(dpni, CMD_PRI_LOW,
538 priv->token, eth_conf->rxmode.max_rx_pkt_len
539 - RTE_ETHER_CRC_LEN);
542 "Unable to set mtu. check config");
546 dev->data->dev_conf.rxmode.max_rx_pkt_len -
547 RTE_ETHER_HDR_LEN - RTE_ETHER_CRC_LEN -
554 if (eth_conf->rxmode.mq_mode == ETH_MQ_RX_RSS) {
555 for (tc_index = 0; tc_index < priv->num_rx_tc; tc_index++) {
556 ret = dpaa2_setup_flow_dist(dev,
557 eth_conf->rx_adv_conf.rss_conf.rss_hf,
561 "Unable to set flow distribution on tc%d."
562 "Check queue config", tc_index);
568 if (rx_offloads & DEV_RX_OFFLOAD_IPV4_CKSUM)
569 rx_l3_csum_offload = true;
571 if ((rx_offloads & DEV_RX_OFFLOAD_UDP_CKSUM) ||
572 (rx_offloads & DEV_RX_OFFLOAD_TCP_CKSUM) ||
573 (rx_offloads & DEV_RX_OFFLOAD_SCTP_CKSUM))
574 rx_l4_csum_offload = true;
576 ret = dpni_set_offload(dpni, CMD_PRI_LOW, priv->token,
577 DPNI_OFF_RX_L3_CSUM, rx_l3_csum_offload);
579 DPAA2_PMD_ERR("Error to set RX l3 csum:Error = %d", ret);
583 ret = dpni_set_offload(dpni, CMD_PRI_LOW, priv->token,
584 DPNI_OFF_RX_L4_CSUM, rx_l4_csum_offload);
586 DPAA2_PMD_ERR("Error to get RX l4 csum:Error = %d", ret);
590 #if !defined(RTE_LIBRTE_IEEE1588)
591 if (rx_offloads & DEV_RX_OFFLOAD_TIMESTAMP)
593 dpaa2_enable_ts[dev->data->port_id] = true;
595 if (tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM)
596 tx_l3_csum_offload = true;
598 if ((tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) ||
599 (tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) ||
600 (tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM))
601 tx_l4_csum_offload = true;
603 ret = dpni_set_offload(dpni, CMD_PRI_LOW, priv->token,
604 DPNI_OFF_TX_L3_CSUM, tx_l3_csum_offload);
606 DPAA2_PMD_ERR("Error to set TX l3 csum:Error = %d", ret);
610 ret = dpni_set_offload(dpni, CMD_PRI_LOW, priv->token,
611 DPNI_OFF_TX_L4_CSUM, tx_l4_csum_offload);
613 DPAA2_PMD_ERR("Error to get TX l4 csum:Error = %d", ret);
617 /* Enabling hash results in FD requires setting DPNI_FLCTYPE_HASH in
618 * dpni_set_offload API. Setting this FLCTYPE for DPNI sets the FD[SC]
619 * to 0 for LS2 in the hardware thus disabling data/annotation
620 * stashing. For LX2 this is fixed in hardware and thus hash result and
621 * parse results can be received in FD using this option.
623 if (dpaa2_svr_family == SVR_LX2160A) {
624 ret = dpni_set_offload(dpni, CMD_PRI_LOW, priv->token,
625 DPNI_FLCTYPE_HASH, true);
627 DPAA2_PMD_ERR("Error setting FLCTYPE: Err = %d", ret);
632 if (rx_offloads & DEV_RX_OFFLOAD_VLAN_FILTER)
633 dpaa2_vlan_offload_set(dev, ETH_VLAN_FILTER_MASK);
638 /* Function to setup RX flow information. It contains traffic class ID,
639 * flow ID, destination configuration etc.
642 dpaa2_dev_rx_queue_setup(struct rte_eth_dev *dev,
643 uint16_t rx_queue_id,
645 unsigned int socket_id __rte_unused,
646 const struct rte_eth_rxconf *rx_conf,
647 struct rte_mempool *mb_pool)
649 struct dpaa2_dev_priv *priv = dev->data->dev_private;
650 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
651 struct dpaa2_queue *dpaa2_q;
652 struct dpni_queue cfg;
658 PMD_INIT_FUNC_TRACE();
660 DPAA2_PMD_DEBUG("dev =%p, queue =%d, pool = %p, conf =%p",
661 dev, rx_queue_id, mb_pool, rx_conf);
663 /* Rx deferred start is not supported */
664 if (rx_conf->rx_deferred_start) {
665 DPAA2_PMD_ERR("%p:Rx deferred start not supported",
670 if (!priv->bp_list || priv->bp_list->mp != mb_pool) {
671 bpid = mempool_to_bpid(mb_pool);
672 ret = dpaa2_attach_bp_list(priv,
673 rte_dpaa2_bpid_info[bpid].bp_list);
677 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[rx_queue_id];
678 dpaa2_q->mb_pool = mb_pool; /**< mbuf pool to populate RX ring. */
679 dpaa2_q->bp_array = rte_dpaa2_bpid_info;
680 dpaa2_q->nb_desc = UINT16_MAX;
681 dpaa2_q->offloads = rx_conf->offloads;
683 /*Get the flow id from given VQ id*/
684 flow_id = dpaa2_q->flow_id;
685 memset(&cfg, 0, sizeof(struct dpni_queue));
687 options = options | DPNI_QUEUE_OPT_USER_CTX;
688 cfg.user_context = (size_t)(dpaa2_q);
690 /* check if a private cgr available. */
691 for (i = 0; i < priv->max_cgs; i++) {
692 if (!priv->cgid_in_use[i]) {
693 priv->cgid_in_use[i] = 1;
698 if (i < priv->max_cgs) {
699 options |= DPNI_QUEUE_OPT_SET_CGID;
701 dpaa2_q->cgid = cfg.cgid;
703 dpaa2_q->cgid = 0xff;
706 /*if ls2088 or rev2 device, enable the stashing */
708 if ((dpaa2_svr_family & 0xffff0000) != SVR_LS2080A) {
709 options |= DPNI_QUEUE_OPT_FLC;
710 cfg.flc.stash_control = true;
711 cfg.flc.value &= 0xFFFFFFFFFFFFFFC0;
712 /* 00 00 00 - last 6 bit represent annotation, context stashing,
713 * data stashing setting 01 01 00 (0x14)
714 * (in following order ->DS AS CS)
715 * to enable 1 line data, 1 line annotation.
716 * For LX2, this setting should be 01 00 00 (0x10)
718 if ((dpaa2_svr_family & 0xffff0000) == SVR_LX2160A)
719 cfg.flc.value |= 0x10;
721 cfg.flc.value |= 0x14;
723 ret = dpni_set_queue(dpni, CMD_PRI_LOW, priv->token, DPNI_QUEUE_RX,
724 dpaa2_q->tc_index, flow_id, options, &cfg);
726 DPAA2_PMD_ERR("Error in setting the rx flow: = %d", ret);
730 if (!(priv->flags & DPAA2_RX_TAILDROP_OFF)) {
731 struct dpni_taildrop taildrop;
734 dpaa2_q->nb_desc = nb_rx_desc;
735 /* Private CGR will use tail drop length as nb_rx_desc.
736 * for rest cases we can use standard byte based tail drop.
737 * There is no HW restriction, but number of CGRs are limited,
738 * hence this restriction is placed.
740 if (dpaa2_q->cgid != 0xff) {
741 /*enabling per rx queue congestion control */
742 taildrop.threshold = nb_rx_desc;
743 taildrop.units = DPNI_CONGESTION_UNIT_FRAMES;
745 DPAA2_PMD_DEBUG("Enabling CG Tail Drop on queue = %d",
747 ret = dpni_set_taildrop(dpni, CMD_PRI_LOW, priv->token,
748 DPNI_CP_CONGESTION_GROUP,
751 dpaa2_q->cgid, &taildrop);
753 /*enabling per rx queue congestion control */
754 taildrop.threshold = CONG_THRESHOLD_RX_BYTES_Q;
755 taildrop.units = DPNI_CONGESTION_UNIT_BYTES;
756 taildrop.oal = CONG_RX_OAL;
757 DPAA2_PMD_DEBUG("Enabling Byte based Drop on queue= %d",
759 ret = dpni_set_taildrop(dpni, CMD_PRI_LOW, priv->token,
760 DPNI_CP_QUEUE, DPNI_QUEUE_RX,
761 dpaa2_q->tc_index, flow_id,
765 DPAA2_PMD_ERR("Error in setting taildrop. err=(%d)",
769 } else { /* Disable tail Drop */
770 struct dpni_taildrop taildrop = {0};
771 DPAA2_PMD_INFO("Tail drop is disabled on queue");
774 if (dpaa2_q->cgid != 0xff) {
775 ret = dpni_set_taildrop(dpni, CMD_PRI_LOW, priv->token,
776 DPNI_CP_CONGESTION_GROUP, DPNI_QUEUE_RX,
778 dpaa2_q->cgid, &taildrop);
780 ret = dpni_set_taildrop(dpni, CMD_PRI_LOW, priv->token,
781 DPNI_CP_QUEUE, DPNI_QUEUE_RX,
782 dpaa2_q->tc_index, flow_id, &taildrop);
785 DPAA2_PMD_ERR("Error in setting taildrop. err=(%d)",
791 dev->data->rx_queues[rx_queue_id] = dpaa2_q;
796 dpaa2_dev_tx_queue_setup(struct rte_eth_dev *dev,
797 uint16_t tx_queue_id,
799 unsigned int socket_id __rte_unused,
800 const struct rte_eth_txconf *tx_conf)
802 struct dpaa2_dev_priv *priv = dev->data->dev_private;
803 struct dpaa2_queue *dpaa2_q = (struct dpaa2_queue *)
804 priv->tx_vq[tx_queue_id];
805 struct dpaa2_queue *dpaa2_tx_conf_q = (struct dpaa2_queue *)
806 priv->tx_conf_vq[tx_queue_id];
807 struct fsl_mc_io *dpni = dev->process_private;
808 struct dpni_queue tx_conf_cfg;
809 struct dpni_queue tx_flow_cfg;
810 uint8_t options = 0, flow_id;
811 struct dpni_queue_id qid;
815 PMD_INIT_FUNC_TRACE();
817 /* Tx deferred start is not supported */
818 if (tx_conf->tx_deferred_start) {
819 DPAA2_PMD_ERR("%p:Tx deferred start not supported",
824 dpaa2_q->nb_desc = UINT16_MAX;
825 dpaa2_q->offloads = tx_conf->offloads;
827 /* Return if queue already configured */
828 if (dpaa2_q->flow_id != 0xffff) {
829 dev->data->tx_queues[tx_queue_id] = dpaa2_q;
833 memset(&tx_conf_cfg, 0, sizeof(struct dpni_queue));
834 memset(&tx_flow_cfg, 0, sizeof(struct dpni_queue));
839 ret = dpni_set_queue(dpni, CMD_PRI_LOW, priv->token, DPNI_QUEUE_TX,
840 tc_id, flow_id, options, &tx_flow_cfg);
842 DPAA2_PMD_ERR("Error in setting the tx flow: "
843 "tc_id=%d, flow=%d err=%d",
844 tc_id, flow_id, ret);
848 dpaa2_q->flow_id = flow_id;
850 if (tx_queue_id == 0) {
851 /*Set tx-conf and error configuration*/
852 if (priv->tx_conf_en)
853 ret = dpni_set_tx_confirmation_mode(dpni, CMD_PRI_LOW,
857 ret = dpni_set_tx_confirmation_mode(dpni, CMD_PRI_LOW,
861 DPAA2_PMD_ERR("Error in set tx conf mode settings: "
866 dpaa2_q->tc_index = tc_id;
868 ret = dpni_get_queue(dpni, CMD_PRI_LOW, priv->token,
869 DPNI_QUEUE_TX, dpaa2_q->tc_index,
870 dpaa2_q->flow_id, &tx_flow_cfg, &qid);
872 DPAA2_PMD_ERR("Error in getting LFQID err=%d", ret);
875 dpaa2_q->fqid = qid.fqid;
877 if (!(priv->flags & DPAA2_TX_CGR_OFF)) {
878 struct dpni_congestion_notification_cfg cong_notif_cfg = {0};
880 dpaa2_q->nb_desc = nb_tx_desc;
882 cong_notif_cfg.units = DPNI_CONGESTION_UNIT_FRAMES;
883 cong_notif_cfg.threshold_entry = nb_tx_desc;
884 /* Notify that the queue is not congested when the data in
885 * the queue is below this thershold.
887 cong_notif_cfg.threshold_exit = nb_tx_desc - 24;
888 cong_notif_cfg.message_ctx = 0;
889 cong_notif_cfg.message_iova =
890 (size_t)DPAA2_VADDR_TO_IOVA(dpaa2_q->cscn);
891 cong_notif_cfg.dest_cfg.dest_type = DPNI_DEST_NONE;
892 cong_notif_cfg.notification_mode =
893 DPNI_CONG_OPT_WRITE_MEM_ON_ENTER |
894 DPNI_CONG_OPT_WRITE_MEM_ON_EXIT |
895 DPNI_CONG_OPT_COHERENT_WRITE;
896 cong_notif_cfg.cg_point = DPNI_CP_QUEUE;
898 ret = dpni_set_congestion_notification(dpni, CMD_PRI_LOW,
905 "Error in setting tx congestion notification: "
910 dpaa2_q->cb_eqresp_free = dpaa2_dev_free_eqresp_buf;
911 dev->data->tx_queues[tx_queue_id] = dpaa2_q;
913 if (priv->tx_conf_en) {
914 dpaa2_q->tx_conf_queue = dpaa2_tx_conf_q;
915 options = options | DPNI_QUEUE_OPT_USER_CTX;
916 tx_conf_cfg.user_context = (size_t)(dpaa2_q);
917 ret = dpni_set_queue(dpni, CMD_PRI_LOW, priv->token,
918 DPNI_QUEUE_TX_CONFIRM, dpaa2_tx_conf_q->tc_index,
919 dpaa2_tx_conf_q->flow_id, options, &tx_conf_cfg);
921 DPAA2_PMD_ERR("Error in setting the tx conf flow: "
922 "tc_index=%d, flow=%d err=%d",
923 dpaa2_tx_conf_q->tc_index,
924 dpaa2_tx_conf_q->flow_id, ret);
928 ret = dpni_get_queue(dpni, CMD_PRI_LOW, priv->token,
929 DPNI_QUEUE_TX_CONFIRM, dpaa2_tx_conf_q->tc_index,
930 dpaa2_tx_conf_q->flow_id, &tx_conf_cfg, &qid);
932 DPAA2_PMD_ERR("Error in getting LFQID err=%d", ret);
935 dpaa2_tx_conf_q->fqid = qid.fqid;
941 dpaa2_dev_rx_queue_release(void *q __rte_unused)
943 struct dpaa2_queue *dpaa2_q = (struct dpaa2_queue *)q;
944 struct dpaa2_dev_priv *priv = dpaa2_q->eth_data->dev_private;
945 struct fsl_mc_io *dpni =
946 (struct fsl_mc_io *)priv->eth_dev->process_private;
949 struct dpni_queue cfg;
951 memset(&cfg, 0, sizeof(struct dpni_queue));
952 PMD_INIT_FUNC_TRACE();
953 if (dpaa2_q->cgid != 0xff) {
954 options = DPNI_QUEUE_OPT_CLEAR_CGID;
955 cfg.cgid = dpaa2_q->cgid;
957 ret = dpni_set_queue(dpni, CMD_PRI_LOW, priv->token,
959 dpaa2_q->tc_index, dpaa2_q->flow_id,
962 DPAA2_PMD_ERR("Unable to clear CGR from q=%u err=%d",
964 priv->cgid_in_use[dpaa2_q->cgid] = 0;
965 dpaa2_q->cgid = 0xff;
970 dpaa2_dev_tx_queue_release(void *q __rte_unused)
972 PMD_INIT_FUNC_TRACE();
976 dpaa2_dev_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id)
979 struct dpaa2_dev_priv *priv = dev->data->dev_private;
980 struct dpaa2_queue *dpaa2_q;
981 struct qbman_swp *swp;
982 struct qbman_fq_query_np_rslt state;
983 uint32_t frame_cnt = 0;
985 if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
986 ret = dpaa2_affine_qbman_swp();
989 "Failed to allocate IO portal, tid: %d\n",
994 swp = DPAA2_PER_LCORE_PORTAL;
996 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[rx_queue_id];
998 if (qbman_fq_query_state(swp, dpaa2_q->fqid, &state) == 0) {
999 frame_cnt = qbman_fq_state_frame_count(&state);
1000 DPAA2_PMD_DP_DEBUG("RX frame count for q(%d) is %u",
1001 rx_queue_id, frame_cnt);
1006 static const uint32_t *
1007 dpaa2_supported_ptypes_get(struct rte_eth_dev *dev)
1009 static const uint32_t ptypes[] = {
1010 /*todo -= add more types */
1013 RTE_PTYPE_L3_IPV4_EXT,
1015 RTE_PTYPE_L3_IPV6_EXT,
1023 if (dev->rx_pkt_burst == dpaa2_dev_prefetch_rx ||
1024 dev->rx_pkt_burst == dpaa2_dev_rx ||
1025 dev->rx_pkt_burst == dpaa2_dev_loopback_rx)
1031 * Dpaa2 link Interrupt handler
1034 * The address of parameter (struct rte_eth_dev *) regsitered before.
1040 dpaa2_interrupt_handler(void *param)
1042 struct rte_eth_dev *dev = param;
1043 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1044 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1046 int irq_index = DPNI_IRQ_INDEX;
1047 unsigned int status = 0, clear = 0;
1049 PMD_INIT_FUNC_TRACE();
1052 DPAA2_PMD_ERR("dpni is NULL");
1056 ret = dpni_get_irq_status(dpni, CMD_PRI_LOW, priv->token,
1057 irq_index, &status);
1058 if (unlikely(ret)) {
1059 DPAA2_PMD_ERR("Can't get irq status (err %d)", ret);
1064 if (status & DPNI_IRQ_EVENT_LINK_CHANGED) {
1065 clear = DPNI_IRQ_EVENT_LINK_CHANGED;
1066 dpaa2_dev_link_update(dev, 0);
1067 /* calling all the apps registered for link status event */
1068 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_LSC,
1072 ret = dpni_clear_irq_status(dpni, CMD_PRI_LOW, priv->token,
1075 DPAA2_PMD_ERR("Can't clear irq status (err %d)", ret);
1079 dpaa2_eth_setup_irqs(struct rte_eth_dev *dev, int enable)
1082 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1083 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1084 int irq_index = DPNI_IRQ_INDEX;
1085 unsigned int mask = DPNI_IRQ_EVENT_LINK_CHANGED;
1087 PMD_INIT_FUNC_TRACE();
1089 err = dpni_set_irq_mask(dpni, CMD_PRI_LOW, priv->token,
1092 DPAA2_PMD_ERR("Error: dpni_set_irq_mask():%d (%s)", err,
1097 err = dpni_set_irq_enable(dpni, CMD_PRI_LOW, priv->token,
1100 DPAA2_PMD_ERR("Error: dpni_set_irq_enable():%d (%s)", err,
1107 dpaa2_dev_start(struct rte_eth_dev *dev)
1109 struct rte_device *rdev = dev->device;
1110 struct rte_dpaa2_device *dpaa2_dev;
1111 struct rte_eth_dev_data *data = dev->data;
1112 struct dpaa2_dev_priv *priv = data->dev_private;
1113 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1114 struct dpni_queue cfg;
1115 struct dpni_error_cfg err_cfg;
1117 struct dpni_queue_id qid;
1118 struct dpaa2_queue *dpaa2_q;
1120 struct rte_intr_handle *intr_handle;
1122 dpaa2_dev = container_of(rdev, struct rte_dpaa2_device, device);
1123 intr_handle = &dpaa2_dev->intr_handle;
1125 PMD_INIT_FUNC_TRACE();
1127 ret = dpni_enable(dpni, CMD_PRI_LOW, priv->token);
1129 DPAA2_PMD_ERR("Failure in enabling dpni %d device: err=%d",
1134 /* Power up the phy. Needed to make the link go UP */
1135 dpaa2_dev_set_link_up(dev);
1137 ret = dpni_get_qdid(dpni, CMD_PRI_LOW, priv->token,
1138 DPNI_QUEUE_TX, &qdid);
1140 DPAA2_PMD_ERR("Error in getting qdid: err=%d", ret);
1145 for (i = 0; i < data->nb_rx_queues; i++) {
1146 dpaa2_q = (struct dpaa2_queue *)data->rx_queues[i];
1147 ret = dpni_get_queue(dpni, CMD_PRI_LOW, priv->token,
1148 DPNI_QUEUE_RX, dpaa2_q->tc_index,
1149 dpaa2_q->flow_id, &cfg, &qid);
1151 DPAA2_PMD_ERR("Error in getting flow information: "
1155 dpaa2_q->fqid = qid.fqid;
1158 /*checksum errors, send them to normal path and set it in annotation */
1159 err_cfg.errors = DPNI_ERROR_L3CE | DPNI_ERROR_L4CE;
1160 err_cfg.errors |= DPNI_ERROR_PHE;
1162 err_cfg.error_action = DPNI_ERROR_ACTION_CONTINUE;
1163 err_cfg.set_frame_annotation = true;
1165 ret = dpni_set_errors_behavior(dpni, CMD_PRI_LOW,
1166 priv->token, &err_cfg);
1168 DPAA2_PMD_ERR("Error to dpni_set_errors_behavior: code = %d",
1173 /* if the interrupts were configured on this devices*/
1174 if (intr_handle && (intr_handle->fd) &&
1175 (dev->data->dev_conf.intr_conf.lsc != 0)) {
1176 /* Registering LSC interrupt handler */
1177 rte_intr_callback_register(intr_handle,
1178 dpaa2_interrupt_handler,
1181 /* enable vfio intr/eventfd mapping
1182 * Interrupt index 0 is required, so we can not use
1185 rte_dpaa2_intr_enable(intr_handle, DPNI_IRQ_INDEX);
1187 /* enable dpni_irqs */
1188 dpaa2_eth_setup_irqs(dev, 1);
1191 /* Change the tx burst function if ordered queues are used */
1192 if (priv->en_ordered)
1193 dev->tx_pkt_burst = dpaa2_dev_tx_ordered;
1199 * This routine disables all traffic on the adapter by issuing a
1200 * global reset on the MAC.
1203 dpaa2_dev_stop(struct rte_eth_dev *dev)
1205 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1206 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1208 struct rte_eth_link link;
1209 struct rte_intr_handle *intr_handle = dev->intr_handle;
1211 PMD_INIT_FUNC_TRACE();
1213 /* reset interrupt callback */
1214 if (intr_handle && (intr_handle->fd) &&
1215 (dev->data->dev_conf.intr_conf.lsc != 0)) {
1216 /*disable dpni irqs */
1217 dpaa2_eth_setup_irqs(dev, 0);
1219 /* disable vfio intr before callback unregister */
1220 rte_dpaa2_intr_disable(intr_handle, DPNI_IRQ_INDEX);
1222 /* Unregistering LSC interrupt handler */
1223 rte_intr_callback_unregister(intr_handle,
1224 dpaa2_interrupt_handler,
1228 dpaa2_dev_set_link_down(dev);
1230 ret = dpni_disable(dpni, CMD_PRI_LOW, priv->token);
1232 DPAA2_PMD_ERR("Failure (ret %d) in disabling dpni %d dev",
1237 /* clear the recorded link status */
1238 memset(&link, 0, sizeof(link));
1239 rte_eth_linkstatus_set(dev, &link);
1243 dpaa2_dev_close(struct rte_eth_dev *dev)
1245 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1246 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1248 struct rte_eth_link link;
1250 PMD_INIT_FUNC_TRACE();
1252 dpaa2_flow_clean(dev);
1254 /* Clean the device first */
1255 ret = dpni_reset(dpni, CMD_PRI_LOW, priv->token);
1257 DPAA2_PMD_ERR("Failure cleaning dpni device: err=%d", ret);
1261 memset(&link, 0, sizeof(link));
1262 rte_eth_linkstatus_set(dev, &link);
1266 dpaa2_dev_promiscuous_enable(
1267 struct rte_eth_dev *dev)
1270 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1271 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1273 PMD_INIT_FUNC_TRACE();
1276 DPAA2_PMD_ERR("dpni is NULL");
1280 ret = dpni_set_unicast_promisc(dpni, CMD_PRI_LOW, priv->token, true);
1282 DPAA2_PMD_ERR("Unable to enable U promisc mode %d", ret);
1284 ret = dpni_set_multicast_promisc(dpni, CMD_PRI_LOW, priv->token, true);
1286 DPAA2_PMD_ERR("Unable to enable M promisc mode %d", ret);
1292 dpaa2_dev_promiscuous_disable(
1293 struct rte_eth_dev *dev)
1296 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1297 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1299 PMD_INIT_FUNC_TRACE();
1302 DPAA2_PMD_ERR("dpni is NULL");
1306 ret = dpni_set_unicast_promisc(dpni, CMD_PRI_LOW, priv->token, false);
1308 DPAA2_PMD_ERR("Unable to disable U promisc mode %d", ret);
1310 if (dev->data->all_multicast == 0) {
1311 ret = dpni_set_multicast_promisc(dpni, CMD_PRI_LOW,
1312 priv->token, false);
1314 DPAA2_PMD_ERR("Unable to disable M promisc mode %d",
1322 dpaa2_dev_allmulticast_enable(
1323 struct rte_eth_dev *dev)
1326 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1327 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1329 PMD_INIT_FUNC_TRACE();
1332 DPAA2_PMD_ERR("dpni is NULL");
1336 ret = dpni_set_multicast_promisc(dpni, CMD_PRI_LOW, priv->token, true);
1338 DPAA2_PMD_ERR("Unable to enable multicast mode %d", ret);
1344 dpaa2_dev_allmulticast_disable(struct rte_eth_dev *dev)
1347 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1348 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1350 PMD_INIT_FUNC_TRACE();
1353 DPAA2_PMD_ERR("dpni is NULL");
1357 /* must remain on for all promiscuous */
1358 if (dev->data->promiscuous == 1)
1361 ret = dpni_set_multicast_promisc(dpni, CMD_PRI_LOW, priv->token, false);
1363 DPAA2_PMD_ERR("Unable to disable multicast mode %d", ret);
1369 dpaa2_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
1372 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1373 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1374 uint32_t frame_size = mtu + RTE_ETHER_HDR_LEN + RTE_ETHER_CRC_LEN
1377 PMD_INIT_FUNC_TRACE();
1380 DPAA2_PMD_ERR("dpni is NULL");
1384 /* check that mtu is within the allowed range */
1385 if (mtu < RTE_ETHER_MIN_MTU || frame_size > DPAA2_MAX_RX_PKT_LEN)
1388 if (frame_size > RTE_ETHER_MAX_LEN)
1389 dev->data->dev_conf.rxmode.offloads |=
1390 DEV_RX_OFFLOAD_JUMBO_FRAME;
1392 dev->data->dev_conf.rxmode.offloads &=
1393 ~DEV_RX_OFFLOAD_JUMBO_FRAME;
1395 dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
1397 /* Set the Max Rx frame length as 'mtu' +
1398 * Maximum Ethernet header length
1400 ret = dpni_set_max_frame_length(dpni, CMD_PRI_LOW, priv->token,
1401 frame_size - RTE_ETHER_CRC_LEN);
1403 DPAA2_PMD_ERR("Setting the max frame length failed");
1406 DPAA2_PMD_INFO("MTU configured for the device: %d", mtu);
1411 dpaa2_dev_add_mac_addr(struct rte_eth_dev *dev,
1412 struct rte_ether_addr *addr,
1413 __rte_unused uint32_t index,
1414 __rte_unused uint32_t pool)
1417 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1418 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1420 PMD_INIT_FUNC_TRACE();
1423 DPAA2_PMD_ERR("dpni is NULL");
1427 ret = dpni_add_mac_addr(dpni, CMD_PRI_LOW, priv->token,
1428 addr->addr_bytes, 0, 0, 0);
1431 "error: Adding the MAC ADDR failed: err = %d", ret);
1436 dpaa2_dev_remove_mac_addr(struct rte_eth_dev *dev,
1440 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1441 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1442 struct rte_eth_dev_data *data = dev->data;
1443 struct rte_ether_addr *macaddr;
1445 PMD_INIT_FUNC_TRACE();
1447 macaddr = &data->mac_addrs[index];
1450 DPAA2_PMD_ERR("dpni is NULL");
1454 ret = dpni_remove_mac_addr(dpni, CMD_PRI_LOW,
1455 priv->token, macaddr->addr_bytes);
1458 "error: Removing the MAC ADDR failed: err = %d", ret);
1462 dpaa2_dev_set_mac_addr(struct rte_eth_dev *dev,
1463 struct rte_ether_addr *addr)
1466 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1467 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1469 PMD_INIT_FUNC_TRACE();
1472 DPAA2_PMD_ERR("dpni is NULL");
1476 ret = dpni_set_primary_mac_addr(dpni, CMD_PRI_LOW,
1477 priv->token, addr->addr_bytes);
1481 "error: Setting the MAC ADDR failed %d", ret);
1487 int dpaa2_dev_stats_get(struct rte_eth_dev *dev,
1488 struct rte_eth_stats *stats)
1490 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1491 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1493 uint8_t page0 = 0, page1 = 1, page2 = 2;
1494 union dpni_statistics value;
1496 struct dpaa2_queue *dpaa2_rxq, *dpaa2_txq;
1498 memset(&value, 0, sizeof(union dpni_statistics));
1500 PMD_INIT_FUNC_TRACE();
1503 DPAA2_PMD_ERR("dpni is NULL");
1508 DPAA2_PMD_ERR("stats is NULL");
1512 /*Get Counters from page_0*/
1513 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1518 stats->ipackets = value.page_0.ingress_all_frames;
1519 stats->ibytes = value.page_0.ingress_all_bytes;
1521 /*Get Counters from page_1*/
1522 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1527 stats->opackets = value.page_1.egress_all_frames;
1528 stats->obytes = value.page_1.egress_all_bytes;
1530 /*Get Counters from page_2*/
1531 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1536 /* Ingress drop frame count due to configured rules */
1537 stats->ierrors = value.page_2.ingress_filtered_frames;
1538 /* Ingress drop frame count due to error */
1539 stats->ierrors += value.page_2.ingress_discarded_frames;
1541 stats->oerrors = value.page_2.egress_discarded_frames;
1542 stats->imissed = value.page_2.ingress_nobuffer_discards;
1544 /* Fill in per queue stats */
1545 for (i = 0; (i < RTE_ETHDEV_QUEUE_STAT_CNTRS) &&
1546 (i < priv->nb_rx_queues || i < priv->nb_tx_queues); ++i) {
1547 dpaa2_rxq = (struct dpaa2_queue *)priv->rx_vq[i];
1548 dpaa2_txq = (struct dpaa2_queue *)priv->tx_vq[i];
1550 stats->q_ipackets[i] = dpaa2_rxq->rx_pkts;
1552 stats->q_opackets[i] = dpaa2_txq->tx_pkts;
1554 /* Byte counting is not implemented */
1555 stats->q_ibytes[i] = 0;
1556 stats->q_obytes[i] = 0;
1562 DPAA2_PMD_ERR("Operation not completed:Error Code = %d", retcode);
1567 dpaa2_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
1570 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1571 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1573 union dpni_statistics value[5] = {};
1574 unsigned int i = 0, num = RTE_DIM(dpaa2_xstats_strings);
1582 /* Get Counters from page_0*/
1583 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1588 /* Get Counters from page_1*/
1589 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1594 /* Get Counters from page_2*/
1595 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1600 for (i = 0; i < priv->max_cgs; i++) {
1601 if (!priv->cgid_in_use[i]) {
1602 /* Get Counters from page_4*/
1603 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW,
1612 for (i = 0; i < num; i++) {
1614 xstats[i].value = value[dpaa2_xstats_strings[i].page_id].
1615 raw.counter[dpaa2_xstats_strings[i].stats_id];
1619 DPAA2_PMD_ERR("Error in obtaining extended stats (%d)", retcode);
1624 dpaa2_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
1625 struct rte_eth_xstat_name *xstats_names,
1628 unsigned int i, stat_cnt = RTE_DIM(dpaa2_xstats_strings);
1630 if (limit < stat_cnt)
1633 if (xstats_names != NULL)
1634 for (i = 0; i < stat_cnt; i++)
1635 strlcpy(xstats_names[i].name,
1636 dpaa2_xstats_strings[i].name,
1637 sizeof(xstats_names[i].name));
1643 dpaa2_xstats_get_by_id(struct rte_eth_dev *dev, const uint64_t *ids,
1644 uint64_t *values, unsigned int n)
1646 unsigned int i, stat_cnt = RTE_DIM(dpaa2_xstats_strings);
1647 uint64_t values_copy[stat_cnt];
1650 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1651 struct fsl_mc_io *dpni =
1652 (struct fsl_mc_io *)dev->process_private;
1654 union dpni_statistics value[5] = {};
1662 /* Get Counters from page_0*/
1663 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1668 /* Get Counters from page_1*/
1669 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1674 /* Get Counters from page_2*/
1675 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1680 /* Get Counters from page_4*/
1681 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1686 for (i = 0; i < stat_cnt; i++) {
1687 values[i] = value[dpaa2_xstats_strings[i].page_id].
1688 raw.counter[dpaa2_xstats_strings[i].stats_id];
1693 dpaa2_xstats_get_by_id(dev, NULL, values_copy, stat_cnt);
1695 for (i = 0; i < n; i++) {
1696 if (ids[i] >= stat_cnt) {
1697 DPAA2_PMD_ERR("xstats id value isn't valid");
1700 values[i] = values_copy[ids[i]];
1706 dpaa2_xstats_get_names_by_id(
1707 struct rte_eth_dev *dev,
1708 struct rte_eth_xstat_name *xstats_names,
1709 const uint64_t *ids,
1712 unsigned int i, stat_cnt = RTE_DIM(dpaa2_xstats_strings);
1713 struct rte_eth_xstat_name xstats_names_copy[stat_cnt];
1716 return dpaa2_xstats_get_names(dev, xstats_names, limit);
1718 dpaa2_xstats_get_names(dev, xstats_names_copy, limit);
1720 for (i = 0; i < limit; i++) {
1721 if (ids[i] >= stat_cnt) {
1722 DPAA2_PMD_ERR("xstats id value isn't valid");
1725 strcpy(xstats_names[i].name, xstats_names_copy[ids[i]].name);
1731 dpaa2_dev_stats_reset(struct rte_eth_dev *dev)
1733 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1734 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1737 struct dpaa2_queue *dpaa2_q;
1739 PMD_INIT_FUNC_TRACE();
1742 DPAA2_PMD_ERR("dpni is NULL");
1746 retcode = dpni_reset_statistics(dpni, CMD_PRI_LOW, priv->token);
1750 /* Reset the per queue stats in dpaa2_queue structure */
1751 for (i = 0; i < priv->nb_rx_queues; i++) {
1752 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[i];
1754 dpaa2_q->rx_pkts = 0;
1757 for (i = 0; i < priv->nb_tx_queues; i++) {
1758 dpaa2_q = (struct dpaa2_queue *)priv->tx_vq[i];
1760 dpaa2_q->tx_pkts = 0;
1766 DPAA2_PMD_ERR("Operation not completed:Error Code = %d", retcode);
1770 /* return 0 means link status changed, -1 means not changed */
1772 dpaa2_dev_link_update(struct rte_eth_dev *dev,
1773 int wait_to_complete __rte_unused)
1776 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1777 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1778 struct rte_eth_link link;
1779 struct dpni_link_state state = {0};
1782 DPAA2_PMD_ERR("dpni is NULL");
1786 ret = dpni_get_link_state(dpni, CMD_PRI_LOW, priv->token, &state);
1788 DPAA2_PMD_DEBUG("error: dpni_get_link_state %d", ret);
1792 memset(&link, 0, sizeof(struct rte_eth_link));
1793 link.link_status = state.up;
1794 link.link_speed = state.rate;
1796 if (state.options & DPNI_LINK_OPT_HALF_DUPLEX)
1797 link.link_duplex = ETH_LINK_HALF_DUPLEX;
1799 link.link_duplex = ETH_LINK_FULL_DUPLEX;
1801 ret = rte_eth_linkstatus_set(dev, &link);
1803 DPAA2_PMD_DEBUG("No change in status");
1805 DPAA2_PMD_INFO("Port %d Link is %s\n", dev->data->port_id,
1806 link.link_status ? "Up" : "Down");
1812 * Toggle the DPNI to enable, if not already enabled.
1813 * This is not strictly PHY up/down - it is more of logical toggling.
1816 dpaa2_dev_set_link_up(struct rte_eth_dev *dev)
1819 struct dpaa2_dev_priv *priv;
1820 struct fsl_mc_io *dpni;
1822 struct dpni_link_state state = {0};
1824 priv = dev->data->dev_private;
1825 dpni = (struct fsl_mc_io *)dev->process_private;
1828 DPAA2_PMD_ERR("dpni is NULL");
1832 /* Check if DPNI is currently enabled */
1833 ret = dpni_is_enabled(dpni, CMD_PRI_LOW, priv->token, &en);
1835 /* Unable to obtain dpni status; Not continuing */
1836 DPAA2_PMD_ERR("Interface Link UP failed (%d)", ret);
1840 /* Enable link if not already enabled */
1842 ret = dpni_enable(dpni, CMD_PRI_LOW, priv->token);
1844 DPAA2_PMD_ERR("Interface Link UP failed (%d)", ret);
1848 ret = dpni_get_link_state(dpni, CMD_PRI_LOW, priv->token, &state);
1850 DPAA2_PMD_DEBUG("Unable to get link state (%d)", ret);
1854 /* changing tx burst function to start enqueues */
1855 dev->tx_pkt_burst = dpaa2_dev_tx;
1856 dev->data->dev_link.link_status = state.up;
1857 dev->data->dev_link.link_speed = state.rate;
1860 DPAA2_PMD_INFO("Port %d Link is Up", dev->data->port_id);
1862 DPAA2_PMD_INFO("Port %d Link is Down", dev->data->port_id);
1867 * Toggle the DPNI to disable, if not already disabled.
1868 * This is not strictly PHY up/down - it is more of logical toggling.
1871 dpaa2_dev_set_link_down(struct rte_eth_dev *dev)
1874 struct dpaa2_dev_priv *priv;
1875 struct fsl_mc_io *dpni;
1876 int dpni_enabled = 0;
1879 PMD_INIT_FUNC_TRACE();
1881 priv = dev->data->dev_private;
1882 dpni = (struct fsl_mc_io *)dev->process_private;
1885 DPAA2_PMD_ERR("Device has not yet been configured");
1889 /*changing tx burst function to avoid any more enqueues */
1890 dev->tx_pkt_burst = dummy_dev_tx;
1892 /* Loop while dpni_disable() attempts to drain the egress FQs
1893 * and confirm them back to us.
1896 ret = dpni_disable(dpni, 0, priv->token);
1898 DPAA2_PMD_ERR("dpni disable failed (%d)", ret);
1901 ret = dpni_is_enabled(dpni, 0, priv->token, &dpni_enabled);
1903 DPAA2_PMD_ERR("dpni enable check failed (%d)", ret);
1907 /* Allow the MC some slack */
1908 rte_delay_us(100 * 1000);
1909 } while (dpni_enabled && --retries);
1912 DPAA2_PMD_WARN("Retry count exceeded disabling dpni");
1913 /* todo- we may have to manually cleanup queues.
1916 DPAA2_PMD_INFO("Port %d Link DOWN successful",
1917 dev->data->port_id);
1920 dev->data->dev_link.link_status = 0;
1926 dpaa2_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
1929 struct dpaa2_dev_priv *priv;
1930 struct fsl_mc_io *dpni;
1931 struct dpni_link_state state = {0};
1933 PMD_INIT_FUNC_TRACE();
1935 priv = dev->data->dev_private;
1936 dpni = (struct fsl_mc_io *)dev->process_private;
1938 if (dpni == NULL || fc_conf == NULL) {
1939 DPAA2_PMD_ERR("device not configured");
1943 ret = dpni_get_link_state(dpni, CMD_PRI_LOW, priv->token, &state);
1945 DPAA2_PMD_ERR("error: dpni_get_link_state %d", ret);
1949 memset(fc_conf, 0, sizeof(struct rte_eth_fc_conf));
1950 if (state.options & DPNI_LINK_OPT_PAUSE) {
1951 /* DPNI_LINK_OPT_PAUSE set
1952 * if ASYM_PAUSE not set,
1953 * RX Side flow control (handle received Pause frame)
1954 * TX side flow control (send Pause frame)
1955 * if ASYM_PAUSE set,
1956 * RX Side flow control (handle received Pause frame)
1957 * No TX side flow control (send Pause frame disabled)
1959 if (!(state.options & DPNI_LINK_OPT_ASYM_PAUSE))
1960 fc_conf->mode = RTE_FC_FULL;
1962 fc_conf->mode = RTE_FC_RX_PAUSE;
1964 /* DPNI_LINK_OPT_PAUSE not set
1965 * if ASYM_PAUSE set,
1966 * TX side flow control (send Pause frame)
1967 * No RX side flow control (No action on pause frame rx)
1968 * if ASYM_PAUSE not set,
1969 * Flow control disabled
1971 if (state.options & DPNI_LINK_OPT_ASYM_PAUSE)
1972 fc_conf->mode = RTE_FC_TX_PAUSE;
1974 fc_conf->mode = RTE_FC_NONE;
1981 dpaa2_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
1984 struct dpaa2_dev_priv *priv;
1985 struct fsl_mc_io *dpni;
1986 struct dpni_link_state state = {0};
1987 struct dpni_link_cfg cfg = {0};
1989 PMD_INIT_FUNC_TRACE();
1991 priv = dev->data->dev_private;
1992 dpni = (struct fsl_mc_io *)dev->process_private;
1995 DPAA2_PMD_ERR("dpni is NULL");
1999 /* It is necessary to obtain the current state before setting fc_conf
2000 * as MC would return error in case rate, autoneg or duplex values are
2003 ret = dpni_get_link_state(dpni, CMD_PRI_LOW, priv->token, &state);
2005 DPAA2_PMD_ERR("Unable to get link state (err=%d)", ret);
2009 /* Disable link before setting configuration */
2010 dpaa2_dev_set_link_down(dev);
2012 /* Based on fc_conf, update cfg */
2013 cfg.rate = state.rate;
2014 cfg.options = state.options;
2016 /* update cfg with fc_conf */
2017 switch (fc_conf->mode) {
2019 /* Full flow control;
2020 * OPT_PAUSE set, ASYM_PAUSE not set
2022 cfg.options |= DPNI_LINK_OPT_PAUSE;
2023 cfg.options &= ~DPNI_LINK_OPT_ASYM_PAUSE;
2025 case RTE_FC_TX_PAUSE:
2026 /* Enable RX flow control
2027 * OPT_PAUSE not set;
2030 cfg.options |= DPNI_LINK_OPT_ASYM_PAUSE;
2031 cfg.options &= ~DPNI_LINK_OPT_PAUSE;
2033 case RTE_FC_RX_PAUSE:
2034 /* Enable TX Flow control
2038 cfg.options |= DPNI_LINK_OPT_PAUSE;
2039 cfg.options |= DPNI_LINK_OPT_ASYM_PAUSE;
2042 /* Disable Flow control
2044 * ASYM_PAUSE not set
2046 cfg.options &= ~DPNI_LINK_OPT_PAUSE;
2047 cfg.options &= ~DPNI_LINK_OPT_ASYM_PAUSE;
2050 DPAA2_PMD_ERR("Incorrect Flow control flag (%d)",
2055 ret = dpni_set_link_cfg(dpni, CMD_PRI_LOW, priv->token, &cfg);
2057 DPAA2_PMD_ERR("Unable to set Link configuration (err=%d)",
2061 dpaa2_dev_set_link_up(dev);
2067 dpaa2_dev_rss_hash_update(struct rte_eth_dev *dev,
2068 struct rte_eth_rss_conf *rss_conf)
2070 struct rte_eth_dev_data *data = dev->data;
2071 struct dpaa2_dev_priv *priv = data->dev_private;
2072 struct rte_eth_conf *eth_conf = &data->dev_conf;
2075 PMD_INIT_FUNC_TRACE();
2077 if (rss_conf->rss_hf) {
2078 for (tc_index = 0; tc_index < priv->num_rx_tc; tc_index++) {
2079 ret = dpaa2_setup_flow_dist(dev, rss_conf->rss_hf,
2082 DPAA2_PMD_ERR("Unable to set flow dist on tc%d",
2088 for (tc_index = 0; tc_index < priv->num_rx_tc; tc_index++) {
2089 ret = dpaa2_remove_flow_dist(dev, tc_index);
2092 "Unable to remove flow dist on tc%d",
2098 eth_conf->rx_adv_conf.rss_conf.rss_hf = rss_conf->rss_hf;
2103 dpaa2_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
2104 struct rte_eth_rss_conf *rss_conf)
2106 struct rte_eth_dev_data *data = dev->data;
2107 struct rte_eth_conf *eth_conf = &data->dev_conf;
2109 /* dpaa2 does not support rss_key, so length should be 0*/
2110 rss_conf->rss_key_len = 0;
2111 rss_conf->rss_hf = eth_conf->rx_adv_conf.rss_conf.rss_hf;
2115 int dpaa2_eth_eventq_attach(const struct rte_eth_dev *dev,
2116 int eth_rx_queue_id,
2117 struct dpaa2_dpcon_dev *dpcon,
2118 const struct rte_event_eth_rx_adapter_queue_conf *queue_conf)
2120 struct dpaa2_dev_priv *eth_priv = dev->data->dev_private;
2121 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
2122 struct dpaa2_queue *dpaa2_ethq = eth_priv->rx_vq[eth_rx_queue_id];
2123 uint8_t flow_id = dpaa2_ethq->flow_id;
2124 struct dpni_queue cfg;
2125 uint8_t options, priority;
2128 if (queue_conf->ev.sched_type == RTE_SCHED_TYPE_PARALLEL)
2129 dpaa2_ethq->cb = dpaa2_dev_process_parallel_event;
2130 else if (queue_conf->ev.sched_type == RTE_SCHED_TYPE_ATOMIC)
2131 dpaa2_ethq->cb = dpaa2_dev_process_atomic_event;
2132 else if (queue_conf->ev.sched_type == RTE_SCHED_TYPE_ORDERED)
2133 dpaa2_ethq->cb = dpaa2_dev_process_ordered_event;
2137 priority = (RTE_EVENT_DEV_PRIORITY_LOWEST / queue_conf->ev.priority) *
2138 (dpcon->num_priorities - 1);
2140 memset(&cfg, 0, sizeof(struct dpni_queue));
2141 options = DPNI_QUEUE_OPT_DEST;
2142 cfg.destination.type = DPNI_DEST_DPCON;
2143 cfg.destination.id = dpcon->dpcon_id;
2144 cfg.destination.priority = priority;
2146 if (queue_conf->ev.sched_type == RTE_SCHED_TYPE_ATOMIC) {
2147 options |= DPNI_QUEUE_OPT_HOLD_ACTIVE;
2148 cfg.destination.hold_active = 1;
2151 if (queue_conf->ev.sched_type == RTE_SCHED_TYPE_ORDERED &&
2152 !eth_priv->en_ordered) {
2153 struct opr_cfg ocfg;
2155 /* Restoration window size = 256 frames */
2157 /* Restoration window size = 512 frames for LX2 */
2158 if (dpaa2_svr_family == SVR_LX2160A)
2160 /* Auto advance NESN window enabled */
2162 /* Late arrival window size disabled */
2164 /* ORL resource exhaustaion advance NESN disabled */
2166 /* Loose ordering enabled */
2168 eth_priv->en_loose_ordered = 1;
2169 /* Strict ordering enabled if explicitly set */
2170 if (getenv("DPAA2_STRICT_ORDERING_ENABLE")) {
2172 eth_priv->en_loose_ordered = 0;
2175 ret = dpni_set_opr(dpni, CMD_PRI_LOW, eth_priv->token,
2176 dpaa2_ethq->tc_index, flow_id,
2177 OPR_OPT_CREATE, &ocfg);
2179 DPAA2_PMD_ERR("Error setting opr: ret: %d\n", ret);
2183 eth_priv->en_ordered = 1;
2186 options |= DPNI_QUEUE_OPT_USER_CTX;
2187 cfg.user_context = (size_t)(dpaa2_ethq);
2189 ret = dpni_set_queue(dpni, CMD_PRI_LOW, eth_priv->token, DPNI_QUEUE_RX,
2190 dpaa2_ethq->tc_index, flow_id, options, &cfg);
2192 DPAA2_PMD_ERR("Error in dpni_set_queue: ret: %d", ret);
2196 memcpy(&dpaa2_ethq->ev, &queue_conf->ev, sizeof(struct rte_event));
2201 int dpaa2_eth_eventq_detach(const struct rte_eth_dev *dev,
2202 int eth_rx_queue_id)
2204 struct dpaa2_dev_priv *eth_priv = dev->data->dev_private;
2205 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
2206 struct dpaa2_queue *dpaa2_ethq = eth_priv->rx_vq[eth_rx_queue_id];
2207 uint8_t flow_id = dpaa2_ethq->flow_id;
2208 struct dpni_queue cfg;
2212 memset(&cfg, 0, sizeof(struct dpni_queue));
2213 options = DPNI_QUEUE_OPT_DEST;
2214 cfg.destination.type = DPNI_DEST_NONE;
2216 ret = dpni_set_queue(dpni, CMD_PRI_LOW, eth_priv->token, DPNI_QUEUE_RX,
2217 dpaa2_ethq->tc_index, flow_id, options, &cfg);
2219 DPAA2_PMD_ERR("Error in dpni_set_queue: ret: %d", ret);
2225 dpaa2_dev_verify_filter_ops(enum rte_filter_op filter_op)
2229 for (i = 0; i < RTE_DIM(dpaa2_supported_filter_ops); i++) {
2230 if (dpaa2_supported_filter_ops[i] == filter_op)
2237 dpaa2_dev_flow_ctrl(struct rte_eth_dev *dev,
2238 enum rte_filter_type filter_type,
2239 enum rte_filter_op filter_op,
2247 switch (filter_type) {
2248 case RTE_ETH_FILTER_GENERIC:
2249 if (dpaa2_dev_verify_filter_ops(filter_op) < 0) {
2253 *(const void **)arg = &dpaa2_flow_ops;
2254 dpaa2_filter_type |= filter_type;
2257 RTE_LOG(ERR, PMD, "Filter type (%d) not supported",
2266 dpaa2_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
2267 struct rte_eth_rxq_info *qinfo)
2269 struct dpaa2_queue *rxq;
2271 rxq = (struct dpaa2_queue *)dev->data->rx_queues[queue_id];
2273 qinfo->mp = rxq->mb_pool;
2274 qinfo->scattered_rx = dev->data->scattered_rx;
2275 qinfo->nb_desc = rxq->nb_desc;
2277 qinfo->conf.rx_free_thresh = 1;
2278 qinfo->conf.rx_drop_en = 1;
2279 qinfo->conf.rx_deferred_start = 0;
2280 qinfo->conf.offloads = rxq->offloads;
2284 dpaa2_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
2285 struct rte_eth_txq_info *qinfo)
2287 struct dpaa2_queue *txq;
2289 txq = dev->data->tx_queues[queue_id];
2291 qinfo->nb_desc = txq->nb_desc;
2292 qinfo->conf.tx_thresh.pthresh = 0;
2293 qinfo->conf.tx_thresh.hthresh = 0;
2294 qinfo->conf.tx_thresh.wthresh = 0;
2296 qinfo->conf.tx_free_thresh = 0;
2297 qinfo->conf.tx_rs_thresh = 0;
2298 qinfo->conf.offloads = txq->offloads;
2299 qinfo->conf.tx_deferred_start = 0;
2302 static struct eth_dev_ops dpaa2_ethdev_ops = {
2303 .dev_configure = dpaa2_eth_dev_configure,
2304 .dev_start = dpaa2_dev_start,
2305 .dev_stop = dpaa2_dev_stop,
2306 .dev_close = dpaa2_dev_close,
2307 .promiscuous_enable = dpaa2_dev_promiscuous_enable,
2308 .promiscuous_disable = dpaa2_dev_promiscuous_disable,
2309 .allmulticast_enable = dpaa2_dev_allmulticast_enable,
2310 .allmulticast_disable = dpaa2_dev_allmulticast_disable,
2311 .dev_set_link_up = dpaa2_dev_set_link_up,
2312 .dev_set_link_down = dpaa2_dev_set_link_down,
2313 .link_update = dpaa2_dev_link_update,
2314 .stats_get = dpaa2_dev_stats_get,
2315 .xstats_get = dpaa2_dev_xstats_get,
2316 .xstats_get_by_id = dpaa2_xstats_get_by_id,
2317 .xstats_get_names_by_id = dpaa2_xstats_get_names_by_id,
2318 .xstats_get_names = dpaa2_xstats_get_names,
2319 .stats_reset = dpaa2_dev_stats_reset,
2320 .xstats_reset = dpaa2_dev_stats_reset,
2321 .fw_version_get = dpaa2_fw_version_get,
2322 .dev_infos_get = dpaa2_dev_info_get,
2323 .dev_supported_ptypes_get = dpaa2_supported_ptypes_get,
2324 .mtu_set = dpaa2_dev_mtu_set,
2325 .vlan_filter_set = dpaa2_vlan_filter_set,
2326 .vlan_offload_set = dpaa2_vlan_offload_set,
2327 .vlan_tpid_set = dpaa2_vlan_tpid_set,
2328 .rx_queue_setup = dpaa2_dev_rx_queue_setup,
2329 .rx_queue_release = dpaa2_dev_rx_queue_release,
2330 .tx_queue_setup = dpaa2_dev_tx_queue_setup,
2331 .tx_queue_release = dpaa2_dev_tx_queue_release,
2332 .rx_burst_mode_get = dpaa2_dev_rx_burst_mode_get,
2333 .tx_burst_mode_get = dpaa2_dev_tx_burst_mode_get,
2334 .rx_queue_count = dpaa2_dev_rx_queue_count,
2335 .flow_ctrl_get = dpaa2_flow_ctrl_get,
2336 .flow_ctrl_set = dpaa2_flow_ctrl_set,
2337 .mac_addr_add = dpaa2_dev_add_mac_addr,
2338 .mac_addr_remove = dpaa2_dev_remove_mac_addr,
2339 .mac_addr_set = dpaa2_dev_set_mac_addr,
2340 .rss_hash_update = dpaa2_dev_rss_hash_update,
2341 .rss_hash_conf_get = dpaa2_dev_rss_hash_conf_get,
2342 .filter_ctrl = dpaa2_dev_flow_ctrl,
2343 .rxq_info_get = dpaa2_rxq_info_get,
2344 .txq_info_get = dpaa2_txq_info_get,
2345 #if defined(RTE_LIBRTE_IEEE1588)
2346 .timesync_enable = dpaa2_timesync_enable,
2347 .timesync_disable = dpaa2_timesync_disable,
2348 .timesync_read_time = dpaa2_timesync_read_time,
2349 .timesync_write_time = dpaa2_timesync_write_time,
2350 .timesync_adjust_time = dpaa2_timesync_adjust_time,
2351 .timesync_read_rx_timestamp = dpaa2_timesync_read_rx_timestamp,
2352 .timesync_read_tx_timestamp = dpaa2_timesync_read_tx_timestamp,
2356 /* Populate the mac address from physically available (u-boot/firmware) and/or
2357 * one set by higher layers like MC (restool) etc.
2358 * Returns the table of MAC entries (multiple entries)
2361 populate_mac_addr(struct fsl_mc_io *dpni_dev, struct dpaa2_dev_priv *priv,
2362 struct rte_ether_addr *mac_entry)
2365 struct rte_ether_addr phy_mac, prime_mac;
2367 memset(&phy_mac, 0, sizeof(struct rte_ether_addr));
2368 memset(&prime_mac, 0, sizeof(struct rte_ether_addr));
2370 /* Get the physical device MAC address */
2371 ret = dpni_get_port_mac_addr(dpni_dev, CMD_PRI_LOW, priv->token,
2372 phy_mac.addr_bytes);
2374 DPAA2_PMD_ERR("DPNI get physical port MAC failed: %d", ret);
2378 ret = dpni_get_primary_mac_addr(dpni_dev, CMD_PRI_LOW, priv->token,
2379 prime_mac.addr_bytes);
2381 DPAA2_PMD_ERR("DPNI get Prime port MAC failed: %d", ret);
2385 /* Now that both MAC have been obtained, do:
2386 * if not_empty_mac(phy) && phy != Prime, overwrite prime with Phy
2388 * If empty_mac(phy), return prime.
2389 * if both are empty, create random MAC, set as prime and return
2391 if (!rte_is_zero_ether_addr(&phy_mac)) {
2392 /* If the addresses are not same, overwrite prime */
2393 if (!rte_is_same_ether_addr(&phy_mac, &prime_mac)) {
2394 ret = dpni_set_primary_mac_addr(dpni_dev, CMD_PRI_LOW,
2396 phy_mac.addr_bytes);
2398 DPAA2_PMD_ERR("Unable to set MAC Address: %d",
2402 memcpy(&prime_mac, &phy_mac,
2403 sizeof(struct rte_ether_addr));
2405 } else if (rte_is_zero_ether_addr(&prime_mac)) {
2406 /* In case phys and prime, both are zero, create random MAC */
2407 rte_eth_random_addr(prime_mac.addr_bytes);
2408 ret = dpni_set_primary_mac_addr(dpni_dev, CMD_PRI_LOW,
2410 prime_mac.addr_bytes);
2412 DPAA2_PMD_ERR("Unable to set MAC Address: %d", ret);
2417 /* prime_mac the final MAC address */
2418 memcpy(mac_entry, &prime_mac, sizeof(struct rte_ether_addr));
2426 check_devargs_handler(__rte_unused const char *key, const char *value,
2427 __rte_unused void *opaque)
2429 if (strcmp(value, "1"))
2436 dpaa2_get_devargs(struct rte_devargs *devargs, const char *key)
2438 struct rte_kvargs *kvlist;
2443 kvlist = rte_kvargs_parse(devargs->args, NULL);
2447 if (!rte_kvargs_count(kvlist, key)) {
2448 rte_kvargs_free(kvlist);
2452 if (rte_kvargs_process(kvlist, key,
2453 check_devargs_handler, NULL) < 0) {
2454 rte_kvargs_free(kvlist);
2457 rte_kvargs_free(kvlist);
2463 dpaa2_dev_init(struct rte_eth_dev *eth_dev)
2465 struct rte_device *dev = eth_dev->device;
2466 struct rte_dpaa2_device *dpaa2_dev;
2467 struct fsl_mc_io *dpni_dev;
2468 struct dpni_attr attr;
2469 struct dpaa2_dev_priv *priv = eth_dev->data->dev_private;
2470 struct dpni_buffer_layout layout;
2473 PMD_INIT_FUNC_TRACE();
2475 dpni_dev = rte_malloc(NULL, sizeof(struct fsl_mc_io), 0);
2477 DPAA2_PMD_ERR("Memory allocation failed for dpni device");
2480 dpni_dev->regs = dpaa2_get_mcp_ptr(MC_PORTAL_INDEX);
2481 eth_dev->process_private = (void *)dpni_dev;
2483 /* For secondary processes, the primary has done all the work */
2484 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
2485 /* In case of secondary, only burst and ops API need to be
2488 eth_dev->dev_ops = &dpaa2_ethdev_ops;
2489 if (dpaa2_get_devargs(dev->devargs, DRIVER_LOOPBACK_MODE))
2490 eth_dev->rx_pkt_burst = dpaa2_dev_loopback_rx;
2491 else if (dpaa2_get_devargs(dev->devargs,
2492 DRIVER_NO_PREFETCH_MODE))
2493 eth_dev->rx_pkt_burst = dpaa2_dev_rx;
2495 eth_dev->rx_pkt_burst = dpaa2_dev_prefetch_rx;
2496 eth_dev->tx_pkt_burst = dpaa2_dev_tx;
2500 dpaa2_dev = container_of(dev, struct rte_dpaa2_device, device);
2502 hw_id = dpaa2_dev->object_id;
2503 ret = dpni_open(dpni_dev, CMD_PRI_LOW, hw_id, &priv->token);
2506 "Failure in opening dpni@%d with err code %d",
2512 /* Clean the device first */
2513 ret = dpni_reset(dpni_dev, CMD_PRI_LOW, priv->token);
2515 DPAA2_PMD_ERR("Failure cleaning dpni@%d with err code %d",
2520 ret = dpni_get_attributes(dpni_dev, CMD_PRI_LOW, priv->token, &attr);
2523 "Failure in get dpni@%d attribute, err code %d",
2528 priv->num_rx_tc = attr.num_rx_tcs;
2529 priv->qos_entries = attr.qos_entries;
2530 priv->fs_entries = attr.fs_entries;
2531 priv->dist_queues = attr.num_queues;
2533 /* only if the custom CG is enabled */
2534 if (attr.options & DPNI_OPT_CUSTOM_CG)
2535 priv->max_cgs = attr.num_cgs;
2539 for (i = 0; i < priv->max_cgs; i++)
2540 priv->cgid_in_use[i] = 0;
2542 for (i = 0; i < attr.num_rx_tcs; i++)
2543 priv->nb_rx_queues += attr.num_queues;
2545 /* Using number of TX queues as number of TX TCs */
2546 priv->nb_tx_queues = attr.num_tx_tcs;
2548 DPAA2_PMD_DEBUG("RX-TC= %d, rx_queues= %d, tx_queues=%d, max_cgs=%d",
2549 priv->num_rx_tc, priv->nb_rx_queues,
2550 priv->nb_tx_queues, priv->max_cgs);
2552 priv->hw = dpni_dev;
2553 priv->hw_id = hw_id;
2554 priv->options = attr.options;
2555 priv->max_mac_filters = attr.mac_filter_entries;
2556 priv->max_vlan_filters = attr.vlan_filter_entries;
2558 #if defined(RTE_LIBRTE_IEEE1588)
2559 priv->tx_conf_en = 1;
2561 priv->tx_conf_en = 0;
2564 /* Allocate memory for hardware structure for queues */
2565 ret = dpaa2_alloc_rx_tx_queues(eth_dev);
2567 DPAA2_PMD_ERR("Queue allocation Failed");
2571 /* Allocate memory for storing MAC addresses.
2572 * Table of mac_filter_entries size is allocated so that RTE ether lib
2573 * can add MAC entries when rte_eth_dev_mac_addr_add is called.
2575 eth_dev->data->mac_addrs = rte_zmalloc("dpni",
2576 RTE_ETHER_ADDR_LEN * attr.mac_filter_entries, 0);
2577 if (eth_dev->data->mac_addrs == NULL) {
2579 "Failed to allocate %d bytes needed to store MAC addresses",
2580 RTE_ETHER_ADDR_LEN * attr.mac_filter_entries);
2585 ret = populate_mac_addr(dpni_dev, priv, ð_dev->data->mac_addrs[0]);
2587 DPAA2_PMD_ERR("Unable to fetch MAC Address for device");
2588 rte_free(eth_dev->data->mac_addrs);
2589 eth_dev->data->mac_addrs = NULL;
2593 /* ... tx buffer layout ... */
2594 memset(&layout, 0, sizeof(struct dpni_buffer_layout));
2595 if (priv->tx_conf_en) {
2596 layout.options = DPNI_BUF_LAYOUT_OPT_FRAME_STATUS |
2597 DPNI_BUF_LAYOUT_OPT_TIMESTAMP;
2598 layout.pass_timestamp = true;
2600 layout.options = DPNI_BUF_LAYOUT_OPT_FRAME_STATUS;
2602 layout.pass_frame_status = 1;
2603 ret = dpni_set_buffer_layout(dpni_dev, CMD_PRI_LOW, priv->token,
2604 DPNI_QUEUE_TX, &layout);
2606 DPAA2_PMD_ERR("Error (%d) in setting tx buffer layout", ret);
2610 /* ... tx-conf and error buffer layout ... */
2611 memset(&layout, 0, sizeof(struct dpni_buffer_layout));
2612 if (priv->tx_conf_en) {
2613 layout.options = DPNI_BUF_LAYOUT_OPT_FRAME_STATUS |
2614 DPNI_BUF_LAYOUT_OPT_TIMESTAMP;
2615 layout.pass_timestamp = true;
2617 layout.options = DPNI_BUF_LAYOUT_OPT_FRAME_STATUS;
2619 layout.pass_frame_status = 1;
2620 ret = dpni_set_buffer_layout(dpni_dev, CMD_PRI_LOW, priv->token,
2621 DPNI_QUEUE_TX_CONFIRM, &layout);
2623 DPAA2_PMD_ERR("Error (%d) in setting tx-conf buffer layout",
2628 eth_dev->dev_ops = &dpaa2_ethdev_ops;
2630 if (dpaa2_get_devargs(dev->devargs, DRIVER_LOOPBACK_MODE)) {
2631 eth_dev->rx_pkt_burst = dpaa2_dev_loopback_rx;
2632 DPAA2_PMD_INFO("Loopback mode");
2633 } else if (dpaa2_get_devargs(dev->devargs, DRIVER_NO_PREFETCH_MODE)) {
2634 eth_dev->rx_pkt_burst = dpaa2_dev_rx;
2635 DPAA2_PMD_INFO("No Prefetch mode");
2637 eth_dev->rx_pkt_burst = dpaa2_dev_prefetch_rx;
2639 eth_dev->tx_pkt_burst = dpaa2_dev_tx;
2641 /*Init fields w.r.t. classficaition*/
2642 memset(&priv->extract.qos_key_extract, 0,
2643 sizeof(struct dpaa2_key_extract));
2644 priv->extract.qos_extract_param = (size_t)rte_malloc(NULL, 256, 64);
2645 if (!priv->extract.qos_extract_param) {
2646 DPAA2_PMD_ERR(" Error(%d) in allocation resources for flow "
2647 " classificaiton ", ret);
2650 priv->extract.qos_key_extract.key_info.ipv4_src_offset =
2651 IP_ADDRESS_OFFSET_INVALID;
2652 priv->extract.qos_key_extract.key_info.ipv4_dst_offset =
2653 IP_ADDRESS_OFFSET_INVALID;
2654 priv->extract.qos_key_extract.key_info.ipv6_src_offset =
2655 IP_ADDRESS_OFFSET_INVALID;
2656 priv->extract.qos_key_extract.key_info.ipv6_dst_offset =
2657 IP_ADDRESS_OFFSET_INVALID;
2659 for (i = 0; i < MAX_TCS; i++) {
2660 memset(&priv->extract.tc_key_extract[i], 0,
2661 sizeof(struct dpaa2_key_extract));
2662 priv->extract.tc_extract_param[i] =
2663 (size_t)rte_malloc(NULL, 256, 64);
2664 if (!priv->extract.tc_extract_param[i]) {
2665 DPAA2_PMD_ERR(" Error(%d) in allocation resources for flow classificaiton",
2669 priv->extract.tc_key_extract[i].key_info.ipv4_src_offset =
2670 IP_ADDRESS_OFFSET_INVALID;
2671 priv->extract.tc_key_extract[i].key_info.ipv4_dst_offset =
2672 IP_ADDRESS_OFFSET_INVALID;
2673 priv->extract.tc_key_extract[i].key_info.ipv6_src_offset =
2674 IP_ADDRESS_OFFSET_INVALID;
2675 priv->extract.tc_key_extract[i].key_info.ipv6_dst_offset =
2676 IP_ADDRESS_OFFSET_INVALID;
2679 ret = dpni_set_max_frame_length(dpni_dev, CMD_PRI_LOW, priv->token,
2680 RTE_ETHER_MAX_LEN - RTE_ETHER_CRC_LEN
2683 DPAA2_PMD_ERR("Unable to set mtu. check config");
2687 /*TODO To enable soft parser support DPAA2 driver needs to integrate
2688 * with external entity to receive byte code for software sequence
2689 * and same will be offload to the H/W using MC interface.
2690 * Currently it is assumed that DPAA2 driver has byte code by some
2691 * mean and same if offloaded to H/W.
2693 if (getenv("DPAA2_ENABLE_SOFT_PARSER")) {
2694 WRIOP_SS_INITIALIZER(priv);
2695 ret = dpaa2_eth_load_wriop_soft_parser(priv, DPNI_SS_INGRESS);
2697 DPAA2_PMD_ERR(" Error(%d) in loading softparser\n",
2702 ret = dpaa2_eth_enable_wriop_soft_parser(priv,
2705 DPAA2_PMD_ERR(" Error(%d) in enabling softparser\n",
2710 RTE_LOG(INFO, PMD, "%s: netdev created\n", eth_dev->data->name);
2713 dpaa2_dev_uninit(eth_dev);
2718 dpaa2_dev_uninit(struct rte_eth_dev *eth_dev)
2720 struct dpaa2_dev_priv *priv = eth_dev->data->dev_private;
2721 struct fsl_mc_io *dpni = (struct fsl_mc_io *)eth_dev->process_private;
2724 PMD_INIT_FUNC_TRACE();
2726 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
2730 DPAA2_PMD_WARN("Already closed or not started");
2734 dpaa2_dev_close(eth_dev);
2736 dpaa2_free_rx_tx_queues(eth_dev);
2738 /* Close the device at underlying layer*/
2739 ret = dpni_close(dpni, CMD_PRI_LOW, priv->token);
2742 "Failure closing dpni device with err code %d",
2746 /* Free the allocated memory for ethernet private data and dpni*/
2748 eth_dev->process_private = NULL;
2751 for (i = 0; i < MAX_TCS; i++)
2752 rte_free((void *)(size_t)priv->extract.tc_extract_param[i]);
2754 if (priv->extract.qos_extract_param)
2755 rte_free((void *)(size_t)priv->extract.qos_extract_param);
2757 eth_dev->dev_ops = NULL;
2758 eth_dev->rx_pkt_burst = NULL;
2759 eth_dev->tx_pkt_burst = NULL;
2761 DPAA2_PMD_INFO("%s: netdev deleted", eth_dev->data->name);
2766 rte_dpaa2_probe(struct rte_dpaa2_driver *dpaa2_drv,
2767 struct rte_dpaa2_device *dpaa2_dev)
2769 struct rte_eth_dev *eth_dev;
2770 struct dpaa2_dev_priv *dev_priv;
2773 if ((DPAA2_MBUF_HW_ANNOTATION + DPAA2_FD_PTA_SIZE) >
2774 RTE_PKTMBUF_HEADROOM) {
2776 "RTE_PKTMBUF_HEADROOM(%d) shall be > DPAA2 Annotation req(%d)",
2777 RTE_PKTMBUF_HEADROOM,
2778 DPAA2_MBUF_HW_ANNOTATION + DPAA2_FD_PTA_SIZE);
2783 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
2784 eth_dev = rte_eth_dev_allocate(dpaa2_dev->device.name);
2787 dev_priv = rte_zmalloc("ethdev private structure",
2788 sizeof(struct dpaa2_dev_priv),
2789 RTE_CACHE_LINE_SIZE);
2790 if (dev_priv == NULL) {
2792 "Unable to allocate memory for private data");
2793 rte_eth_dev_release_port(eth_dev);
2796 eth_dev->data->dev_private = (void *)dev_priv;
2797 /* Store a pointer to eth_dev in dev_private */
2798 dev_priv->eth_dev = eth_dev;
2799 dev_priv->tx_conf_en = 0;
2801 eth_dev = rte_eth_dev_attach_secondary(dpaa2_dev->device.name);
2803 DPAA2_PMD_DEBUG("returning enodev");
2808 eth_dev->device = &dpaa2_dev->device;
2810 dpaa2_dev->eth_dev = eth_dev;
2811 eth_dev->data->rx_mbuf_alloc_failed = 0;
2813 if (dpaa2_drv->drv_flags & RTE_DPAA2_DRV_INTR_LSC)
2814 eth_dev->data->dev_flags |= RTE_ETH_DEV_INTR_LSC;
2816 /* Invoke PMD device initialization function */
2817 diag = dpaa2_dev_init(eth_dev);
2819 rte_eth_dev_probing_finish(eth_dev);
2823 rte_eth_dev_release_port(eth_dev);
2828 rte_dpaa2_remove(struct rte_dpaa2_device *dpaa2_dev)
2830 struct rte_eth_dev *eth_dev;
2832 eth_dev = dpaa2_dev->eth_dev;
2833 dpaa2_dev_uninit(eth_dev);
2835 rte_eth_dev_release_port(eth_dev);
2840 static struct rte_dpaa2_driver rte_dpaa2_pmd = {
2841 .drv_flags = RTE_DPAA2_DRV_INTR_LSC | RTE_DPAA2_DRV_IOVA_AS_VA,
2842 .drv_type = DPAA2_ETH,
2843 .probe = rte_dpaa2_probe,
2844 .remove = rte_dpaa2_remove,
2847 RTE_PMD_REGISTER_DPAA2(net_dpaa2, rte_dpaa2_pmd);
2848 RTE_PMD_REGISTER_PARAM_STRING(net_dpaa2,
2849 DRIVER_LOOPBACK_MODE "=<int> "
2850 DRIVER_NO_PREFETCH_MODE "=<int>");
2851 RTE_LOG_REGISTER(dpaa2_logtype_pmd, pmd.net.dpaa2, NOTICE);