1 /* * SPDX-License-Identifier: BSD-3-Clause
3 * Copyright (c) 2016 Freescale Semiconductor, Inc. All rights reserved.
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 enum pmd_dpaa2_ts dpaa2_enable_ts;
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);
109 int dpaa2_logtype_pmd;
112 rte_pmd_dpaa2_set_timestamp(enum pmd_dpaa2_ts enable)
114 dpaa2_enable_ts = enable;
118 dpaa2_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
121 struct dpaa2_dev_priv *priv = dev->data->dev_private;
122 struct fsl_mc_io *dpni = dev->process_private;
124 PMD_INIT_FUNC_TRACE();
127 DPAA2_PMD_ERR("dpni is NULL");
132 ret = dpni_add_vlan_id(dpni, CMD_PRI_LOW, priv->token,
135 ret = dpni_remove_vlan_id(dpni, CMD_PRI_LOW,
136 priv->token, vlan_id);
139 DPAA2_PMD_ERR("ret = %d Unable to add/rem vlan %d hwid =%d",
140 ret, vlan_id, priv->hw_id);
146 dpaa2_vlan_offload_set(struct rte_eth_dev *dev, int mask)
148 struct dpaa2_dev_priv *priv = dev->data->dev_private;
149 struct fsl_mc_io *dpni = dev->process_private;
152 PMD_INIT_FUNC_TRACE();
154 if (mask & ETH_VLAN_FILTER_MASK) {
155 /* VLAN Filter not avaialble */
156 if (!priv->max_vlan_filters) {
157 DPAA2_PMD_INFO("VLAN filter not available");
161 if (dev->data->dev_conf.rxmode.offloads &
162 DEV_RX_OFFLOAD_VLAN_FILTER)
163 ret = dpni_enable_vlan_filter(dpni, CMD_PRI_LOW,
166 ret = dpni_enable_vlan_filter(dpni, CMD_PRI_LOW,
169 DPAA2_PMD_INFO("Unable to set vlan filter = %d", ret);
172 if (mask & ETH_VLAN_EXTEND_MASK) {
173 if (dev->data->dev_conf.rxmode.offloads &
174 DEV_RX_OFFLOAD_VLAN_EXTEND)
175 DPAA2_PMD_INFO("VLAN extend offload not supported");
182 dpaa2_vlan_tpid_set(struct rte_eth_dev *dev,
183 enum rte_vlan_type vlan_type __rte_unused,
186 struct dpaa2_dev_priv *priv = dev->data->dev_private;
187 struct fsl_mc_io *dpni = dev->process_private;
190 PMD_INIT_FUNC_TRACE();
192 /* nothing to be done for standard vlan tpids */
193 if (tpid == 0x8100 || tpid == 0x88A8)
196 ret = dpni_add_custom_tpid(dpni, CMD_PRI_LOW,
199 DPAA2_PMD_INFO("Unable to set vlan tpid = %d", ret);
200 /* if already configured tpids, remove them first */
202 struct dpni_custom_tpid_cfg tpid_list = {0};
204 ret = dpni_get_custom_tpid(dpni, CMD_PRI_LOW,
205 priv->token, &tpid_list);
208 ret = dpni_remove_custom_tpid(dpni, CMD_PRI_LOW,
209 priv->token, tpid_list.tpid1);
212 ret = dpni_add_custom_tpid(dpni, CMD_PRI_LOW,
220 dpaa2_fw_version_get(struct rte_eth_dev *dev,
225 struct fsl_mc_io *dpni = dev->process_private;
226 struct mc_soc_version mc_plat_info = {0};
227 struct mc_version mc_ver_info = {0};
229 PMD_INIT_FUNC_TRACE();
231 if (mc_get_soc_version(dpni, CMD_PRI_LOW, &mc_plat_info))
232 DPAA2_PMD_WARN("\tmc_get_soc_version failed");
234 if (mc_get_version(dpni, CMD_PRI_LOW, &mc_ver_info))
235 DPAA2_PMD_WARN("\tmc_get_version failed");
237 ret = snprintf(fw_version, fw_size,
242 mc_ver_info.revision);
244 ret += 1; /* add the size of '\0' */
245 if (fw_size < (uint32_t)ret)
252 dpaa2_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
254 struct dpaa2_dev_priv *priv = dev->data->dev_private;
256 PMD_INIT_FUNC_TRACE();
258 dev_info->if_index = priv->hw_id;
260 dev_info->max_mac_addrs = priv->max_mac_filters;
261 dev_info->max_rx_pktlen = DPAA2_MAX_RX_PKT_LEN;
262 dev_info->min_rx_bufsize = DPAA2_MIN_RX_BUF_SIZE;
263 dev_info->max_rx_queues = (uint16_t)priv->nb_rx_queues;
264 dev_info->max_tx_queues = (uint16_t)priv->nb_tx_queues;
265 dev_info->rx_offload_capa = dev_rx_offloads_sup |
266 dev_rx_offloads_nodis;
267 dev_info->tx_offload_capa = dev_tx_offloads_sup |
268 dev_tx_offloads_nodis;
269 dev_info->speed_capa = ETH_LINK_SPEED_1G |
270 ETH_LINK_SPEED_2_5G |
273 dev_info->max_hash_mac_addrs = 0;
274 dev_info->max_vfs = 0;
275 dev_info->max_vmdq_pools = ETH_16_POOLS;
276 dev_info->flow_type_rss_offloads = DPAA2_RSS_OFFLOAD_ALL;
278 dev_info->default_rxportconf.burst_size = dpaa2_dqrr_size;
279 /* same is rx size for best perf */
280 dev_info->default_txportconf.burst_size = dpaa2_dqrr_size;
282 dev_info->default_rxportconf.nb_queues = 1;
283 dev_info->default_txportconf.nb_queues = 1;
284 dev_info->default_txportconf.ring_size = CONG_ENTER_TX_THRESHOLD;
285 dev_info->default_rxportconf.ring_size = DPAA2_RX_DEFAULT_NBDESC;
287 if (dpaa2_svr_family == SVR_LX2160A) {
288 dev_info->speed_capa |= ETH_LINK_SPEED_25G |
298 dpaa2_alloc_rx_tx_queues(struct rte_eth_dev *dev)
300 struct dpaa2_dev_priv *priv = dev->data->dev_private;
303 uint8_t num_rxqueue_per_tc;
304 struct dpaa2_queue *mc_q, *mcq;
307 struct dpaa2_queue *dpaa2_q;
309 PMD_INIT_FUNC_TRACE();
311 num_rxqueue_per_tc = (priv->nb_rx_queues / priv->num_rx_tc);
312 if (priv->tx_conf_en)
313 tot_queues = priv->nb_rx_queues + 2 * priv->nb_tx_queues;
315 tot_queues = priv->nb_rx_queues + priv->nb_tx_queues;
316 mc_q = rte_malloc(NULL, sizeof(struct dpaa2_queue) * tot_queues,
317 RTE_CACHE_LINE_SIZE);
319 DPAA2_PMD_ERR("Memory allocation failed for rx/tx queues");
323 for (i = 0; i < priv->nb_rx_queues; i++) {
324 mc_q->eth_data = dev->data;
325 priv->rx_vq[i] = mc_q++;
326 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[i];
327 dpaa2_q->q_storage = rte_malloc("dq_storage",
328 sizeof(struct queue_storage_info_t),
329 RTE_CACHE_LINE_SIZE);
330 if (!dpaa2_q->q_storage)
333 memset(dpaa2_q->q_storage, 0,
334 sizeof(struct queue_storage_info_t));
335 if (dpaa2_alloc_dq_storage(dpaa2_q->q_storage))
339 for (i = 0; i < priv->nb_tx_queues; i++) {
340 mc_q->eth_data = dev->data;
341 mc_q->flow_id = 0xffff;
342 priv->tx_vq[i] = mc_q++;
343 dpaa2_q = (struct dpaa2_queue *)priv->tx_vq[i];
344 dpaa2_q->cscn = rte_malloc(NULL,
345 sizeof(struct qbman_result), 16);
350 if (priv->tx_conf_en) {
351 /*Setup tx confirmation queues*/
352 for (i = 0; i < priv->nb_tx_queues; i++) {
353 mc_q->eth_data = dev->data;
356 priv->tx_conf_vq[i] = mc_q++;
357 dpaa2_q = (struct dpaa2_queue *)priv->tx_conf_vq[i];
359 rte_malloc("dq_storage",
360 sizeof(struct queue_storage_info_t),
361 RTE_CACHE_LINE_SIZE);
362 if (!dpaa2_q->q_storage)
365 memset(dpaa2_q->q_storage, 0,
366 sizeof(struct queue_storage_info_t));
367 if (dpaa2_alloc_dq_storage(dpaa2_q->q_storage))
373 for (dist_idx = 0; dist_idx < priv->nb_rx_queues; dist_idx++) {
374 mcq = (struct dpaa2_queue *)priv->rx_vq[vq_id];
375 mcq->tc_index = dist_idx / num_rxqueue_per_tc;
376 mcq->flow_id = dist_idx % num_rxqueue_per_tc;
384 dpaa2_q = (struct dpaa2_queue *)priv->tx_conf_vq[i];
385 rte_free(dpaa2_q->q_storage);
386 priv->tx_conf_vq[i--] = NULL;
388 i = priv->nb_tx_queues;
392 dpaa2_q = (struct dpaa2_queue *)priv->tx_vq[i];
393 rte_free(dpaa2_q->cscn);
394 priv->tx_vq[i--] = NULL;
396 i = priv->nb_rx_queues;
399 mc_q = priv->rx_vq[0];
401 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[i];
402 dpaa2_free_dq_storage(dpaa2_q->q_storage);
403 rte_free(dpaa2_q->q_storage);
404 priv->rx_vq[i--] = NULL;
411 dpaa2_free_rx_tx_queues(struct rte_eth_dev *dev)
413 struct dpaa2_dev_priv *priv = dev->data->dev_private;
414 struct dpaa2_queue *dpaa2_q;
417 PMD_INIT_FUNC_TRACE();
419 /* Queue allocation base */
420 if (priv->rx_vq[0]) {
421 /* cleaning up queue storage */
422 for (i = 0; i < priv->nb_rx_queues; i++) {
423 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[i];
424 if (dpaa2_q->q_storage)
425 rte_free(dpaa2_q->q_storage);
427 /* cleanup tx queue cscn */
428 for (i = 0; i < priv->nb_tx_queues; i++) {
429 dpaa2_q = (struct dpaa2_queue *)priv->tx_vq[i];
430 rte_free(dpaa2_q->cscn);
432 if (priv->tx_conf_en) {
433 /* cleanup tx conf queue storage */
434 for (i = 0; i < priv->nb_tx_queues; i++) {
435 dpaa2_q = (struct dpaa2_queue *)
437 rte_free(dpaa2_q->q_storage);
440 /*free memory for all queues (RX+TX) */
441 rte_free(priv->rx_vq[0]);
442 priv->rx_vq[0] = NULL;
447 dpaa2_eth_dev_configure(struct rte_eth_dev *dev)
449 struct dpaa2_dev_priv *priv = dev->data->dev_private;
450 struct fsl_mc_io *dpni = dev->process_private;
451 struct rte_eth_conf *eth_conf = &dev->data->dev_conf;
452 uint64_t rx_offloads = eth_conf->rxmode.offloads;
453 uint64_t tx_offloads = eth_conf->txmode.offloads;
454 int rx_l3_csum_offload = false;
455 int rx_l4_csum_offload = false;
456 int tx_l3_csum_offload = false;
457 int tx_l4_csum_offload = false;
460 PMD_INIT_FUNC_TRACE();
462 /* Rx offloads which are enabled by default */
463 if (dev_rx_offloads_nodis & ~rx_offloads) {
465 "Some of rx offloads enabled by default - requested 0x%" PRIx64
466 " fixed are 0x%" PRIx64,
467 rx_offloads, dev_rx_offloads_nodis);
470 /* Tx offloads which are enabled by default */
471 if (dev_tx_offloads_nodis & ~tx_offloads) {
473 "Some of tx offloads enabled by default - requested 0x%" PRIx64
474 " fixed are 0x%" PRIx64,
475 tx_offloads, dev_tx_offloads_nodis);
478 if (rx_offloads & DEV_RX_OFFLOAD_JUMBO_FRAME) {
479 if (eth_conf->rxmode.max_rx_pkt_len <= DPAA2_MAX_RX_PKT_LEN) {
480 ret = dpni_set_max_frame_length(dpni, CMD_PRI_LOW,
481 priv->token, eth_conf->rxmode.max_rx_pkt_len
482 - RTE_ETHER_CRC_LEN);
485 "Unable to set mtu. check config");
489 dev->data->dev_conf.rxmode.max_rx_pkt_len -
490 RTE_ETHER_HDR_LEN - RTE_ETHER_CRC_LEN -
497 if (eth_conf->rxmode.mq_mode == ETH_MQ_RX_RSS) {
498 ret = dpaa2_setup_flow_dist(dev,
499 eth_conf->rx_adv_conf.rss_conf.rss_hf);
501 DPAA2_PMD_ERR("Unable to set flow distribution."
502 "Check queue config");
507 if (rx_offloads & DEV_RX_OFFLOAD_IPV4_CKSUM)
508 rx_l3_csum_offload = true;
510 if ((rx_offloads & DEV_RX_OFFLOAD_UDP_CKSUM) ||
511 (rx_offloads & DEV_RX_OFFLOAD_TCP_CKSUM) ||
512 (rx_offloads & DEV_RX_OFFLOAD_SCTP_CKSUM))
513 rx_l4_csum_offload = true;
515 ret = dpni_set_offload(dpni, CMD_PRI_LOW, priv->token,
516 DPNI_OFF_RX_L3_CSUM, rx_l3_csum_offload);
518 DPAA2_PMD_ERR("Error to set RX l3 csum:Error = %d", ret);
522 ret = dpni_set_offload(dpni, CMD_PRI_LOW, priv->token,
523 DPNI_OFF_RX_L4_CSUM, rx_l4_csum_offload);
525 DPAA2_PMD_ERR("Error to get RX l4 csum:Error = %d", ret);
529 if (rx_offloads & DEV_RX_OFFLOAD_TIMESTAMP)
530 dpaa2_enable_ts = true;
532 if (tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM)
533 tx_l3_csum_offload = true;
535 if ((tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) ||
536 (tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) ||
537 (tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM))
538 tx_l4_csum_offload = true;
540 ret = dpni_set_offload(dpni, CMD_PRI_LOW, priv->token,
541 DPNI_OFF_TX_L3_CSUM, tx_l3_csum_offload);
543 DPAA2_PMD_ERR("Error to set TX l3 csum:Error = %d", ret);
547 ret = dpni_set_offload(dpni, CMD_PRI_LOW, priv->token,
548 DPNI_OFF_TX_L4_CSUM, tx_l4_csum_offload);
550 DPAA2_PMD_ERR("Error to get TX l4 csum:Error = %d", ret);
554 /* Enabling hash results in FD requires setting DPNI_FLCTYPE_HASH in
555 * dpni_set_offload API. Setting this FLCTYPE for DPNI sets the FD[SC]
556 * to 0 for LS2 in the hardware thus disabling data/annotation
557 * stashing. For LX2 this is fixed in hardware and thus hash result and
558 * parse results can be received in FD using this option.
560 if (dpaa2_svr_family == SVR_LX2160A) {
561 ret = dpni_set_offload(dpni, CMD_PRI_LOW, priv->token,
562 DPNI_FLCTYPE_HASH, true);
564 DPAA2_PMD_ERR("Error setting FLCTYPE: Err = %d", ret);
569 if (rx_offloads & DEV_RX_OFFLOAD_VLAN_FILTER)
570 dpaa2_vlan_offload_set(dev, ETH_VLAN_FILTER_MASK);
575 /* Function to setup RX flow information. It contains traffic class ID,
576 * flow ID, destination configuration etc.
579 dpaa2_dev_rx_queue_setup(struct rte_eth_dev *dev,
580 uint16_t rx_queue_id,
582 unsigned int socket_id __rte_unused,
583 const struct rte_eth_rxconf *rx_conf __rte_unused,
584 struct rte_mempool *mb_pool)
586 struct dpaa2_dev_priv *priv = dev->data->dev_private;
587 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
588 struct dpaa2_queue *dpaa2_q;
589 struct dpni_queue cfg;
595 PMD_INIT_FUNC_TRACE();
597 DPAA2_PMD_DEBUG("dev =%p, queue =%d, pool = %p, conf =%p",
598 dev, rx_queue_id, mb_pool, rx_conf);
600 if (!priv->bp_list || priv->bp_list->mp != mb_pool) {
601 bpid = mempool_to_bpid(mb_pool);
602 ret = dpaa2_attach_bp_list(priv,
603 rte_dpaa2_bpid_info[bpid].bp_list);
607 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[rx_queue_id];
608 dpaa2_q->mb_pool = mb_pool; /**< mbuf pool to populate RX ring. */
609 dpaa2_q->bp_array = rte_dpaa2_bpid_info;
611 /*Get the flow id from given VQ id*/
612 flow_id = dpaa2_q->flow_id;
613 memset(&cfg, 0, sizeof(struct dpni_queue));
615 options = options | DPNI_QUEUE_OPT_USER_CTX;
616 cfg.user_context = (size_t)(dpaa2_q);
618 /* check if a private cgr available. */
619 for (i = 0; i < priv->max_cgs; i++) {
620 if (!priv->cgid_in_use[i]) {
621 priv->cgid_in_use[i] = 1;
626 if (i < priv->max_cgs) {
627 options |= DPNI_QUEUE_OPT_SET_CGID;
629 dpaa2_q->cgid = cfg.cgid;
631 dpaa2_q->cgid = 0xff;
634 /*if ls2088 or rev2 device, enable the stashing */
636 if ((dpaa2_svr_family & 0xffff0000) != SVR_LS2080A) {
637 options |= DPNI_QUEUE_OPT_FLC;
638 cfg.flc.stash_control = true;
639 cfg.flc.value &= 0xFFFFFFFFFFFFFFC0;
640 /* 00 00 00 - last 6 bit represent annotation, context stashing,
641 * data stashing setting 01 01 00 (0x14)
642 * (in following order ->DS AS CS)
643 * to enable 1 line data, 1 line annotation.
644 * For LX2, this setting should be 01 00 00 (0x10)
646 if ((dpaa2_svr_family & 0xffff0000) == SVR_LX2160A)
647 cfg.flc.value |= 0x10;
649 cfg.flc.value |= 0x14;
651 ret = dpni_set_queue(dpni, CMD_PRI_LOW, priv->token, DPNI_QUEUE_RX,
652 dpaa2_q->tc_index, flow_id, options, &cfg);
654 DPAA2_PMD_ERR("Error in setting the rx flow: = %d", ret);
658 if (!(priv->flags & DPAA2_RX_TAILDROP_OFF)) {
659 struct dpni_taildrop taildrop;
663 /* Private CGR will use tail drop length as nb_rx_desc.
664 * for rest cases we can use standard byte based tail drop.
665 * There is no HW restriction, but number of CGRs are limited,
666 * hence this restriction is placed.
668 if (dpaa2_q->cgid != 0xff) {
669 /*enabling per rx queue congestion control */
670 taildrop.threshold = nb_rx_desc;
671 taildrop.units = DPNI_CONGESTION_UNIT_FRAMES;
673 DPAA2_PMD_DEBUG("Enabling CG Tail Drop on queue = %d",
675 ret = dpni_set_taildrop(dpni, CMD_PRI_LOW, priv->token,
676 DPNI_CP_CONGESTION_GROUP,
679 dpaa2_q->cgid, &taildrop);
681 /*enabling per rx queue congestion control */
682 taildrop.threshold = CONG_THRESHOLD_RX_BYTES_Q;
683 taildrop.units = DPNI_CONGESTION_UNIT_BYTES;
684 taildrop.oal = CONG_RX_OAL;
685 DPAA2_PMD_DEBUG("Enabling Byte based Drop on queue= %d",
687 ret = dpni_set_taildrop(dpni, CMD_PRI_LOW, priv->token,
688 DPNI_CP_QUEUE, DPNI_QUEUE_RX,
689 dpaa2_q->tc_index, flow_id,
693 DPAA2_PMD_ERR("Error in setting taildrop. err=(%d)",
697 } else { /* Disable tail Drop */
698 struct dpni_taildrop taildrop = {0};
699 DPAA2_PMD_INFO("Tail drop is disabled on queue");
702 if (dpaa2_q->cgid != 0xff) {
703 ret = dpni_set_taildrop(dpni, CMD_PRI_LOW, priv->token,
704 DPNI_CP_CONGESTION_GROUP, DPNI_QUEUE_RX,
706 dpaa2_q->cgid, &taildrop);
708 ret = dpni_set_taildrop(dpni, CMD_PRI_LOW, priv->token,
709 DPNI_CP_QUEUE, DPNI_QUEUE_RX,
710 dpaa2_q->tc_index, flow_id, &taildrop);
713 DPAA2_PMD_ERR("Error in setting taildrop. err=(%d)",
719 dev->data->rx_queues[rx_queue_id] = dpaa2_q;
724 dpaa2_dev_tx_queue_setup(struct rte_eth_dev *dev,
725 uint16_t tx_queue_id,
726 uint16_t nb_tx_desc __rte_unused,
727 unsigned int socket_id __rte_unused,
728 const struct rte_eth_txconf *tx_conf __rte_unused)
730 struct dpaa2_dev_priv *priv = dev->data->dev_private;
731 struct dpaa2_queue *dpaa2_q = (struct dpaa2_queue *)
732 priv->tx_vq[tx_queue_id];
733 struct dpaa2_queue *dpaa2_tx_conf_q = (struct dpaa2_queue *)
734 priv->tx_conf_vq[tx_queue_id];
735 struct fsl_mc_io *dpni = dev->process_private;
736 struct dpni_queue tx_conf_cfg;
737 struct dpni_queue tx_flow_cfg;
738 uint8_t options = 0, flow_id;
739 struct dpni_queue_id qid;
743 PMD_INIT_FUNC_TRACE();
745 /* Return if queue already configured */
746 if (dpaa2_q->flow_id != 0xffff) {
747 dev->data->tx_queues[tx_queue_id] = dpaa2_q;
751 memset(&tx_conf_cfg, 0, sizeof(struct dpni_queue));
752 memset(&tx_flow_cfg, 0, sizeof(struct dpni_queue));
757 ret = dpni_set_queue(dpni, CMD_PRI_LOW, priv->token, DPNI_QUEUE_TX,
758 tc_id, flow_id, options, &tx_flow_cfg);
760 DPAA2_PMD_ERR("Error in setting the tx flow: "
761 "tc_id=%d, flow=%d err=%d",
762 tc_id, flow_id, ret);
766 dpaa2_q->flow_id = flow_id;
768 if (tx_queue_id == 0) {
769 /*Set tx-conf and error configuration*/
770 if (priv->tx_conf_en)
771 ret = dpni_set_tx_confirmation_mode(dpni, CMD_PRI_LOW,
775 ret = dpni_set_tx_confirmation_mode(dpni, CMD_PRI_LOW,
779 DPAA2_PMD_ERR("Error in set tx conf mode settings: "
784 dpaa2_q->tc_index = tc_id;
786 ret = dpni_get_queue(dpni, CMD_PRI_LOW, priv->token,
787 DPNI_QUEUE_TX, dpaa2_q->tc_index,
788 dpaa2_q->flow_id, &tx_flow_cfg, &qid);
790 DPAA2_PMD_ERR("Error in getting LFQID err=%d", ret);
793 dpaa2_q->fqid = qid.fqid;
795 if (!(priv->flags & DPAA2_TX_CGR_OFF)) {
796 struct dpni_congestion_notification_cfg cong_notif_cfg = {0};
798 cong_notif_cfg.units = DPNI_CONGESTION_UNIT_FRAMES;
799 cong_notif_cfg.threshold_entry = CONG_ENTER_TX_THRESHOLD;
800 /* Notify that the queue is not congested when the data in
801 * the queue is below this thershold.
803 cong_notif_cfg.threshold_exit = CONG_EXIT_TX_THRESHOLD;
804 cong_notif_cfg.message_ctx = 0;
805 cong_notif_cfg.message_iova =
806 (size_t)DPAA2_VADDR_TO_IOVA(dpaa2_q->cscn);
807 cong_notif_cfg.dest_cfg.dest_type = DPNI_DEST_NONE;
808 cong_notif_cfg.notification_mode =
809 DPNI_CONG_OPT_WRITE_MEM_ON_ENTER |
810 DPNI_CONG_OPT_WRITE_MEM_ON_EXIT |
811 DPNI_CONG_OPT_COHERENT_WRITE;
812 cong_notif_cfg.cg_point = DPNI_CP_QUEUE;
814 ret = dpni_set_congestion_notification(dpni, CMD_PRI_LOW,
821 "Error in setting tx congestion notification: "
826 dpaa2_q->cb_eqresp_free = dpaa2_dev_free_eqresp_buf;
827 dev->data->tx_queues[tx_queue_id] = dpaa2_q;
829 if (priv->tx_conf_en) {
830 dpaa2_q->tx_conf_queue = dpaa2_tx_conf_q;
831 options = options | DPNI_QUEUE_OPT_USER_CTX;
832 tx_conf_cfg.user_context = (size_t)(dpaa2_q);
833 ret = dpni_set_queue(dpni, CMD_PRI_LOW, priv->token,
834 DPNI_QUEUE_TX_CONFIRM, dpaa2_tx_conf_q->tc_index,
835 dpaa2_tx_conf_q->flow_id, options, &tx_conf_cfg);
837 DPAA2_PMD_ERR("Error in setting the tx conf flow: "
838 "tc_index=%d, flow=%d err=%d",
839 dpaa2_tx_conf_q->tc_index,
840 dpaa2_tx_conf_q->flow_id, ret);
844 ret = dpni_get_queue(dpni, CMD_PRI_LOW, priv->token,
845 DPNI_QUEUE_TX_CONFIRM, dpaa2_tx_conf_q->tc_index,
846 dpaa2_tx_conf_q->flow_id, &tx_conf_cfg, &qid);
848 DPAA2_PMD_ERR("Error in getting LFQID err=%d", ret);
851 dpaa2_tx_conf_q->fqid = qid.fqid;
857 dpaa2_dev_rx_queue_release(void *q __rte_unused)
859 struct dpaa2_queue *dpaa2_q = (struct dpaa2_queue *)q;
860 struct dpaa2_dev_priv *priv = dpaa2_q->eth_data->dev_private;
861 struct fsl_mc_io *dpni =
862 (struct fsl_mc_io *)priv->eth_dev->process_private;
865 struct dpni_queue cfg;
867 memset(&cfg, 0, sizeof(struct dpni_queue));
868 PMD_INIT_FUNC_TRACE();
869 if (dpaa2_q->cgid != 0xff) {
870 options = DPNI_QUEUE_OPT_CLEAR_CGID;
871 cfg.cgid = dpaa2_q->cgid;
873 ret = dpni_set_queue(dpni, CMD_PRI_LOW, priv->token,
875 dpaa2_q->tc_index, dpaa2_q->flow_id,
878 DPAA2_PMD_ERR("Unable to clear CGR from q=%u err=%d",
880 priv->cgid_in_use[dpaa2_q->cgid] = 0;
881 dpaa2_q->cgid = 0xff;
886 dpaa2_dev_tx_queue_release(void *q __rte_unused)
888 PMD_INIT_FUNC_TRACE();
892 dpaa2_dev_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id)
895 struct dpaa2_dev_priv *priv = dev->data->dev_private;
896 struct dpaa2_queue *dpaa2_q;
897 struct qbman_swp *swp;
898 struct qbman_fq_query_np_rslt state;
899 uint32_t frame_cnt = 0;
901 if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
902 ret = dpaa2_affine_qbman_swp();
905 "Failed to allocate IO portal, tid: %d\n",
910 swp = DPAA2_PER_LCORE_PORTAL;
912 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[rx_queue_id];
914 if (qbman_fq_query_state(swp, dpaa2_q->fqid, &state) == 0) {
915 frame_cnt = qbman_fq_state_frame_count(&state);
916 DPAA2_PMD_DP_DEBUG("RX frame count for q(%d) is %u",
917 rx_queue_id, frame_cnt);
922 static const uint32_t *
923 dpaa2_supported_ptypes_get(struct rte_eth_dev *dev)
925 static const uint32_t ptypes[] = {
926 /*todo -= add more types */
929 RTE_PTYPE_L3_IPV4_EXT,
931 RTE_PTYPE_L3_IPV6_EXT,
939 if (dev->rx_pkt_burst == dpaa2_dev_prefetch_rx ||
940 dev->rx_pkt_burst == dpaa2_dev_rx ||
941 dev->rx_pkt_burst == dpaa2_dev_loopback_rx)
947 * Dpaa2 link Interrupt handler
950 * The address of parameter (struct rte_eth_dev *) regsitered before.
956 dpaa2_interrupt_handler(void *param)
958 struct rte_eth_dev *dev = param;
959 struct dpaa2_dev_priv *priv = dev->data->dev_private;
960 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
962 int irq_index = DPNI_IRQ_INDEX;
963 unsigned int status = 0, clear = 0;
965 PMD_INIT_FUNC_TRACE();
968 DPAA2_PMD_ERR("dpni is NULL");
972 ret = dpni_get_irq_status(dpni, CMD_PRI_LOW, priv->token,
975 DPAA2_PMD_ERR("Can't get irq status (err %d)", ret);
980 if (status & DPNI_IRQ_EVENT_LINK_CHANGED) {
981 clear = DPNI_IRQ_EVENT_LINK_CHANGED;
982 dpaa2_dev_link_update(dev, 0);
983 /* calling all the apps registered for link status event */
984 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_LSC,
988 ret = dpni_clear_irq_status(dpni, CMD_PRI_LOW, priv->token,
991 DPAA2_PMD_ERR("Can't clear irq status (err %d)", ret);
995 dpaa2_eth_setup_irqs(struct rte_eth_dev *dev, int enable)
998 struct dpaa2_dev_priv *priv = dev->data->dev_private;
999 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1000 int irq_index = DPNI_IRQ_INDEX;
1001 unsigned int mask = DPNI_IRQ_EVENT_LINK_CHANGED;
1003 PMD_INIT_FUNC_TRACE();
1005 err = dpni_set_irq_mask(dpni, CMD_PRI_LOW, priv->token,
1008 DPAA2_PMD_ERR("Error: dpni_set_irq_mask():%d (%s)", err,
1013 err = dpni_set_irq_enable(dpni, CMD_PRI_LOW, priv->token,
1016 DPAA2_PMD_ERR("Error: dpni_set_irq_enable():%d (%s)", err,
1023 dpaa2_dev_start(struct rte_eth_dev *dev)
1025 struct rte_device *rdev = dev->device;
1026 struct rte_dpaa2_device *dpaa2_dev;
1027 struct rte_eth_dev_data *data = dev->data;
1028 struct dpaa2_dev_priv *priv = data->dev_private;
1029 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1030 struct dpni_queue cfg;
1031 struct dpni_error_cfg err_cfg;
1033 struct dpni_queue_id qid;
1034 struct dpaa2_queue *dpaa2_q;
1036 struct rte_intr_handle *intr_handle;
1038 dpaa2_dev = container_of(rdev, struct rte_dpaa2_device, device);
1039 intr_handle = &dpaa2_dev->intr_handle;
1041 PMD_INIT_FUNC_TRACE();
1043 ret = dpni_enable(dpni, CMD_PRI_LOW, priv->token);
1045 DPAA2_PMD_ERR("Failure in enabling dpni %d device: err=%d",
1050 /* Power up the phy. Needed to make the link go UP */
1051 dpaa2_dev_set_link_up(dev);
1053 ret = dpni_get_qdid(dpni, CMD_PRI_LOW, priv->token,
1054 DPNI_QUEUE_TX, &qdid);
1056 DPAA2_PMD_ERR("Error in getting qdid: err=%d", ret);
1061 for (i = 0; i < data->nb_rx_queues; i++) {
1062 dpaa2_q = (struct dpaa2_queue *)data->rx_queues[i];
1063 ret = dpni_get_queue(dpni, CMD_PRI_LOW, priv->token,
1064 DPNI_QUEUE_RX, dpaa2_q->tc_index,
1065 dpaa2_q->flow_id, &cfg, &qid);
1067 DPAA2_PMD_ERR("Error in getting flow information: "
1071 dpaa2_q->fqid = qid.fqid;
1074 /*checksum errors, send them to normal path and set it in annotation */
1075 err_cfg.errors = DPNI_ERROR_L3CE | DPNI_ERROR_L4CE;
1076 err_cfg.errors |= DPNI_ERROR_PHE;
1078 err_cfg.error_action = DPNI_ERROR_ACTION_CONTINUE;
1079 err_cfg.set_frame_annotation = true;
1081 ret = dpni_set_errors_behavior(dpni, CMD_PRI_LOW,
1082 priv->token, &err_cfg);
1084 DPAA2_PMD_ERR("Error to dpni_set_errors_behavior: code = %d",
1089 /* if the interrupts were configured on this devices*/
1090 if (intr_handle && (intr_handle->fd) &&
1091 (dev->data->dev_conf.intr_conf.lsc != 0)) {
1092 /* Registering LSC interrupt handler */
1093 rte_intr_callback_register(intr_handle,
1094 dpaa2_interrupt_handler,
1097 /* enable vfio intr/eventfd mapping
1098 * Interrupt index 0 is required, so we can not use
1101 rte_dpaa2_intr_enable(intr_handle, DPNI_IRQ_INDEX);
1103 /* enable dpni_irqs */
1104 dpaa2_eth_setup_irqs(dev, 1);
1107 /* Change the tx burst function if ordered queues are used */
1108 if (priv->en_ordered)
1109 dev->tx_pkt_burst = dpaa2_dev_tx_ordered;
1115 * This routine disables all traffic on the adapter by issuing a
1116 * global reset on the MAC.
1119 dpaa2_dev_stop(struct rte_eth_dev *dev)
1121 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1122 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1124 struct rte_eth_link link;
1125 struct rte_intr_handle *intr_handle = dev->intr_handle;
1127 PMD_INIT_FUNC_TRACE();
1129 /* reset interrupt callback */
1130 if (intr_handle && (intr_handle->fd) &&
1131 (dev->data->dev_conf.intr_conf.lsc != 0)) {
1132 /*disable dpni irqs */
1133 dpaa2_eth_setup_irqs(dev, 0);
1135 /* disable vfio intr before callback unregister */
1136 rte_dpaa2_intr_disable(intr_handle, DPNI_IRQ_INDEX);
1138 /* Unregistering LSC interrupt handler */
1139 rte_intr_callback_unregister(intr_handle,
1140 dpaa2_interrupt_handler,
1144 dpaa2_dev_set_link_down(dev);
1146 ret = dpni_disable(dpni, CMD_PRI_LOW, priv->token);
1148 DPAA2_PMD_ERR("Failure (ret %d) in disabling dpni %d dev",
1153 /* clear the recorded link status */
1154 memset(&link, 0, sizeof(link));
1155 rte_eth_linkstatus_set(dev, &link);
1159 dpaa2_dev_close(struct rte_eth_dev *dev)
1161 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1162 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1164 struct rte_eth_link link;
1166 PMD_INIT_FUNC_TRACE();
1168 dpaa2_flow_clean(dev);
1170 /* Clean the device first */
1171 ret = dpni_reset(dpni, CMD_PRI_LOW, priv->token);
1173 DPAA2_PMD_ERR("Failure cleaning dpni device: err=%d", ret);
1177 memset(&link, 0, sizeof(link));
1178 rte_eth_linkstatus_set(dev, &link);
1182 dpaa2_dev_promiscuous_enable(
1183 struct rte_eth_dev *dev)
1186 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1187 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1189 PMD_INIT_FUNC_TRACE();
1192 DPAA2_PMD_ERR("dpni is NULL");
1196 ret = dpni_set_unicast_promisc(dpni, CMD_PRI_LOW, priv->token, true);
1198 DPAA2_PMD_ERR("Unable to enable U promisc mode %d", ret);
1200 ret = dpni_set_multicast_promisc(dpni, CMD_PRI_LOW, priv->token, true);
1202 DPAA2_PMD_ERR("Unable to enable M promisc mode %d", ret);
1208 dpaa2_dev_promiscuous_disable(
1209 struct rte_eth_dev *dev)
1212 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1213 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1215 PMD_INIT_FUNC_TRACE();
1218 DPAA2_PMD_ERR("dpni is NULL");
1222 ret = dpni_set_unicast_promisc(dpni, CMD_PRI_LOW, priv->token, false);
1224 DPAA2_PMD_ERR("Unable to disable U promisc mode %d", ret);
1226 if (dev->data->all_multicast == 0) {
1227 ret = dpni_set_multicast_promisc(dpni, CMD_PRI_LOW,
1228 priv->token, false);
1230 DPAA2_PMD_ERR("Unable to disable M promisc mode %d",
1238 dpaa2_dev_allmulticast_enable(
1239 struct rte_eth_dev *dev)
1242 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1243 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1245 PMD_INIT_FUNC_TRACE();
1248 DPAA2_PMD_ERR("dpni is NULL");
1252 ret = dpni_set_multicast_promisc(dpni, CMD_PRI_LOW, priv->token, true);
1254 DPAA2_PMD_ERR("Unable to enable multicast mode %d", ret);
1260 dpaa2_dev_allmulticast_disable(struct rte_eth_dev *dev)
1263 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1264 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1266 PMD_INIT_FUNC_TRACE();
1269 DPAA2_PMD_ERR("dpni is NULL");
1273 /* must remain on for all promiscuous */
1274 if (dev->data->promiscuous == 1)
1277 ret = dpni_set_multicast_promisc(dpni, CMD_PRI_LOW, priv->token, false);
1279 DPAA2_PMD_ERR("Unable to disable multicast mode %d", ret);
1285 dpaa2_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
1288 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1289 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1290 uint32_t frame_size = mtu + RTE_ETHER_HDR_LEN + RTE_ETHER_CRC_LEN
1293 PMD_INIT_FUNC_TRACE();
1296 DPAA2_PMD_ERR("dpni is NULL");
1300 /* check that mtu is within the allowed range */
1301 if (mtu < RTE_ETHER_MIN_MTU || frame_size > DPAA2_MAX_RX_PKT_LEN)
1304 if (frame_size > RTE_ETHER_MAX_LEN)
1305 dev->data->dev_conf.rxmode.offloads |=
1306 DEV_RX_OFFLOAD_JUMBO_FRAME;
1308 dev->data->dev_conf.rxmode.offloads &=
1309 ~DEV_RX_OFFLOAD_JUMBO_FRAME;
1311 dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
1313 /* Set the Max Rx frame length as 'mtu' +
1314 * Maximum Ethernet header length
1316 ret = dpni_set_max_frame_length(dpni, CMD_PRI_LOW, priv->token,
1317 frame_size - RTE_ETHER_CRC_LEN);
1319 DPAA2_PMD_ERR("Setting the max frame length failed");
1322 DPAA2_PMD_INFO("MTU configured for the device: %d", mtu);
1327 dpaa2_dev_add_mac_addr(struct rte_eth_dev *dev,
1328 struct rte_ether_addr *addr,
1329 __rte_unused uint32_t index,
1330 __rte_unused uint32_t pool)
1333 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1334 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1336 PMD_INIT_FUNC_TRACE();
1339 DPAA2_PMD_ERR("dpni is NULL");
1343 ret = dpni_add_mac_addr(dpni, CMD_PRI_LOW, priv->token,
1344 addr->addr_bytes, 0, 0, 0);
1347 "error: Adding the MAC ADDR failed: err = %d", ret);
1352 dpaa2_dev_remove_mac_addr(struct rte_eth_dev *dev,
1356 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1357 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1358 struct rte_eth_dev_data *data = dev->data;
1359 struct rte_ether_addr *macaddr;
1361 PMD_INIT_FUNC_TRACE();
1363 macaddr = &data->mac_addrs[index];
1366 DPAA2_PMD_ERR("dpni is NULL");
1370 ret = dpni_remove_mac_addr(dpni, CMD_PRI_LOW,
1371 priv->token, macaddr->addr_bytes);
1374 "error: Removing the MAC ADDR failed: err = %d", ret);
1378 dpaa2_dev_set_mac_addr(struct rte_eth_dev *dev,
1379 struct rte_ether_addr *addr)
1382 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1383 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1385 PMD_INIT_FUNC_TRACE();
1388 DPAA2_PMD_ERR("dpni is NULL");
1392 ret = dpni_set_primary_mac_addr(dpni, CMD_PRI_LOW,
1393 priv->token, addr->addr_bytes);
1397 "error: Setting the MAC ADDR failed %d", ret);
1403 int dpaa2_dev_stats_get(struct rte_eth_dev *dev,
1404 struct rte_eth_stats *stats)
1406 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1407 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1409 uint8_t page0 = 0, page1 = 1, page2 = 2;
1410 union dpni_statistics value;
1412 struct dpaa2_queue *dpaa2_rxq, *dpaa2_txq;
1414 memset(&value, 0, sizeof(union dpni_statistics));
1416 PMD_INIT_FUNC_TRACE();
1419 DPAA2_PMD_ERR("dpni is NULL");
1424 DPAA2_PMD_ERR("stats is NULL");
1428 /*Get Counters from page_0*/
1429 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1434 stats->ipackets = value.page_0.ingress_all_frames;
1435 stats->ibytes = value.page_0.ingress_all_bytes;
1437 /*Get Counters from page_1*/
1438 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1443 stats->opackets = value.page_1.egress_all_frames;
1444 stats->obytes = value.page_1.egress_all_bytes;
1446 /*Get Counters from page_2*/
1447 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1452 /* Ingress drop frame count due to configured rules */
1453 stats->ierrors = value.page_2.ingress_filtered_frames;
1454 /* Ingress drop frame count due to error */
1455 stats->ierrors += value.page_2.ingress_discarded_frames;
1457 stats->oerrors = value.page_2.egress_discarded_frames;
1458 stats->imissed = value.page_2.ingress_nobuffer_discards;
1460 /* Fill in per queue stats */
1461 for (i = 0; (i < RTE_ETHDEV_QUEUE_STAT_CNTRS) &&
1462 (i < priv->nb_rx_queues || i < priv->nb_tx_queues); ++i) {
1463 dpaa2_rxq = (struct dpaa2_queue *)priv->rx_vq[i];
1464 dpaa2_txq = (struct dpaa2_queue *)priv->tx_vq[i];
1466 stats->q_ipackets[i] = dpaa2_rxq->rx_pkts;
1468 stats->q_opackets[i] = dpaa2_txq->tx_pkts;
1470 /* Byte counting is not implemented */
1471 stats->q_ibytes[i] = 0;
1472 stats->q_obytes[i] = 0;
1478 DPAA2_PMD_ERR("Operation not completed:Error Code = %d", retcode);
1483 dpaa2_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
1486 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1487 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1489 union dpni_statistics value[5] = {};
1490 unsigned int i = 0, num = RTE_DIM(dpaa2_xstats_strings);
1498 /* Get Counters from page_0*/
1499 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1504 /* Get Counters from page_1*/
1505 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1510 /* Get Counters from page_2*/
1511 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1516 for (i = 0; i < priv->max_cgs; i++) {
1517 if (!priv->cgid_in_use[i]) {
1518 /* Get Counters from page_4*/
1519 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW,
1528 for (i = 0; i < num; i++) {
1530 xstats[i].value = value[dpaa2_xstats_strings[i].page_id].
1531 raw.counter[dpaa2_xstats_strings[i].stats_id];
1535 DPAA2_PMD_ERR("Error in obtaining extended stats (%d)", retcode);
1540 dpaa2_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
1541 struct rte_eth_xstat_name *xstats_names,
1544 unsigned int i, stat_cnt = RTE_DIM(dpaa2_xstats_strings);
1546 if (limit < stat_cnt)
1549 if (xstats_names != NULL)
1550 for (i = 0; i < stat_cnt; i++)
1551 strlcpy(xstats_names[i].name,
1552 dpaa2_xstats_strings[i].name,
1553 sizeof(xstats_names[i].name));
1559 dpaa2_xstats_get_by_id(struct rte_eth_dev *dev, const uint64_t *ids,
1560 uint64_t *values, unsigned int n)
1562 unsigned int i, stat_cnt = RTE_DIM(dpaa2_xstats_strings);
1563 uint64_t values_copy[stat_cnt];
1566 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1567 struct fsl_mc_io *dpni =
1568 (struct fsl_mc_io *)dev->process_private;
1570 union dpni_statistics value[5] = {};
1578 /* Get Counters from page_0*/
1579 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1584 /* Get Counters from page_1*/
1585 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1590 /* Get Counters from page_2*/
1591 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1596 /* Get Counters from page_4*/
1597 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
1602 for (i = 0; i < stat_cnt; i++) {
1603 values[i] = value[dpaa2_xstats_strings[i].page_id].
1604 raw.counter[dpaa2_xstats_strings[i].stats_id];
1609 dpaa2_xstats_get_by_id(dev, NULL, values_copy, stat_cnt);
1611 for (i = 0; i < n; i++) {
1612 if (ids[i] >= stat_cnt) {
1613 DPAA2_PMD_ERR("xstats id value isn't valid");
1616 values[i] = values_copy[ids[i]];
1622 dpaa2_xstats_get_names_by_id(
1623 struct rte_eth_dev *dev,
1624 struct rte_eth_xstat_name *xstats_names,
1625 const uint64_t *ids,
1628 unsigned int i, stat_cnt = RTE_DIM(dpaa2_xstats_strings);
1629 struct rte_eth_xstat_name xstats_names_copy[stat_cnt];
1632 return dpaa2_xstats_get_names(dev, xstats_names, limit);
1634 dpaa2_xstats_get_names(dev, xstats_names_copy, limit);
1636 for (i = 0; i < limit; i++) {
1637 if (ids[i] >= stat_cnt) {
1638 DPAA2_PMD_ERR("xstats id value isn't valid");
1641 strcpy(xstats_names[i].name, xstats_names_copy[ids[i]].name);
1647 dpaa2_dev_stats_reset(struct rte_eth_dev *dev)
1649 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1650 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1653 struct dpaa2_queue *dpaa2_q;
1655 PMD_INIT_FUNC_TRACE();
1658 DPAA2_PMD_ERR("dpni is NULL");
1662 retcode = dpni_reset_statistics(dpni, CMD_PRI_LOW, priv->token);
1666 /* Reset the per queue stats in dpaa2_queue structure */
1667 for (i = 0; i < priv->nb_rx_queues; i++) {
1668 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[i];
1670 dpaa2_q->rx_pkts = 0;
1673 for (i = 0; i < priv->nb_tx_queues; i++) {
1674 dpaa2_q = (struct dpaa2_queue *)priv->tx_vq[i];
1676 dpaa2_q->tx_pkts = 0;
1682 DPAA2_PMD_ERR("Operation not completed:Error Code = %d", retcode);
1686 /* return 0 means link status changed, -1 means not changed */
1688 dpaa2_dev_link_update(struct rte_eth_dev *dev,
1689 int wait_to_complete __rte_unused)
1692 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1693 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
1694 struct rte_eth_link link;
1695 struct dpni_link_state state = {0};
1698 DPAA2_PMD_ERR("dpni is NULL");
1702 ret = dpni_get_link_state(dpni, CMD_PRI_LOW, priv->token, &state);
1704 DPAA2_PMD_DEBUG("error: dpni_get_link_state %d", ret);
1708 memset(&link, 0, sizeof(struct rte_eth_link));
1709 link.link_status = state.up;
1710 link.link_speed = state.rate;
1712 if (state.options & DPNI_LINK_OPT_HALF_DUPLEX)
1713 link.link_duplex = ETH_LINK_HALF_DUPLEX;
1715 link.link_duplex = ETH_LINK_FULL_DUPLEX;
1717 ret = rte_eth_linkstatus_set(dev, &link);
1719 DPAA2_PMD_DEBUG("No change in status");
1721 DPAA2_PMD_INFO("Port %d Link is %s\n", dev->data->port_id,
1722 link.link_status ? "Up" : "Down");
1728 * Toggle the DPNI to enable, if not already enabled.
1729 * This is not strictly PHY up/down - it is more of logical toggling.
1732 dpaa2_dev_set_link_up(struct rte_eth_dev *dev)
1735 struct dpaa2_dev_priv *priv;
1736 struct fsl_mc_io *dpni;
1738 struct dpni_link_state state = {0};
1740 priv = dev->data->dev_private;
1741 dpni = (struct fsl_mc_io *)dev->process_private;
1744 DPAA2_PMD_ERR("dpni is NULL");
1748 /* Check if DPNI is currently enabled */
1749 ret = dpni_is_enabled(dpni, CMD_PRI_LOW, priv->token, &en);
1751 /* Unable to obtain dpni status; Not continuing */
1752 DPAA2_PMD_ERR("Interface Link UP failed (%d)", ret);
1756 /* Enable link if not already enabled */
1758 ret = dpni_enable(dpni, CMD_PRI_LOW, priv->token);
1760 DPAA2_PMD_ERR("Interface Link UP failed (%d)", ret);
1764 ret = dpni_get_link_state(dpni, CMD_PRI_LOW, priv->token, &state);
1766 DPAA2_PMD_DEBUG("Unable to get link state (%d)", ret);
1770 /* changing tx burst function to start enqueues */
1771 dev->tx_pkt_burst = dpaa2_dev_tx;
1772 dev->data->dev_link.link_status = state.up;
1773 dev->data->dev_link.link_speed = state.rate;
1776 DPAA2_PMD_INFO("Port %d Link is Up", dev->data->port_id);
1778 DPAA2_PMD_INFO("Port %d Link is Down", dev->data->port_id);
1783 * Toggle the DPNI to disable, if not already disabled.
1784 * This is not strictly PHY up/down - it is more of logical toggling.
1787 dpaa2_dev_set_link_down(struct rte_eth_dev *dev)
1790 struct dpaa2_dev_priv *priv;
1791 struct fsl_mc_io *dpni;
1792 int dpni_enabled = 0;
1795 PMD_INIT_FUNC_TRACE();
1797 priv = dev->data->dev_private;
1798 dpni = (struct fsl_mc_io *)dev->process_private;
1801 DPAA2_PMD_ERR("Device has not yet been configured");
1805 /*changing tx burst function to avoid any more enqueues */
1806 dev->tx_pkt_burst = dummy_dev_tx;
1808 /* Loop while dpni_disable() attempts to drain the egress FQs
1809 * and confirm them back to us.
1812 ret = dpni_disable(dpni, 0, priv->token);
1814 DPAA2_PMD_ERR("dpni disable failed (%d)", ret);
1817 ret = dpni_is_enabled(dpni, 0, priv->token, &dpni_enabled);
1819 DPAA2_PMD_ERR("dpni enable check failed (%d)", ret);
1823 /* Allow the MC some slack */
1824 rte_delay_us(100 * 1000);
1825 } while (dpni_enabled && --retries);
1828 DPAA2_PMD_WARN("Retry count exceeded disabling dpni");
1829 /* todo- we may have to manually cleanup queues.
1832 DPAA2_PMD_INFO("Port %d Link DOWN successful",
1833 dev->data->port_id);
1836 dev->data->dev_link.link_status = 0;
1842 dpaa2_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
1845 struct dpaa2_dev_priv *priv;
1846 struct fsl_mc_io *dpni;
1847 struct dpni_link_state state = {0};
1849 PMD_INIT_FUNC_TRACE();
1851 priv = dev->data->dev_private;
1852 dpni = (struct fsl_mc_io *)dev->process_private;
1854 if (dpni == NULL || fc_conf == NULL) {
1855 DPAA2_PMD_ERR("device not configured");
1859 ret = dpni_get_link_state(dpni, CMD_PRI_LOW, priv->token, &state);
1861 DPAA2_PMD_ERR("error: dpni_get_link_state %d", ret);
1865 memset(fc_conf, 0, sizeof(struct rte_eth_fc_conf));
1866 if (state.options & DPNI_LINK_OPT_PAUSE) {
1867 /* DPNI_LINK_OPT_PAUSE set
1868 * if ASYM_PAUSE not set,
1869 * RX Side flow control (handle received Pause frame)
1870 * TX side flow control (send Pause frame)
1871 * if ASYM_PAUSE set,
1872 * RX Side flow control (handle received Pause frame)
1873 * No TX side flow control (send Pause frame disabled)
1875 if (!(state.options & DPNI_LINK_OPT_ASYM_PAUSE))
1876 fc_conf->mode = RTE_FC_FULL;
1878 fc_conf->mode = RTE_FC_RX_PAUSE;
1880 /* DPNI_LINK_OPT_PAUSE not set
1881 * if ASYM_PAUSE set,
1882 * TX side flow control (send Pause frame)
1883 * No RX side flow control (No action on pause frame rx)
1884 * if ASYM_PAUSE not set,
1885 * Flow control disabled
1887 if (state.options & DPNI_LINK_OPT_ASYM_PAUSE)
1888 fc_conf->mode = RTE_FC_TX_PAUSE;
1890 fc_conf->mode = RTE_FC_NONE;
1897 dpaa2_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
1900 struct dpaa2_dev_priv *priv;
1901 struct fsl_mc_io *dpni;
1902 struct dpni_link_state state = {0};
1903 struct dpni_link_cfg cfg = {0};
1905 PMD_INIT_FUNC_TRACE();
1907 priv = dev->data->dev_private;
1908 dpni = (struct fsl_mc_io *)dev->process_private;
1911 DPAA2_PMD_ERR("dpni is NULL");
1915 /* It is necessary to obtain the current state before setting fc_conf
1916 * as MC would return error in case rate, autoneg or duplex values are
1919 ret = dpni_get_link_state(dpni, CMD_PRI_LOW, priv->token, &state);
1921 DPAA2_PMD_ERR("Unable to get link state (err=%d)", ret);
1925 /* Disable link before setting configuration */
1926 dpaa2_dev_set_link_down(dev);
1928 /* Based on fc_conf, update cfg */
1929 cfg.rate = state.rate;
1930 cfg.options = state.options;
1932 /* update cfg with fc_conf */
1933 switch (fc_conf->mode) {
1935 /* Full flow control;
1936 * OPT_PAUSE set, ASYM_PAUSE not set
1938 cfg.options |= DPNI_LINK_OPT_PAUSE;
1939 cfg.options &= ~DPNI_LINK_OPT_ASYM_PAUSE;
1941 case RTE_FC_TX_PAUSE:
1942 /* Enable RX flow control
1943 * OPT_PAUSE not set;
1946 cfg.options |= DPNI_LINK_OPT_ASYM_PAUSE;
1947 cfg.options &= ~DPNI_LINK_OPT_PAUSE;
1949 case RTE_FC_RX_PAUSE:
1950 /* Enable TX Flow control
1954 cfg.options |= DPNI_LINK_OPT_PAUSE;
1955 cfg.options |= DPNI_LINK_OPT_ASYM_PAUSE;
1958 /* Disable Flow control
1960 * ASYM_PAUSE not set
1962 cfg.options &= ~DPNI_LINK_OPT_PAUSE;
1963 cfg.options &= ~DPNI_LINK_OPT_ASYM_PAUSE;
1966 DPAA2_PMD_ERR("Incorrect Flow control flag (%d)",
1971 ret = dpni_set_link_cfg(dpni, CMD_PRI_LOW, priv->token, &cfg);
1973 DPAA2_PMD_ERR("Unable to set Link configuration (err=%d)",
1977 dpaa2_dev_set_link_up(dev);
1983 dpaa2_dev_rss_hash_update(struct rte_eth_dev *dev,
1984 struct rte_eth_rss_conf *rss_conf)
1986 struct rte_eth_dev_data *data = dev->data;
1987 struct rte_eth_conf *eth_conf = &data->dev_conf;
1990 PMD_INIT_FUNC_TRACE();
1992 if (rss_conf->rss_hf) {
1993 ret = dpaa2_setup_flow_dist(dev, rss_conf->rss_hf);
1995 DPAA2_PMD_ERR("Unable to set flow dist");
1999 ret = dpaa2_remove_flow_dist(dev, 0);
2001 DPAA2_PMD_ERR("Unable to remove flow dist");
2005 eth_conf->rx_adv_conf.rss_conf.rss_hf = rss_conf->rss_hf;
2010 dpaa2_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
2011 struct rte_eth_rss_conf *rss_conf)
2013 struct rte_eth_dev_data *data = dev->data;
2014 struct rte_eth_conf *eth_conf = &data->dev_conf;
2016 /* dpaa2 does not support rss_key, so length should be 0*/
2017 rss_conf->rss_key_len = 0;
2018 rss_conf->rss_hf = eth_conf->rx_adv_conf.rss_conf.rss_hf;
2022 int dpaa2_eth_eventq_attach(const struct rte_eth_dev *dev,
2023 int eth_rx_queue_id,
2024 struct dpaa2_dpcon_dev *dpcon,
2025 const struct rte_event_eth_rx_adapter_queue_conf *queue_conf)
2027 struct dpaa2_dev_priv *eth_priv = dev->data->dev_private;
2028 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
2029 struct dpaa2_queue *dpaa2_ethq = eth_priv->rx_vq[eth_rx_queue_id];
2030 uint8_t flow_id = dpaa2_ethq->flow_id;
2031 struct dpni_queue cfg;
2032 uint8_t options, priority;
2035 if (queue_conf->ev.sched_type == RTE_SCHED_TYPE_PARALLEL)
2036 dpaa2_ethq->cb = dpaa2_dev_process_parallel_event;
2037 else if (queue_conf->ev.sched_type == RTE_SCHED_TYPE_ATOMIC)
2038 dpaa2_ethq->cb = dpaa2_dev_process_atomic_event;
2039 else if (queue_conf->ev.sched_type == RTE_SCHED_TYPE_ORDERED)
2040 dpaa2_ethq->cb = dpaa2_dev_process_ordered_event;
2044 priority = (RTE_EVENT_DEV_PRIORITY_LOWEST / queue_conf->ev.priority) *
2045 (dpcon->num_priorities - 1);
2047 memset(&cfg, 0, sizeof(struct dpni_queue));
2048 options = DPNI_QUEUE_OPT_DEST;
2049 cfg.destination.type = DPNI_DEST_DPCON;
2050 cfg.destination.id = dpcon->dpcon_id;
2051 cfg.destination.priority = priority;
2053 if (queue_conf->ev.sched_type == RTE_SCHED_TYPE_ATOMIC) {
2054 options |= DPNI_QUEUE_OPT_HOLD_ACTIVE;
2055 cfg.destination.hold_active = 1;
2058 if (queue_conf->ev.sched_type == RTE_SCHED_TYPE_ORDERED &&
2059 !eth_priv->en_ordered) {
2060 struct opr_cfg ocfg;
2062 /* Restoration window size = 256 frames */
2064 /* Restoration window size = 512 frames for LX2 */
2065 if (dpaa2_svr_family == SVR_LX2160A)
2067 /* Auto advance NESN window enabled */
2069 /* Late arrival window size disabled */
2071 /* ORL resource exhaustaion advance NESN disabled */
2073 /* Loose ordering enabled */
2075 eth_priv->en_loose_ordered = 1;
2076 /* Strict ordering enabled if explicitly set */
2077 if (getenv("DPAA2_STRICT_ORDERING_ENABLE")) {
2079 eth_priv->en_loose_ordered = 0;
2082 ret = dpni_set_opr(dpni, CMD_PRI_LOW, eth_priv->token,
2083 dpaa2_ethq->tc_index, flow_id,
2084 OPR_OPT_CREATE, &ocfg);
2086 DPAA2_PMD_ERR("Error setting opr: ret: %d\n", ret);
2090 eth_priv->en_ordered = 1;
2093 options |= DPNI_QUEUE_OPT_USER_CTX;
2094 cfg.user_context = (size_t)(dpaa2_ethq);
2096 ret = dpni_set_queue(dpni, CMD_PRI_LOW, eth_priv->token, DPNI_QUEUE_RX,
2097 dpaa2_ethq->tc_index, flow_id, options, &cfg);
2099 DPAA2_PMD_ERR("Error in dpni_set_queue: ret: %d", ret);
2103 memcpy(&dpaa2_ethq->ev, &queue_conf->ev, sizeof(struct rte_event));
2108 int dpaa2_eth_eventq_detach(const struct rte_eth_dev *dev,
2109 int eth_rx_queue_id)
2111 struct dpaa2_dev_priv *eth_priv = dev->data->dev_private;
2112 struct fsl_mc_io *dpni = (struct fsl_mc_io *)dev->process_private;
2113 struct dpaa2_queue *dpaa2_ethq = eth_priv->rx_vq[eth_rx_queue_id];
2114 uint8_t flow_id = dpaa2_ethq->flow_id;
2115 struct dpni_queue cfg;
2119 memset(&cfg, 0, sizeof(struct dpni_queue));
2120 options = DPNI_QUEUE_OPT_DEST;
2121 cfg.destination.type = DPNI_DEST_NONE;
2123 ret = dpni_set_queue(dpni, CMD_PRI_LOW, eth_priv->token, DPNI_QUEUE_RX,
2124 dpaa2_ethq->tc_index, flow_id, options, &cfg);
2126 DPAA2_PMD_ERR("Error in dpni_set_queue: ret: %d", ret);
2132 dpaa2_dev_verify_filter_ops(enum rte_filter_op filter_op)
2136 for (i = 0; i < RTE_DIM(dpaa2_supported_filter_ops); i++) {
2137 if (dpaa2_supported_filter_ops[i] == filter_op)
2144 dpaa2_dev_flow_ctrl(struct rte_eth_dev *dev,
2145 enum rte_filter_type filter_type,
2146 enum rte_filter_op filter_op,
2154 switch (filter_type) {
2155 case RTE_ETH_FILTER_GENERIC:
2156 if (dpaa2_dev_verify_filter_ops(filter_op) < 0) {
2160 *(const void **)arg = &dpaa2_flow_ops;
2161 dpaa2_filter_type |= filter_type;
2164 RTE_LOG(ERR, PMD, "Filter type (%d) not supported",
2172 static struct eth_dev_ops dpaa2_ethdev_ops = {
2173 .dev_configure = dpaa2_eth_dev_configure,
2174 .dev_start = dpaa2_dev_start,
2175 .dev_stop = dpaa2_dev_stop,
2176 .dev_close = dpaa2_dev_close,
2177 .promiscuous_enable = dpaa2_dev_promiscuous_enable,
2178 .promiscuous_disable = dpaa2_dev_promiscuous_disable,
2179 .allmulticast_enable = dpaa2_dev_allmulticast_enable,
2180 .allmulticast_disable = dpaa2_dev_allmulticast_disable,
2181 .dev_set_link_up = dpaa2_dev_set_link_up,
2182 .dev_set_link_down = dpaa2_dev_set_link_down,
2183 .link_update = dpaa2_dev_link_update,
2184 .stats_get = dpaa2_dev_stats_get,
2185 .xstats_get = dpaa2_dev_xstats_get,
2186 .xstats_get_by_id = dpaa2_xstats_get_by_id,
2187 .xstats_get_names_by_id = dpaa2_xstats_get_names_by_id,
2188 .xstats_get_names = dpaa2_xstats_get_names,
2189 .stats_reset = dpaa2_dev_stats_reset,
2190 .xstats_reset = dpaa2_dev_stats_reset,
2191 .fw_version_get = dpaa2_fw_version_get,
2192 .dev_infos_get = dpaa2_dev_info_get,
2193 .dev_supported_ptypes_get = dpaa2_supported_ptypes_get,
2194 .mtu_set = dpaa2_dev_mtu_set,
2195 .vlan_filter_set = dpaa2_vlan_filter_set,
2196 .vlan_offload_set = dpaa2_vlan_offload_set,
2197 .vlan_tpid_set = dpaa2_vlan_tpid_set,
2198 .rx_queue_setup = dpaa2_dev_rx_queue_setup,
2199 .rx_queue_release = dpaa2_dev_rx_queue_release,
2200 .tx_queue_setup = dpaa2_dev_tx_queue_setup,
2201 .tx_queue_release = dpaa2_dev_tx_queue_release,
2202 .rx_queue_count = dpaa2_dev_rx_queue_count,
2203 .flow_ctrl_get = dpaa2_flow_ctrl_get,
2204 .flow_ctrl_set = dpaa2_flow_ctrl_set,
2205 .mac_addr_add = dpaa2_dev_add_mac_addr,
2206 .mac_addr_remove = dpaa2_dev_remove_mac_addr,
2207 .mac_addr_set = dpaa2_dev_set_mac_addr,
2208 .rss_hash_update = dpaa2_dev_rss_hash_update,
2209 .rss_hash_conf_get = dpaa2_dev_rss_hash_conf_get,
2210 .filter_ctrl = dpaa2_dev_flow_ctrl,
2211 #if defined(RTE_LIBRTE_IEEE1588)
2212 .timesync_enable = dpaa2_timesync_enable,
2213 .timesync_disable = dpaa2_timesync_disable,
2214 .timesync_read_time = dpaa2_timesync_read_time,
2215 .timesync_write_time = dpaa2_timesync_write_time,
2216 .timesync_adjust_time = dpaa2_timesync_adjust_time,
2217 .timesync_read_rx_timestamp = dpaa2_timesync_read_rx_timestamp,
2218 .timesync_read_tx_timestamp = dpaa2_timesync_read_tx_timestamp,
2222 /* Populate the mac address from physically available (u-boot/firmware) and/or
2223 * one set by higher layers like MC (restool) etc.
2224 * Returns the table of MAC entries (multiple entries)
2227 populate_mac_addr(struct fsl_mc_io *dpni_dev, struct dpaa2_dev_priv *priv,
2228 struct rte_ether_addr *mac_entry)
2231 struct rte_ether_addr phy_mac, prime_mac;
2233 memset(&phy_mac, 0, sizeof(struct rte_ether_addr));
2234 memset(&prime_mac, 0, sizeof(struct rte_ether_addr));
2236 /* Get the physical device MAC address */
2237 ret = dpni_get_port_mac_addr(dpni_dev, CMD_PRI_LOW, priv->token,
2238 phy_mac.addr_bytes);
2240 DPAA2_PMD_ERR("DPNI get physical port MAC failed: %d", ret);
2244 ret = dpni_get_primary_mac_addr(dpni_dev, CMD_PRI_LOW, priv->token,
2245 prime_mac.addr_bytes);
2247 DPAA2_PMD_ERR("DPNI get Prime port MAC failed: %d", ret);
2251 /* Now that both MAC have been obtained, do:
2252 * if not_empty_mac(phy) && phy != Prime, overwrite prime with Phy
2254 * If empty_mac(phy), return prime.
2255 * if both are empty, create random MAC, set as prime and return
2257 if (!rte_is_zero_ether_addr(&phy_mac)) {
2258 /* If the addresses are not same, overwrite prime */
2259 if (!rte_is_same_ether_addr(&phy_mac, &prime_mac)) {
2260 ret = dpni_set_primary_mac_addr(dpni_dev, CMD_PRI_LOW,
2262 phy_mac.addr_bytes);
2264 DPAA2_PMD_ERR("Unable to set MAC Address: %d",
2268 memcpy(&prime_mac, &phy_mac,
2269 sizeof(struct rte_ether_addr));
2271 } else if (rte_is_zero_ether_addr(&prime_mac)) {
2272 /* In case phys and prime, both are zero, create random MAC */
2273 rte_eth_random_addr(prime_mac.addr_bytes);
2274 ret = dpni_set_primary_mac_addr(dpni_dev, CMD_PRI_LOW,
2276 prime_mac.addr_bytes);
2278 DPAA2_PMD_ERR("Unable to set MAC Address: %d", ret);
2283 /* prime_mac the final MAC address */
2284 memcpy(mac_entry, &prime_mac, sizeof(struct rte_ether_addr));
2292 check_devargs_handler(__rte_unused const char *key, const char *value,
2293 __rte_unused void *opaque)
2295 if (strcmp(value, "1"))
2302 dpaa2_get_devargs(struct rte_devargs *devargs, const char *key)
2304 struct rte_kvargs *kvlist;
2309 kvlist = rte_kvargs_parse(devargs->args, NULL);
2313 if (!rte_kvargs_count(kvlist, key)) {
2314 rte_kvargs_free(kvlist);
2318 if (rte_kvargs_process(kvlist, key,
2319 check_devargs_handler, NULL) < 0) {
2320 rte_kvargs_free(kvlist);
2323 rte_kvargs_free(kvlist);
2329 dpaa2_dev_init(struct rte_eth_dev *eth_dev)
2331 struct rte_device *dev = eth_dev->device;
2332 struct rte_dpaa2_device *dpaa2_dev;
2333 struct fsl_mc_io *dpni_dev;
2334 struct dpni_attr attr;
2335 struct dpaa2_dev_priv *priv = eth_dev->data->dev_private;
2336 struct dpni_buffer_layout layout;
2339 PMD_INIT_FUNC_TRACE();
2341 dpni_dev = rte_malloc(NULL, sizeof(struct fsl_mc_io), 0);
2343 DPAA2_PMD_ERR("Memory allocation failed for dpni device");
2346 dpni_dev->regs = rte_mcp_ptr_list[0];
2347 eth_dev->process_private = (void *)dpni_dev;
2349 /* For secondary processes, the primary has done all the work */
2350 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
2351 /* In case of secondary, only burst and ops API need to be
2354 eth_dev->dev_ops = &dpaa2_ethdev_ops;
2355 if (dpaa2_get_devargs(dev->devargs, DRIVER_LOOPBACK_MODE))
2356 eth_dev->rx_pkt_burst = dpaa2_dev_loopback_rx;
2357 else if (dpaa2_get_devargs(dev->devargs,
2358 DRIVER_NO_PREFETCH_MODE))
2359 eth_dev->rx_pkt_burst = dpaa2_dev_rx;
2361 eth_dev->rx_pkt_burst = dpaa2_dev_prefetch_rx;
2362 eth_dev->tx_pkt_burst = dpaa2_dev_tx;
2366 dpaa2_dev = container_of(dev, struct rte_dpaa2_device, device);
2368 hw_id = dpaa2_dev->object_id;
2369 ret = dpni_open(dpni_dev, CMD_PRI_LOW, hw_id, &priv->token);
2372 "Failure in opening dpni@%d with err code %d",
2378 /* Clean the device first */
2379 ret = dpni_reset(dpni_dev, CMD_PRI_LOW, priv->token);
2381 DPAA2_PMD_ERR("Failure cleaning dpni@%d with err code %d",
2386 ret = dpni_get_attributes(dpni_dev, CMD_PRI_LOW, priv->token, &attr);
2389 "Failure in get dpni@%d attribute, err code %d",
2394 priv->num_rx_tc = attr.num_rx_tcs;
2395 /* only if the custom CG is enabled */
2396 if (attr.options & DPNI_OPT_CUSTOM_CG)
2397 priv->max_cgs = attr.num_cgs;
2401 for (i = 0; i < priv->max_cgs; i++)
2402 priv->cgid_in_use[i] = 0;
2404 for (i = 0; i < attr.num_rx_tcs; i++)
2405 priv->nb_rx_queues += attr.num_queues;
2407 /* Using number of TX queues as number of TX TCs */
2408 priv->nb_tx_queues = attr.num_tx_tcs;
2410 DPAA2_PMD_DEBUG("RX-TC= %d, rx_queues= %d, tx_queues=%d, max_cgs=%d",
2411 priv->num_rx_tc, priv->nb_rx_queues,
2412 priv->nb_tx_queues, priv->max_cgs);
2414 priv->hw = dpni_dev;
2415 priv->hw_id = hw_id;
2416 priv->options = attr.options;
2417 priv->max_mac_filters = attr.mac_filter_entries;
2418 priv->max_vlan_filters = attr.vlan_filter_entries;
2420 #if defined(RTE_LIBRTE_IEEE1588)
2421 priv->tx_conf_en = 1;
2423 priv->tx_conf_en = 0;
2426 /* Allocate memory for hardware structure for queues */
2427 ret = dpaa2_alloc_rx_tx_queues(eth_dev);
2429 DPAA2_PMD_ERR("Queue allocation Failed");
2433 /* Allocate memory for storing MAC addresses.
2434 * Table of mac_filter_entries size is allocated so that RTE ether lib
2435 * can add MAC entries when rte_eth_dev_mac_addr_add is called.
2437 eth_dev->data->mac_addrs = rte_zmalloc("dpni",
2438 RTE_ETHER_ADDR_LEN * attr.mac_filter_entries, 0);
2439 if (eth_dev->data->mac_addrs == NULL) {
2441 "Failed to allocate %d bytes needed to store MAC addresses",
2442 RTE_ETHER_ADDR_LEN * attr.mac_filter_entries);
2447 ret = populate_mac_addr(dpni_dev, priv, ð_dev->data->mac_addrs[0]);
2449 DPAA2_PMD_ERR("Unable to fetch MAC Address for device");
2450 rte_free(eth_dev->data->mac_addrs);
2451 eth_dev->data->mac_addrs = NULL;
2455 /* ... tx buffer layout ... */
2456 memset(&layout, 0, sizeof(struct dpni_buffer_layout));
2457 if (priv->tx_conf_en) {
2458 layout.options = DPNI_BUF_LAYOUT_OPT_FRAME_STATUS |
2459 DPNI_BUF_LAYOUT_OPT_TIMESTAMP;
2460 layout.pass_timestamp = true;
2462 layout.options = DPNI_BUF_LAYOUT_OPT_FRAME_STATUS;
2464 layout.pass_frame_status = 1;
2465 ret = dpni_set_buffer_layout(dpni_dev, CMD_PRI_LOW, priv->token,
2466 DPNI_QUEUE_TX, &layout);
2468 DPAA2_PMD_ERR("Error (%d) in setting tx buffer layout", ret);
2472 /* ... tx-conf and error buffer layout ... */
2473 memset(&layout, 0, sizeof(struct dpni_buffer_layout));
2474 if (priv->tx_conf_en) {
2475 layout.options = DPNI_BUF_LAYOUT_OPT_FRAME_STATUS |
2476 DPNI_BUF_LAYOUT_OPT_TIMESTAMP;
2477 layout.pass_timestamp = true;
2479 layout.options = DPNI_BUF_LAYOUT_OPT_FRAME_STATUS;
2481 layout.pass_frame_status = 1;
2482 ret = dpni_set_buffer_layout(dpni_dev, CMD_PRI_LOW, priv->token,
2483 DPNI_QUEUE_TX_CONFIRM, &layout);
2485 DPAA2_PMD_ERR("Error (%d) in setting tx-conf buffer layout",
2490 eth_dev->dev_ops = &dpaa2_ethdev_ops;
2492 if (dpaa2_get_devargs(dev->devargs, DRIVER_LOOPBACK_MODE)) {
2493 eth_dev->rx_pkt_burst = dpaa2_dev_loopback_rx;
2494 DPAA2_PMD_INFO("Loopback mode");
2495 } else if (dpaa2_get_devargs(dev->devargs, DRIVER_NO_PREFETCH_MODE)) {
2496 eth_dev->rx_pkt_burst = dpaa2_dev_rx;
2497 DPAA2_PMD_INFO("No Prefetch mode");
2499 eth_dev->rx_pkt_burst = dpaa2_dev_prefetch_rx;
2501 eth_dev->tx_pkt_burst = dpaa2_dev_tx;
2503 /*Init fields w.r.t. classficaition*/
2504 memset(&priv->extract.qos_key_cfg, 0, sizeof(struct dpkg_profile_cfg));
2505 priv->extract.qos_extract_param = (size_t)rte_malloc(NULL, 256, 64);
2506 if (!priv->extract.qos_extract_param) {
2507 DPAA2_PMD_ERR(" Error(%d) in allocation resources for flow "
2508 " classificaiton ", ret);
2511 for (i = 0; i < MAX_TCS; i++) {
2512 memset(&priv->extract.fs_key_cfg[i], 0,
2513 sizeof(struct dpkg_profile_cfg));
2514 priv->extract.fs_extract_param[i] =
2515 (size_t)rte_malloc(NULL, 256, 64);
2516 if (!priv->extract.fs_extract_param[i]) {
2517 DPAA2_PMD_ERR(" Error(%d) in allocation resources for flow classificaiton",
2523 ret = dpni_set_max_frame_length(dpni_dev, CMD_PRI_LOW, priv->token,
2524 RTE_ETHER_MAX_LEN - RTE_ETHER_CRC_LEN
2527 DPAA2_PMD_ERR("Unable to set mtu. check config");
2531 /*TODO To enable soft parser support DPAA2 driver needs to integrate
2532 * with external entity to receive byte code for software sequence
2533 * and same will be offload to the H/W using MC interface.
2534 * Currently it is assumed that DPAA2 driver has byte code by some
2535 * mean and same if offloaded to H/W.
2537 if (getenv("DPAA2_ENABLE_SOFT_PARSER")) {
2538 WRIOP_SS_INITIALIZER(priv);
2539 ret = dpaa2_eth_load_wriop_soft_parser(priv, DPNI_SS_INGRESS);
2541 DPAA2_PMD_ERR(" Error(%d) in loading softparser\n",
2546 ret = dpaa2_eth_enable_wriop_soft_parser(priv,
2549 DPAA2_PMD_ERR(" Error(%d) in enabling softparser\n",
2554 RTE_LOG(INFO, PMD, "%s: netdev created\n", eth_dev->data->name);
2557 dpaa2_dev_uninit(eth_dev);
2562 dpaa2_dev_uninit(struct rte_eth_dev *eth_dev)
2564 struct dpaa2_dev_priv *priv = eth_dev->data->dev_private;
2565 struct fsl_mc_io *dpni = (struct fsl_mc_io *)eth_dev->process_private;
2568 PMD_INIT_FUNC_TRACE();
2570 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
2574 DPAA2_PMD_WARN("Already closed or not started");
2578 dpaa2_dev_close(eth_dev);
2580 dpaa2_free_rx_tx_queues(eth_dev);
2582 /* Close the device at underlying layer*/
2583 ret = dpni_close(dpni, CMD_PRI_LOW, priv->token);
2586 "Failure closing dpni device with err code %d",
2590 /* Free the allocated memory for ethernet private data and dpni*/
2592 eth_dev->process_private = NULL;
2595 for (i = 0; i < MAX_TCS; i++) {
2596 if (priv->extract.fs_extract_param[i])
2597 rte_free((void *)(size_t)priv->extract.fs_extract_param[i]);
2600 if (priv->extract.qos_extract_param)
2601 rte_free((void *)(size_t)priv->extract.qos_extract_param);
2603 eth_dev->dev_ops = NULL;
2604 eth_dev->rx_pkt_burst = NULL;
2605 eth_dev->tx_pkt_burst = NULL;
2607 DPAA2_PMD_INFO("%s: netdev deleted", eth_dev->data->name);
2612 rte_dpaa2_probe(struct rte_dpaa2_driver *dpaa2_drv,
2613 struct rte_dpaa2_device *dpaa2_dev)
2615 struct rte_eth_dev *eth_dev;
2616 struct dpaa2_dev_priv *dev_priv;
2619 if ((DPAA2_MBUF_HW_ANNOTATION + DPAA2_FD_PTA_SIZE) >
2620 RTE_PKTMBUF_HEADROOM) {
2622 "RTE_PKTMBUF_HEADROOM(%d) shall be > DPAA2 Annotation req(%d)",
2623 RTE_PKTMBUF_HEADROOM,
2624 DPAA2_MBUF_HW_ANNOTATION + DPAA2_FD_PTA_SIZE);
2629 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
2630 eth_dev = rte_eth_dev_allocate(dpaa2_dev->device.name);
2633 dev_priv = rte_zmalloc("ethdev private structure",
2634 sizeof(struct dpaa2_dev_priv),
2635 RTE_CACHE_LINE_SIZE);
2636 if (dev_priv == NULL) {
2638 "Unable to allocate memory for private data");
2639 rte_eth_dev_release_port(eth_dev);
2642 eth_dev->data->dev_private = (void *)dev_priv;
2643 /* Store a pointer to eth_dev in dev_private */
2644 dev_priv->eth_dev = eth_dev;
2645 dev_priv->tx_conf_en = 0;
2647 eth_dev = rte_eth_dev_attach_secondary(dpaa2_dev->device.name);
2649 DPAA2_PMD_DEBUG("returning enodev");
2654 eth_dev->device = &dpaa2_dev->device;
2656 dpaa2_dev->eth_dev = eth_dev;
2657 eth_dev->data->rx_mbuf_alloc_failed = 0;
2659 if (dpaa2_drv->drv_flags & RTE_DPAA2_DRV_INTR_LSC)
2660 eth_dev->data->dev_flags |= RTE_ETH_DEV_INTR_LSC;
2662 /* Invoke PMD device initialization function */
2663 diag = dpaa2_dev_init(eth_dev);
2665 rte_eth_dev_probing_finish(eth_dev);
2669 rte_eth_dev_release_port(eth_dev);
2674 rte_dpaa2_remove(struct rte_dpaa2_device *dpaa2_dev)
2676 struct rte_eth_dev *eth_dev;
2678 eth_dev = dpaa2_dev->eth_dev;
2679 dpaa2_dev_uninit(eth_dev);
2681 rte_eth_dev_release_port(eth_dev);
2686 static struct rte_dpaa2_driver rte_dpaa2_pmd = {
2687 .drv_flags = RTE_DPAA2_DRV_INTR_LSC | RTE_DPAA2_DRV_IOVA_AS_VA,
2688 .drv_type = DPAA2_ETH,
2689 .probe = rte_dpaa2_probe,
2690 .remove = rte_dpaa2_remove,
2693 RTE_PMD_REGISTER_DPAA2(net_dpaa2, rte_dpaa2_pmd);
2694 RTE_PMD_REGISTER_PARAM_STRING(net_dpaa2,
2695 DRIVER_LOOPBACK_MODE "=<int> "
2696 DRIVER_NO_PREFETCH_MODE "=<int>");
2697 RTE_INIT(dpaa2_pmd_init_log)
2699 dpaa2_logtype_pmd = rte_log_register("pmd.net.dpaa2");
2700 if (dpaa2_logtype_pmd >= 0)
2701 rte_log_set_level(dpaa2_logtype_pmd, RTE_LOG_NOTICE);