1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2017 Cavium, Inc
12 #include <rte_alarm.h>
13 #include <rte_branch_prediction.h>
14 #include <rte_bus_vdev.h>
15 #include <rte_cycles.h>
16 #include <rte_debug.h>
17 #include <rte_devargs.h>
19 #include <rte_kvargs.h>
20 #include <rte_malloc.h>
21 #include <rte_mbuf_pool_ops.h>
22 #include <rte_prefetch.h>
24 #include "octeontx_ethdev.h"
25 #include "octeontx_rxtx.h"
26 #include "octeontx_logs.h"
28 struct evdev_priv_data {
29 OFFLOAD_FLAGS; /*Sequence should not be changed */
30 } __rte_cache_aligned;
32 struct octeontx_vdev_init_params {
37 rte_octeontx_pchan_map[OCTEONTX_MAX_BGX_PORTS][OCTEONTX_MAX_LMAC_PER_BGX];
39 enum octeontx_link_speed {
40 OCTEONTX_LINK_SPEED_SGMII,
41 OCTEONTX_LINK_SPEED_XAUI,
42 OCTEONTX_LINK_SPEED_RXAUI,
43 OCTEONTX_LINK_SPEED_10G_R,
44 OCTEONTX_LINK_SPEED_40G_R,
45 OCTEONTX_LINK_SPEED_RESERVE1,
46 OCTEONTX_LINK_SPEED_QSGMII,
47 OCTEONTX_LINK_SPEED_RESERVE2
50 int otx_net_logtype_mbox;
51 int otx_net_logtype_init;
52 int otx_net_logtype_driver;
54 RTE_INIT(otx_net_init_log)
56 otx_net_logtype_mbox = rte_log_register("pmd.net.octeontx.mbox");
57 if (otx_net_logtype_mbox >= 0)
58 rte_log_set_level(otx_net_logtype_mbox, RTE_LOG_NOTICE);
60 otx_net_logtype_init = rte_log_register("pmd.net.octeontx.init");
61 if (otx_net_logtype_init >= 0)
62 rte_log_set_level(otx_net_logtype_init, RTE_LOG_NOTICE);
64 otx_net_logtype_driver = rte_log_register("pmd.net.octeontx.driver");
65 if (otx_net_logtype_driver >= 0)
66 rte_log_set_level(otx_net_logtype_driver, RTE_LOG_NOTICE);
69 /* Parse integer from integer argument */
71 parse_integer_arg(const char *key __rte_unused,
72 const char *value, void *extra_args)
74 int *i = (int *)extra_args;
78 octeontx_log_err("argument has to be positive.");
86 octeontx_parse_vdev_init_params(struct octeontx_vdev_init_params *params,
87 struct rte_vdev_device *dev)
89 struct rte_kvargs *kvlist = NULL;
92 static const char * const octeontx_vdev_valid_params[] = {
93 OCTEONTX_VDEV_NR_PORT_ARG,
97 const char *input_args = rte_vdev_device_args(dev);
103 kvlist = rte_kvargs_parse(input_args,
104 octeontx_vdev_valid_params);
108 ret = rte_kvargs_process(kvlist,
109 OCTEONTX_VDEV_NR_PORT_ARG,
117 rte_kvargs_free(kvlist);
122 octeontx_port_open(struct octeontx_nic *nic)
124 octeontx_mbox_bgx_port_conf_t bgx_port_conf;
125 octeontx_mbox_bgx_port_fifo_cfg_t fifo_cfg;
129 memset(&bgx_port_conf, 0x0, sizeof(bgx_port_conf));
130 PMD_INIT_FUNC_TRACE();
132 res = octeontx_bgx_port_open(nic->port_id, &bgx_port_conf);
134 octeontx_log_err("failed to open port %d", res);
138 nic->node = bgx_port_conf.node;
139 nic->port_ena = bgx_port_conf.enable;
140 nic->base_ichan = bgx_port_conf.base_chan;
141 nic->base_ochan = bgx_port_conf.base_chan;
142 nic->num_ichans = bgx_port_conf.num_chans;
143 nic->num_ochans = bgx_port_conf.num_chans;
144 nic->bgx_mtu = bgx_port_conf.mtu;
145 nic->bpen = bgx_port_conf.bpen;
146 nic->fcs_strip = bgx_port_conf.fcs_strip;
147 nic->bcast_mode = bgx_port_conf.bcast_mode;
148 nic->mcast_mode = bgx_port_conf.mcast_mode;
149 nic->speed = bgx_port_conf.mode;
151 memset(&fifo_cfg, 0x0, sizeof(fifo_cfg));
153 res = octeontx_bgx_port_get_fifo_cfg(nic->port_id, &fifo_cfg);
155 octeontx_log_err("failed to get port %d fifo cfg", res);
159 nic->fc.rx_fifosz = fifo_cfg.rx_fifosz;
161 memcpy(&nic->mac_addr[0], &bgx_port_conf.macaddr[0],
164 octeontx_log_dbg("port opened %d", nic->port_id);
169 octeontx_link_status_print(struct rte_eth_dev *eth_dev,
170 struct rte_eth_link *link)
172 if (link && link->link_status)
173 octeontx_log_info("Port %u: Link Up - speed %u Mbps - %s",
174 (eth_dev->data->port_id),
176 link->link_duplex == ETH_LINK_FULL_DUPLEX ?
177 "full-duplex" : "half-duplex");
179 octeontx_log_info("Port %d: Link Down",
180 (int)(eth_dev->data->port_id));
184 octeontx_link_status_update(struct octeontx_nic *nic,
185 struct rte_eth_link *link)
187 memset(link, 0, sizeof(*link));
189 link->link_status = nic->link_up ? ETH_LINK_UP : ETH_LINK_DOWN;
191 switch (nic->speed) {
192 case OCTEONTX_LINK_SPEED_SGMII:
193 link->link_speed = ETH_SPEED_NUM_1G;
196 case OCTEONTX_LINK_SPEED_XAUI:
197 link->link_speed = ETH_SPEED_NUM_10G;
200 case OCTEONTX_LINK_SPEED_RXAUI:
201 case OCTEONTX_LINK_SPEED_10G_R:
202 link->link_speed = ETH_SPEED_NUM_10G;
204 case OCTEONTX_LINK_SPEED_QSGMII:
205 link->link_speed = ETH_SPEED_NUM_5G;
207 case OCTEONTX_LINK_SPEED_40G_R:
208 link->link_speed = ETH_SPEED_NUM_40G;
211 case OCTEONTX_LINK_SPEED_RESERVE1:
212 case OCTEONTX_LINK_SPEED_RESERVE2:
214 link->link_speed = ETH_SPEED_NUM_NONE;
215 octeontx_log_err("incorrect link speed %d", nic->speed);
219 link->link_duplex = ETH_LINK_FULL_DUPLEX;
220 link->link_autoneg = ETH_LINK_AUTONEG;
224 octeontx_link_status_poll(void *arg)
226 struct octeontx_nic *nic = arg;
227 struct rte_eth_link link;
228 struct rte_eth_dev *dev;
231 PMD_INIT_FUNC_TRACE();
235 res = octeontx_bgx_port_link_status(nic->port_id);
237 octeontx_log_err("Failed to get port %d link status",
240 if (nic->link_up != (uint8_t)res) {
241 nic->link_up = (uint8_t)res;
242 octeontx_link_status_update(nic, &link);
243 octeontx_link_status_print(dev, &link);
244 rte_eth_linkstatus_set(dev, &link);
245 _rte_eth_dev_callback_process(dev,
246 RTE_ETH_EVENT_INTR_LSC,
251 res = rte_eal_alarm_set(OCCTX_INTR_POLL_INTERVAL_MS * 1000,
252 octeontx_link_status_poll, nic);
254 octeontx_log_err("Failed to restart alarm for port %d, err: %d",
259 octeontx_port_close(struct octeontx_nic *nic)
261 PMD_INIT_FUNC_TRACE();
263 rte_eal_alarm_cancel(octeontx_link_status_poll, nic);
264 octeontx_bgx_port_close(nic->port_id);
265 octeontx_log_dbg("port closed %d", nic->port_id);
269 octeontx_port_start(struct octeontx_nic *nic)
271 PMD_INIT_FUNC_TRACE();
273 return octeontx_bgx_port_start(nic->port_id);
277 octeontx_port_stop(struct octeontx_nic *nic)
279 PMD_INIT_FUNC_TRACE();
281 return octeontx_bgx_port_stop(nic->port_id);
285 octeontx_port_promisc_set(struct octeontx_nic *nic, int en)
287 struct rte_eth_dev *dev;
291 PMD_INIT_FUNC_TRACE();
294 res = octeontx_bgx_port_promisc_set(nic->port_id, en);
296 octeontx_log_err("failed to set promiscuous mode %d",
301 /* Set proper flag for the mode */
302 dev->data->promiscuous = (en != 0) ? 1 : 0;
304 octeontx_log_dbg("port %d : promiscuous mode %s",
305 nic->port_id, en ? "set" : "unset");
311 octeontx_port_stats(struct octeontx_nic *nic, struct rte_eth_stats *stats)
313 octeontx_mbox_bgx_port_stats_t bgx_stats;
316 PMD_INIT_FUNC_TRACE();
318 res = octeontx_bgx_port_stats(nic->port_id, &bgx_stats);
320 octeontx_log_err("failed to get port stats %d", nic->port_id);
324 stats->ipackets = bgx_stats.rx_packets;
325 stats->ibytes = bgx_stats.rx_bytes;
326 stats->imissed = bgx_stats.rx_dropped;
327 stats->ierrors = bgx_stats.rx_errors;
328 stats->opackets = bgx_stats.tx_packets;
329 stats->obytes = bgx_stats.tx_bytes;
330 stats->oerrors = bgx_stats.tx_errors;
332 octeontx_log_dbg("port%d stats inpkts=%" PRIx64 " outpkts=%" PRIx64 "",
333 nic->port_id, stats->ipackets, stats->opackets);
339 octeontx_port_stats_clr(struct octeontx_nic *nic)
341 PMD_INIT_FUNC_TRACE();
343 return octeontx_bgx_port_stats_clr(nic->port_id);
347 devconf_set_default_sane_values(struct rte_event_dev_config *dev_conf,
348 struct rte_event_dev_info *info)
350 memset(dev_conf, 0, sizeof(struct rte_event_dev_config));
351 dev_conf->dequeue_timeout_ns = info->min_dequeue_timeout_ns;
353 dev_conf->nb_event_ports = info->max_event_ports;
354 dev_conf->nb_event_queues = info->max_event_queues;
356 dev_conf->nb_event_queue_flows = info->max_event_queue_flows;
357 dev_conf->nb_event_port_dequeue_depth =
358 info->max_event_port_dequeue_depth;
359 dev_conf->nb_event_port_enqueue_depth =
360 info->max_event_port_enqueue_depth;
361 dev_conf->nb_event_port_enqueue_depth =
362 info->max_event_port_enqueue_depth;
363 dev_conf->nb_events_limit =
364 info->max_num_events;
368 octeontx_tx_offload_flags(struct rte_eth_dev *eth_dev)
370 struct octeontx_nic *nic = octeontx_pmd_priv(eth_dev);
373 if (nic->tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM ||
374 nic->tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM)
375 flags |= OCCTX_TX_OFFLOAD_OL3_OL4_CSUM_F;
377 if (nic->tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM ||
378 nic->tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM ||
379 nic->tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM ||
380 nic->tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM)
381 flags |= OCCTX_TX_OFFLOAD_L3_L4_CSUM_F;
383 if (!(nic->tx_offloads & DEV_TX_OFFLOAD_MBUF_FAST_FREE))
384 flags |= OCCTX_TX_OFFLOAD_MBUF_NOFF_F;
386 if (nic->tx_offloads & DEV_TX_OFFLOAD_MULTI_SEGS)
387 flags |= OCCTX_TX_MULTI_SEG_F;
393 octeontx_rx_offload_flags(struct rte_eth_dev *eth_dev)
395 struct octeontx_nic *nic = octeontx_pmd_priv(eth_dev);
398 if (nic->rx_offloads & (DEV_RX_OFFLOAD_TCP_CKSUM |
399 DEV_RX_OFFLOAD_UDP_CKSUM))
400 flags |= OCCTX_RX_OFFLOAD_CSUM_F;
402 if (nic->rx_offloads & (DEV_RX_OFFLOAD_IPV4_CKSUM |
403 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM))
404 flags |= OCCTX_RX_OFFLOAD_CSUM_F;
406 if (nic->rx_offloads & DEV_RX_OFFLOAD_SCATTER) {
407 flags |= OCCTX_RX_MULTI_SEG_F;
408 eth_dev->data->scattered_rx = 1;
409 /* If scatter mode is enabled, TX should also be in multi
410 * seg mode, else memory leak will occur
412 nic->tx_offloads |= DEV_TX_OFFLOAD_MULTI_SEGS;
419 octeontx_dev_configure(struct rte_eth_dev *dev)
421 struct rte_eth_dev_data *data = dev->data;
422 struct rte_eth_conf *conf = &data->dev_conf;
423 struct rte_eth_rxmode *rxmode = &conf->rxmode;
424 struct rte_eth_txmode *txmode = &conf->txmode;
425 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
428 PMD_INIT_FUNC_TRACE();
431 if (!rte_eal_has_hugepages()) {
432 octeontx_log_err("huge page is not configured");
436 if (txmode->mq_mode) {
437 octeontx_log_err("tx mq_mode DCB or VMDq not supported");
441 if (rxmode->mq_mode != ETH_MQ_RX_NONE &&
442 rxmode->mq_mode != ETH_MQ_RX_RSS) {
443 octeontx_log_err("unsupported rx qmode %d", rxmode->mq_mode);
447 if (!(txmode->offloads & DEV_TX_OFFLOAD_MT_LOCKFREE)) {
448 PMD_INIT_LOG(NOTICE, "cant disable lockfree tx");
449 txmode->offloads |= DEV_TX_OFFLOAD_MT_LOCKFREE;
452 if (conf->link_speeds & ETH_LINK_SPEED_FIXED) {
453 octeontx_log_err("setting link speed/duplex not supported");
457 if (conf->dcb_capability_en) {
458 octeontx_log_err("DCB enable not supported");
462 if (conf->fdir_conf.mode != RTE_FDIR_MODE_NONE) {
463 octeontx_log_err("flow director not supported");
467 nic->num_tx_queues = dev->data->nb_tx_queues;
469 ret = octeontx_pko_channel_open(nic->pko_vfid * PKO_VF_NUM_DQ,
473 octeontx_log_err("failed to open channel %d no-of-txq %d",
474 nic->base_ochan, nic->num_tx_queues);
478 ret = octeontx_dev_vlan_offload_init(dev);
480 octeontx_log_err("failed to initialize vlan offload");
484 nic->pki.classifier_enable = false;
485 nic->pki.hash_enable = true;
486 nic->pki.initialized = false;
488 nic->rx_offloads |= rxmode->offloads;
489 nic->tx_offloads |= txmode->offloads;
490 nic->rx_offload_flags |= octeontx_rx_offload_flags(dev);
491 nic->tx_offload_flags |= octeontx_tx_offload_flags(dev);
497 octeontx_dev_close(struct rte_eth_dev *dev)
499 struct octeontx_txq *txq = NULL;
500 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
504 PMD_INIT_FUNC_TRACE();
506 rte_event_dev_close(nic->evdev);
508 octeontx_dev_flow_ctrl_fini(dev);
510 octeontx_dev_vlan_offload_fini(dev);
512 ret = octeontx_pko_channel_close(nic->base_ochan);
514 octeontx_log_err("failed to close channel %d VF%d %d %d",
515 nic->base_ochan, nic->port_id, nic->num_tx_queues,
518 /* Free txq resources for this port */
519 for (i = 0; i < nic->num_tx_queues; i++) {
520 txq = dev->data->tx_queues[i];
527 /* Free MAC address table */
528 rte_free(dev->data->mac_addrs);
529 dev->data->mac_addrs = NULL;
531 octeontx_port_close(nic);
533 dev->tx_pkt_burst = NULL;
534 dev->rx_pkt_burst = NULL;
538 octeontx_dev_mtu_set(struct rte_eth_dev *eth_dev, uint16_t mtu)
540 uint32_t buffsz, frame_size = mtu + OCCTX_L2_OVERHEAD;
541 struct octeontx_nic *nic = octeontx_pmd_priv(eth_dev);
542 struct rte_eth_dev_data *data = eth_dev->data;
545 /* Check if MTU is within the allowed range */
546 if (frame_size < OCCTX_MIN_FRS || frame_size > OCCTX_MAX_FRS)
549 buffsz = data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM;
551 /* Refuse MTU that requires the support of scattered packets
552 * when this feature has not been enabled before.
554 if (data->dev_started && frame_size > buffsz &&
555 !(nic->rx_offloads & DEV_RX_OFFLOAD_SCATTER)) {
556 octeontx_log_err("Scatter mode is disabled");
560 /* Check <seg size> * <max_seg> >= max_frame */
561 if ((nic->rx_offloads & DEV_RX_OFFLOAD_SCATTER) &&
562 (frame_size > buffsz * OCCTX_RX_NB_SEG_MAX))
565 rc = octeontx_pko_send_mtu(nic->port_id, frame_size);
569 rc = octeontx_bgx_port_mtu_set(nic->port_id, frame_size);
573 if (frame_size > RTE_ETHER_MAX_LEN)
574 nic->rx_offloads |= DEV_RX_OFFLOAD_JUMBO_FRAME;
576 nic->rx_offloads &= ~DEV_RX_OFFLOAD_JUMBO_FRAME;
578 /* Update max_rx_pkt_len */
579 data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
580 octeontx_log_info("Received pkt beyond maxlen %d will be dropped",
587 octeontx_recheck_rx_offloads(struct octeontx_rxq *rxq)
589 struct rte_eth_dev *eth_dev = rxq->eth_dev;
590 struct octeontx_nic *nic = octeontx_pmd_priv(eth_dev);
591 struct rte_eth_dev_data *data = eth_dev->data;
592 struct rte_pktmbuf_pool_private *mbp_priv;
593 struct evdev_priv_data *evdev_priv;
594 struct rte_eventdev *dev;
597 /* Get rx buffer size */
598 mbp_priv = rte_mempool_get_priv(rxq->pool);
599 buffsz = mbp_priv->mbuf_data_room_size - RTE_PKTMBUF_HEADROOM;
601 /* Setup scatter mode if needed by jumbo */
602 if (data->dev_conf.rxmode.max_rx_pkt_len > buffsz) {
603 nic->rx_offloads |= DEV_RX_OFFLOAD_SCATTER;
604 nic->rx_offload_flags |= octeontx_rx_offload_flags(eth_dev);
605 nic->tx_offload_flags |= octeontx_tx_offload_flags(eth_dev);
608 /* Sharing offload flags via eventdev priv region */
609 dev = &rte_eventdevs[rxq->evdev];
610 evdev_priv = dev->data->dev_private;
611 evdev_priv->rx_offload_flags = nic->rx_offload_flags;
612 evdev_priv->tx_offload_flags = nic->tx_offload_flags;
614 /* Setup MTU based on max_rx_pkt_len */
615 nic->mtu = data->dev_conf.rxmode.max_rx_pkt_len - OCCTX_L2_OVERHEAD;
621 octeontx_dev_start(struct rte_eth_dev *dev)
623 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
624 struct octeontx_rxq *rxq;
627 PMD_INIT_FUNC_TRACE();
628 /* Rechecking if any new offload set to update
629 * rx/tx burst function pointer accordingly.
631 for (i = 0; i < dev->data->nb_rx_queues; i++) {
632 rxq = dev->data->rx_queues[i];
633 octeontx_recheck_rx_offloads(rxq);
636 /* Setting up the mtu based on max_rx_pkt_len */
637 ret = octeontx_dev_mtu_set(dev, nic->mtu);
639 octeontx_log_err("Failed to set default MTU size %d", ret);
646 octeontx_set_tx_function(dev);
647 ret = octeontx_pko_channel_start(nic->base_ochan);
649 octeontx_log_err("fail to conf VF%d no. txq %d chan %d ret %d",
650 nic->port_id, nic->num_tx_queues, nic->base_ochan,
658 dev->rx_pkt_burst = octeontx_recv_pkts;
659 ret = octeontx_pki_port_start(nic->port_id);
661 octeontx_log_err("fail to start Rx on port %d", nic->port_id);
662 goto channel_stop_error;
668 ret = octeontx_port_start(nic);
670 octeontx_log_err("failed start port %d", ret);
671 goto pki_port_stop_error;
674 PMD_TX_LOG(DEBUG, "pko: start channel %d no.of txq %d port %d",
675 nic->base_ochan, nic->num_tx_queues, nic->port_id);
677 ret = rte_event_dev_start(nic->evdev);
679 octeontx_log_err("failed to start evdev: ret (%d)", ret);
680 goto pki_port_stop_error;
687 octeontx_pki_port_stop(nic->port_id);
689 octeontx_pko_channel_stop(nic->base_ochan);
695 octeontx_dev_stop(struct rte_eth_dev *dev)
697 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
700 PMD_INIT_FUNC_TRACE();
702 rte_event_dev_stop(nic->evdev);
704 ret = octeontx_port_stop(nic);
706 octeontx_log_err("failed to req stop port %d res=%d",
711 ret = octeontx_pki_port_stop(nic->port_id);
713 octeontx_log_err("failed to stop pki port %d res=%d",
718 ret = octeontx_pko_channel_stop(nic->base_ochan);
720 octeontx_log_err("failed to stop channel %d VF%d %d %d",
721 nic->base_ochan, nic->port_id, nic->num_tx_queues,
728 octeontx_dev_promisc_enable(struct rte_eth_dev *dev)
730 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
732 PMD_INIT_FUNC_TRACE();
733 return octeontx_port_promisc_set(nic, 1);
737 octeontx_dev_promisc_disable(struct rte_eth_dev *dev)
739 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
741 PMD_INIT_FUNC_TRACE();
742 return octeontx_port_promisc_set(nic, 0);
746 octeontx_port_link_status(struct octeontx_nic *nic)
750 PMD_INIT_FUNC_TRACE();
751 res = octeontx_bgx_port_link_status(nic->port_id);
753 octeontx_log_err("failed to get port %d link status",
758 if (nic->link_up != (uint8_t)res || nic->print_flag == -1) {
759 nic->link_up = (uint8_t)res;
762 octeontx_log_dbg("port %d link status %d", nic->port_id, nic->link_up);
768 * Return 0 means link status changed, -1 means not changed
771 octeontx_dev_link_update(struct rte_eth_dev *dev,
772 int wait_to_complete __rte_unused)
774 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
775 struct rte_eth_link link;
778 PMD_INIT_FUNC_TRACE();
780 res = octeontx_port_link_status(nic);
782 octeontx_log_err("failed to request link status %d", res);
786 octeontx_link_status_update(nic, &link);
787 if (nic->print_flag) {
788 octeontx_link_status_print(nic->dev, &link);
792 return rte_eth_linkstatus_set(dev, &link);
796 octeontx_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
798 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
800 PMD_INIT_FUNC_TRACE();
801 return octeontx_port_stats(nic, stats);
805 octeontx_dev_stats_reset(struct rte_eth_dev *dev)
807 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
809 PMD_INIT_FUNC_TRACE();
810 return octeontx_port_stats_clr(nic);
814 octeontx_dev_mac_addr_del(struct rte_eth_dev *dev, uint32_t index)
816 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
819 ret = octeontx_bgx_port_mac_del(nic->port_id, index);
821 octeontx_log_err("failed to del MAC address filter on port %d",
826 octeontx_dev_mac_addr_add(struct rte_eth_dev *dev,
827 struct rte_ether_addr *mac_addr,
829 __rte_unused uint32_t vmdq)
831 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
834 ret = octeontx_bgx_port_mac_add(nic->port_id, mac_addr->addr_bytes,
837 octeontx_log_err("failed to add MAC address filter on port %d",
846 octeontx_dev_default_mac_addr_set(struct rte_eth_dev *dev,
847 struct rte_ether_addr *addr)
849 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
852 ret = octeontx_bgx_port_mac_set(nic->port_id, addr->addr_bytes);
854 /* Update same mac address to BGX CAM table */
855 ret = octeontx_bgx_port_mac_add(nic->port_id, addr->addr_bytes,
859 octeontx_log_err("failed to set MAC address on port %d",
867 octeontx_dev_info(struct rte_eth_dev *dev,
868 struct rte_eth_dev_info *dev_info)
870 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
872 /* Autonegotiation may be disabled */
873 dev_info->speed_capa = ETH_LINK_SPEED_FIXED;
874 dev_info->speed_capa |= ETH_LINK_SPEED_10M | ETH_LINK_SPEED_100M |
875 ETH_LINK_SPEED_1G | ETH_LINK_SPEED_10G |
878 /* Min/Max MTU supported */
879 dev_info->min_rx_bufsize = OCCTX_MIN_FRS;
880 dev_info->max_rx_pktlen = OCCTX_MAX_FRS;
881 dev_info->max_mtu = dev_info->max_rx_pktlen - OCCTX_L2_OVERHEAD;
882 dev_info->min_mtu = dev_info->min_rx_bufsize - OCCTX_L2_OVERHEAD;
884 dev_info->max_mac_addrs =
885 octeontx_bgx_port_mac_entries_get(nic->port_id);
886 dev_info->max_rx_pktlen = PKI_MAX_PKTLEN;
887 dev_info->max_rx_queues = 1;
888 dev_info->max_tx_queues = PKO_MAX_NUM_DQ;
889 dev_info->min_rx_bufsize = 0;
891 dev_info->default_rxconf = (struct rte_eth_rxconf) {
894 .offloads = OCTEONTX_RX_OFFLOADS,
897 dev_info->default_txconf = (struct rte_eth_txconf) {
899 .offloads = OCTEONTX_TX_OFFLOADS,
902 dev_info->rx_offload_capa = OCTEONTX_RX_OFFLOADS;
903 dev_info->tx_offload_capa = OCTEONTX_TX_OFFLOADS;
904 dev_info->rx_queue_offload_capa = OCTEONTX_RX_OFFLOADS;
905 dev_info->tx_queue_offload_capa = OCTEONTX_TX_OFFLOADS;
911 octeontx_dq_info_getter(octeontx_dq_t *dq, void *out)
913 ((octeontx_dq_t *)out)->lmtline_va = dq->lmtline_va;
914 ((octeontx_dq_t *)out)->ioreg_va = dq->ioreg_va;
915 ((octeontx_dq_t *)out)->fc_status_va = dq->fc_status_va;
919 octeontx_vf_start_tx_queue(struct rte_eth_dev *dev, struct octeontx_nic *nic,
922 struct octeontx_txq *txq;
925 PMD_INIT_FUNC_TRACE();
927 if (dev->data->tx_queue_state[qidx] == RTE_ETH_QUEUE_STATE_STARTED)
930 txq = dev->data->tx_queues[qidx];
932 res = octeontx_pko_channel_query_dqs(nic->base_ochan,
934 sizeof(octeontx_dq_t),
936 octeontx_dq_info_getter);
942 dev->data->tx_queue_state[qidx] = RTE_ETH_QUEUE_STATE_STARTED;
946 (void)octeontx_port_stop(nic);
947 octeontx_pko_channel_stop(nic->base_ochan);
948 octeontx_pko_channel_close(nic->base_ochan);
949 dev->data->tx_queue_state[qidx] = RTE_ETH_QUEUE_STATE_STOPPED;
954 octeontx_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t qidx)
956 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
958 PMD_INIT_FUNC_TRACE();
959 qidx = qidx % PKO_VF_NUM_DQ;
960 return octeontx_vf_start_tx_queue(dev, nic, qidx);
964 octeontx_vf_stop_tx_queue(struct rte_eth_dev *dev, struct octeontx_nic *nic,
970 PMD_INIT_FUNC_TRACE();
972 if (dev->data->tx_queue_state[qidx] == RTE_ETH_QUEUE_STATE_STOPPED)
975 dev->data->tx_queue_state[qidx] = RTE_ETH_QUEUE_STATE_STOPPED;
980 octeontx_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t qidx)
982 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
984 PMD_INIT_FUNC_TRACE();
985 qidx = qidx % PKO_VF_NUM_DQ;
987 return octeontx_vf_stop_tx_queue(dev, nic, qidx);
991 octeontx_dev_tx_queue_release(void *tx_queue)
993 struct octeontx_txq *txq = tx_queue;
996 PMD_INIT_FUNC_TRACE();
999 res = octeontx_dev_tx_queue_stop(txq->eth_dev, txq->queue_id);
1001 octeontx_log_err("failed stop tx_queue(%d)\n",
1009 octeontx_dev_tx_queue_setup(struct rte_eth_dev *dev, uint16_t qidx,
1010 uint16_t nb_desc, unsigned int socket_id,
1011 const struct rte_eth_txconf *tx_conf __rte_unused)
1013 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
1014 struct octeontx_txq *txq = NULL;
1018 RTE_SET_USED(nb_desc);
1019 RTE_SET_USED(socket_id);
1021 dq_num = (nic->pko_vfid * PKO_VF_NUM_DQ) + qidx;
1023 /* Socket id check */
1024 if (socket_id != (unsigned int)SOCKET_ID_ANY &&
1025 socket_id != (unsigned int)nic->node)
1026 PMD_TX_LOG(INFO, "socket_id expected %d, configured %d",
1027 socket_id, nic->node);
1029 /* Free memory prior to re-allocation if needed. */
1030 if (dev->data->tx_queues[qidx] != NULL) {
1031 PMD_TX_LOG(DEBUG, "freeing memory prior to re-allocation %d",
1033 octeontx_dev_tx_queue_release(dev->data->tx_queues[qidx]);
1034 dev->data->tx_queues[qidx] = NULL;
1037 /* Allocating tx queue data structure */
1038 txq = rte_zmalloc_socket("ethdev TX queue", sizeof(struct octeontx_txq),
1039 RTE_CACHE_LINE_SIZE, nic->node);
1041 octeontx_log_err("failed to allocate txq=%d", qidx);
1047 txq->queue_id = dq_num;
1048 dev->data->tx_queues[qidx] = txq;
1049 dev->data->tx_queue_state[qidx] = RTE_ETH_QUEUE_STATE_STOPPED;
1051 res = octeontx_pko_channel_query_dqs(nic->base_ochan,
1053 sizeof(octeontx_dq_t),
1055 octeontx_dq_info_getter);
1061 PMD_TX_LOG(DEBUG, "[%d]:[%d] txq=%p nb_desc=%d lmtline=%p ioreg_va=%p fc_status_va=%p",
1062 qidx, txq->queue_id, txq, nb_desc, txq->dq.lmtline_va,
1064 txq->dq.fc_status_va);
1076 octeontx_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t qidx,
1077 uint16_t nb_desc, unsigned int socket_id,
1078 const struct rte_eth_rxconf *rx_conf,
1079 struct rte_mempool *mb_pool)
1081 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
1082 struct rte_mempool_ops *mp_ops = NULL;
1083 struct octeontx_rxq *rxq = NULL;
1084 pki_pktbuf_cfg_t pktbuf_conf;
1085 pki_hash_cfg_t pki_hash;
1086 pki_qos_cfg_t pki_qos;
1090 unsigned int ev_queues = (nic->ev_queues * nic->port_id) + qidx;
1091 unsigned int ev_ports = (nic->ev_ports * nic->port_id) + qidx;
1093 RTE_SET_USED(nb_desc);
1095 memset(&pktbuf_conf, 0, sizeof(pktbuf_conf));
1096 memset(&pki_hash, 0, sizeof(pki_hash));
1097 memset(&pki_qos, 0, sizeof(pki_qos));
1099 mp_ops = rte_mempool_get_ops(mb_pool->ops_index);
1100 if (strcmp(mp_ops->name, "octeontx_fpavf")) {
1101 octeontx_log_err("failed to find octeontx_fpavf mempool");
1105 /* Handle forbidden configurations */
1106 if (nic->pki.classifier_enable) {
1107 octeontx_log_err("cannot setup queue %d. "
1108 "Classifier option unsupported", qidx);
1112 port = nic->port_id;
1114 /* Rx deferred start is not supported */
1115 if (rx_conf->rx_deferred_start) {
1116 octeontx_log_err("rx deferred start not supported");
1120 /* Verify queue index */
1121 if (qidx >= dev->data->nb_rx_queues) {
1122 octeontx_log_err("QID %d not supporteded (0 - %d available)\n",
1123 qidx, (dev->data->nb_rx_queues - 1));
1127 /* Socket id check */
1128 if (socket_id != (unsigned int)SOCKET_ID_ANY &&
1129 socket_id != (unsigned int)nic->node)
1130 PMD_RX_LOG(INFO, "socket_id expected %d, configured %d",
1131 socket_id, nic->node);
1133 /* Allocating rx queue data structure */
1134 rxq = rte_zmalloc_socket("ethdev RX queue", sizeof(struct octeontx_rxq),
1135 RTE_CACHE_LINE_SIZE, nic->node);
1137 octeontx_log_err("failed to allocate rxq=%d", qidx);
1141 if (!nic->pki.initialized) {
1142 pktbuf_conf.port_type = 0;
1143 pki_hash.port_type = 0;
1144 pki_qos.port_type = 0;
1146 pktbuf_conf.mmask.f_wqe_skip = 1;
1147 pktbuf_conf.mmask.f_first_skip = 1;
1148 pktbuf_conf.mmask.f_later_skip = 1;
1149 pktbuf_conf.mmask.f_mbuff_size = 1;
1150 pktbuf_conf.mmask.f_cache_mode = 1;
1152 pktbuf_conf.wqe_skip = OCTTX_PACKET_WQE_SKIP;
1153 pktbuf_conf.first_skip = OCTTX_PACKET_FIRST_SKIP(mb_pool);
1154 pktbuf_conf.later_skip = OCTTX_PACKET_LATER_SKIP;
1155 pktbuf_conf.mbuff_size = (mb_pool->elt_size -
1156 RTE_PKTMBUF_HEADROOM -
1157 rte_pktmbuf_priv_size(mb_pool) -
1158 sizeof(struct rte_mbuf));
1160 pktbuf_conf.cache_mode = PKI_OPC_MODE_STF2_STT;
1162 ret = octeontx_pki_port_pktbuf_config(port, &pktbuf_conf);
1164 octeontx_log_err("fail to configure pktbuf for port %d",
1169 PMD_RX_LOG(DEBUG, "Port %d Rx pktbuf configured:\n"
1170 "\tmbuf_size:\t0x%0x\n"
1171 "\twqe_skip:\t0x%0x\n"
1172 "\tfirst_skip:\t0x%0x\n"
1173 "\tlater_skip:\t0x%0x\n"
1174 "\tcache_mode:\t%s\n",
1176 pktbuf_conf.mbuff_size,
1177 pktbuf_conf.wqe_skip,
1178 pktbuf_conf.first_skip,
1179 pktbuf_conf.later_skip,
1180 (pktbuf_conf.cache_mode ==
1183 (pktbuf_conf.cache_mode ==
1186 (pktbuf_conf.cache_mode ==
1187 PKI_OPC_MODE_STF1_STT) ?
1188 "STF1_STT" : "STF2_STT");
1190 if (nic->pki.hash_enable) {
1191 pki_hash.tag_dlc = 1;
1192 pki_hash.tag_slc = 1;
1193 pki_hash.tag_dlf = 1;
1194 pki_hash.tag_slf = 1;
1195 pki_hash.tag_prt = 1;
1196 octeontx_pki_port_hash_config(port, &pki_hash);
1199 pool = (uintptr_t)mb_pool->pool_id;
1201 /* Get the gaura Id */
1202 gaura = octeontx_fpa_bufpool_gaura(pool);
1204 pki_qos.qpg_qos = PKI_QPG_QOS_NONE;
1205 pki_qos.num_entry = 1;
1206 pki_qos.drop_policy = 0;
1207 pki_qos.tag_type = 0L;
1208 pki_qos.qos_entry[0].port_add = 0;
1209 pki_qos.qos_entry[0].gaura = gaura;
1210 pki_qos.qos_entry[0].ggrp_ok = ev_queues;
1211 pki_qos.qos_entry[0].ggrp_bad = ev_queues;
1212 pki_qos.qos_entry[0].grptag_bad = 0;
1213 pki_qos.qos_entry[0].grptag_ok = 0;
1215 ret = octeontx_pki_port_create_qos(port, &pki_qos);
1217 octeontx_log_err("failed to create QOS port=%d, q=%d",
1222 nic->pki.initialized = true;
1225 rxq->port_id = nic->port_id;
1227 rxq->queue_id = qidx;
1228 rxq->evdev = nic->evdev;
1229 rxq->ev_queues = ev_queues;
1230 rxq->ev_ports = ev_ports;
1231 rxq->pool = mb_pool;
1233 octeontx_recheck_rx_offloads(rxq);
1234 dev->data->rx_queues[qidx] = rxq;
1235 dev->data->rx_queue_state[qidx] = RTE_ETH_QUEUE_STATE_STOPPED;
1241 octeontx_dev_rx_queue_release(void *rxq)
1246 static const uint32_t *
1247 octeontx_dev_supported_ptypes_get(struct rte_eth_dev *dev)
1249 static const uint32_t ptypes[] = {
1251 RTE_PTYPE_L3_IPV4_EXT,
1253 RTE_PTYPE_L3_IPV6_EXT,
1260 if (dev->rx_pkt_burst == octeontx_recv_pkts)
1267 octeontx_pool_ops(struct rte_eth_dev *dev, const char *pool)
1271 if (!strcmp(pool, "octeontx_fpavf"))
1277 /* Initialize and register driver with DPDK Application */
1278 static const struct eth_dev_ops octeontx_dev_ops = {
1279 .dev_configure = octeontx_dev_configure,
1280 .dev_infos_get = octeontx_dev_info,
1281 .dev_close = octeontx_dev_close,
1282 .dev_start = octeontx_dev_start,
1283 .dev_stop = octeontx_dev_stop,
1284 .promiscuous_enable = octeontx_dev_promisc_enable,
1285 .promiscuous_disable = octeontx_dev_promisc_disable,
1286 .link_update = octeontx_dev_link_update,
1287 .stats_get = octeontx_dev_stats_get,
1288 .stats_reset = octeontx_dev_stats_reset,
1289 .mac_addr_remove = octeontx_dev_mac_addr_del,
1290 .mac_addr_add = octeontx_dev_mac_addr_add,
1291 .mac_addr_set = octeontx_dev_default_mac_addr_set,
1292 .vlan_offload_set = octeontx_dev_vlan_offload_set,
1293 .vlan_filter_set = octeontx_dev_vlan_filter_set,
1294 .tx_queue_start = octeontx_dev_tx_queue_start,
1295 .tx_queue_stop = octeontx_dev_tx_queue_stop,
1296 .tx_queue_setup = octeontx_dev_tx_queue_setup,
1297 .tx_queue_release = octeontx_dev_tx_queue_release,
1298 .rx_queue_setup = octeontx_dev_rx_queue_setup,
1299 .rx_queue_release = octeontx_dev_rx_queue_release,
1300 .dev_set_link_up = octeontx_dev_set_link_up,
1301 .dev_set_link_down = octeontx_dev_set_link_down,
1302 .dev_supported_ptypes_get = octeontx_dev_supported_ptypes_get,
1303 .mtu_set = octeontx_dev_mtu_set,
1304 .pool_ops_supported = octeontx_pool_ops,
1305 .flow_ctrl_get = octeontx_dev_flow_ctrl_get,
1306 .flow_ctrl_set = octeontx_dev_flow_ctrl_set,
1309 /* Create Ethdev interface per BGX LMAC ports */
1311 octeontx_create(struct rte_vdev_device *dev, int port, uint8_t evdev,
1316 char octtx_name[OCTEONTX_MAX_NAME_LEN];
1317 struct octeontx_nic *nic = NULL;
1318 struct rte_eth_dev *eth_dev = NULL;
1319 struct rte_eth_dev_data *data;
1320 const char *name = rte_vdev_device_name(dev);
1323 PMD_INIT_FUNC_TRACE();
1325 sprintf(octtx_name, "%s_%d", name, port);
1326 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1327 eth_dev = rte_eth_dev_attach_secondary(octtx_name);
1328 if (eth_dev == NULL)
1331 eth_dev->dev_ops = &octeontx_dev_ops;
1332 eth_dev->device = &dev->device;
1333 octeontx_set_tx_function(eth_dev);
1334 eth_dev->rx_pkt_burst = octeontx_recv_pkts;
1335 rte_eth_dev_probing_finish(eth_dev);
1339 /* Reserve an ethdev entry */
1340 eth_dev = rte_eth_dev_allocate(octtx_name);
1341 if (eth_dev == NULL) {
1342 octeontx_log_err("failed to allocate rte_eth_dev");
1346 data = eth_dev->data;
1348 nic = rte_zmalloc_socket(octtx_name, sizeof(*nic), 0, socket_id);
1350 octeontx_log_err("failed to allocate nic structure");
1354 data->dev_private = nic;
1355 pko_vfid = octeontx_pko_get_vfid();
1357 if (pko_vfid == SIZE_MAX) {
1358 octeontx_log_err("failed to get pko vfid");
1363 nic->pko_vfid = pko_vfid;
1364 nic->port_id = port;
1367 res = octeontx_port_open(nic);
1371 /* Rx side port configuration */
1372 res = octeontx_pki_port_open(port);
1374 octeontx_log_err("failed to open PKI port %d", port);
1379 eth_dev->device = &dev->device;
1380 eth_dev->intr_handle = NULL;
1381 eth_dev->data->kdrv = RTE_KDRV_NONE;
1382 eth_dev->data->numa_node = dev->device.numa_node;
1384 data->port_id = eth_dev->data->port_id;
1388 nic->print_flag = -1;
1390 data->dev_link.link_status = ETH_LINK_DOWN;
1391 data->dev_started = 0;
1392 data->promiscuous = 0;
1393 data->all_multicast = 0;
1394 data->scattered_rx = 0;
1396 /* Get maximum number of supported MAC entries */
1397 max_entries = octeontx_bgx_port_mac_entries_get(nic->port_id);
1398 if (max_entries < 0) {
1399 octeontx_log_err("Failed to get max entries for mac addr");
1404 data->mac_addrs = rte_zmalloc_socket(octtx_name, max_entries *
1405 RTE_ETHER_ADDR_LEN, 0,
1407 if (data->mac_addrs == NULL) {
1408 octeontx_log_err("failed to allocate memory for mac_addrs");
1413 eth_dev->dev_ops = &octeontx_dev_ops;
1415 /* Finally save ethdev pointer to the NIC structure */
1418 if (nic->port_id != data->port_id) {
1419 octeontx_log_err("eth_dev->port_id (%d) is diff to orig (%d)",
1420 data->port_id, nic->port_id);
1422 goto free_mac_addrs;
1425 res = rte_eal_alarm_set(OCCTX_INTR_POLL_INTERVAL_MS * 1000,
1426 octeontx_link_status_poll, nic);
1428 octeontx_log_err("Failed to start link polling alarm");
1432 /* Update port_id mac to eth_dev */
1433 memcpy(data->mac_addrs, nic->mac_addr, RTE_ETHER_ADDR_LEN);
1435 /* Update same mac address to BGX CAM table at index 0 */
1436 octeontx_bgx_port_mac_add(nic->port_id, nic->mac_addr, 0);
1438 res = octeontx_dev_flow_ctrl_init(eth_dev);
1442 PMD_INIT_LOG(DEBUG, "ethdev info: ");
1443 PMD_INIT_LOG(DEBUG, "port %d, port_ena %d ochan %d num_ochan %d tx_q %d",
1444 nic->port_id, nic->port_ena,
1445 nic->base_ochan, nic->num_ochans,
1446 nic->num_tx_queues);
1447 PMD_INIT_LOG(DEBUG, "speed %d mtu %d", nic->speed, nic->bgx_mtu);
1449 rte_octeontx_pchan_map[(nic->base_ochan >> 8) & 0x7]
1450 [(nic->base_ochan >> 4) & 0xF] = data->port_id;
1452 rte_eth_dev_probing_finish(eth_dev);
1453 return data->port_id;
1456 rte_free(data->mac_addrs);
1459 octeontx_port_close(nic);
1461 rte_eth_dev_release_port(eth_dev);
1466 /* Un initialize octeontx device */
1468 octeontx_remove(struct rte_vdev_device *dev)
1470 char octtx_name[OCTEONTX_MAX_NAME_LEN];
1471 struct rte_eth_dev *eth_dev = NULL;
1472 struct octeontx_nic *nic = NULL;
1478 for (i = 0; i < OCTEONTX_VDEV_DEFAULT_MAX_NR_PORT; i++) {
1479 sprintf(octtx_name, "eth_octeontx_%d", i);
1481 /* reserve an ethdev entry */
1482 eth_dev = rte_eth_dev_allocated(octtx_name);
1483 if (eth_dev == NULL)
1486 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1487 rte_eth_dev_release_port(eth_dev);
1491 nic = octeontx_pmd_priv(eth_dev);
1492 rte_event_dev_stop(nic->evdev);
1493 PMD_INIT_LOG(INFO, "Closing octeontx device %s", octtx_name);
1495 rte_eth_dev_release_port(eth_dev);
1496 rte_event_dev_close(nic->evdev);
1499 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1502 /* Free FC resource */
1503 octeontx_pko_fc_free();
1508 /* Initialize octeontx device */
1510 octeontx_probe(struct rte_vdev_device *dev)
1512 const char *dev_name;
1513 static int probe_once;
1514 uint8_t socket_id, qlist;
1515 int tx_vfcnt, port_id, evdev, qnum, pnum, res, i;
1516 struct rte_event_dev_config dev_conf;
1517 const char *eventdev_name = "event_octeontx";
1518 struct rte_event_dev_info info;
1519 struct rte_eth_dev *eth_dev;
1521 struct octeontx_vdev_init_params init_params = {
1522 OCTEONTX_VDEV_DEFAULT_MAX_NR_PORT
1525 dev_name = rte_vdev_device_name(dev);
1527 if (rte_eal_process_type() == RTE_PROC_SECONDARY &&
1528 strlen(rte_vdev_device_args(dev)) == 0) {
1529 eth_dev = rte_eth_dev_attach_secondary(dev_name);
1531 PMD_INIT_LOG(ERR, "Failed to probe %s", dev_name);
1534 /* TODO: request info from primary to set up Rx and Tx */
1535 eth_dev->dev_ops = &octeontx_dev_ops;
1536 eth_dev->device = &dev->device;
1537 rte_eth_dev_probing_finish(eth_dev);
1541 res = octeontx_parse_vdev_init_params(&init_params, dev);
1545 if (init_params.nr_port > OCTEONTX_VDEV_DEFAULT_MAX_NR_PORT) {
1546 octeontx_log_err("nr_port (%d) > max (%d)", init_params.nr_port,
1547 OCTEONTX_VDEV_DEFAULT_MAX_NR_PORT);
1551 PMD_INIT_LOG(DEBUG, "initializing %s pmd", dev_name);
1553 socket_id = rte_socket_id();
1555 tx_vfcnt = octeontx_pko_vf_count();
1557 if (tx_vfcnt < init_params.nr_port) {
1558 octeontx_log_err("not enough PKO (%d) for port number (%d)",
1559 tx_vfcnt, init_params.nr_port);
1562 evdev = rte_event_dev_get_dev_id(eventdev_name);
1564 octeontx_log_err("eventdev %s not found", eventdev_name);
1568 res = rte_event_dev_info_get(evdev, &info);
1570 octeontx_log_err("failed to eventdev info %d", res);
1574 PMD_INIT_LOG(DEBUG, "max_queue %d max_port %d",
1575 info.max_event_queues, info.max_event_ports);
1577 if (octeontx_pko_init_fc(tx_vfcnt))
1580 devconf_set_default_sane_values(&dev_conf, &info);
1581 res = rte_event_dev_configure(evdev, &dev_conf);
1585 rte_event_dev_attr_get(evdev, RTE_EVENT_DEV_ATTR_PORT_COUNT,
1587 rte_event_dev_attr_get(evdev, RTE_EVENT_DEV_ATTR_QUEUE_COUNT,
1590 octeontx_log_err("too few event ports (%d) for event_q(%d)",
1596 /* Enable all queues available */
1597 for (i = 0; i < qnum; i++) {
1598 res = rte_event_queue_setup(evdev, i, NULL);
1600 octeontx_log_err("failed to setup event_q(%d): res %d",
1606 /* Enable all ports available */
1607 for (i = 0; i < pnum; i++) {
1608 res = rte_event_port_setup(evdev, i, NULL);
1611 octeontx_log_err("failed to setup ev port(%d) res=%d",
1618 * Do 1:1 links for ports & queues. All queues would be mapped to
1619 * one port. If there are more ports than queues, then some ports
1620 * won't be linked to any queue.
1622 for (i = 0; i < qnum; i++) {
1623 /* Link one queue to one event port */
1625 res = rte_event_port_link(evdev, i, &qlist, NULL, 1);
1628 octeontx_log_err("failed to link port (%d): res=%d",
1634 /* Create ethdev interface */
1635 for (i = 0; i < init_params.nr_port; i++) {
1636 port_id = octeontx_create(dev, i, evdev, socket_id);
1638 octeontx_log_err("failed to create device %s",
1644 PMD_INIT_LOG(INFO, "created ethdev %s for port %d", dev_name,
1649 octeontx_log_err("interface %s not supported", dev_name);
1650 octeontx_remove(dev);
1654 rte_mbuf_set_platform_mempool_ops("octeontx_fpavf");
1660 octeontx_pko_fc_free();
1664 static struct rte_vdev_driver octeontx_pmd_drv = {
1665 .probe = octeontx_probe,
1666 .remove = octeontx_remove,
1669 RTE_PMD_REGISTER_VDEV(OCTEONTX_PMD, octeontx_pmd_drv);
1670 RTE_PMD_REGISTER_ALIAS(OCTEONTX_PMD, eth_octeontx);
1671 RTE_PMD_REGISTER_PARAM_STRING(OCTEONTX_PMD, "nr_port=<int> ");