4 * Copyright (C) Cavium Inc. 2017. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
16 * * Neither the name of Cavium networks nor the names of its
17 * contributors may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 #include <rte_alarm.h>
40 #include <rte_branch_prediction.h>
41 #include <rte_debug.h>
42 #include <rte_devargs.h>
44 #include <rte_kvargs.h>
45 #include <rte_malloc.h>
46 #include <rte_prefetch.h>
49 #include "octeontx_ethdev.h"
50 #include "octeontx_rxtx.h"
51 #include "octeontx_logs.h"
53 struct octeontx_vdev_init_params {
57 enum octeontx_link_speed {
58 OCTEONTX_LINK_SPEED_SGMII,
59 OCTEONTX_LINK_SPEED_XAUI,
60 OCTEONTX_LINK_SPEED_RXAUI,
61 OCTEONTX_LINK_SPEED_10G_R,
62 OCTEONTX_LINK_SPEED_40G_R,
63 OCTEONTX_LINK_SPEED_RESERVE1,
64 OCTEONTX_LINK_SPEED_QSGMII,
65 OCTEONTX_LINK_SPEED_RESERVE2
68 /* Parse integer from integer argument */
70 parse_integer_arg(const char *key __rte_unused,
71 const char *value, void *extra_args)
73 int *i = (int *)extra_args;
77 octeontx_log_err("argument has to be positive.");
85 octeontx_parse_vdev_init_params(struct octeontx_vdev_init_params *params,
86 struct rte_vdev_device *dev)
88 struct rte_kvargs *kvlist = NULL;
91 static const char * const octeontx_vdev_valid_params[] = {
92 OCTEONTX_VDEV_NR_PORT_ARG,
96 const char *input_args = rte_vdev_device_args(dev);
102 kvlist = rte_kvargs_parse(input_args,
103 octeontx_vdev_valid_params);
107 ret = rte_kvargs_process(kvlist,
108 OCTEONTX_VDEV_NR_PORT_ARG,
116 rte_kvargs_free(kvlist);
121 octeontx_port_open(struct octeontx_nic *nic)
123 octeontx_mbox_bgx_port_conf_t bgx_port_conf;
128 PMD_INIT_FUNC_TRACE();
130 res = octeontx_bgx_port_open(nic->port_id, &bgx_port_conf);
132 octeontx_log_err("failed to open port %d", res);
136 nic->node = bgx_port_conf.node;
137 nic->port_ena = bgx_port_conf.enable;
138 nic->base_ichan = bgx_port_conf.base_chan;
139 nic->base_ochan = bgx_port_conf.base_chan;
140 nic->num_ichans = bgx_port_conf.num_chans;
141 nic->num_ochans = bgx_port_conf.num_chans;
142 nic->mtu = bgx_port_conf.mtu;
143 nic->bpen = bgx_port_conf.bpen;
144 nic->fcs_strip = bgx_port_conf.fcs_strip;
145 nic->bcast_mode = bgx_port_conf.bcast_mode;
146 nic->mcast_mode = bgx_port_conf.mcast_mode;
147 nic->speed = bgx_port_conf.mode;
149 memcpy(&nic->mac_addr[0], &bgx_port_conf.macaddr[0], ETHER_ADDR_LEN);
151 octeontx_log_dbg("port opened %d", nic->port_id);
156 octeontx_port_close(struct octeontx_nic *nic)
158 PMD_INIT_FUNC_TRACE();
160 octeontx_bgx_port_close(nic->port_id);
161 octeontx_log_dbg("port closed %d", nic->port_id);
165 octeontx_port_start(struct octeontx_nic *nic)
167 PMD_INIT_FUNC_TRACE();
169 return octeontx_bgx_port_start(nic->port_id);
173 octeontx_port_stop(struct octeontx_nic *nic)
175 PMD_INIT_FUNC_TRACE();
177 return octeontx_bgx_port_stop(nic->port_id);
181 octeontx_port_promisc_set(struct octeontx_nic *nic, int en)
183 struct rte_eth_dev *dev;
187 PMD_INIT_FUNC_TRACE();
190 res = octeontx_bgx_port_promisc_set(nic->port_id, en);
192 octeontx_log_err("failed to set promiscuous mode %d",
195 /* Set proper flag for the mode */
196 dev->data->promiscuous = (en != 0) ? 1 : 0;
198 octeontx_log_dbg("port %d : promiscuous mode %s",
199 nic->port_id, en ? "set" : "unset");
203 octeontx_port_stats(struct octeontx_nic *nic, struct rte_eth_stats *stats)
205 octeontx_mbox_bgx_port_stats_t bgx_stats;
208 PMD_INIT_FUNC_TRACE();
210 res = octeontx_bgx_port_stats(nic->port_id, &bgx_stats);
212 octeontx_log_err("failed to get port stats %d", nic->port_id);
214 stats->ipackets = bgx_stats.rx_packets;
215 stats->ibytes = bgx_stats.rx_bytes;
216 stats->imissed = bgx_stats.rx_dropped;
217 stats->ierrors = bgx_stats.rx_errors;
218 stats->opackets = bgx_stats.tx_packets;
219 stats->obytes = bgx_stats.tx_bytes;
220 stats->oerrors = bgx_stats.tx_errors;
222 octeontx_log_dbg("port%d stats inpkts=%" PRIx64 " outpkts=%" PRIx64 "",
223 nic->port_id, stats->ipackets, stats->opackets);
227 octeontx_port_stats_clr(struct octeontx_nic *nic)
229 PMD_INIT_FUNC_TRACE();
231 octeontx_bgx_port_stats_clr(nic->port_id);
235 devconf_set_default_sane_values(struct rte_event_dev_config *dev_conf,
236 struct rte_event_dev_info *info)
238 memset(dev_conf, 0, sizeof(struct rte_event_dev_config));
239 dev_conf->dequeue_timeout_ns = info->min_dequeue_timeout_ns;
241 dev_conf->nb_event_ports = info->max_event_ports;
242 dev_conf->nb_event_queues = info->max_event_queues;
244 dev_conf->nb_event_queue_flows = info->max_event_queue_flows;
245 dev_conf->nb_event_port_dequeue_depth =
246 info->max_event_port_dequeue_depth;
247 dev_conf->nb_event_port_enqueue_depth =
248 info->max_event_port_enqueue_depth;
249 dev_conf->nb_event_port_enqueue_depth =
250 info->max_event_port_enqueue_depth;
251 dev_conf->nb_events_limit =
252 info->max_num_events;
256 octeontx_dev_configure(struct rte_eth_dev *dev)
258 struct rte_eth_dev_data *data = dev->data;
259 struct rte_eth_conf *conf = &data->dev_conf;
260 struct rte_eth_rxmode *rxmode = &conf->rxmode;
261 struct rte_eth_txmode *txmode = &conf->txmode;
262 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
265 PMD_INIT_FUNC_TRACE();
268 if (!rte_eal_has_hugepages()) {
269 octeontx_log_err("huge page is not configured");
273 if (txmode->mq_mode) {
274 octeontx_log_err("tx mq_mode DCB or VMDq not supported");
278 if (rxmode->mq_mode != ETH_MQ_RX_NONE &&
279 rxmode->mq_mode != ETH_MQ_RX_RSS) {
280 octeontx_log_err("unsupported rx qmode %d", rxmode->mq_mode);
284 if (!rxmode->hw_strip_crc) {
285 PMD_INIT_LOG(NOTICE, "can't disable hw crc strip");
286 rxmode->hw_strip_crc = 1;
289 if (rxmode->hw_ip_checksum) {
290 PMD_INIT_LOG(NOTICE, "rxcksum not supported");
291 rxmode->hw_ip_checksum = 0;
294 if (rxmode->split_hdr_size) {
295 octeontx_log_err("rxmode does not support split header");
299 if (rxmode->hw_vlan_filter) {
300 octeontx_log_err("VLAN filter not supported");
304 if (rxmode->hw_vlan_extend) {
305 octeontx_log_err("VLAN extended not supported");
309 if (rxmode->enable_lro) {
310 octeontx_log_err("LRO not supported");
314 if (conf->link_speeds & ETH_LINK_SPEED_FIXED) {
315 octeontx_log_err("setting link speed/duplex not supported");
319 if (conf->dcb_capability_en) {
320 octeontx_log_err("DCB enable not supported");
324 if (conf->fdir_conf.mode != RTE_FDIR_MODE_NONE) {
325 octeontx_log_err("flow director not supported");
329 nic->num_tx_queues = dev->data->nb_tx_queues;
331 ret = octeontx_pko_channel_open(nic->port_id * PKO_VF_NUM_DQ,
335 octeontx_log_err("failed to open channel %d no-of-txq %d",
336 nic->base_ochan, nic->num_tx_queues);
340 nic->pki.classifier_enable = false;
341 nic->pki.hash_enable = true;
342 nic->pki.initialized = false;
348 octeontx_dev_close(struct rte_eth_dev *dev)
350 struct octeontx_txq *txq = NULL;
351 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
355 PMD_INIT_FUNC_TRACE();
357 rte_event_dev_close(nic->evdev);
359 ret = octeontx_pko_channel_close(nic->base_ochan);
361 octeontx_log_err("failed to close channel %d VF%d %d %d",
362 nic->base_ochan, nic->port_id, nic->num_tx_queues,
365 /* Free txq resources for this port */
366 for (i = 0; i < nic->num_tx_queues; i++) {
367 txq = dev->data->tx_queues[i];
376 octeontx_dev_start(struct rte_eth_dev *dev)
378 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
383 PMD_INIT_FUNC_TRACE();
387 dev->tx_pkt_burst = octeontx_xmit_pkts;
388 ret = octeontx_pko_channel_start(nic->base_ochan);
390 octeontx_log_err("fail to conf VF%d no. txq %d chan %d ret %d",
391 nic->port_id, nic->num_tx_queues, nic->base_ochan,
399 dev->rx_pkt_burst = octeontx_recv_pkts;
400 ret = octeontx_pki_port_start(nic->port_id);
402 octeontx_log_err("fail to start Rx on port %d", nic->port_id);
403 goto channel_stop_error;
409 ret = octeontx_port_start(nic);
411 octeontx_log_err("failed start port %d", ret);
412 goto pki_port_stop_error;
415 PMD_TX_LOG(DEBUG, "pko: start channel %d no.of txq %d port %d",
416 nic->base_ochan, nic->num_tx_queues, nic->port_id);
418 ret = rte_event_dev_start(nic->evdev);
420 octeontx_log_err("failed to start evdev: ret (%d)", ret);
421 goto pki_port_stop_error;
428 octeontx_pki_port_stop(nic->port_id);
430 octeontx_pko_channel_stop(nic->base_ochan);
436 octeontx_dev_stop(struct rte_eth_dev *dev)
438 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
441 PMD_INIT_FUNC_TRACE();
443 rte_event_dev_stop(nic->evdev);
445 ret = octeontx_port_stop(nic);
447 octeontx_log_err("failed to req stop port %d res=%d",
452 ret = octeontx_pki_port_stop(nic->port_id);
454 octeontx_log_err("failed to stop pki port %d res=%d",
459 ret = octeontx_pko_channel_stop(nic->base_ochan);
461 octeontx_log_err("failed to stop channel %d VF%d %d %d",
462 nic->base_ochan, nic->port_id, nic->num_tx_queues,
467 dev->tx_pkt_burst = NULL;
468 dev->rx_pkt_burst = NULL;
472 octeontx_dev_promisc_enable(struct rte_eth_dev *dev)
474 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
476 PMD_INIT_FUNC_TRACE();
477 octeontx_port_promisc_set(nic, 1);
481 octeontx_dev_promisc_disable(struct rte_eth_dev *dev)
483 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
485 PMD_INIT_FUNC_TRACE();
486 octeontx_port_promisc_set(nic, 0);
490 octeontx_atomic_write_link_status(struct rte_eth_dev *dev,
491 struct rte_eth_link *link)
493 struct rte_eth_link *dst = &dev->data->dev_link;
494 struct rte_eth_link *src = link;
496 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
497 *(uint64_t *)src) == 0)
504 octeontx_port_link_status(struct octeontx_nic *nic)
508 PMD_INIT_FUNC_TRACE();
509 res = octeontx_bgx_port_link_status(nic->port_id);
511 octeontx_log_err("failed to get port %d link status",
516 nic->link_up = (uint8_t)res;
517 octeontx_log_dbg("port %d link status %d", nic->port_id, nic->link_up);
523 * Return 0 means link status changed, -1 means not changed
526 octeontx_dev_link_update(struct rte_eth_dev *dev,
527 int wait_to_complete __rte_unused)
529 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
530 struct rte_eth_link link;
534 PMD_INIT_FUNC_TRACE();
536 res = octeontx_port_link_status(nic);
538 octeontx_log_err("failed to request link status %d", res);
542 link.link_status = nic->link_up;
544 switch (nic->speed) {
545 case OCTEONTX_LINK_SPEED_SGMII:
546 link.link_speed = ETH_SPEED_NUM_1G;
549 case OCTEONTX_LINK_SPEED_XAUI:
550 link.link_speed = ETH_SPEED_NUM_10G;
553 case OCTEONTX_LINK_SPEED_RXAUI:
554 case OCTEONTX_LINK_SPEED_10G_R:
555 link.link_speed = ETH_SPEED_NUM_10G;
557 case OCTEONTX_LINK_SPEED_QSGMII:
558 link.link_speed = ETH_SPEED_NUM_5G;
560 case OCTEONTX_LINK_SPEED_40G_R:
561 link.link_speed = ETH_SPEED_NUM_40G;
564 case OCTEONTX_LINK_SPEED_RESERVE1:
565 case OCTEONTX_LINK_SPEED_RESERVE2:
567 octeontx_log_err("incorrect link speed %d", nic->speed);
571 link.link_duplex = ETH_LINK_AUTONEG;
572 link.link_autoneg = ETH_LINK_SPEED_AUTONEG;
574 return octeontx_atomic_write_link_status(dev, &link);
578 octeontx_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
580 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
582 PMD_INIT_FUNC_TRACE();
583 octeontx_port_stats(nic, stats);
587 octeontx_dev_stats_reset(struct rte_eth_dev *dev)
589 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
591 PMD_INIT_FUNC_TRACE();
592 octeontx_port_stats_clr(nic);
596 octeontx_dev_default_mac_addr_set(struct rte_eth_dev *dev,
597 struct ether_addr *addr)
599 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
602 ret = octeontx_bgx_port_mac_set(nic->port_id, addr->addr_bytes);
604 octeontx_log_err("failed to set MAC address on port %d",
609 octeontx_dev_info(struct rte_eth_dev *dev,
610 struct rte_eth_dev_info *dev_info)
614 /* Autonegotiation may be disabled */
615 dev_info->speed_capa = ETH_LINK_SPEED_FIXED;
616 dev_info->speed_capa |= ETH_LINK_SPEED_10M | ETH_LINK_SPEED_100M |
617 ETH_LINK_SPEED_1G | ETH_LINK_SPEED_10G |
620 dev_info->driver_name = RTE_STR(rte_octeontx_pmd);
621 dev_info->max_mac_addrs = 1;
622 dev_info->max_rx_pktlen = PKI_MAX_PKTLEN;
623 dev_info->max_rx_queues = 1;
624 dev_info->max_tx_queues = PKO_MAX_NUM_DQ;
625 dev_info->min_rx_bufsize = 0;
626 dev_info->pci_dev = NULL;
628 dev_info->default_rxconf = (struct rte_eth_rxconf) {
633 dev_info->default_txconf = (struct rte_eth_txconf) {
636 ETH_TXQ_FLAGS_NOMULTSEGS |
637 ETH_TXQ_FLAGS_NOOFFLOADS |
638 ETH_TXQ_FLAGS_NOXSUMS,
641 dev_info->tx_offload_capa = DEV_TX_OFFLOAD_MT_LOCKFREE;
645 octeontx_dq_info_getter(octeontx_dq_t *dq, void *out)
647 ((octeontx_dq_t *)out)->lmtline_va = dq->lmtline_va;
648 ((octeontx_dq_t *)out)->ioreg_va = dq->ioreg_va;
649 ((octeontx_dq_t *)out)->fc_status_va = dq->fc_status_va;
653 octeontx_vf_start_tx_queue(struct rte_eth_dev *dev, struct octeontx_nic *nic,
656 struct octeontx_txq *txq;
659 PMD_INIT_FUNC_TRACE();
661 if (dev->data->tx_queue_state[qidx] == RTE_ETH_QUEUE_STATE_STARTED)
664 txq = dev->data->tx_queues[qidx];
666 res = octeontx_pko_channel_query_dqs(nic->base_ochan,
668 sizeof(octeontx_dq_t),
670 octeontx_dq_info_getter);
676 dev->data->tx_queue_state[qidx] = RTE_ETH_QUEUE_STATE_STARTED;
680 (void)octeontx_port_stop(nic);
681 octeontx_pko_channel_stop(nic->base_ochan);
682 octeontx_pko_channel_close(nic->base_ochan);
683 dev->data->tx_queue_state[qidx] = RTE_ETH_QUEUE_STATE_STOPPED;
688 octeontx_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t qidx)
690 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
692 PMD_INIT_FUNC_TRACE();
693 qidx = qidx % PKO_VF_NUM_DQ;
694 return octeontx_vf_start_tx_queue(dev, nic, qidx);
698 octeontx_vf_stop_tx_queue(struct rte_eth_dev *dev, struct octeontx_nic *nic,
704 PMD_INIT_FUNC_TRACE();
706 if (dev->data->tx_queue_state[qidx] == RTE_ETH_QUEUE_STATE_STOPPED)
709 dev->data->tx_queue_state[qidx] = RTE_ETH_QUEUE_STATE_STOPPED;
714 octeontx_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t qidx)
716 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
718 PMD_INIT_FUNC_TRACE();
719 qidx = qidx % PKO_VF_NUM_DQ;
721 return octeontx_vf_stop_tx_queue(dev, nic, qidx);
725 octeontx_dev_tx_queue_release(void *tx_queue)
727 struct octeontx_txq *txq = tx_queue;
730 PMD_INIT_FUNC_TRACE();
733 res = octeontx_dev_tx_queue_stop(txq->eth_dev, txq->queue_id);
735 octeontx_log_err("failed stop tx_queue(%d)\n",
743 octeontx_dev_tx_queue_setup(struct rte_eth_dev *dev, uint16_t qidx,
744 uint16_t nb_desc, unsigned int socket_id,
745 const struct rte_eth_txconf *tx_conf)
747 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
748 struct octeontx_txq *txq = NULL;
752 RTE_SET_USED(nb_desc);
753 RTE_SET_USED(socket_id);
754 RTE_SET_USED(tx_conf);
756 dq_num = (nic->port_id * PKO_VF_NUM_DQ) + qidx;
758 /* Socket id check */
759 if (socket_id != (unsigned int)SOCKET_ID_ANY &&
760 socket_id != (unsigned int)nic->node)
761 PMD_TX_LOG(INFO, "socket_id expected %d, configured %d",
762 socket_id, nic->node);
764 /* Free memory prior to re-allocation if needed. */
765 if (dev->data->tx_queues[qidx] != NULL) {
766 PMD_TX_LOG(DEBUG, "freeing memory prior to re-allocation %d",
768 octeontx_dev_tx_queue_release(dev->data->tx_queues[qidx]);
769 dev->data->tx_queues[qidx] = NULL;
772 /* Allocating tx queue data structure */
773 txq = rte_zmalloc_socket("ethdev TX queue", sizeof(struct octeontx_txq),
774 RTE_CACHE_LINE_SIZE, nic->node);
776 octeontx_log_err("failed to allocate txq=%d", qidx);
782 txq->queue_id = dq_num;
783 dev->data->tx_queues[qidx] = txq;
784 dev->data->tx_queue_state[qidx] = RTE_ETH_QUEUE_STATE_STOPPED;
786 res = octeontx_pko_channel_query_dqs(nic->base_ochan,
788 sizeof(octeontx_dq_t),
790 octeontx_dq_info_getter);
796 PMD_TX_LOG(DEBUG, "[%d]:[%d] txq=%p nb_desc=%d lmtline=%p ioreg_va=%p fc_status_va=%p",
797 qidx, txq->queue_id, txq, nb_desc, txq->dq.lmtline_va,
799 txq->dq.fc_status_va);
811 octeontx_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t qidx,
812 uint16_t nb_desc, unsigned int socket_id,
813 const struct rte_eth_rxconf *rx_conf,
814 struct rte_mempool *mb_pool)
816 struct octeontx_nic *nic = octeontx_pmd_priv(dev);
817 struct rte_mempool_ops *mp_ops = NULL;
818 struct octeontx_rxq *rxq = NULL;
819 pki_pktbuf_cfg_t pktbuf_conf;
820 pki_hash_cfg_t pki_hash;
821 pki_qos_cfg_t pki_qos;
825 unsigned int ev_queues = (nic->ev_queues * nic->port_id) + qidx;
826 unsigned int ev_ports = (nic->ev_ports * nic->port_id) + qidx;
828 RTE_SET_USED(nb_desc);
830 memset(&pktbuf_conf, 0, sizeof(pktbuf_conf));
831 memset(&pki_hash, 0, sizeof(pki_hash));
832 memset(&pki_qos, 0, sizeof(pki_qos));
834 mp_ops = rte_mempool_get_ops(mb_pool->ops_index);
835 if (strcmp(mp_ops->name, "octeontx_fpavf")) {
836 octeontx_log_err("failed to find octeontx_fpavf mempool");
840 /* Handle forbidden configurations */
841 if (nic->pki.classifier_enable) {
842 octeontx_log_err("cannot setup queue %d. "
843 "Classifier option unsupported", qidx);
849 /* Rx deferred start is not supported */
850 if (rx_conf->rx_deferred_start) {
851 octeontx_log_err("rx deferred start not supported");
855 /* Verify queue index */
856 if (qidx >= dev->data->nb_rx_queues) {
857 octeontx_log_err("QID %d not supporteded (0 - %d available)\n",
858 qidx, (dev->data->nb_rx_queues - 1));
862 /* Socket id check */
863 if (socket_id != (unsigned int)SOCKET_ID_ANY &&
864 socket_id != (unsigned int)nic->node)
865 PMD_RX_LOG(INFO, "socket_id expected %d, configured %d",
866 socket_id, nic->node);
868 /* Allocating rx queue data structure */
869 rxq = rte_zmalloc_socket("ethdev RX queue", sizeof(struct octeontx_rxq),
870 RTE_CACHE_LINE_SIZE, nic->node);
872 octeontx_log_err("failed to allocate rxq=%d", qidx);
876 if (!nic->pki.initialized) {
877 pktbuf_conf.port_type = 0;
878 pki_hash.port_type = 0;
879 pki_qos.port_type = 0;
881 pktbuf_conf.mmask.f_wqe_skip = 1;
882 pktbuf_conf.mmask.f_first_skip = 1;
883 pktbuf_conf.mmask.f_later_skip = 1;
884 pktbuf_conf.mmask.f_mbuff_size = 1;
885 pktbuf_conf.mmask.f_cache_mode = 1;
887 pktbuf_conf.wqe_skip = OCTTX_PACKET_WQE_SKIP;
888 pktbuf_conf.first_skip = OCTTX_PACKET_FIRST_SKIP;
889 pktbuf_conf.later_skip = OCTTX_PACKET_LATER_SKIP;
890 pktbuf_conf.mbuff_size = (mb_pool->elt_size -
891 RTE_PKTMBUF_HEADROOM -
892 sizeof(struct rte_mbuf));
894 pktbuf_conf.cache_mode = PKI_OPC_MODE_STF2_STT;
896 ret = octeontx_pki_port_pktbuf_config(port, &pktbuf_conf);
898 octeontx_log_err("fail to configure pktbuf for port %d",
903 PMD_RX_LOG(DEBUG, "Port %d Rx pktbuf configured:\n"
904 "\tmbuf_size:\t0x%0x\n"
905 "\twqe_skip:\t0x%0x\n"
906 "\tfirst_skip:\t0x%0x\n"
907 "\tlater_skip:\t0x%0x\n"
908 "\tcache_mode:\t%s\n",
910 pktbuf_conf.mbuff_size,
911 pktbuf_conf.wqe_skip,
912 pktbuf_conf.first_skip,
913 pktbuf_conf.later_skip,
914 (pktbuf_conf.cache_mode ==
917 (pktbuf_conf.cache_mode ==
920 (pktbuf_conf.cache_mode ==
921 PKI_OPC_MODE_STF1_STT) ?
922 "STF1_STT" : "STF2_STT");
924 if (nic->pki.hash_enable) {
925 pki_hash.tag_dlc = 1;
926 pki_hash.tag_slc = 1;
927 pki_hash.tag_dlf = 1;
928 pki_hash.tag_slf = 1;
929 octeontx_pki_port_hash_config(port, &pki_hash);
932 pool = (uintptr_t)mb_pool->pool_id;
934 /* Get the gpool Id */
935 gaura = octeontx_fpa_bufpool_gpool(pool);
937 pki_qos.qpg_qos = PKI_QPG_QOS_NONE;
938 pki_qos.num_entry = 1;
939 pki_qos.drop_policy = 0;
940 pki_qos.tag_type = 2L;
941 pki_qos.qos_entry[0].port_add = 0;
942 pki_qos.qos_entry[0].gaura = gaura;
943 pki_qos.qos_entry[0].ggrp_ok = ev_queues;
944 pki_qos.qos_entry[0].ggrp_bad = ev_queues;
945 pki_qos.qos_entry[0].grptag_bad = 0;
946 pki_qos.qos_entry[0].grptag_ok = 0;
948 ret = octeontx_pki_port_create_qos(port, &pki_qos);
950 octeontx_log_err("failed to create QOS port=%d, q=%d",
955 nic->pki.initialized = true;
958 rxq->port_id = nic->port_id;
960 rxq->queue_id = qidx;
961 rxq->evdev = nic->evdev;
962 rxq->ev_queues = ev_queues;
963 rxq->ev_ports = ev_ports;
965 dev->data->rx_queues[qidx] = rxq;
966 dev->data->rx_queue_state[qidx] = RTE_ETH_QUEUE_STATE_STOPPED;
971 octeontx_dev_rx_queue_release(void *rxq)
976 static const uint32_t *
977 octeontx_dev_supported_ptypes_get(struct rte_eth_dev *dev)
979 static const uint32_t ptypes[] = {
981 RTE_PTYPE_L3_IPV4_EXT,
983 RTE_PTYPE_L3_IPV6_EXT,
990 if (dev->rx_pkt_burst == octeontx_recv_pkts)
996 /* Initialize and register driver with DPDK Application */
997 static const struct eth_dev_ops octeontx_dev_ops = {
998 .dev_configure = octeontx_dev_configure,
999 .dev_infos_get = octeontx_dev_info,
1000 .dev_close = octeontx_dev_close,
1001 .dev_start = octeontx_dev_start,
1002 .dev_stop = octeontx_dev_stop,
1003 .promiscuous_enable = octeontx_dev_promisc_enable,
1004 .promiscuous_disable = octeontx_dev_promisc_disable,
1005 .link_update = octeontx_dev_link_update,
1006 .stats_get = octeontx_dev_stats_get,
1007 .stats_reset = octeontx_dev_stats_reset,
1008 .mac_addr_set = octeontx_dev_default_mac_addr_set,
1009 .tx_queue_start = octeontx_dev_tx_queue_start,
1010 .tx_queue_stop = octeontx_dev_tx_queue_stop,
1011 .tx_queue_setup = octeontx_dev_tx_queue_setup,
1012 .tx_queue_release = octeontx_dev_tx_queue_release,
1013 .rx_queue_setup = octeontx_dev_rx_queue_setup,
1014 .rx_queue_release = octeontx_dev_rx_queue_release,
1015 .dev_supported_ptypes_get = octeontx_dev_supported_ptypes_get,
1018 /* Create Ethdev interface per BGX LMAC ports */
1020 octeontx_create(struct rte_vdev_device *dev, int port, uint8_t evdev,
1024 char octtx_name[OCTEONTX_MAX_NAME_LEN];
1025 struct octeontx_nic *nic = NULL;
1026 struct rte_eth_dev *eth_dev = NULL;
1027 struct rte_eth_dev_data *data = NULL;
1028 const char *name = rte_vdev_device_name(dev);
1030 PMD_INIT_FUNC_TRACE();
1032 sprintf(octtx_name, "%s_%d", name, port);
1033 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1034 eth_dev = rte_eth_dev_attach_secondary(octtx_name);
1035 if (eth_dev == NULL)
1038 eth_dev->tx_pkt_burst = octeontx_xmit_pkts;
1039 eth_dev->rx_pkt_burst = octeontx_recv_pkts;
1043 data = rte_zmalloc_socket(octtx_name, sizeof(*data), 0, socket_id);
1045 octeontx_log_err("failed to allocate devdata");
1050 nic = rte_zmalloc_socket(octtx_name, sizeof(*nic), 0, socket_id);
1052 octeontx_log_err("failed to allocate nic structure");
1057 nic->port_id = port;
1060 res = octeontx_port_open(nic);
1064 /* Rx side port configuration */
1065 res = octeontx_pki_port_open(port);
1067 octeontx_log_err("failed to open PKI port %d", port);
1072 /* Reserve an ethdev entry */
1073 eth_dev = rte_eth_dev_allocate(octtx_name);
1074 if (eth_dev == NULL) {
1075 octeontx_log_err("failed to allocate rte_eth_dev");
1080 eth_dev->device = &dev->device;
1081 eth_dev->intr_handle = NULL;
1082 eth_dev->data->kdrv = RTE_KDRV_NONE;
1083 eth_dev->data->numa_node = dev->device.numa_node;
1085 rte_memcpy(data, (eth_dev)->data, sizeof(*data));
1086 data->dev_private = nic;
1088 data->port_id = eth_dev->data->port_id;
1089 snprintf(data->name, sizeof(data->name), "%s", eth_dev->data->name);
1094 data->dev_link.link_status = ETH_LINK_DOWN;
1095 data->dev_started = 0;
1096 data->promiscuous = 0;
1097 data->all_multicast = 0;
1098 data->scattered_rx = 0;
1100 data->mac_addrs = rte_zmalloc_socket(octtx_name, ETHER_ADDR_LEN, 0,
1102 if (data->mac_addrs == NULL) {
1103 octeontx_log_err("failed to allocate memory for mac_addrs");
1108 eth_dev->data = data;
1109 eth_dev->dev_ops = &octeontx_dev_ops;
1111 /* Finally save ethdev pointer to the NIC structure */
1114 if (nic->port_id != data->port_id) {
1115 octeontx_log_err("eth_dev->port_id (%d) is diff to orig (%d)",
1116 data->port_id, nic->port_id);
1121 /* Update port_id mac to eth_dev */
1122 memcpy(data->mac_addrs, nic->mac_addr, ETHER_ADDR_LEN);
1124 PMD_INIT_LOG(DEBUG, "ethdev info: ");
1125 PMD_INIT_LOG(DEBUG, "port %d, port_ena %d ochan %d num_ochan %d tx_q %d",
1126 nic->port_id, nic->port_ena,
1127 nic->base_ochan, nic->num_ochans,
1128 nic->num_tx_queues);
1129 PMD_INIT_LOG(DEBUG, "speed %d mtu %d", nic->speed, nic->mtu);
1131 return data->port_id;
1135 octeontx_port_close(nic);
1137 if (eth_dev != NULL) {
1138 rte_free(eth_dev->data->mac_addrs);
1141 rte_eth_dev_release_port(eth_dev);
1147 /* Un initialize octeontx device */
1149 octeontx_remove(struct rte_vdev_device *dev)
1151 char octtx_name[OCTEONTX_MAX_NAME_LEN];
1152 struct rte_eth_dev *eth_dev = NULL;
1153 struct octeontx_nic *nic = NULL;
1159 for (i = 0; i < OCTEONTX_VDEV_DEFAULT_MAX_NR_PORT; i++) {
1160 sprintf(octtx_name, "eth_octeontx_%d", i);
1162 /* reserve an ethdev entry */
1163 eth_dev = rte_eth_dev_allocated(octtx_name);
1164 if (eth_dev == NULL)
1167 nic = octeontx_pmd_priv(eth_dev);
1168 rte_event_dev_stop(nic->evdev);
1169 PMD_INIT_LOG(INFO, "Closing octeontx device %s", octtx_name);
1171 rte_free(eth_dev->data->mac_addrs);
1172 rte_free(eth_dev->data->dev_private);
1173 rte_free(eth_dev->data);
1174 rte_eth_dev_release_port(eth_dev);
1175 rte_event_dev_close(nic->evdev);
1178 /* Free FC resource */
1179 octeontx_pko_fc_free();
1184 /* Initialize octeontx device */
1186 octeontx_probe(struct rte_vdev_device *dev)
1188 const char *dev_name;
1189 static int probe_once;
1190 uint8_t socket_id, qlist;
1191 int tx_vfcnt, port_id, evdev, qnum, pnum, res, i;
1192 struct rte_event_dev_config dev_conf;
1193 const char *eventdev_name = "event_octeontx";
1194 struct rte_event_dev_info info;
1196 struct octeontx_vdev_init_params init_params = {
1197 OCTEONTX_VDEV_DEFAULT_MAX_NR_PORT
1200 dev_name = rte_vdev_device_name(dev);
1201 res = octeontx_parse_vdev_init_params(&init_params, dev);
1205 if (init_params.nr_port > OCTEONTX_VDEV_DEFAULT_MAX_NR_PORT) {
1206 octeontx_log_err("nr_port (%d) > max (%d)", init_params.nr_port,
1207 OCTEONTX_VDEV_DEFAULT_MAX_NR_PORT);
1211 PMD_INIT_LOG(DEBUG, "initializing %s pmd", dev_name);
1213 socket_id = rte_socket_id();
1215 tx_vfcnt = octeontx_pko_vf_count();
1217 if (tx_vfcnt < init_params.nr_port) {
1218 octeontx_log_err("not enough PKO (%d) for port number (%d)",
1219 tx_vfcnt, init_params.nr_port);
1222 evdev = rte_event_dev_get_dev_id(eventdev_name);
1224 octeontx_log_err("eventdev %s not found", eventdev_name);
1228 res = rte_event_dev_info_get(evdev, &info);
1230 octeontx_log_err("failed to eventdev info %d", res);
1234 PMD_INIT_LOG(DEBUG, "max_queue %d max_port %d",
1235 info.max_event_queues, info.max_event_ports);
1237 if (octeontx_pko_init_fc(tx_vfcnt))
1240 devconf_set_default_sane_values(&dev_conf, &info);
1241 res = rte_event_dev_configure(evdev, &dev_conf);
1245 rte_event_dev_attr_get(evdev, RTE_EVENT_DEV_ATTR_PORT_COUNT,
1247 rte_event_dev_attr_get(evdev, RTE_EVENT_DEV_ATTR_QUEUE_COUNT,
1250 octeontx_log_err("too few event ports (%d) for event_q(%d)",
1257 * We don't poll on event ports
1258 * that do not have any queues assigned.
1262 "reducing number of active event ports to %d", pnum);
1264 for (i = 0; i < qnum; i++) {
1265 res = rte_event_queue_setup(evdev, i, NULL);
1267 octeontx_log_err("failed to setup event_q(%d): res %d",
1273 for (i = 0; i < pnum; i++) {
1274 res = rte_event_port_setup(evdev, i, NULL);
1277 octeontx_log_err("failed to setup ev port(%d) res=%d",
1281 /* Link one queue to one event port */
1283 res = rte_event_port_link(evdev, i, &qlist, NULL, 1);
1286 octeontx_log_err("failed to link port (%d): res=%d",
1292 /* Create ethdev interface */
1293 for (i = 0; i < init_params.nr_port; i++) {
1294 port_id = octeontx_create(dev, i, evdev, socket_id);
1296 octeontx_log_err("failed to create device %s",
1302 PMD_INIT_LOG(INFO, "created ethdev %s for port %d", dev_name,
1307 octeontx_log_err("interface %s not supported", dev_name);
1308 octeontx_remove(dev);
1317 octeontx_pko_fc_free();
1321 static struct rte_vdev_driver octeontx_pmd_drv = {
1322 .probe = octeontx_probe,
1323 .remove = octeontx_remove,
1326 RTE_PMD_REGISTER_VDEV(OCTEONTX_PMD, octeontx_pmd_drv);
1327 RTE_PMD_REGISTER_ALIAS(OCTEONTX_PMD, eth_octeontx);
1328 RTE_PMD_REGISTER_PARAM_STRING(OCTEONTX_PMD, "nr_port=<int> ");