4 * Copyright (c) 2016 Freescale Semiconductor, Inc. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Freescale Semiconductor, Inc nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 #include <rte_ethdev.h>
39 #include <rte_malloc.h>
40 #include <rte_memcpy.h>
41 #include <rte_string_fns.h>
42 #include <rte_cycles.h>
43 #include <rte_kvargs.h>
45 #include <rte_fslmc.h>
47 #include <fslmc_logs.h>
48 #include <fslmc_vfio.h>
49 #include <dpaa2_hw_pvt.h>
50 #include <dpaa2_hw_mempool.h>
51 #include <dpaa2_hw_dpio.h>
52 #include <mc/fsl_dpmng.h>
53 #include "dpaa2_ethdev.h"
55 static struct rte_dpaa2_driver rte_dpaa2_pmd;
56 static int dpaa2_dev_uninit(struct rte_eth_dev *eth_dev);
57 static int dpaa2_dev_set_link_up(struct rte_eth_dev *dev);
58 static int dpaa2_dev_set_link_down(struct rte_eth_dev *dev);
59 static int dpaa2_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
62 * Atomically reads the link status information from global
63 * structure rte_eth_dev.
66 * - Pointer to the structure rte_eth_dev to read from.
67 * - Pointer to the buffer to be saved with the link status.
71 * - On failure, negative value.
74 dpaa2_dev_atomic_read_link_status(struct rte_eth_dev *dev,
75 struct rte_eth_link *link)
77 struct rte_eth_link *dst = link;
78 struct rte_eth_link *src = &dev->data->dev_link;
80 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
81 *(uint64_t *)src) == 0)
88 * Atomically writes the link status information into global
89 * structure rte_eth_dev.
92 * - Pointer to the structure rte_eth_dev to read from.
93 * - Pointer to the buffer to be saved with the link status.
97 * - On failure, negative value.
100 dpaa2_dev_atomic_write_link_status(struct rte_eth_dev *dev,
101 struct rte_eth_link *link)
103 struct rte_eth_link *dst = &dev->data->dev_link;
104 struct rte_eth_link *src = link;
106 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
107 *(uint64_t *)src) == 0)
114 dpaa2_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
117 struct dpaa2_dev_priv *priv = dev->data->dev_private;
118 struct fsl_mc_io *dpni = priv->hw;
120 PMD_INIT_FUNC_TRACE();
123 RTE_LOG(ERR, PMD, "dpni is NULL\n");
128 ret = dpni_add_vlan_id(dpni, CMD_PRI_LOW,
129 priv->token, vlan_id);
131 ret = dpni_remove_vlan_id(dpni, CMD_PRI_LOW,
132 priv->token, vlan_id);
135 PMD_DRV_LOG(ERR, "ret = %d Unable to add/rem vlan %d hwid =%d",
136 ret, vlan_id, priv->hw_id);
142 dpaa2_vlan_offload_set(struct rte_eth_dev *dev, int mask)
144 struct dpaa2_dev_priv *priv = dev->data->dev_private;
145 struct fsl_mc_io *dpni = priv->hw;
148 PMD_INIT_FUNC_TRACE();
150 if (mask & ETH_VLAN_FILTER_MASK) {
151 if (dev->data->dev_conf.rxmode.hw_vlan_filter)
152 ret = dpni_enable_vlan_filter(dpni, CMD_PRI_LOW,
155 ret = dpni_enable_vlan_filter(dpni, CMD_PRI_LOW,
158 RTE_LOG(ERR, PMD, "Unable to set vlan filter = %d\n",
164 dpaa2_fw_version_get(struct rte_eth_dev *dev,
169 struct dpaa2_dev_priv *priv = dev->data->dev_private;
170 struct fsl_mc_io *dpni = priv->hw;
171 struct mc_soc_version mc_plat_info = {0};
172 struct mc_version mc_ver_info = {0};
174 PMD_INIT_FUNC_TRACE();
176 if (mc_get_soc_version(dpni, CMD_PRI_LOW, &mc_plat_info))
177 RTE_LOG(WARNING, PMD, "\tmc_get_soc_version failed\n");
179 if (mc_get_version(dpni, CMD_PRI_LOW, &mc_ver_info))
180 RTE_LOG(WARNING, PMD, "\tmc_get_version failed\n");
182 ret = snprintf(fw_version, fw_size,
187 mc_ver_info.revision);
189 ret += 1; /* add the size of '\0' */
190 if (fw_size < (uint32_t)ret)
197 dpaa2_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
199 struct dpaa2_dev_priv *priv = dev->data->dev_private;
201 PMD_INIT_FUNC_TRACE();
203 dev_info->if_index = priv->hw_id;
205 dev_info->max_mac_addrs = priv->max_mac_filters;
206 dev_info->max_rx_pktlen = DPAA2_MAX_RX_PKT_LEN;
207 dev_info->min_rx_bufsize = DPAA2_MIN_RX_BUF_SIZE;
208 dev_info->max_rx_queues = (uint16_t)priv->nb_rx_queues;
209 dev_info->max_tx_queues = (uint16_t)priv->nb_tx_queues;
210 dev_info->rx_offload_capa =
211 DEV_RX_OFFLOAD_IPV4_CKSUM |
212 DEV_RX_OFFLOAD_UDP_CKSUM |
213 DEV_RX_OFFLOAD_TCP_CKSUM |
214 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM;
215 dev_info->tx_offload_capa =
216 DEV_TX_OFFLOAD_IPV4_CKSUM |
217 DEV_TX_OFFLOAD_UDP_CKSUM |
218 DEV_TX_OFFLOAD_TCP_CKSUM |
219 DEV_TX_OFFLOAD_SCTP_CKSUM |
220 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM;
221 dev_info->speed_capa = ETH_LINK_SPEED_1G |
222 ETH_LINK_SPEED_2_5G |
227 dpaa2_alloc_rx_tx_queues(struct rte_eth_dev *dev)
229 struct dpaa2_dev_priv *priv = dev->data->dev_private;
232 struct dpaa2_queue *mc_q, *mcq;
235 struct dpaa2_queue *dpaa2_q;
237 PMD_INIT_FUNC_TRACE();
239 tot_queues = priv->nb_rx_queues + priv->nb_tx_queues;
240 mc_q = rte_malloc(NULL, sizeof(struct dpaa2_queue) * tot_queues,
241 RTE_CACHE_LINE_SIZE);
243 PMD_INIT_LOG(ERR, "malloc failed for rx/tx queues\n");
247 for (i = 0; i < priv->nb_rx_queues; i++) {
249 priv->rx_vq[i] = mc_q++;
250 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[i];
251 dpaa2_q->q_storage = rte_malloc("dq_storage",
252 sizeof(struct queue_storage_info_t),
253 RTE_CACHE_LINE_SIZE);
254 if (!dpaa2_q->q_storage)
257 memset(dpaa2_q->q_storage, 0,
258 sizeof(struct queue_storage_info_t));
259 if (dpaa2_alloc_dq_storage(dpaa2_q->q_storage))
263 for (i = 0; i < priv->nb_tx_queues; i++) {
265 mc_q->flow_id = 0xffff;
266 priv->tx_vq[i] = mc_q++;
267 dpaa2_q = (struct dpaa2_queue *)priv->tx_vq[i];
268 dpaa2_q->cscn = rte_malloc(NULL,
269 sizeof(struct qbman_result), 16);
275 for (dist_idx = 0; dist_idx < priv->nb_rx_queues; dist_idx++) {
276 mcq = (struct dpaa2_queue *)priv->rx_vq[vq_id];
277 mcq->tc_index = DPAA2_DEF_TC;
278 mcq->flow_id = dist_idx;
286 dpaa2_q = (struct dpaa2_queue *)priv->tx_vq[i];
287 rte_free(dpaa2_q->cscn);
288 priv->tx_vq[i--] = NULL;
290 i = priv->nb_rx_queues;
293 mc_q = priv->rx_vq[0];
295 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[i];
296 dpaa2_free_dq_storage(dpaa2_q->q_storage);
297 rte_free(dpaa2_q->q_storage);
298 priv->rx_vq[i--] = NULL;
305 dpaa2_eth_dev_configure(struct rte_eth_dev *dev)
307 struct rte_eth_dev_data *data = dev->data;
308 struct rte_eth_conf *eth_conf = &data->dev_conf;
311 PMD_INIT_FUNC_TRACE();
313 if (eth_conf->rxmode.jumbo_frame == 1) {
314 if (eth_conf->rxmode.max_rx_pkt_len <= DPAA2_MAX_RX_PKT_LEN) {
315 ret = dpaa2_dev_mtu_set(dev,
316 eth_conf->rxmode.max_rx_pkt_len);
319 "unable to set mtu. check config\n");
327 /* Check for correct configuration */
328 if (eth_conf->rxmode.mq_mode != ETH_MQ_RX_RSS &&
329 data->nb_rx_queues > 1) {
330 PMD_INIT_LOG(ERR, "Distribution is not enabled, "
331 "but Rx queues more than 1\n");
335 if (eth_conf->rxmode.mq_mode == ETH_MQ_RX_RSS) {
336 /* Return in case number of Rx queues is 1 */
337 if (data->nb_rx_queues == 1)
339 ret = dpaa2_setup_flow_dist(dev,
340 eth_conf->rx_adv_conf.rss_conf.rss_hf);
342 PMD_INIT_LOG(ERR, "unable to set flow distribution."
343 "please check queue config\n");
350 /* Function to setup RX flow information. It contains traffic class ID,
351 * flow ID, destination configuration etc.
354 dpaa2_dev_rx_queue_setup(struct rte_eth_dev *dev,
355 uint16_t rx_queue_id,
356 uint16_t nb_rx_desc __rte_unused,
357 unsigned int socket_id __rte_unused,
358 const struct rte_eth_rxconf *rx_conf __rte_unused,
359 struct rte_mempool *mb_pool)
361 struct dpaa2_dev_priv *priv = dev->data->dev_private;
362 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
363 struct mc_soc_version mc_plat_info = {0};
364 struct dpaa2_queue *dpaa2_q;
365 struct dpni_queue cfg;
371 PMD_INIT_FUNC_TRACE();
373 PMD_INIT_LOG(DEBUG, "dev =%p, queue =%d, pool = %p, conf =%p",
374 dev, rx_queue_id, mb_pool, rx_conf);
376 if (!priv->bp_list || priv->bp_list->mp != mb_pool) {
377 bpid = mempool_to_bpid(mb_pool);
378 ret = dpaa2_attach_bp_list(priv,
379 rte_dpaa2_bpid_info[bpid].bp_list);
383 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[rx_queue_id];
384 dpaa2_q->mb_pool = mb_pool; /**< mbuf pool to populate RX ring. */
386 /*Get the flow id from given VQ id*/
387 flow_id = rx_queue_id % priv->nb_rx_queues;
388 memset(&cfg, 0, sizeof(struct dpni_queue));
390 options = options | DPNI_QUEUE_OPT_USER_CTX;
391 cfg.user_context = (uint64_t)(dpaa2_q);
393 /*if ls2088 or rev2 device, enable the stashing */
395 if (mc_get_soc_version(dpni, CMD_PRI_LOW, &mc_plat_info))
396 PMD_INIT_LOG(ERR, "\tmc_get_soc_version failed\n");
398 if ((mc_plat_info.svr & 0xffff0000) != SVR_LS2080A) {
399 options |= DPNI_QUEUE_OPT_FLC;
400 cfg.flc.stash_control = true;
401 cfg.flc.value &= 0xFFFFFFFFFFFFFFC0;
402 /* 00 00 00 - last 6 bit represent annotation, context stashing,
403 * data stashing setting 01 01 00 (0x14) to enable
404 * 1 line data, 1 line annotation
406 cfg.flc.value |= 0x14;
408 ret = dpni_set_queue(dpni, CMD_PRI_LOW, priv->token, DPNI_QUEUE_RX,
409 dpaa2_q->tc_index, flow_id, options, &cfg);
411 PMD_INIT_LOG(ERR, "Error in setting the rx flow: = %d\n", ret);
415 if (!(priv->flags & DPAA2_RX_TAILDROP_OFF)) {
416 struct dpni_taildrop taildrop;
419 /*enabling per rx queue congestion control */
420 taildrop.threshold = CONG_THRESHOLD_RX_Q;
421 taildrop.units = DPNI_CONGESTION_UNIT_BYTES;
422 PMD_INIT_LOG(DEBUG, "Enabling Early Drop on queue = %d",
424 ret = dpni_set_taildrop(dpni, CMD_PRI_LOW, priv->token,
425 DPNI_CP_QUEUE, DPNI_QUEUE_RX,
426 dpaa2_q->tc_index, flow_id, &taildrop);
428 PMD_INIT_LOG(ERR, "Error in setting the rx flow"
429 " err : = %d\n", ret);
434 dev->data->rx_queues[rx_queue_id] = dpaa2_q;
439 dpaa2_dev_tx_queue_setup(struct rte_eth_dev *dev,
440 uint16_t tx_queue_id,
441 uint16_t nb_tx_desc __rte_unused,
442 unsigned int socket_id __rte_unused,
443 const struct rte_eth_txconf *tx_conf __rte_unused)
445 struct dpaa2_dev_priv *priv = dev->data->dev_private;
446 struct dpaa2_queue *dpaa2_q = (struct dpaa2_queue *)
447 priv->tx_vq[tx_queue_id];
448 struct fsl_mc_io *dpni = priv->hw;
449 struct dpni_queue tx_conf_cfg;
450 struct dpni_queue tx_flow_cfg;
451 uint8_t options = 0, flow_id;
455 PMD_INIT_FUNC_TRACE();
457 /* Return if queue already configured */
458 if (dpaa2_q->flow_id != 0xffff)
461 memset(&tx_conf_cfg, 0, sizeof(struct dpni_queue));
462 memset(&tx_flow_cfg, 0, sizeof(struct dpni_queue));
467 ret = dpni_set_queue(dpni, CMD_PRI_LOW, priv->token, DPNI_QUEUE_TX,
468 tc_id, flow_id, options, &tx_flow_cfg);
470 PMD_INIT_LOG(ERR, "Error in setting the tx flow: "
471 "tc_id=%d, flow =%d ErrorCode = %x\n",
472 tc_id, flow_id, -ret);
476 dpaa2_q->flow_id = flow_id;
478 if (tx_queue_id == 0) {
479 /*Set tx-conf and error configuration*/
480 ret = dpni_set_tx_confirmation_mode(dpni, CMD_PRI_LOW,
484 PMD_INIT_LOG(ERR, "Error in set tx conf mode settings"
485 " ErrorCode = %x", ret);
489 dpaa2_q->tc_index = tc_id;
491 if (!(priv->flags & DPAA2_TX_CGR_OFF)) {
492 struct dpni_congestion_notification_cfg cong_notif_cfg;
494 cong_notif_cfg.units = DPNI_CONGESTION_UNIT_FRAMES;
495 cong_notif_cfg.threshold_entry = CONG_ENTER_TX_THRESHOLD;
496 /* Notify that the queue is not congested when the data in
497 * the queue is below this thershold.
499 cong_notif_cfg.threshold_exit = CONG_EXIT_TX_THRESHOLD;
500 cong_notif_cfg.message_ctx = 0;
501 cong_notif_cfg.message_iova = (uint64_t)dpaa2_q->cscn;
502 cong_notif_cfg.dest_cfg.dest_type = DPNI_DEST_NONE;
503 cong_notif_cfg.notification_mode =
504 DPNI_CONG_OPT_WRITE_MEM_ON_ENTER |
505 DPNI_CONG_OPT_WRITE_MEM_ON_EXIT |
506 DPNI_CONG_OPT_COHERENT_WRITE;
508 ret = dpni_set_congestion_notification(dpni, CMD_PRI_LOW,
515 "Error in setting tx congestion notification: = %d",
520 dev->data->tx_queues[tx_queue_id] = dpaa2_q;
525 dpaa2_dev_rx_queue_release(void *q __rte_unused)
527 PMD_INIT_FUNC_TRACE();
531 dpaa2_dev_tx_queue_release(void *q __rte_unused)
533 PMD_INIT_FUNC_TRACE();
536 static const uint32_t *
537 dpaa2_supported_ptypes_get(struct rte_eth_dev *dev)
539 static const uint32_t ptypes[] = {
540 /*todo -= add more types */
543 RTE_PTYPE_L3_IPV4_EXT,
545 RTE_PTYPE_L3_IPV6_EXT,
553 if (dev->rx_pkt_burst == dpaa2_dev_prefetch_rx)
559 dpaa2_dev_start(struct rte_eth_dev *dev)
561 struct rte_eth_dev_data *data = dev->data;
562 struct dpaa2_dev_priv *priv = data->dev_private;
563 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
564 struct dpni_queue cfg;
565 struct dpni_error_cfg err_cfg;
567 struct dpni_queue_id qid;
568 struct dpaa2_queue *dpaa2_q;
571 PMD_INIT_FUNC_TRACE();
573 ret = dpni_enable(dpni, CMD_PRI_LOW, priv->token);
575 PMD_INIT_LOG(ERR, "Failure %d in enabling dpni %d device\n",
580 /* Power up the phy. Needed to make the link go Up */
581 dpaa2_dev_set_link_up(dev);
583 ret = dpni_get_qdid(dpni, CMD_PRI_LOW, priv->token,
584 DPNI_QUEUE_TX, &qdid);
586 PMD_INIT_LOG(ERR, "Error to get qdid:ErrorCode = %d\n", ret);
591 for (i = 0; i < data->nb_rx_queues; i++) {
592 dpaa2_q = (struct dpaa2_queue *)data->rx_queues[i];
593 ret = dpni_get_queue(dpni, CMD_PRI_LOW, priv->token,
594 DPNI_QUEUE_RX, dpaa2_q->tc_index,
595 dpaa2_q->flow_id, &cfg, &qid);
597 PMD_INIT_LOG(ERR, "Error to get flow "
598 "information Error code = %d\n", ret);
601 dpaa2_q->fqid = qid.fqid;
604 ret = dpni_set_offload(dpni, CMD_PRI_LOW, priv->token,
605 DPNI_OFF_RX_L3_CSUM, true);
607 PMD_INIT_LOG(ERR, "Error to set RX l3 csum:Error = %d\n", ret);
611 ret = dpni_set_offload(dpni, CMD_PRI_LOW, priv->token,
612 DPNI_OFF_RX_L4_CSUM, true);
614 PMD_INIT_LOG(ERR, "Error to get RX l4 csum:Error = %d\n", ret);
618 ret = dpni_set_offload(dpni, CMD_PRI_LOW, priv->token,
619 DPNI_OFF_TX_L3_CSUM, true);
621 PMD_INIT_LOG(ERR, "Error to set TX l3 csum:Error = %d\n", ret);
625 ret = dpni_set_offload(dpni, CMD_PRI_LOW, priv->token,
626 DPNI_OFF_TX_L4_CSUM, true);
628 PMD_INIT_LOG(ERR, "Error to get TX l4 csum:Error = %d\n", ret);
632 /*checksum errors, send them to normal path and set it in annotation */
633 err_cfg.errors = DPNI_ERROR_L3CE | DPNI_ERROR_L4CE;
635 err_cfg.error_action = DPNI_ERROR_ACTION_CONTINUE;
636 err_cfg.set_frame_annotation = true;
638 ret = dpni_set_errors_behavior(dpni, CMD_PRI_LOW,
639 priv->token, &err_cfg);
641 PMD_INIT_LOG(ERR, "Error to dpni_set_errors_behavior:"
645 /* VLAN Offload Settings */
646 if (priv->max_vlan_filters)
647 dpaa2_vlan_offload_set(dev, ETH_VLAN_FILTER_MASK);
653 * This routine disables all traffic on the adapter by issuing a
654 * global reset on the MAC.
657 dpaa2_dev_stop(struct rte_eth_dev *dev)
659 struct dpaa2_dev_priv *priv = dev->data->dev_private;
660 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
662 struct rte_eth_link link;
664 PMD_INIT_FUNC_TRACE();
666 dpaa2_dev_set_link_down(dev);
668 ret = dpni_disable(dpni, CMD_PRI_LOW, priv->token);
670 PMD_INIT_LOG(ERR, "Failure (ret %d) in disabling dpni %d dev\n",
675 /* clear the recorded link status */
676 memset(&link, 0, sizeof(link));
677 dpaa2_dev_atomic_write_link_status(dev, &link);
681 dpaa2_dev_close(struct rte_eth_dev *dev)
683 struct rte_eth_dev_data *data = dev->data;
684 struct dpaa2_dev_priv *priv = dev->data->dev_private;
685 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
687 struct rte_eth_link link;
688 struct dpaa2_queue *dpaa2_q;
690 PMD_INIT_FUNC_TRACE();
692 for (i = 0; i < data->nb_tx_queues; i++) {
693 dpaa2_q = (struct dpaa2_queue *)data->tx_queues[i];
694 if (!dpaa2_q->cscn) {
695 rte_free(dpaa2_q->cscn);
696 dpaa2_q->cscn = NULL;
700 /* Clean the device first */
701 ret = dpni_reset(dpni, CMD_PRI_LOW, priv->token);
703 PMD_INIT_LOG(ERR, "Failure cleaning dpni device with"
704 " error code %d\n", ret);
708 memset(&link, 0, sizeof(link));
709 dpaa2_dev_atomic_write_link_status(dev, &link);
713 dpaa2_dev_promiscuous_enable(
714 struct rte_eth_dev *dev)
717 struct dpaa2_dev_priv *priv = dev->data->dev_private;
718 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
720 PMD_INIT_FUNC_TRACE();
723 RTE_LOG(ERR, PMD, "dpni is NULL\n");
727 ret = dpni_set_unicast_promisc(dpni, CMD_PRI_LOW, priv->token, true);
729 RTE_LOG(ERR, PMD, "Unable to enable U promisc mode %d\n", ret);
731 ret = dpni_set_multicast_promisc(dpni, CMD_PRI_LOW, priv->token, true);
733 RTE_LOG(ERR, PMD, "Unable to enable M promisc mode %d\n", ret);
737 dpaa2_dev_promiscuous_disable(
738 struct rte_eth_dev *dev)
741 struct dpaa2_dev_priv *priv = dev->data->dev_private;
742 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
744 PMD_INIT_FUNC_TRACE();
747 RTE_LOG(ERR, PMD, "dpni is NULL\n");
751 ret = dpni_set_unicast_promisc(dpni, CMD_PRI_LOW, priv->token, false);
753 RTE_LOG(ERR, PMD, "Unable to disable U promisc mode %d\n", ret);
755 if (dev->data->all_multicast == 0) {
756 ret = dpni_set_multicast_promisc(dpni, CMD_PRI_LOW,
760 "Unable to disable M promisc mode %d\n",
766 dpaa2_dev_allmulticast_enable(
767 struct rte_eth_dev *dev)
770 struct dpaa2_dev_priv *priv = dev->data->dev_private;
771 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
773 PMD_INIT_FUNC_TRACE();
776 RTE_LOG(ERR, PMD, "dpni is NULL\n");
780 ret = dpni_set_multicast_promisc(dpni, CMD_PRI_LOW, priv->token, true);
782 RTE_LOG(ERR, PMD, "Unable to enable multicast mode %d\n", ret);
786 dpaa2_dev_allmulticast_disable(struct rte_eth_dev *dev)
789 struct dpaa2_dev_priv *priv = dev->data->dev_private;
790 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
792 PMD_INIT_FUNC_TRACE();
795 RTE_LOG(ERR, PMD, "dpni is NULL\n");
799 /* must remain on for all promiscuous */
800 if (dev->data->promiscuous == 1)
803 ret = dpni_set_multicast_promisc(dpni, CMD_PRI_LOW, priv->token, false);
805 RTE_LOG(ERR, PMD, "Unable to disable multicast mode %d\n", ret);
809 dpaa2_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
812 struct dpaa2_dev_priv *priv = dev->data->dev_private;
813 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
814 uint32_t frame_size = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
816 PMD_INIT_FUNC_TRACE();
819 RTE_LOG(ERR, PMD, "dpni is NULL\n");
823 /* check that mtu is within the allowed range */
824 if ((mtu < ETHER_MIN_MTU) || (frame_size > DPAA2_MAX_RX_PKT_LEN))
827 if (frame_size > ETHER_MAX_LEN)
828 dev->data->dev_conf.rxmode.jumbo_frame = 1;
830 dev->data->dev_conf.rxmode.jumbo_frame = 0;
832 /* Set the Max Rx frame length as 'mtu' +
833 * Maximum Ethernet header length
835 ret = dpni_set_max_frame_length(dpni, CMD_PRI_LOW, priv->token,
836 mtu + ETH_VLAN_HLEN);
838 PMD_DRV_LOG(ERR, "setting the max frame length failed");
841 PMD_DRV_LOG(INFO, "MTU is configured %d for the device\n", mtu);
846 dpaa2_dev_add_mac_addr(struct rte_eth_dev *dev,
847 struct ether_addr *addr,
848 __rte_unused uint32_t index,
849 __rte_unused uint32_t pool)
852 struct dpaa2_dev_priv *priv = dev->data->dev_private;
853 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
855 PMD_INIT_FUNC_TRACE();
858 RTE_LOG(ERR, PMD, "dpni is NULL\n");
862 ret = dpni_add_mac_addr(dpni, CMD_PRI_LOW,
863 priv->token, addr->addr_bytes);
866 "error: Adding the MAC ADDR failed: err = %d\n", ret);
871 dpaa2_dev_remove_mac_addr(struct rte_eth_dev *dev,
875 struct dpaa2_dev_priv *priv = dev->data->dev_private;
876 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
877 struct rte_eth_dev_data *data = dev->data;
878 struct ether_addr *macaddr;
880 PMD_INIT_FUNC_TRACE();
882 macaddr = &data->mac_addrs[index];
885 RTE_LOG(ERR, PMD, "dpni is NULL\n");
889 ret = dpni_remove_mac_addr(dpni, CMD_PRI_LOW,
890 priv->token, macaddr->addr_bytes);
893 "error: Removing the MAC ADDR failed: err = %d\n", ret);
897 dpaa2_dev_set_mac_addr(struct rte_eth_dev *dev,
898 struct ether_addr *addr)
901 struct dpaa2_dev_priv *priv = dev->data->dev_private;
902 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
904 PMD_INIT_FUNC_TRACE();
907 RTE_LOG(ERR, PMD, "dpni is NULL\n");
911 ret = dpni_set_primary_mac_addr(dpni, CMD_PRI_LOW,
912 priv->token, addr->addr_bytes);
916 "error: Setting the MAC ADDR failed %d\n", ret);
919 void dpaa2_dev_stats_get(struct rte_eth_dev *dev,
920 struct rte_eth_stats *stats)
922 struct dpaa2_dev_priv *priv = dev->data->dev_private;
923 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
925 uint8_t page0 = 0, page1 = 1, page2 = 2;
926 union dpni_statistics value;
928 memset(&value, 0, sizeof(union dpni_statistics));
930 PMD_INIT_FUNC_TRACE();
933 RTE_LOG(ERR, PMD, "dpni is NULL\n");
938 RTE_LOG(ERR, PMD, "stats is NULL\n");
942 /*Get Counters from page_0*/
943 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
948 stats->ipackets = value.page_0.ingress_all_frames;
949 stats->ibytes = value.page_0.ingress_all_bytes;
951 /*Get Counters from page_1*/
952 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
957 stats->opackets = value.page_1.egress_all_frames;
958 stats->obytes = value.page_1.egress_all_bytes;
960 /*Get Counters from page_2*/
961 retcode = dpni_get_statistics(dpni, CMD_PRI_LOW, priv->token,
966 /* Ingress drop frame count due to configured rules */
967 stats->ierrors = value.page_2.ingress_filtered_frames;
968 /* Ingress drop frame count due to error */
969 stats->ierrors += value.page_2.ingress_discarded_frames;
971 stats->oerrors = value.page_2.egress_discarded_frames;
972 stats->imissed = value.page_2.ingress_nobuffer_discards;
977 RTE_LOG(ERR, PMD, "Operation not completed:Error Code = %d\n", retcode);
982 void dpaa2_dev_stats_reset(struct rte_eth_dev *dev)
984 struct dpaa2_dev_priv *priv = dev->data->dev_private;
985 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
988 PMD_INIT_FUNC_TRACE();
991 RTE_LOG(ERR, PMD, "dpni is NULL\n");
995 retcode = dpni_reset_statistics(dpni, CMD_PRI_LOW, priv->token);
1002 RTE_LOG(ERR, PMD, "Operation not completed:Error Code = %d\n", retcode);
1006 /* return 0 means link status changed, -1 means not changed */
1008 dpaa2_dev_link_update(struct rte_eth_dev *dev,
1009 int wait_to_complete __rte_unused)
1012 struct dpaa2_dev_priv *priv = dev->data->dev_private;
1013 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
1014 struct rte_eth_link link, old;
1015 struct dpni_link_state state = {0};
1017 PMD_INIT_FUNC_TRACE();
1020 RTE_LOG(ERR, PMD, "dpni is NULL\n");
1023 memset(&old, 0, sizeof(old));
1024 dpaa2_dev_atomic_read_link_status(dev, &old);
1026 ret = dpni_get_link_state(dpni, CMD_PRI_LOW, priv->token, &state);
1028 RTE_LOG(ERR, PMD, "error: dpni_get_link_state %d\n", ret);
1032 if ((old.link_status == state.up) && (old.link_speed == state.rate)) {
1033 RTE_LOG(DEBUG, PMD, "No change in status\n");
1037 memset(&link, 0, sizeof(struct rte_eth_link));
1038 link.link_status = state.up;
1039 link.link_speed = state.rate;
1041 if (state.options & DPNI_LINK_OPT_HALF_DUPLEX)
1042 link.link_duplex = ETH_LINK_HALF_DUPLEX;
1044 link.link_duplex = ETH_LINK_FULL_DUPLEX;
1046 dpaa2_dev_atomic_write_link_status(dev, &link);
1048 if (link.link_status)
1049 PMD_DRV_LOG(INFO, "Port %d Link is Up\n", dev->data->port_id);
1051 PMD_DRV_LOG(INFO, "Port %d Link is Down\n", dev->data->port_id);
1056 * Toggle the DPNI to enable, if not already enabled.
1057 * This is not strictly PHY up/down - it is more of logical toggling.
1060 dpaa2_dev_set_link_up(struct rte_eth_dev *dev)
1063 struct dpaa2_dev_priv *priv;
1064 struct fsl_mc_io *dpni;
1067 PMD_INIT_FUNC_TRACE();
1069 priv = dev->data->dev_private;
1070 dpni = (struct fsl_mc_io *)priv->hw;
1073 RTE_LOG(ERR, PMD, "DPNI is NULL\n");
1077 /* Check if DPNI is currently enabled */
1078 ret = dpni_is_enabled(dpni, CMD_PRI_LOW, priv->token, &en);
1080 /* Unable to obtain dpni status; Not continuing */
1081 PMD_DRV_LOG(ERR, "Interface Link UP failed (%d)", ret);
1085 /* Enable link if not already enabled */
1087 ret = dpni_enable(dpni, CMD_PRI_LOW, priv->token);
1089 PMD_DRV_LOG(ERR, "Interface Link UP failed (%d)", ret);
1093 /* changing tx burst function to start enqueues */
1094 dev->tx_pkt_burst = dpaa2_dev_tx;
1095 dev->data->dev_link.link_status = 1;
1097 PMD_DRV_LOG(INFO, "Port %d Link UP successful", dev->data->port_id);
1102 * Toggle the DPNI to disable, if not already disabled.
1103 * This is not strictly PHY up/down - it is more of logical toggling.
1106 dpaa2_dev_set_link_down(struct rte_eth_dev *dev)
1109 struct dpaa2_dev_priv *priv;
1110 struct fsl_mc_io *dpni;
1111 int dpni_enabled = 0;
1114 PMD_INIT_FUNC_TRACE();
1116 priv = dev->data->dev_private;
1117 dpni = (struct fsl_mc_io *)priv->hw;
1120 RTE_LOG(ERR, PMD, "Device has not yet been configured\n");
1124 /*changing tx burst function to avoid any more enqueues */
1125 dev->tx_pkt_burst = dummy_dev_tx;
1127 /* Loop while dpni_disable() attempts to drain the egress FQs
1128 * and confirm them back to us.
1131 ret = dpni_disable(dpni, 0, priv->token);
1133 PMD_DRV_LOG(ERR, "dpni disable failed (%d)", ret);
1136 ret = dpni_is_enabled(dpni, 0, priv->token, &dpni_enabled);
1138 PMD_DRV_LOG(ERR, "dpni_is_enabled failed (%d)", ret);
1142 /* Allow the MC some slack */
1143 rte_delay_us(100 * 1000);
1144 } while (dpni_enabled && --retries);
1147 PMD_DRV_LOG(WARNING, "Retry count exceeded disabling DPNI\n");
1148 /* todo- we may have to manually cleanup queues.
1151 PMD_DRV_LOG(INFO, "Port %d Link DOWN successful",
1152 dev->data->port_id);
1155 dev->data->dev_link.link_status = 0;
1161 dpaa2_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
1164 struct dpaa2_dev_priv *priv;
1165 struct fsl_mc_io *dpni;
1166 struct dpni_link_state state = {0};
1168 PMD_INIT_FUNC_TRACE();
1170 priv = dev->data->dev_private;
1171 dpni = (struct fsl_mc_io *)priv->hw;
1173 if (dpni == NULL || fc_conf == NULL) {
1174 RTE_LOG(ERR, PMD, "device not configured\n");
1178 ret = dpni_get_link_state(dpni, CMD_PRI_LOW, priv->token, &state);
1180 RTE_LOG(ERR, PMD, "error: dpni_get_link_state %d\n", ret);
1184 memset(fc_conf, 0, sizeof(struct rte_eth_fc_conf));
1185 if (state.options & DPNI_LINK_OPT_PAUSE) {
1186 /* DPNI_LINK_OPT_PAUSE set
1187 * if ASYM_PAUSE not set,
1188 * RX Side flow control (handle received Pause frame)
1189 * TX side flow control (send Pause frame)
1190 * if ASYM_PAUSE set,
1191 * RX Side flow control (handle received Pause frame)
1192 * No TX side flow control (send Pause frame disabled)
1194 if (!(state.options & DPNI_LINK_OPT_ASYM_PAUSE))
1195 fc_conf->mode = RTE_FC_FULL;
1197 fc_conf->mode = RTE_FC_RX_PAUSE;
1199 /* DPNI_LINK_OPT_PAUSE not set
1200 * if ASYM_PAUSE set,
1201 * TX side flow control (send Pause frame)
1202 * No RX side flow control (No action on pause frame rx)
1203 * if ASYM_PAUSE not set,
1204 * Flow control disabled
1206 if (state.options & DPNI_LINK_OPT_ASYM_PAUSE)
1207 fc_conf->mode = RTE_FC_TX_PAUSE;
1209 fc_conf->mode = RTE_FC_NONE;
1216 dpaa2_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
1219 struct dpaa2_dev_priv *priv;
1220 struct fsl_mc_io *dpni;
1221 struct dpni_link_state state = {0};
1222 struct dpni_link_cfg cfg = {0};
1224 PMD_INIT_FUNC_TRACE();
1226 priv = dev->data->dev_private;
1227 dpni = (struct fsl_mc_io *)priv->hw;
1230 RTE_LOG(ERR, PMD, "dpni is NULL\n");
1234 /* It is necessary to obtain the current state before setting fc_conf
1235 * as MC would return error in case rate, autoneg or duplex values are
1238 ret = dpni_get_link_state(dpni, CMD_PRI_LOW, priv->token, &state);
1240 RTE_LOG(ERR, PMD, "Unable to get link state (err=%d)\n", ret);
1244 /* Disable link before setting configuration */
1245 dpaa2_dev_set_link_down(dev);
1247 /* Based on fc_conf, update cfg */
1248 cfg.rate = state.rate;
1249 cfg.options = state.options;
1251 /* update cfg with fc_conf */
1252 switch (fc_conf->mode) {
1254 /* Full flow control;
1255 * OPT_PAUSE set, ASYM_PAUSE not set
1257 cfg.options |= DPNI_LINK_OPT_PAUSE;
1258 cfg.options &= ~DPNI_LINK_OPT_ASYM_PAUSE;
1260 case RTE_FC_TX_PAUSE:
1261 /* Enable RX flow control
1262 * OPT_PAUSE not set;
1265 cfg.options |= DPNI_LINK_OPT_ASYM_PAUSE;
1266 cfg.options &= ~DPNI_LINK_OPT_PAUSE;
1268 case RTE_FC_RX_PAUSE:
1269 /* Enable TX Flow control
1273 cfg.options |= DPNI_LINK_OPT_PAUSE;
1274 cfg.options |= DPNI_LINK_OPT_ASYM_PAUSE;
1277 /* Disable Flow control
1279 * ASYM_PAUSE not set
1281 cfg.options &= ~DPNI_LINK_OPT_PAUSE;
1282 cfg.options &= ~DPNI_LINK_OPT_ASYM_PAUSE;
1285 RTE_LOG(ERR, PMD, "Incorrect Flow control flag (%d)\n",
1290 ret = dpni_set_link_cfg(dpni, CMD_PRI_LOW, priv->token, &cfg);
1293 "Unable to set Link configuration (err=%d)\n",
1297 dpaa2_dev_set_link_up(dev);
1302 static struct eth_dev_ops dpaa2_ethdev_ops = {
1303 .dev_configure = dpaa2_eth_dev_configure,
1304 .dev_start = dpaa2_dev_start,
1305 .dev_stop = dpaa2_dev_stop,
1306 .dev_close = dpaa2_dev_close,
1307 .promiscuous_enable = dpaa2_dev_promiscuous_enable,
1308 .promiscuous_disable = dpaa2_dev_promiscuous_disable,
1309 .allmulticast_enable = dpaa2_dev_allmulticast_enable,
1310 .allmulticast_disable = dpaa2_dev_allmulticast_disable,
1311 .dev_set_link_up = dpaa2_dev_set_link_up,
1312 .dev_set_link_down = dpaa2_dev_set_link_down,
1313 .link_update = dpaa2_dev_link_update,
1314 .stats_get = dpaa2_dev_stats_get,
1315 .stats_reset = dpaa2_dev_stats_reset,
1316 .fw_version_get = dpaa2_fw_version_get,
1317 .dev_infos_get = dpaa2_dev_info_get,
1318 .dev_supported_ptypes_get = dpaa2_supported_ptypes_get,
1319 .mtu_set = dpaa2_dev_mtu_set,
1320 .vlan_filter_set = dpaa2_vlan_filter_set,
1321 .vlan_offload_set = dpaa2_vlan_offload_set,
1322 .rx_queue_setup = dpaa2_dev_rx_queue_setup,
1323 .rx_queue_release = dpaa2_dev_rx_queue_release,
1324 .tx_queue_setup = dpaa2_dev_tx_queue_setup,
1325 .tx_queue_release = dpaa2_dev_tx_queue_release,
1326 .flow_ctrl_get = dpaa2_flow_ctrl_get,
1327 .flow_ctrl_set = dpaa2_flow_ctrl_set,
1328 .mac_addr_add = dpaa2_dev_add_mac_addr,
1329 .mac_addr_remove = dpaa2_dev_remove_mac_addr,
1330 .mac_addr_set = dpaa2_dev_set_mac_addr,
1334 dpaa2_dev_init(struct rte_eth_dev *eth_dev)
1336 struct rte_device *dev = eth_dev->device;
1337 struct rte_dpaa2_device *dpaa2_dev;
1338 struct fsl_mc_io *dpni_dev;
1339 struct dpni_attr attr;
1340 struct dpaa2_dev_priv *priv = eth_dev->data->dev_private;
1341 struct dpni_buffer_layout layout;
1344 PMD_INIT_FUNC_TRACE();
1346 /* For secondary processes, the primary has done all the work */
1347 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1350 dpaa2_dev = container_of(dev, struct rte_dpaa2_device, device);
1352 hw_id = dpaa2_dev->object_id;
1354 dpni_dev = rte_malloc(NULL, sizeof(struct fsl_mc_io), 0);
1356 PMD_INIT_LOG(ERR, "malloc failed for dpni device\n");
1360 dpni_dev->regs = rte_mcp_ptr_list[0];
1361 ret = dpni_open(dpni_dev, CMD_PRI_LOW, hw_id, &priv->token);
1364 "Failure in opening dpni@%d with err code %d\n",
1370 /* Clean the device first */
1371 ret = dpni_reset(dpni_dev, CMD_PRI_LOW, priv->token);
1374 "Failure cleaning dpni@%d with err code %d\n",
1379 ret = dpni_get_attributes(dpni_dev, CMD_PRI_LOW, priv->token, &attr);
1382 "Failure in get dpni@%d attribute, err code %d\n",
1387 priv->num_rx_tc = attr.num_rx_tcs;
1389 /* Resetting the "num_rx_queues" to equal number of queues in first TC
1390 * as only one TC is supported on Rx Side. Once Multiple TCs will be
1391 * in use for Rx processing then this will be changed or removed.
1393 priv->nb_rx_queues = attr.num_queues;
1395 /* Using number of TX queues as number of TX TCs */
1396 priv->nb_tx_queues = attr.num_tx_tcs;
1398 PMD_DRV_LOG(DEBUG, "RX-TC= %d, nb_rx_queues= %d, nb_tx_queues=%d",
1399 priv->num_tc, priv->nb_rx_queues, priv->nb_tx_queues);
1401 priv->hw = dpni_dev;
1402 priv->hw_id = hw_id;
1403 priv->options = attr.options;
1404 priv->max_mac_filters = attr.mac_filter_entries;
1405 priv->max_vlan_filters = attr.vlan_filter_entries;
1408 /* Allocate memory for hardware structure for queues */
1409 ret = dpaa2_alloc_rx_tx_queues(eth_dev);
1411 PMD_INIT_LOG(ERR, "dpaa2_alloc_rx_tx_queuesFailed\n");
1415 /* Allocate memory for storing MAC addresses */
1416 eth_dev->data->mac_addrs = rte_zmalloc("dpni",
1417 ETHER_ADDR_LEN * attr.mac_filter_entries, 0);
1418 if (eth_dev->data->mac_addrs == NULL) {
1420 "Failed to allocate %d bytes needed to store MAC addresses",
1421 ETHER_ADDR_LEN * attr.mac_filter_entries);
1426 ret = dpni_get_primary_mac_addr(dpni_dev, CMD_PRI_LOW,
1428 (uint8_t *)(eth_dev->data->mac_addrs[0].addr_bytes));
1430 PMD_INIT_LOG(ERR, "DPNI get mac address failed:Err Code = %d\n",
1435 /* ... tx buffer layout ... */
1436 memset(&layout, 0, sizeof(struct dpni_buffer_layout));
1437 layout.options = DPNI_BUF_LAYOUT_OPT_FRAME_STATUS;
1438 layout.pass_frame_status = 1;
1439 ret = dpni_set_buffer_layout(dpni_dev, CMD_PRI_LOW, priv->token,
1440 DPNI_QUEUE_TX, &layout);
1442 PMD_INIT_LOG(ERR, "Error (%d) in setting tx buffer layout",
1447 /* ... tx-conf and error buffer layout ... */
1448 memset(&layout, 0, sizeof(struct dpni_buffer_layout));
1449 layout.options = DPNI_BUF_LAYOUT_OPT_FRAME_STATUS;
1450 layout.pass_frame_status = 1;
1451 ret = dpni_set_buffer_layout(dpni_dev, CMD_PRI_LOW, priv->token,
1452 DPNI_QUEUE_TX_CONFIRM, &layout);
1454 PMD_INIT_LOG(ERR, "Error (%d) in setting tx-conf buffer layout",
1459 eth_dev->dev_ops = &dpaa2_ethdev_ops;
1461 eth_dev->rx_pkt_burst = dpaa2_dev_prefetch_rx;
1462 eth_dev->tx_pkt_burst = dpaa2_dev_tx;
1463 rte_fslmc_vfio_dmamap();
1467 dpaa2_dev_uninit(eth_dev);
1472 dpaa2_dev_uninit(struct rte_eth_dev *eth_dev)
1474 struct dpaa2_dev_priv *priv = eth_dev->data->dev_private;
1475 struct fsl_mc_io *dpni = (struct fsl_mc_io *)priv->hw;
1477 struct dpaa2_queue *dpaa2_q;
1479 PMD_INIT_FUNC_TRACE();
1481 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1485 PMD_INIT_LOG(WARNING, "Already closed or not started");
1489 dpaa2_dev_close(eth_dev);
1491 if (priv->rx_vq[0]) {
1492 /* cleaning up queue storage */
1493 for (i = 0; i < priv->nb_rx_queues; i++) {
1494 dpaa2_q = (struct dpaa2_queue *)priv->rx_vq[i];
1495 if (dpaa2_q->q_storage)
1496 rte_free(dpaa2_q->q_storage);
1498 /*free the all queue memory */
1499 rte_free(priv->rx_vq[0]);
1500 priv->rx_vq[0] = NULL;
1503 /* free memory for storing MAC addresses */
1504 if (eth_dev->data->mac_addrs) {
1505 rte_free(eth_dev->data->mac_addrs);
1506 eth_dev->data->mac_addrs = NULL;
1509 /* Close the device at underlying layer*/
1510 ret = dpni_close(dpni, CMD_PRI_LOW, priv->token);
1513 "Failure closing dpni device with err code %d\n",
1517 /* Free the allocated memory for ethernet private data and dpni*/
1521 eth_dev->dev_ops = NULL;
1522 eth_dev->rx_pkt_burst = NULL;
1523 eth_dev->tx_pkt_burst = NULL;
1529 rte_dpaa2_probe(struct rte_dpaa2_driver *dpaa2_drv,
1530 struct rte_dpaa2_device *dpaa2_dev)
1532 struct rte_eth_dev *eth_dev;
1535 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
1536 eth_dev = rte_eth_dev_allocate(dpaa2_dev->device.name);
1539 eth_dev->data->dev_private = rte_zmalloc(
1540 "ethdev private structure",
1541 sizeof(struct dpaa2_dev_priv),
1542 RTE_CACHE_LINE_SIZE);
1543 if (eth_dev->data->dev_private == NULL) {
1544 PMD_INIT_LOG(CRIT, "Cannot allocate memzone for"
1545 " private port data\n");
1546 rte_eth_dev_release_port(eth_dev);
1550 eth_dev = rte_eth_dev_attach_secondary(dpaa2_dev->device.name);
1555 eth_dev->device = &dpaa2_dev->device;
1556 eth_dev->device->driver = &dpaa2_drv->driver;
1558 dpaa2_dev->eth_dev = eth_dev;
1559 eth_dev->data->rx_mbuf_alloc_failed = 0;
1561 /* Invoke PMD device initialization function */
1562 diag = dpaa2_dev_init(eth_dev);
1566 if (rte_eal_process_type() == RTE_PROC_PRIMARY)
1567 rte_free(eth_dev->data->dev_private);
1568 rte_eth_dev_release_port(eth_dev);
1573 rte_dpaa2_remove(struct rte_dpaa2_device *dpaa2_dev)
1575 struct rte_eth_dev *eth_dev;
1577 eth_dev = dpaa2_dev->eth_dev;
1578 dpaa2_dev_uninit(eth_dev);
1580 if (rte_eal_process_type() == RTE_PROC_PRIMARY)
1581 rte_free(eth_dev->data->dev_private);
1582 rte_eth_dev_release_port(eth_dev);
1587 static struct rte_dpaa2_driver rte_dpaa2_pmd = {
1588 .drv_type = DPAA2_ETH,
1589 .probe = rte_dpaa2_probe,
1590 .remove = rte_dpaa2_remove,
1593 RTE_PMD_REGISTER_DPAA2(net_dpaa2, rte_dpaa2_pmd);