xref: /dpdk/drivers/net/octeontx/octeontx_ethdev.c (revision 5452a17d3c05daa114c80d30f822516741923330)
1aaf4363eSJerin Jacob /* SPDX-License-Identifier: BSD-3-Clause
2aaf4363eSJerin Jacob  * Copyright(c) 2017 Cavium, Inc
3f7be70e5SJerin Jacob  */
4aaf4363eSJerin Jacob 
5f7be70e5SJerin Jacob #include <stdio.h>
6f7be70e5SJerin Jacob #include <stdarg.h>
7f7be70e5SJerin Jacob #include <stdbool.h>
8f7be70e5SJerin Jacob #include <stdint.h>
9f7be70e5SJerin Jacob #include <string.h>
10f7be70e5SJerin Jacob #include <unistd.h>
11f7be70e5SJerin Jacob 
12f7be70e5SJerin Jacob #include <rte_alarm.h>
13f7be70e5SJerin Jacob #include <rte_branch_prediction.h>
14f7be70e5SJerin Jacob #include <rte_debug.h>
15f7be70e5SJerin Jacob #include <rte_devargs.h>
16f7be70e5SJerin Jacob #include <rte_dev.h>
17f7be70e5SJerin Jacob #include <rte_kvargs.h>
18f7be70e5SJerin Jacob #include <rte_malloc.h>
19f7be70e5SJerin Jacob #include <rte_prefetch.h>
20d4a586d2SJianfeng Tan #include <rte_bus_vdev.h>
21f7be70e5SJerin Jacob 
22f7be70e5SJerin Jacob #include "octeontx_ethdev.h"
2320186d43SJerin Jacob #include "octeontx_rxtx.h"
24f7be70e5SJerin Jacob #include "octeontx_logs.h"
25f7be70e5SJerin Jacob 
26f7be70e5SJerin Jacob struct octeontx_vdev_init_params {
27f7be70e5SJerin Jacob 	uint8_t	nr_port;
28f7be70e5SJerin Jacob };
29f7be70e5SJerin Jacob 
304fac7c0aSJerin Jacob enum octeontx_link_speed {
314fac7c0aSJerin Jacob 	OCTEONTX_LINK_SPEED_SGMII,
324fac7c0aSJerin Jacob 	OCTEONTX_LINK_SPEED_XAUI,
334fac7c0aSJerin Jacob 	OCTEONTX_LINK_SPEED_RXAUI,
344fac7c0aSJerin Jacob 	OCTEONTX_LINK_SPEED_10G_R,
354fac7c0aSJerin Jacob 	OCTEONTX_LINK_SPEED_40G_R,
364fac7c0aSJerin Jacob 	OCTEONTX_LINK_SPEED_RESERVE1,
374fac7c0aSJerin Jacob 	OCTEONTX_LINK_SPEED_QSGMII,
384fac7c0aSJerin Jacob 	OCTEONTX_LINK_SPEED_RESERVE2
394fac7c0aSJerin Jacob };
404fac7c0aSJerin Jacob 
41f7be70e5SJerin Jacob /* Parse integer from integer argument */
42f7be70e5SJerin Jacob static int
43f7be70e5SJerin Jacob parse_integer_arg(const char *key __rte_unused,
44f7be70e5SJerin Jacob 		const char *value, void *extra_args)
45f7be70e5SJerin Jacob {
46f7be70e5SJerin Jacob 	int *i = (int *)extra_args;
47f7be70e5SJerin Jacob 
48f7be70e5SJerin Jacob 	*i = atoi(value);
49f7be70e5SJerin Jacob 	if (*i < 0) {
50f7be70e5SJerin Jacob 		octeontx_log_err("argument has to be positive.");
51f7be70e5SJerin Jacob 		return -1;
52f7be70e5SJerin Jacob 	}
53f7be70e5SJerin Jacob 
54f7be70e5SJerin Jacob 	return 0;
55f7be70e5SJerin Jacob }
56f7be70e5SJerin Jacob 
57f7be70e5SJerin Jacob static int
58f7be70e5SJerin Jacob octeontx_parse_vdev_init_params(struct octeontx_vdev_init_params *params,
59f7be70e5SJerin Jacob 				struct rte_vdev_device *dev)
60f7be70e5SJerin Jacob {
61f7be70e5SJerin Jacob 	struct rte_kvargs *kvlist = NULL;
62f7be70e5SJerin Jacob 	int ret = 0;
63f7be70e5SJerin Jacob 
64f7be70e5SJerin Jacob 	static const char * const octeontx_vdev_valid_params[] = {
65f7be70e5SJerin Jacob 		OCTEONTX_VDEV_NR_PORT_ARG,
66f7be70e5SJerin Jacob 		NULL
67f7be70e5SJerin Jacob 	};
68f7be70e5SJerin Jacob 
69f7be70e5SJerin Jacob 	const char *input_args = rte_vdev_device_args(dev);
70f7be70e5SJerin Jacob 	if (params == NULL)
71f7be70e5SJerin Jacob 		return -EINVAL;
72f7be70e5SJerin Jacob 
73f7be70e5SJerin Jacob 
74f7be70e5SJerin Jacob 	if (input_args) {
75f7be70e5SJerin Jacob 		kvlist = rte_kvargs_parse(input_args,
76f7be70e5SJerin Jacob 				octeontx_vdev_valid_params);
77f7be70e5SJerin Jacob 		if (kvlist == NULL)
78f7be70e5SJerin Jacob 			return -1;
79f7be70e5SJerin Jacob 
80f7be70e5SJerin Jacob 		ret = rte_kvargs_process(kvlist,
81f7be70e5SJerin Jacob 					OCTEONTX_VDEV_NR_PORT_ARG,
82f7be70e5SJerin Jacob 					&parse_integer_arg,
83f7be70e5SJerin Jacob 					&params->nr_port);
84f7be70e5SJerin Jacob 		if (ret < 0)
85f7be70e5SJerin Jacob 			goto free_kvlist;
86f7be70e5SJerin Jacob 	}
87f7be70e5SJerin Jacob 
88f7be70e5SJerin Jacob free_kvlist:
89f7be70e5SJerin Jacob 	rte_kvargs_free(kvlist);
90f7be70e5SJerin Jacob 	return ret;
91f7be70e5SJerin Jacob }
92f7be70e5SJerin Jacob 
93f18b146cSJerin Jacob static int
94f18b146cSJerin Jacob octeontx_port_open(struct octeontx_nic *nic)
95f18b146cSJerin Jacob {
96f18b146cSJerin Jacob 	octeontx_mbox_bgx_port_conf_t bgx_port_conf;
97f18b146cSJerin Jacob 	int res;
98f18b146cSJerin Jacob 
99f18b146cSJerin Jacob 	res = 0;
100f18b146cSJerin Jacob 
101f18b146cSJerin Jacob 	PMD_INIT_FUNC_TRACE();
102f18b146cSJerin Jacob 
103f18b146cSJerin Jacob 	res = octeontx_bgx_port_open(nic->port_id, &bgx_port_conf);
104f18b146cSJerin Jacob 	if (res < 0) {
105f18b146cSJerin Jacob 		octeontx_log_err("failed to open port %d", res);
106f18b146cSJerin Jacob 		return res;
107f18b146cSJerin Jacob 	}
108f18b146cSJerin Jacob 
109f18b146cSJerin Jacob 	nic->node = bgx_port_conf.node;
110f18b146cSJerin Jacob 	nic->port_ena = bgx_port_conf.enable;
111f18b146cSJerin Jacob 	nic->base_ichan = bgx_port_conf.base_chan;
112f18b146cSJerin Jacob 	nic->base_ochan = bgx_port_conf.base_chan;
113f18b146cSJerin Jacob 	nic->num_ichans = bgx_port_conf.num_chans;
114f18b146cSJerin Jacob 	nic->num_ochans = bgx_port_conf.num_chans;
115f18b146cSJerin Jacob 	nic->mtu = bgx_port_conf.mtu;
116f18b146cSJerin Jacob 	nic->bpen = bgx_port_conf.bpen;
117f18b146cSJerin Jacob 	nic->fcs_strip = bgx_port_conf.fcs_strip;
118f18b146cSJerin Jacob 	nic->bcast_mode = bgx_port_conf.bcast_mode;
119f18b146cSJerin Jacob 	nic->mcast_mode = bgx_port_conf.mcast_mode;
120f18b146cSJerin Jacob 	nic->speed	= bgx_port_conf.mode;
121f18b146cSJerin Jacob 
122f18b146cSJerin Jacob 	memcpy(&nic->mac_addr[0], &bgx_port_conf.macaddr[0], ETHER_ADDR_LEN);
123f18b146cSJerin Jacob 
124f18b146cSJerin Jacob 	octeontx_log_dbg("port opened %d", nic->port_id);
125f18b146cSJerin Jacob 	return res;
126f18b146cSJerin Jacob }
127f18b146cSJerin Jacob 
128f18b146cSJerin Jacob static void
129f18b146cSJerin Jacob octeontx_port_close(struct octeontx_nic *nic)
130f18b146cSJerin Jacob {
131f18b146cSJerin Jacob 	PMD_INIT_FUNC_TRACE();
132f18b146cSJerin Jacob 
133f18b146cSJerin Jacob 	octeontx_bgx_port_close(nic->port_id);
134f18b146cSJerin Jacob 	octeontx_log_dbg("port closed %d", nic->port_id);
135f18b146cSJerin Jacob }
136f18b146cSJerin Jacob 
1377fe7c98fSJerin Jacob static int
138da6c6874SJerin Jacob octeontx_port_start(struct octeontx_nic *nic)
139da6c6874SJerin Jacob {
140da6c6874SJerin Jacob 	PMD_INIT_FUNC_TRACE();
141da6c6874SJerin Jacob 
142da6c6874SJerin Jacob 	return octeontx_bgx_port_start(nic->port_id);
143da6c6874SJerin Jacob }
144da6c6874SJerin Jacob 
145da6c6874SJerin Jacob static int
1467fe7c98fSJerin Jacob octeontx_port_stop(struct octeontx_nic *nic)
1477fe7c98fSJerin Jacob {
1487fe7c98fSJerin Jacob 	PMD_INIT_FUNC_TRACE();
1497fe7c98fSJerin Jacob 
1507fe7c98fSJerin Jacob 	return octeontx_bgx_port_stop(nic->port_id);
1517fe7c98fSJerin Jacob }
1527fe7c98fSJerin Jacob 
15315bce35bSJerin Jacob static void
15415bce35bSJerin Jacob octeontx_port_promisc_set(struct octeontx_nic *nic, int en)
15515bce35bSJerin Jacob {
15615bce35bSJerin Jacob 	struct rte_eth_dev *dev;
15715bce35bSJerin Jacob 	int res;
15815bce35bSJerin Jacob 
15915bce35bSJerin Jacob 	res = 0;
16015bce35bSJerin Jacob 	PMD_INIT_FUNC_TRACE();
16115bce35bSJerin Jacob 	dev = nic->dev;
16215bce35bSJerin Jacob 
16315bce35bSJerin Jacob 	res = octeontx_bgx_port_promisc_set(nic->port_id, en);
16415bce35bSJerin Jacob 	if (res < 0)
16515bce35bSJerin Jacob 		octeontx_log_err("failed to set promiscuous mode %d",
16615bce35bSJerin Jacob 				nic->port_id);
16715bce35bSJerin Jacob 
16815bce35bSJerin Jacob 	/* Set proper flag for the mode */
16915bce35bSJerin Jacob 	dev->data->promiscuous = (en != 0) ? 1 : 0;
17015bce35bSJerin Jacob 
17115bce35bSJerin Jacob 	octeontx_log_dbg("port %d : promiscuous mode %s",
17215bce35bSJerin Jacob 			nic->port_id, en ? "set" : "unset");
17315bce35bSJerin Jacob }
17415bce35bSJerin Jacob 
175d5b0924bSMatan Azrad static int
17655389909SJerin Jacob octeontx_port_stats(struct octeontx_nic *nic, struct rte_eth_stats *stats)
17755389909SJerin Jacob {
17855389909SJerin Jacob 	octeontx_mbox_bgx_port_stats_t bgx_stats;
17955389909SJerin Jacob 	int res;
18055389909SJerin Jacob 
18155389909SJerin Jacob 	PMD_INIT_FUNC_TRACE();
18255389909SJerin Jacob 
18355389909SJerin Jacob 	res = octeontx_bgx_port_stats(nic->port_id, &bgx_stats);
184d5b0924bSMatan Azrad 	if (res < 0) {
18555389909SJerin Jacob 		octeontx_log_err("failed to get port stats %d", nic->port_id);
186d5b0924bSMatan Azrad 		return res;
187d5b0924bSMatan Azrad 	}
18855389909SJerin Jacob 
18955389909SJerin Jacob 	stats->ipackets = bgx_stats.rx_packets;
19055389909SJerin Jacob 	stats->ibytes = bgx_stats.rx_bytes;
19155389909SJerin Jacob 	stats->imissed = bgx_stats.rx_dropped;
19255389909SJerin Jacob 	stats->ierrors = bgx_stats.rx_errors;
19355389909SJerin Jacob 	stats->opackets = bgx_stats.tx_packets;
19455389909SJerin Jacob 	stats->obytes = bgx_stats.tx_bytes;
19555389909SJerin Jacob 	stats->oerrors = bgx_stats.tx_errors;
19655389909SJerin Jacob 
19755389909SJerin Jacob 	octeontx_log_dbg("port%d stats inpkts=%" PRIx64 " outpkts=%" PRIx64 "",
19855389909SJerin Jacob 			nic->port_id, stats->ipackets, stats->opackets);
199d5b0924bSMatan Azrad 
200d5b0924bSMatan Azrad 	return 0;
20155389909SJerin Jacob }
20255389909SJerin Jacob 
20355389909SJerin Jacob static void
20455389909SJerin Jacob octeontx_port_stats_clr(struct octeontx_nic *nic)
20555389909SJerin Jacob {
20655389909SJerin Jacob 	PMD_INIT_FUNC_TRACE();
20755389909SJerin Jacob 
20855389909SJerin Jacob 	octeontx_bgx_port_stats_clr(nic->port_id);
20955389909SJerin Jacob }
21055389909SJerin Jacob 
211f7be70e5SJerin Jacob static inline void
212f7be70e5SJerin Jacob devconf_set_default_sane_values(struct rte_event_dev_config *dev_conf,
213f7be70e5SJerin Jacob 				struct rte_event_dev_info *info)
214f7be70e5SJerin Jacob {
215f7be70e5SJerin Jacob 	memset(dev_conf, 0, sizeof(struct rte_event_dev_config));
216f7be70e5SJerin Jacob 	dev_conf->dequeue_timeout_ns = info->min_dequeue_timeout_ns;
217f7be70e5SJerin Jacob 
218f7be70e5SJerin Jacob 	dev_conf->nb_event_ports = info->max_event_ports;
219f7be70e5SJerin Jacob 	dev_conf->nb_event_queues = info->max_event_queues;
220f7be70e5SJerin Jacob 
221f7be70e5SJerin Jacob 	dev_conf->nb_event_queue_flows = info->max_event_queue_flows;
222f7be70e5SJerin Jacob 	dev_conf->nb_event_port_dequeue_depth =
223f7be70e5SJerin Jacob 			info->max_event_port_dequeue_depth;
224f7be70e5SJerin Jacob 	dev_conf->nb_event_port_enqueue_depth =
225f7be70e5SJerin Jacob 			info->max_event_port_enqueue_depth;
226f7be70e5SJerin Jacob 	dev_conf->nb_event_port_enqueue_depth =
227f7be70e5SJerin Jacob 			info->max_event_port_enqueue_depth;
228f7be70e5SJerin Jacob 	dev_conf->nb_events_limit =
229f7be70e5SJerin Jacob 			info->max_num_events;
230f7be70e5SJerin Jacob }
231f7be70e5SJerin Jacob 
2327742c55aSJerin Jacob static int
2337742c55aSJerin Jacob octeontx_dev_configure(struct rte_eth_dev *dev)
2347742c55aSJerin Jacob {
2357742c55aSJerin Jacob 	struct rte_eth_dev_data *data = dev->data;
2367742c55aSJerin Jacob 	struct rte_eth_conf *conf = &data->dev_conf;
2377742c55aSJerin Jacob 	struct rte_eth_rxmode *rxmode = &conf->rxmode;
2387742c55aSJerin Jacob 	struct rte_eth_txmode *txmode = &conf->txmode;
2397742c55aSJerin Jacob 	struct octeontx_nic *nic = octeontx_pmd_priv(dev);
2407742c55aSJerin Jacob 	int ret;
2417742c55aSJerin Jacob 
2427742c55aSJerin Jacob 	PMD_INIT_FUNC_TRACE();
2437742c55aSJerin Jacob 	RTE_SET_USED(conf);
2447742c55aSJerin Jacob 
2457742c55aSJerin Jacob 	if (!rte_eal_has_hugepages()) {
2467742c55aSJerin Jacob 		octeontx_log_err("huge page is not configured");
2477742c55aSJerin Jacob 		return -EINVAL;
2487742c55aSJerin Jacob 	}
2497742c55aSJerin Jacob 
2507742c55aSJerin Jacob 	if (txmode->mq_mode) {
2517742c55aSJerin Jacob 		octeontx_log_err("tx mq_mode DCB or VMDq not supported");
2527742c55aSJerin Jacob 		return -EINVAL;
2537742c55aSJerin Jacob 	}
2547742c55aSJerin Jacob 
2557742c55aSJerin Jacob 	if (rxmode->mq_mode != ETH_MQ_RX_NONE &&
2567742c55aSJerin Jacob 		rxmode->mq_mode != ETH_MQ_RX_RSS) {
2577742c55aSJerin Jacob 		octeontx_log_err("unsupported rx qmode %d", rxmode->mq_mode);
2587742c55aSJerin Jacob 		return -EINVAL;
2597742c55aSJerin Jacob 	}
2607742c55aSJerin Jacob 
2617742c55aSJerin Jacob 	if (!rxmode->hw_strip_crc) {
2627742c55aSJerin Jacob 		PMD_INIT_LOG(NOTICE, "can't disable hw crc strip");
2637742c55aSJerin Jacob 		rxmode->hw_strip_crc = 1;
2647742c55aSJerin Jacob 	}
2657742c55aSJerin Jacob 
2667742c55aSJerin Jacob 	if (rxmode->hw_ip_checksum) {
2677742c55aSJerin Jacob 		PMD_INIT_LOG(NOTICE, "rxcksum not supported");
2687742c55aSJerin Jacob 		rxmode->hw_ip_checksum = 0;
2697742c55aSJerin Jacob 	}
2707742c55aSJerin Jacob 
2717742c55aSJerin Jacob 	if (rxmode->split_hdr_size) {
2727742c55aSJerin Jacob 		octeontx_log_err("rxmode does not support split header");
2737742c55aSJerin Jacob 		return -EINVAL;
2747742c55aSJerin Jacob 	}
2757742c55aSJerin Jacob 
2767742c55aSJerin Jacob 	if (rxmode->hw_vlan_filter) {
2777742c55aSJerin Jacob 		octeontx_log_err("VLAN filter not supported");
2787742c55aSJerin Jacob 		return -EINVAL;
2797742c55aSJerin Jacob 	}
2807742c55aSJerin Jacob 
2817742c55aSJerin Jacob 	if (rxmode->hw_vlan_extend) {
2827742c55aSJerin Jacob 		octeontx_log_err("VLAN extended not supported");
2837742c55aSJerin Jacob 		return -EINVAL;
2847742c55aSJerin Jacob 	}
2857742c55aSJerin Jacob 
2867742c55aSJerin Jacob 	if (rxmode->enable_lro) {
2877742c55aSJerin Jacob 		octeontx_log_err("LRO not supported");
2887742c55aSJerin Jacob 		return -EINVAL;
2897742c55aSJerin Jacob 	}
2907742c55aSJerin Jacob 
2917742c55aSJerin Jacob 	if (conf->link_speeds & ETH_LINK_SPEED_FIXED) {
2927742c55aSJerin Jacob 		octeontx_log_err("setting link speed/duplex not supported");
2937742c55aSJerin Jacob 		return -EINVAL;
2947742c55aSJerin Jacob 	}
2957742c55aSJerin Jacob 
2967742c55aSJerin Jacob 	if (conf->dcb_capability_en) {
2977742c55aSJerin Jacob 		octeontx_log_err("DCB enable not supported");
2987742c55aSJerin Jacob 		return -EINVAL;
2997742c55aSJerin Jacob 	}
3007742c55aSJerin Jacob 
3017742c55aSJerin Jacob 	if (conf->fdir_conf.mode != RTE_FDIR_MODE_NONE) {
3027742c55aSJerin Jacob 		octeontx_log_err("flow director not supported");
3037742c55aSJerin Jacob 		return -EINVAL;
3047742c55aSJerin Jacob 	}
3057742c55aSJerin Jacob 
3067742c55aSJerin Jacob 	nic->num_tx_queues = dev->data->nb_tx_queues;
3077742c55aSJerin Jacob 
3087742c55aSJerin Jacob 	ret = octeontx_pko_channel_open(nic->port_id * PKO_VF_NUM_DQ,
3097742c55aSJerin Jacob 					nic->num_tx_queues,
3107742c55aSJerin Jacob 					nic->base_ochan);
3117742c55aSJerin Jacob 	if (ret) {
3127742c55aSJerin Jacob 		octeontx_log_err("failed to open channel %d no-of-txq %d",
3137742c55aSJerin Jacob 			   nic->base_ochan, nic->num_tx_queues);
3147742c55aSJerin Jacob 		return -EFAULT;
3157742c55aSJerin Jacob 	}
3167742c55aSJerin Jacob 
3177742c55aSJerin Jacob 	nic->pki.classifier_enable = false;
3187742c55aSJerin Jacob 	nic->pki.hash_enable = true;
3197742c55aSJerin Jacob 	nic->pki.initialized = false;
3207742c55aSJerin Jacob 
3217742c55aSJerin Jacob 	return 0;
3227742c55aSJerin Jacob }
3237742c55aSJerin Jacob 
32415bce35bSJerin Jacob static void
325da6c6874SJerin Jacob octeontx_dev_close(struct rte_eth_dev *dev)
326da6c6874SJerin Jacob {
327da6c6874SJerin Jacob 	struct octeontx_txq *txq = NULL;
328da6c6874SJerin Jacob 	struct octeontx_nic *nic = octeontx_pmd_priv(dev);
329da6c6874SJerin Jacob 	unsigned int i;
330da6c6874SJerin Jacob 	int ret;
331da6c6874SJerin Jacob 
332da6c6874SJerin Jacob 	PMD_INIT_FUNC_TRACE();
333da6c6874SJerin Jacob 
334da6c6874SJerin Jacob 	rte_event_dev_close(nic->evdev);
335da6c6874SJerin Jacob 
336da6c6874SJerin Jacob 	ret = octeontx_pko_channel_close(nic->base_ochan);
337da6c6874SJerin Jacob 	if (ret < 0) {
338da6c6874SJerin Jacob 		octeontx_log_err("failed to close channel %d VF%d %d %d",
339da6c6874SJerin Jacob 			     nic->base_ochan, nic->port_id, nic->num_tx_queues,
340da6c6874SJerin Jacob 			     ret);
341da6c6874SJerin Jacob 	}
342da6c6874SJerin Jacob 	/* Free txq resources for this port */
343da6c6874SJerin Jacob 	for (i = 0; i < nic->num_tx_queues; i++) {
344da6c6874SJerin Jacob 		txq = dev->data->tx_queues[i];
345da6c6874SJerin Jacob 		if (!txq)
346da6c6874SJerin Jacob 			continue;
347da6c6874SJerin Jacob 
348da6c6874SJerin Jacob 		rte_free(txq);
349da6c6874SJerin Jacob 	}
350da6c6874SJerin Jacob }
351da6c6874SJerin Jacob 
352da6c6874SJerin Jacob static int
353da6c6874SJerin Jacob octeontx_dev_start(struct rte_eth_dev *dev)
354da6c6874SJerin Jacob {
355da6c6874SJerin Jacob 	struct octeontx_nic *nic = octeontx_pmd_priv(dev);
356da6c6874SJerin Jacob 	int ret;
357da6c6874SJerin Jacob 
358da6c6874SJerin Jacob 	ret = 0;
359da6c6874SJerin Jacob 
360da6c6874SJerin Jacob 	PMD_INIT_FUNC_TRACE();
361da6c6874SJerin Jacob 	/*
362da6c6874SJerin Jacob 	 * Tx start
363da6c6874SJerin Jacob 	 */
364da6c6874SJerin Jacob 	dev->tx_pkt_burst = octeontx_xmit_pkts;
365da6c6874SJerin Jacob 	ret = octeontx_pko_channel_start(nic->base_ochan);
366da6c6874SJerin Jacob 	if (ret < 0) {
367da6c6874SJerin Jacob 		octeontx_log_err("fail to conf VF%d no. txq %d chan %d ret %d",
368da6c6874SJerin Jacob 			   nic->port_id, nic->num_tx_queues, nic->base_ochan,
369da6c6874SJerin Jacob 			   ret);
370da6c6874SJerin Jacob 		goto error;
371da6c6874SJerin Jacob 	}
372da6c6874SJerin Jacob 
373da6c6874SJerin Jacob 	/*
374da6c6874SJerin Jacob 	 * Rx start
375da6c6874SJerin Jacob 	 */
376da6c6874SJerin Jacob 	dev->rx_pkt_burst = octeontx_recv_pkts;
377da6c6874SJerin Jacob 	ret = octeontx_pki_port_start(nic->port_id);
378da6c6874SJerin Jacob 	if (ret < 0) {
379da6c6874SJerin Jacob 		octeontx_log_err("fail to start Rx on port %d", nic->port_id);
380da6c6874SJerin Jacob 		goto channel_stop_error;
381da6c6874SJerin Jacob 	}
382da6c6874SJerin Jacob 
383da6c6874SJerin Jacob 	/*
384da6c6874SJerin Jacob 	 * Start port
385da6c6874SJerin Jacob 	 */
386da6c6874SJerin Jacob 	ret = octeontx_port_start(nic);
387da6c6874SJerin Jacob 	if (ret < 0) {
388da6c6874SJerin Jacob 		octeontx_log_err("failed start port %d", ret);
389da6c6874SJerin Jacob 		goto pki_port_stop_error;
390da6c6874SJerin Jacob 	}
391da6c6874SJerin Jacob 
392da6c6874SJerin Jacob 	PMD_TX_LOG(DEBUG, "pko: start channel %d no.of txq %d port %d",
393da6c6874SJerin Jacob 			nic->base_ochan, nic->num_tx_queues, nic->port_id);
394da6c6874SJerin Jacob 
395da6c6874SJerin Jacob 	ret = rte_event_dev_start(nic->evdev);
396da6c6874SJerin Jacob 	if (ret < 0) {
397da6c6874SJerin Jacob 		octeontx_log_err("failed to start evdev: ret (%d)", ret);
398da6c6874SJerin Jacob 		goto pki_port_stop_error;
399da6c6874SJerin Jacob 	}
400da6c6874SJerin Jacob 
401da6c6874SJerin Jacob 	/* Success */
402da6c6874SJerin Jacob 	return ret;
403da6c6874SJerin Jacob 
404da6c6874SJerin Jacob pki_port_stop_error:
405da6c6874SJerin Jacob 	octeontx_pki_port_stop(nic->port_id);
406da6c6874SJerin Jacob channel_stop_error:
407da6c6874SJerin Jacob 	octeontx_pko_channel_stop(nic->base_ochan);
408da6c6874SJerin Jacob error:
409da6c6874SJerin Jacob 	return ret;
410da6c6874SJerin Jacob }
411da6c6874SJerin Jacob 
412da6c6874SJerin Jacob static void
413da6c6874SJerin Jacob octeontx_dev_stop(struct rte_eth_dev *dev)
414da6c6874SJerin Jacob {
415da6c6874SJerin Jacob 	struct octeontx_nic *nic = octeontx_pmd_priv(dev);
416da6c6874SJerin Jacob 	int ret;
417da6c6874SJerin Jacob 
418da6c6874SJerin Jacob 	PMD_INIT_FUNC_TRACE();
419da6c6874SJerin Jacob 
420da6c6874SJerin Jacob 	rte_event_dev_stop(nic->evdev);
421da6c6874SJerin Jacob 
422da6c6874SJerin Jacob 	ret = octeontx_port_stop(nic);
423da6c6874SJerin Jacob 	if (ret < 0) {
424da6c6874SJerin Jacob 		octeontx_log_err("failed to req stop port %d res=%d",
425da6c6874SJerin Jacob 					nic->port_id, ret);
426da6c6874SJerin Jacob 		return;
427da6c6874SJerin Jacob 	}
428da6c6874SJerin Jacob 
429da6c6874SJerin Jacob 	ret = octeontx_pki_port_stop(nic->port_id);
430da6c6874SJerin Jacob 	if (ret < 0) {
431da6c6874SJerin Jacob 		octeontx_log_err("failed to stop pki port %d res=%d",
432da6c6874SJerin Jacob 					nic->port_id, ret);
433da6c6874SJerin Jacob 		return;
434da6c6874SJerin Jacob 	}
435da6c6874SJerin Jacob 
436da6c6874SJerin Jacob 	ret = octeontx_pko_channel_stop(nic->base_ochan);
437da6c6874SJerin Jacob 	if (ret < 0) {
438da6c6874SJerin Jacob 		octeontx_log_err("failed to stop channel %d VF%d %d %d",
439da6c6874SJerin Jacob 			     nic->base_ochan, nic->port_id, nic->num_tx_queues,
440da6c6874SJerin Jacob 			     ret);
441da6c6874SJerin Jacob 		return;
442da6c6874SJerin Jacob 	}
443da6c6874SJerin Jacob 
444da6c6874SJerin Jacob 	dev->tx_pkt_burst = NULL;
445da6c6874SJerin Jacob 	dev->rx_pkt_burst = NULL;
446da6c6874SJerin Jacob }
447da6c6874SJerin Jacob 
448da6c6874SJerin Jacob static void
44915bce35bSJerin Jacob octeontx_dev_promisc_enable(struct rte_eth_dev *dev)
45015bce35bSJerin Jacob {
45115bce35bSJerin Jacob 	struct octeontx_nic *nic = octeontx_pmd_priv(dev);
45215bce35bSJerin Jacob 
45315bce35bSJerin Jacob 	PMD_INIT_FUNC_TRACE();
45415bce35bSJerin Jacob 	octeontx_port_promisc_set(nic, 1);
45515bce35bSJerin Jacob }
45615bce35bSJerin Jacob 
45715bce35bSJerin Jacob static void
45815bce35bSJerin Jacob octeontx_dev_promisc_disable(struct rte_eth_dev *dev)
45915bce35bSJerin Jacob {
46015bce35bSJerin Jacob 	struct octeontx_nic *nic = octeontx_pmd_priv(dev);
46115bce35bSJerin Jacob 
46215bce35bSJerin Jacob 	PMD_INIT_FUNC_TRACE();
46315bce35bSJerin Jacob 	octeontx_port_promisc_set(nic, 0);
46415bce35bSJerin Jacob }
46515bce35bSJerin Jacob 
4664fac7c0aSJerin Jacob static inline int
4674fac7c0aSJerin Jacob octeontx_atomic_write_link_status(struct rte_eth_dev *dev,
4684fac7c0aSJerin Jacob 				  struct rte_eth_link *link)
4694fac7c0aSJerin Jacob {
4704fac7c0aSJerin Jacob 	struct rte_eth_link *dst = &dev->data->dev_link;
4714fac7c0aSJerin Jacob 	struct rte_eth_link *src = link;
4724fac7c0aSJerin Jacob 
4734fac7c0aSJerin Jacob 	if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
4744fac7c0aSJerin Jacob 		*(uint64_t *)src) == 0)
4754fac7c0aSJerin Jacob 		return -1;
4764fac7c0aSJerin Jacob 
4774fac7c0aSJerin Jacob 	return 0;
4784fac7c0aSJerin Jacob }
4794fac7c0aSJerin Jacob 
4804fac7c0aSJerin Jacob static int
4814fac7c0aSJerin Jacob octeontx_port_link_status(struct octeontx_nic *nic)
4824fac7c0aSJerin Jacob {
4834fac7c0aSJerin Jacob 	int res;
4844fac7c0aSJerin Jacob 
4854fac7c0aSJerin Jacob 	PMD_INIT_FUNC_TRACE();
4864fac7c0aSJerin Jacob 	res = octeontx_bgx_port_link_status(nic->port_id);
4874fac7c0aSJerin Jacob 	if (res < 0) {
4884fac7c0aSJerin Jacob 		octeontx_log_err("failed to get port %d link status",
4894fac7c0aSJerin Jacob 				nic->port_id);
4904fac7c0aSJerin Jacob 		return res;
4914fac7c0aSJerin Jacob 	}
4924fac7c0aSJerin Jacob 
4934fac7c0aSJerin Jacob 	nic->link_up = (uint8_t)res;
4944fac7c0aSJerin Jacob 	octeontx_log_dbg("port %d link status %d", nic->port_id, nic->link_up);
4954fac7c0aSJerin Jacob 
4964fac7c0aSJerin Jacob 	return res;
4974fac7c0aSJerin Jacob }
4984fac7c0aSJerin Jacob 
4994fac7c0aSJerin Jacob /*
5004fac7c0aSJerin Jacob  * Return 0 means link status changed, -1 means not changed
5014fac7c0aSJerin Jacob  */
5024fac7c0aSJerin Jacob static int
5034fac7c0aSJerin Jacob octeontx_dev_link_update(struct rte_eth_dev *dev,
5044fac7c0aSJerin Jacob 			 int wait_to_complete __rte_unused)
5054fac7c0aSJerin Jacob {
5064fac7c0aSJerin Jacob 	struct octeontx_nic *nic = octeontx_pmd_priv(dev);
5074fac7c0aSJerin Jacob 	struct rte_eth_link link;
5084fac7c0aSJerin Jacob 	int res;
5094fac7c0aSJerin Jacob 
5104fac7c0aSJerin Jacob 	res = 0;
5114fac7c0aSJerin Jacob 	PMD_INIT_FUNC_TRACE();
5124fac7c0aSJerin Jacob 
5134fac7c0aSJerin Jacob 	res = octeontx_port_link_status(nic);
5144fac7c0aSJerin Jacob 	if (res < 0) {
5154fac7c0aSJerin Jacob 		octeontx_log_err("failed to request link status %d", res);
5164fac7c0aSJerin Jacob 		return res;
5174fac7c0aSJerin Jacob 	}
5184fac7c0aSJerin Jacob 
5194fac7c0aSJerin Jacob 	link.link_status = nic->link_up;
5204fac7c0aSJerin Jacob 
5214fac7c0aSJerin Jacob 	switch (nic->speed) {
5224fac7c0aSJerin Jacob 	case OCTEONTX_LINK_SPEED_SGMII:
5234fac7c0aSJerin Jacob 		link.link_speed = ETH_SPEED_NUM_1G;
5244fac7c0aSJerin Jacob 		break;
5254fac7c0aSJerin Jacob 
5264fac7c0aSJerin Jacob 	case OCTEONTX_LINK_SPEED_XAUI:
5274fac7c0aSJerin Jacob 		link.link_speed = ETH_SPEED_NUM_10G;
5284fac7c0aSJerin Jacob 		break;
5294fac7c0aSJerin Jacob 
5304fac7c0aSJerin Jacob 	case OCTEONTX_LINK_SPEED_RXAUI:
5314fac7c0aSJerin Jacob 	case OCTEONTX_LINK_SPEED_10G_R:
5324fac7c0aSJerin Jacob 		link.link_speed = ETH_SPEED_NUM_10G;
5334fac7c0aSJerin Jacob 		break;
5344fac7c0aSJerin Jacob 	case OCTEONTX_LINK_SPEED_QSGMII:
5354fac7c0aSJerin Jacob 		link.link_speed = ETH_SPEED_NUM_5G;
5364fac7c0aSJerin Jacob 		break;
5374fac7c0aSJerin Jacob 	case OCTEONTX_LINK_SPEED_40G_R:
5384fac7c0aSJerin Jacob 		link.link_speed = ETH_SPEED_NUM_40G;
5394fac7c0aSJerin Jacob 		break;
5404fac7c0aSJerin Jacob 
5414fac7c0aSJerin Jacob 	case OCTEONTX_LINK_SPEED_RESERVE1:
5424fac7c0aSJerin Jacob 	case OCTEONTX_LINK_SPEED_RESERVE2:
5434fac7c0aSJerin Jacob 	default:
5444fac7c0aSJerin Jacob 		octeontx_log_err("incorrect link speed %d", nic->speed);
5454fac7c0aSJerin Jacob 		break;
5464fac7c0aSJerin Jacob 	}
5474fac7c0aSJerin Jacob 
5484fac7c0aSJerin Jacob 	link.link_duplex = ETH_LINK_AUTONEG;
5494fac7c0aSJerin Jacob 	link.link_autoneg = ETH_LINK_SPEED_AUTONEG;
5504fac7c0aSJerin Jacob 
5514fac7c0aSJerin Jacob 	return octeontx_atomic_write_link_status(dev, &link);
5524fac7c0aSJerin Jacob }
5534fac7c0aSJerin Jacob 
554d5b0924bSMatan Azrad static int
55555389909SJerin Jacob octeontx_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
55655389909SJerin Jacob {
55755389909SJerin Jacob 	struct octeontx_nic *nic = octeontx_pmd_priv(dev);
55855389909SJerin Jacob 
55955389909SJerin Jacob 	PMD_INIT_FUNC_TRACE();
560d5b0924bSMatan Azrad 	return octeontx_port_stats(nic, stats);
56155389909SJerin Jacob }
56255389909SJerin Jacob 
56355389909SJerin Jacob static void
56455389909SJerin Jacob octeontx_dev_stats_reset(struct rte_eth_dev *dev)
56555389909SJerin Jacob {
56655389909SJerin Jacob 	struct octeontx_nic *nic = octeontx_pmd_priv(dev);
56755389909SJerin Jacob 
56855389909SJerin Jacob 	PMD_INIT_FUNC_TRACE();
56955389909SJerin Jacob 	octeontx_port_stats_clr(nic);
57055389909SJerin Jacob }
57155389909SJerin Jacob 
57255389909SJerin Jacob static void
573ef7308fcSJerin Jacob octeontx_dev_default_mac_addr_set(struct rte_eth_dev *dev,
574ef7308fcSJerin Jacob 					struct ether_addr *addr)
575ef7308fcSJerin Jacob {
576ef7308fcSJerin Jacob 	struct octeontx_nic *nic = octeontx_pmd_priv(dev);
577ef7308fcSJerin Jacob 	int ret;
578ef7308fcSJerin Jacob 
579ef7308fcSJerin Jacob 	ret = octeontx_bgx_port_mac_set(nic->port_id, addr->addr_bytes);
580ef7308fcSJerin Jacob 	if (ret != 0)
581ef7308fcSJerin Jacob 		octeontx_log_err("failed to set MAC address on port %d",
582ef7308fcSJerin Jacob 				nic->port_id);
583ef7308fcSJerin Jacob }
584ef7308fcSJerin Jacob 
585ef7308fcSJerin Jacob static void
5867c0347a2SJerin Jacob octeontx_dev_info(struct rte_eth_dev *dev,
5877c0347a2SJerin Jacob 		struct rte_eth_dev_info *dev_info)
5887c0347a2SJerin Jacob {
5897c0347a2SJerin Jacob 	RTE_SET_USED(dev);
5907c0347a2SJerin Jacob 
5917c0347a2SJerin Jacob 	/* Autonegotiation may be disabled */
5927c0347a2SJerin Jacob 	dev_info->speed_capa = ETH_LINK_SPEED_FIXED;
5937c0347a2SJerin Jacob 	dev_info->speed_capa |= ETH_LINK_SPEED_10M | ETH_LINK_SPEED_100M |
5947c0347a2SJerin Jacob 			ETH_LINK_SPEED_1G | ETH_LINK_SPEED_10G |
5957c0347a2SJerin Jacob 			ETH_LINK_SPEED_40G;
5967c0347a2SJerin Jacob 
5977c0347a2SJerin Jacob 	dev_info->driver_name = RTE_STR(rte_octeontx_pmd);
5987c0347a2SJerin Jacob 	dev_info->max_mac_addrs = 1;
5997c0347a2SJerin Jacob 	dev_info->max_rx_pktlen = PKI_MAX_PKTLEN;
6007c0347a2SJerin Jacob 	dev_info->max_rx_queues = 1;
6017c0347a2SJerin Jacob 	dev_info->max_tx_queues = PKO_MAX_NUM_DQ;
6027c0347a2SJerin Jacob 	dev_info->min_rx_bufsize = 0;
6037c0347a2SJerin Jacob 	dev_info->pci_dev = NULL;
6047c0347a2SJerin Jacob 
6057c0347a2SJerin Jacob 	dev_info->default_rxconf = (struct rte_eth_rxconf) {
6067c0347a2SJerin Jacob 		.rx_free_thresh = 0,
6077c0347a2SJerin Jacob 		.rx_drop_en = 0,
6087c0347a2SJerin Jacob 	};
6097c0347a2SJerin Jacob 
6107c0347a2SJerin Jacob 	dev_info->default_txconf = (struct rte_eth_txconf) {
6117c0347a2SJerin Jacob 		.tx_free_thresh = 0,
6127c0347a2SJerin Jacob 		.txq_flags =
6137c0347a2SJerin Jacob 			ETH_TXQ_FLAGS_NOMULTSEGS |
6147c0347a2SJerin Jacob 			ETH_TXQ_FLAGS_NOOFFLOADS |
6157c0347a2SJerin Jacob 			ETH_TXQ_FLAGS_NOXSUMS,
6167c0347a2SJerin Jacob 	};
6177c0347a2SJerin Jacob 
6187c0347a2SJerin Jacob 	dev_info->tx_offload_capa = DEV_TX_OFFLOAD_MT_LOCKFREE;
6197c0347a2SJerin Jacob }
6207c0347a2SJerin Jacob 
6217fe7c98fSJerin Jacob static void
6227fe7c98fSJerin Jacob octeontx_dq_info_getter(octeontx_dq_t *dq, void *out)
6237fe7c98fSJerin Jacob {
6247fe7c98fSJerin Jacob 	((octeontx_dq_t *)out)->lmtline_va = dq->lmtline_va;
6257fe7c98fSJerin Jacob 	((octeontx_dq_t *)out)->ioreg_va = dq->ioreg_va;
6267fe7c98fSJerin Jacob 	((octeontx_dq_t *)out)->fc_status_va = dq->fc_status_va;
6277fe7c98fSJerin Jacob }
6287fe7c98fSJerin Jacob 
6297fe7c98fSJerin Jacob static int
6307fe7c98fSJerin Jacob octeontx_vf_start_tx_queue(struct rte_eth_dev *dev, struct octeontx_nic *nic,
6317fe7c98fSJerin Jacob 				uint16_t qidx)
6327fe7c98fSJerin Jacob {
6337fe7c98fSJerin Jacob 	struct octeontx_txq *txq;
6347fe7c98fSJerin Jacob 	int res;
6357fe7c98fSJerin Jacob 
6367fe7c98fSJerin Jacob 	PMD_INIT_FUNC_TRACE();
6377fe7c98fSJerin Jacob 
6387fe7c98fSJerin Jacob 	if (dev->data->tx_queue_state[qidx] == RTE_ETH_QUEUE_STATE_STARTED)
6397fe7c98fSJerin Jacob 		return 0;
6407fe7c98fSJerin Jacob 
6417fe7c98fSJerin Jacob 	txq = dev->data->tx_queues[qidx];
6427fe7c98fSJerin Jacob 
6437fe7c98fSJerin Jacob 	res = octeontx_pko_channel_query_dqs(nic->base_ochan,
6447fe7c98fSJerin Jacob 						&txq->dq,
6457fe7c98fSJerin Jacob 						sizeof(octeontx_dq_t),
6467fe7c98fSJerin Jacob 						txq->queue_id,
6477fe7c98fSJerin Jacob 						octeontx_dq_info_getter);
6487fe7c98fSJerin Jacob 	if (res < 0) {
6497fe7c98fSJerin Jacob 		res = -EFAULT;
6507fe7c98fSJerin Jacob 		goto close_port;
6517fe7c98fSJerin Jacob 	}
6527fe7c98fSJerin Jacob 
6537fe7c98fSJerin Jacob 	dev->data->tx_queue_state[qidx] = RTE_ETH_QUEUE_STATE_STARTED;
6547fe7c98fSJerin Jacob 	return res;
6557fe7c98fSJerin Jacob 
6567fe7c98fSJerin Jacob close_port:
6577fe7c98fSJerin Jacob 	(void)octeontx_port_stop(nic);
6587fe7c98fSJerin Jacob 	octeontx_pko_channel_stop(nic->base_ochan);
6597fe7c98fSJerin Jacob 	octeontx_pko_channel_close(nic->base_ochan);
6607fe7c98fSJerin Jacob 	dev->data->tx_queue_state[qidx] = RTE_ETH_QUEUE_STATE_STOPPED;
6617fe7c98fSJerin Jacob 	return res;
6627fe7c98fSJerin Jacob }
6637fe7c98fSJerin Jacob 
6647fe7c98fSJerin Jacob static int
6657fe7c98fSJerin Jacob octeontx_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t qidx)
6667fe7c98fSJerin Jacob {
6677fe7c98fSJerin Jacob 	struct octeontx_nic *nic = octeontx_pmd_priv(dev);
6687fe7c98fSJerin Jacob 
6697fe7c98fSJerin Jacob 	PMD_INIT_FUNC_TRACE();
6707fe7c98fSJerin Jacob 	qidx = qidx % PKO_VF_NUM_DQ;
6717fe7c98fSJerin Jacob 	return octeontx_vf_start_tx_queue(dev, nic, qidx);
6727fe7c98fSJerin Jacob }
6737fe7c98fSJerin Jacob 
6747fe7c98fSJerin Jacob static inline int
6757fe7c98fSJerin Jacob octeontx_vf_stop_tx_queue(struct rte_eth_dev *dev, struct octeontx_nic *nic,
6767fe7c98fSJerin Jacob 			  uint16_t qidx)
6777fe7c98fSJerin Jacob {
6787fe7c98fSJerin Jacob 	int ret = 0;
6797fe7c98fSJerin Jacob 
6807fe7c98fSJerin Jacob 	RTE_SET_USED(nic);
6817fe7c98fSJerin Jacob 	PMD_INIT_FUNC_TRACE();
6827fe7c98fSJerin Jacob 
6837fe7c98fSJerin Jacob 	if (dev->data->tx_queue_state[qidx] == RTE_ETH_QUEUE_STATE_STOPPED)
6847fe7c98fSJerin Jacob 		return 0;
6857fe7c98fSJerin Jacob 
6867fe7c98fSJerin Jacob 	dev->data->tx_queue_state[qidx] = RTE_ETH_QUEUE_STATE_STOPPED;
6877fe7c98fSJerin Jacob 	return ret;
6887fe7c98fSJerin Jacob }
6897fe7c98fSJerin Jacob 
6907fe7c98fSJerin Jacob static int
6917fe7c98fSJerin Jacob octeontx_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t qidx)
6927fe7c98fSJerin Jacob {
6937fe7c98fSJerin Jacob 	struct octeontx_nic *nic = octeontx_pmd_priv(dev);
6947fe7c98fSJerin Jacob 
6957fe7c98fSJerin Jacob 	PMD_INIT_FUNC_TRACE();
6967fe7c98fSJerin Jacob 	qidx = qidx % PKO_VF_NUM_DQ;
6977fe7c98fSJerin Jacob 
6987fe7c98fSJerin Jacob 	return octeontx_vf_stop_tx_queue(dev, nic, qidx);
6997fe7c98fSJerin Jacob }
7007fe7c98fSJerin Jacob 
701150cbc84SJerin Jacob static void
702150cbc84SJerin Jacob octeontx_dev_tx_queue_release(void *tx_queue)
703150cbc84SJerin Jacob {
704150cbc84SJerin Jacob 	struct octeontx_txq *txq = tx_queue;
705150cbc84SJerin Jacob 	int res;
706150cbc84SJerin Jacob 
707150cbc84SJerin Jacob 	PMD_INIT_FUNC_TRACE();
708150cbc84SJerin Jacob 
709150cbc84SJerin Jacob 	if (txq) {
710150cbc84SJerin Jacob 		res = octeontx_dev_tx_queue_stop(txq->eth_dev, txq->queue_id);
711150cbc84SJerin Jacob 		if (res < 0)
712150cbc84SJerin Jacob 			octeontx_log_err("failed stop tx_queue(%d)\n",
713150cbc84SJerin Jacob 				   txq->queue_id);
714150cbc84SJerin Jacob 
715150cbc84SJerin Jacob 		rte_free(txq);
716150cbc84SJerin Jacob 	}
717150cbc84SJerin Jacob }
718150cbc84SJerin Jacob 
719150cbc84SJerin Jacob static int
720150cbc84SJerin Jacob octeontx_dev_tx_queue_setup(struct rte_eth_dev *dev, uint16_t qidx,
721150cbc84SJerin Jacob 			    uint16_t nb_desc, unsigned int socket_id,
722150cbc84SJerin Jacob 			    const struct rte_eth_txconf *tx_conf)
723150cbc84SJerin Jacob {
724150cbc84SJerin Jacob 	struct octeontx_nic *nic = octeontx_pmd_priv(dev);
725150cbc84SJerin Jacob 	struct octeontx_txq *txq = NULL;
726150cbc84SJerin Jacob 	uint16_t dq_num;
727150cbc84SJerin Jacob 	int res = 0;
728150cbc84SJerin Jacob 
729150cbc84SJerin Jacob 	RTE_SET_USED(nb_desc);
730150cbc84SJerin Jacob 	RTE_SET_USED(socket_id);
731150cbc84SJerin Jacob 	RTE_SET_USED(tx_conf);
732150cbc84SJerin Jacob 
733150cbc84SJerin Jacob 	dq_num = (nic->port_id * PKO_VF_NUM_DQ) + qidx;
734150cbc84SJerin Jacob 
735150cbc84SJerin Jacob 	/* Socket id check */
736150cbc84SJerin Jacob 	if (socket_id != (unsigned int)SOCKET_ID_ANY &&
737150cbc84SJerin Jacob 			socket_id != (unsigned int)nic->node)
738150cbc84SJerin Jacob 		PMD_TX_LOG(INFO, "socket_id expected %d, configured %d",
739150cbc84SJerin Jacob 						socket_id, nic->node);
740150cbc84SJerin Jacob 
741150cbc84SJerin Jacob 	/* Free memory prior to re-allocation if needed. */
742150cbc84SJerin Jacob 	if (dev->data->tx_queues[qidx] != NULL) {
743150cbc84SJerin Jacob 		PMD_TX_LOG(DEBUG, "freeing memory prior to re-allocation %d",
744150cbc84SJerin Jacob 				qidx);
745150cbc84SJerin Jacob 		octeontx_dev_tx_queue_release(dev->data->tx_queues[qidx]);
746150cbc84SJerin Jacob 		dev->data->tx_queues[qidx] = NULL;
747150cbc84SJerin Jacob 	}
748150cbc84SJerin Jacob 
749150cbc84SJerin Jacob 	/* Allocating tx queue data structure */
750150cbc84SJerin Jacob 	txq = rte_zmalloc_socket("ethdev TX queue", sizeof(struct octeontx_txq),
751150cbc84SJerin Jacob 				 RTE_CACHE_LINE_SIZE, nic->node);
752150cbc84SJerin Jacob 	if (txq == NULL) {
753150cbc84SJerin Jacob 		octeontx_log_err("failed to allocate txq=%d", qidx);
754150cbc84SJerin Jacob 		res = -ENOMEM;
755150cbc84SJerin Jacob 		goto err;
756150cbc84SJerin Jacob 	}
757150cbc84SJerin Jacob 
758150cbc84SJerin Jacob 	txq->eth_dev = dev;
759150cbc84SJerin Jacob 	txq->queue_id = dq_num;
760150cbc84SJerin Jacob 	dev->data->tx_queues[qidx] = txq;
761150cbc84SJerin Jacob 	dev->data->tx_queue_state[qidx] = RTE_ETH_QUEUE_STATE_STOPPED;
762150cbc84SJerin Jacob 
763150cbc84SJerin Jacob 	res = octeontx_pko_channel_query_dqs(nic->base_ochan,
764150cbc84SJerin Jacob 						&txq->dq,
765150cbc84SJerin Jacob 						sizeof(octeontx_dq_t),
766150cbc84SJerin Jacob 						txq->queue_id,
767150cbc84SJerin Jacob 						octeontx_dq_info_getter);
768150cbc84SJerin Jacob 	if (res < 0) {
769150cbc84SJerin Jacob 		res = -EFAULT;
770150cbc84SJerin Jacob 		goto err;
771150cbc84SJerin Jacob 	}
772150cbc84SJerin Jacob 
773150cbc84SJerin Jacob 	PMD_TX_LOG(DEBUG, "[%d]:[%d] txq=%p nb_desc=%d lmtline=%p ioreg_va=%p fc_status_va=%p",
774150cbc84SJerin Jacob 			qidx, txq->queue_id, txq, nb_desc, txq->dq.lmtline_va,
775150cbc84SJerin Jacob 			txq->dq.ioreg_va,
776150cbc84SJerin Jacob 			txq->dq.fc_status_va);
777150cbc84SJerin Jacob 
778150cbc84SJerin Jacob 	return res;
779150cbc84SJerin Jacob 
780150cbc84SJerin Jacob err:
781150cbc84SJerin Jacob 	if (txq)
782150cbc84SJerin Jacob 		rte_free(txq);
783150cbc84SJerin Jacob 
784150cbc84SJerin Jacob 	return res;
785150cbc84SJerin Jacob }
786150cbc84SJerin Jacob 
787197438eeSJerin Jacob static int
788197438eeSJerin Jacob octeontx_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t qidx,
789197438eeSJerin Jacob 				uint16_t nb_desc, unsigned int socket_id,
790197438eeSJerin Jacob 				const struct rte_eth_rxconf *rx_conf,
791197438eeSJerin Jacob 				struct rte_mempool *mb_pool)
792197438eeSJerin Jacob {
793197438eeSJerin Jacob 	struct octeontx_nic *nic = octeontx_pmd_priv(dev);
794197438eeSJerin Jacob 	struct rte_mempool_ops *mp_ops = NULL;
795197438eeSJerin Jacob 	struct octeontx_rxq *rxq = NULL;
796197438eeSJerin Jacob 	pki_pktbuf_cfg_t pktbuf_conf;
797197438eeSJerin Jacob 	pki_hash_cfg_t pki_hash;
798197438eeSJerin Jacob 	pki_qos_cfg_t pki_qos;
799197438eeSJerin Jacob 	uintptr_t pool;
800197438eeSJerin Jacob 	int ret, port;
801197438eeSJerin Jacob 	uint8_t gaura;
802197438eeSJerin Jacob 	unsigned int ev_queues = (nic->ev_queues * nic->port_id) + qidx;
803197438eeSJerin Jacob 	unsigned int ev_ports = (nic->ev_ports * nic->port_id) + qidx;
804197438eeSJerin Jacob 
805197438eeSJerin Jacob 	RTE_SET_USED(nb_desc);
806197438eeSJerin Jacob 
807197438eeSJerin Jacob 	memset(&pktbuf_conf, 0, sizeof(pktbuf_conf));
808197438eeSJerin Jacob 	memset(&pki_hash, 0, sizeof(pki_hash));
809197438eeSJerin Jacob 	memset(&pki_qos, 0, sizeof(pki_qos));
810197438eeSJerin Jacob 
811197438eeSJerin Jacob 	mp_ops = rte_mempool_get_ops(mb_pool->ops_index);
812197438eeSJerin Jacob 	if (strcmp(mp_ops->name, "octeontx_fpavf")) {
813197438eeSJerin Jacob 		octeontx_log_err("failed to find octeontx_fpavf mempool");
814197438eeSJerin Jacob 		return -ENOTSUP;
815197438eeSJerin Jacob 	}
816197438eeSJerin Jacob 
817197438eeSJerin Jacob 	/* Handle forbidden configurations */
818197438eeSJerin Jacob 	if (nic->pki.classifier_enable) {
819197438eeSJerin Jacob 		octeontx_log_err("cannot setup queue %d. "
820197438eeSJerin Jacob 					"Classifier option unsupported", qidx);
821197438eeSJerin Jacob 		return -EINVAL;
822197438eeSJerin Jacob 	}
823197438eeSJerin Jacob 
824197438eeSJerin Jacob 	port = nic->port_id;
825197438eeSJerin Jacob 
826197438eeSJerin Jacob 	/* Rx deferred start is not supported */
827197438eeSJerin Jacob 	if (rx_conf->rx_deferred_start) {
828197438eeSJerin Jacob 		octeontx_log_err("rx deferred start not supported");
829197438eeSJerin Jacob 		return -EINVAL;
830197438eeSJerin Jacob 	}
831197438eeSJerin Jacob 
832197438eeSJerin Jacob 	/* Verify queue index */
833197438eeSJerin Jacob 	if (qidx >= dev->data->nb_rx_queues) {
834197438eeSJerin Jacob 		octeontx_log_err("QID %d not supporteded (0 - %d available)\n",
835197438eeSJerin Jacob 				qidx, (dev->data->nb_rx_queues - 1));
836197438eeSJerin Jacob 		return -ENOTSUP;
837197438eeSJerin Jacob 	}
838197438eeSJerin Jacob 
839197438eeSJerin Jacob 	/* Socket id check */
840197438eeSJerin Jacob 	if (socket_id != (unsigned int)SOCKET_ID_ANY &&
841197438eeSJerin Jacob 			socket_id != (unsigned int)nic->node)
842197438eeSJerin Jacob 		PMD_RX_LOG(INFO, "socket_id expected %d, configured %d",
843197438eeSJerin Jacob 						socket_id, nic->node);
844197438eeSJerin Jacob 
845197438eeSJerin Jacob 	/* Allocating rx queue data structure */
846197438eeSJerin Jacob 	rxq = rte_zmalloc_socket("ethdev RX queue", sizeof(struct octeontx_rxq),
847197438eeSJerin Jacob 				 RTE_CACHE_LINE_SIZE, nic->node);
848197438eeSJerin Jacob 	if (rxq == NULL) {
849197438eeSJerin Jacob 		octeontx_log_err("failed to allocate rxq=%d", qidx);
850197438eeSJerin Jacob 		return -ENOMEM;
851197438eeSJerin Jacob 	}
852197438eeSJerin Jacob 
853197438eeSJerin Jacob 	if (!nic->pki.initialized) {
854197438eeSJerin Jacob 		pktbuf_conf.port_type = 0;
855197438eeSJerin Jacob 		pki_hash.port_type = 0;
856197438eeSJerin Jacob 		pki_qos.port_type = 0;
857197438eeSJerin Jacob 
858197438eeSJerin Jacob 		pktbuf_conf.mmask.f_wqe_skip = 1;
859197438eeSJerin Jacob 		pktbuf_conf.mmask.f_first_skip = 1;
860197438eeSJerin Jacob 		pktbuf_conf.mmask.f_later_skip = 1;
861197438eeSJerin Jacob 		pktbuf_conf.mmask.f_mbuff_size = 1;
862197438eeSJerin Jacob 		pktbuf_conf.mmask.f_cache_mode = 1;
863197438eeSJerin Jacob 
864197438eeSJerin Jacob 		pktbuf_conf.wqe_skip = OCTTX_PACKET_WQE_SKIP;
865197438eeSJerin Jacob 		pktbuf_conf.first_skip = OCTTX_PACKET_FIRST_SKIP;
866197438eeSJerin Jacob 		pktbuf_conf.later_skip = OCTTX_PACKET_LATER_SKIP;
867197438eeSJerin Jacob 		pktbuf_conf.mbuff_size = (mb_pool->elt_size -
868197438eeSJerin Jacob 					RTE_PKTMBUF_HEADROOM -
869197438eeSJerin Jacob 					sizeof(struct rte_mbuf));
870197438eeSJerin Jacob 
871197438eeSJerin Jacob 		pktbuf_conf.cache_mode = PKI_OPC_MODE_STF2_STT;
872197438eeSJerin Jacob 
873197438eeSJerin Jacob 		ret = octeontx_pki_port_pktbuf_config(port, &pktbuf_conf);
874197438eeSJerin Jacob 		if (ret != 0) {
875197438eeSJerin Jacob 			octeontx_log_err("fail to configure pktbuf for port %d",
876197438eeSJerin Jacob 					port);
877197438eeSJerin Jacob 			rte_free(rxq);
878197438eeSJerin Jacob 			return ret;
879197438eeSJerin Jacob 		}
880197438eeSJerin Jacob 		PMD_RX_LOG(DEBUG, "Port %d Rx pktbuf configured:\n"
881197438eeSJerin Jacob 				"\tmbuf_size:\t0x%0x\n"
882197438eeSJerin Jacob 				"\twqe_skip:\t0x%0x\n"
883197438eeSJerin Jacob 				"\tfirst_skip:\t0x%0x\n"
884197438eeSJerin Jacob 				"\tlater_skip:\t0x%0x\n"
885197438eeSJerin Jacob 				"\tcache_mode:\t%s\n",
886197438eeSJerin Jacob 				port,
887197438eeSJerin Jacob 				pktbuf_conf.mbuff_size,
888197438eeSJerin Jacob 				pktbuf_conf.wqe_skip,
889197438eeSJerin Jacob 				pktbuf_conf.first_skip,
890197438eeSJerin Jacob 				pktbuf_conf.later_skip,
891197438eeSJerin Jacob 				(pktbuf_conf.cache_mode ==
892197438eeSJerin Jacob 						PKI_OPC_MODE_STT) ?
893197438eeSJerin Jacob 				"STT" :
894197438eeSJerin Jacob 				(pktbuf_conf.cache_mode ==
895197438eeSJerin Jacob 						PKI_OPC_MODE_STF) ?
896197438eeSJerin Jacob 				"STF" :
897197438eeSJerin Jacob 				(pktbuf_conf.cache_mode ==
898197438eeSJerin Jacob 						PKI_OPC_MODE_STF1_STT) ?
899197438eeSJerin Jacob 				"STF1_STT" : "STF2_STT");
900197438eeSJerin Jacob 
901197438eeSJerin Jacob 		if (nic->pki.hash_enable) {
902197438eeSJerin Jacob 			pki_hash.tag_dlc = 1;
903197438eeSJerin Jacob 			pki_hash.tag_slc = 1;
904197438eeSJerin Jacob 			pki_hash.tag_dlf = 1;
905197438eeSJerin Jacob 			pki_hash.tag_slf = 1;
906d0d65498SPavan Nikhilesh 			pki_hash.tag_prt = 1;
907197438eeSJerin Jacob 			octeontx_pki_port_hash_config(port, &pki_hash);
908197438eeSJerin Jacob 		}
909197438eeSJerin Jacob 
910197438eeSJerin Jacob 		pool = (uintptr_t)mb_pool->pool_id;
911197438eeSJerin Jacob 
912197438eeSJerin Jacob 		/* Get the gpool Id */
913197438eeSJerin Jacob 		gaura = octeontx_fpa_bufpool_gpool(pool);
914197438eeSJerin Jacob 
915197438eeSJerin Jacob 		pki_qos.qpg_qos = PKI_QPG_QOS_NONE;
916197438eeSJerin Jacob 		pki_qos.num_entry = 1;
917197438eeSJerin Jacob 		pki_qos.drop_policy = 0;
918d0d65498SPavan Nikhilesh 		pki_qos.tag_type = 0L;
919197438eeSJerin Jacob 		pki_qos.qos_entry[0].port_add = 0;
920197438eeSJerin Jacob 		pki_qos.qos_entry[0].gaura = gaura;
921197438eeSJerin Jacob 		pki_qos.qos_entry[0].ggrp_ok = ev_queues;
922197438eeSJerin Jacob 		pki_qos.qos_entry[0].ggrp_bad = ev_queues;
923197438eeSJerin Jacob 		pki_qos.qos_entry[0].grptag_bad = 0;
924197438eeSJerin Jacob 		pki_qos.qos_entry[0].grptag_ok = 0;
925197438eeSJerin Jacob 
926197438eeSJerin Jacob 		ret = octeontx_pki_port_create_qos(port, &pki_qos);
927197438eeSJerin Jacob 		if (ret < 0) {
928197438eeSJerin Jacob 			octeontx_log_err("failed to create QOS port=%d, q=%d",
929197438eeSJerin Jacob 					port, qidx);
930197438eeSJerin Jacob 			rte_free(rxq);
931197438eeSJerin Jacob 			return ret;
932197438eeSJerin Jacob 		}
933197438eeSJerin Jacob 		nic->pki.initialized = true;
934197438eeSJerin Jacob 	}
935197438eeSJerin Jacob 
936197438eeSJerin Jacob 	rxq->port_id = nic->port_id;
937197438eeSJerin Jacob 	rxq->eth_dev = dev;
938197438eeSJerin Jacob 	rxq->queue_id = qidx;
939197438eeSJerin Jacob 	rxq->evdev = nic->evdev;
940197438eeSJerin Jacob 	rxq->ev_queues = ev_queues;
941197438eeSJerin Jacob 	rxq->ev_ports = ev_ports;
942197438eeSJerin Jacob 
943197438eeSJerin Jacob 	dev->data->rx_queues[qidx] = rxq;
944197438eeSJerin Jacob 	dev->data->rx_queue_state[qidx] = RTE_ETH_QUEUE_STATE_STOPPED;
945197438eeSJerin Jacob 	return 0;
946197438eeSJerin Jacob }
947197438eeSJerin Jacob 
948197438eeSJerin Jacob static void
949197438eeSJerin Jacob octeontx_dev_rx_queue_release(void *rxq)
950197438eeSJerin Jacob {
951197438eeSJerin Jacob 	rte_free(rxq);
952197438eeSJerin Jacob }
953197438eeSJerin Jacob 
95420186d43SJerin Jacob static const uint32_t *
95520186d43SJerin Jacob octeontx_dev_supported_ptypes_get(struct rte_eth_dev *dev)
95620186d43SJerin Jacob {
95720186d43SJerin Jacob 	static const uint32_t ptypes[] = {
95820186d43SJerin Jacob 		RTE_PTYPE_L3_IPV4,
95920186d43SJerin Jacob 		RTE_PTYPE_L3_IPV4_EXT,
96020186d43SJerin Jacob 		RTE_PTYPE_L3_IPV6,
96120186d43SJerin Jacob 		RTE_PTYPE_L3_IPV6_EXT,
96220186d43SJerin Jacob 		RTE_PTYPE_L4_TCP,
96320186d43SJerin Jacob 		RTE_PTYPE_L4_UDP,
96420186d43SJerin Jacob 		RTE_PTYPE_L4_FRAG,
96520186d43SJerin Jacob 		RTE_PTYPE_UNKNOWN
96620186d43SJerin Jacob 	};
96720186d43SJerin Jacob 
96820186d43SJerin Jacob 	if (dev->rx_pkt_burst == octeontx_recv_pkts)
96920186d43SJerin Jacob 		return ptypes;
97020186d43SJerin Jacob 
97120186d43SJerin Jacob 	return NULL;
97220186d43SJerin Jacob }
97320186d43SJerin Jacob 
974*5452a17dSPavan Nikhilesh static int
975*5452a17dSPavan Nikhilesh octeontx_pool_ops(struct rte_eth_dev *dev, const char *pool)
976*5452a17dSPavan Nikhilesh {
977*5452a17dSPavan Nikhilesh 	RTE_SET_USED(dev);
978*5452a17dSPavan Nikhilesh 
979*5452a17dSPavan Nikhilesh 	if (!strcmp(pool, "octeontx_fpavf"))
980*5452a17dSPavan Nikhilesh 		return 0;
981*5452a17dSPavan Nikhilesh 
982*5452a17dSPavan Nikhilesh 	return -ENOTSUP;
983*5452a17dSPavan Nikhilesh }
984*5452a17dSPavan Nikhilesh 
985f18b146cSJerin Jacob /* Initialize and register driver with DPDK Application */
986f18b146cSJerin Jacob static const struct eth_dev_ops octeontx_dev_ops = {
9877742c55aSJerin Jacob 	.dev_configure		 = octeontx_dev_configure,
9887c0347a2SJerin Jacob 	.dev_infos_get		 = octeontx_dev_info,
989da6c6874SJerin Jacob 	.dev_close		 = octeontx_dev_close,
990da6c6874SJerin Jacob 	.dev_start		 = octeontx_dev_start,
991da6c6874SJerin Jacob 	.dev_stop		 = octeontx_dev_stop,
99215bce35bSJerin Jacob 	.promiscuous_enable	 = octeontx_dev_promisc_enable,
99315bce35bSJerin Jacob 	.promiscuous_disable	 = octeontx_dev_promisc_disable,
9944fac7c0aSJerin Jacob 	.link_update		 = octeontx_dev_link_update,
99555389909SJerin Jacob 	.stats_get		 = octeontx_dev_stats_get,
99655389909SJerin Jacob 	.stats_reset		 = octeontx_dev_stats_reset,
997ef7308fcSJerin Jacob 	.mac_addr_set		 = octeontx_dev_default_mac_addr_set,
9987fe7c98fSJerin Jacob 	.tx_queue_start		 = octeontx_dev_tx_queue_start,
9997fe7c98fSJerin Jacob 	.tx_queue_stop		 = octeontx_dev_tx_queue_stop,
1000150cbc84SJerin Jacob 	.tx_queue_setup		 = octeontx_dev_tx_queue_setup,
1001150cbc84SJerin Jacob 	.tx_queue_release	 = octeontx_dev_tx_queue_release,
1002197438eeSJerin Jacob 	.rx_queue_setup		 = octeontx_dev_rx_queue_setup,
1003197438eeSJerin Jacob 	.rx_queue_release	 = octeontx_dev_rx_queue_release,
100420186d43SJerin Jacob 	.dev_supported_ptypes_get = octeontx_dev_supported_ptypes_get,
1005*5452a17dSPavan Nikhilesh 	.pool_ops_supported      = octeontx_pool_ops,
1006f18b146cSJerin Jacob };
1007f18b146cSJerin Jacob 
1008f7be70e5SJerin Jacob /* Create Ethdev interface per BGX LMAC ports */
1009f7be70e5SJerin Jacob static int
1010f7be70e5SJerin Jacob octeontx_create(struct rte_vdev_device *dev, int port, uint8_t evdev,
1011f7be70e5SJerin Jacob 			int socket_id)
1012f7be70e5SJerin Jacob {
1013f18b146cSJerin Jacob 	int res;
1014f18b146cSJerin Jacob 	char octtx_name[OCTEONTX_MAX_NAME_LEN];
1015f18b146cSJerin Jacob 	struct octeontx_nic *nic = NULL;
1016f18b146cSJerin Jacob 	struct rte_eth_dev *eth_dev = NULL;
1017f18b146cSJerin Jacob 	struct rte_eth_dev_data *data = NULL;
1018f18b146cSJerin Jacob 	const char *name = rte_vdev_device_name(dev);
1019f7be70e5SJerin Jacob 
1020f18b146cSJerin Jacob 	PMD_INIT_FUNC_TRACE();
1021f18b146cSJerin Jacob 
1022f18b146cSJerin Jacob 	sprintf(octtx_name, "%s_%d", name, port);
1023f18b146cSJerin Jacob 	if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1024f18b146cSJerin Jacob 		eth_dev = rte_eth_dev_attach_secondary(octtx_name);
1025f18b146cSJerin Jacob 		if (eth_dev == NULL)
1026f7be70e5SJerin Jacob 			return -ENODEV;
1027f18b146cSJerin Jacob 
1028da6c6874SJerin Jacob 		eth_dev->tx_pkt_burst = octeontx_xmit_pkts;
1029da6c6874SJerin Jacob 		eth_dev->rx_pkt_burst = octeontx_recv_pkts;
1030f18b146cSJerin Jacob 		return 0;
1031f18b146cSJerin Jacob 	}
1032f18b146cSJerin Jacob 
1033f18b146cSJerin Jacob 	data = rte_zmalloc_socket(octtx_name, sizeof(*data), 0, socket_id);
1034f18b146cSJerin Jacob 	if (data == NULL) {
1035f18b146cSJerin Jacob 		octeontx_log_err("failed to allocate devdata");
1036f18b146cSJerin Jacob 		res = -ENOMEM;
1037f18b146cSJerin Jacob 		goto err;
1038f18b146cSJerin Jacob 	}
1039f18b146cSJerin Jacob 
1040f18b146cSJerin Jacob 	nic = rte_zmalloc_socket(octtx_name, sizeof(*nic), 0, socket_id);
1041f18b146cSJerin Jacob 	if (nic == NULL) {
1042f18b146cSJerin Jacob 		octeontx_log_err("failed to allocate nic structure");
1043f18b146cSJerin Jacob 		res = -ENOMEM;
1044f18b146cSJerin Jacob 		goto err;
1045f18b146cSJerin Jacob 	}
1046f18b146cSJerin Jacob 
1047f18b146cSJerin Jacob 	nic->port_id = port;
1048f18b146cSJerin Jacob 	nic->evdev = evdev;
1049f18b146cSJerin Jacob 
1050f18b146cSJerin Jacob 	res = octeontx_port_open(nic);
1051f18b146cSJerin Jacob 	if (res < 0)
1052f18b146cSJerin Jacob 		goto err;
1053f18b146cSJerin Jacob 
1054f18b146cSJerin Jacob 	/* Rx side port configuration */
1055f18b146cSJerin Jacob 	res = octeontx_pki_port_open(port);
1056f18b146cSJerin Jacob 	if (res != 0) {
1057f18b146cSJerin Jacob 		octeontx_log_err("failed to open PKI port %d", port);
1058f18b146cSJerin Jacob 		res = -ENODEV;
1059f18b146cSJerin Jacob 		goto err;
1060f18b146cSJerin Jacob 	}
1061f18b146cSJerin Jacob 
1062f18b146cSJerin Jacob 	/* Reserve an ethdev entry */
1063f18b146cSJerin Jacob 	eth_dev = rte_eth_dev_allocate(octtx_name);
1064f18b146cSJerin Jacob 	if (eth_dev == NULL) {
1065f18b146cSJerin Jacob 		octeontx_log_err("failed to allocate rte_eth_dev");
1066f18b146cSJerin Jacob 		res = -ENOMEM;
1067f18b146cSJerin Jacob 		goto err;
1068f18b146cSJerin Jacob 	}
1069f18b146cSJerin Jacob 
1070f18b146cSJerin Jacob 	eth_dev->device = &dev->device;
1071f18b146cSJerin Jacob 	eth_dev->intr_handle = NULL;
1072f18b146cSJerin Jacob 	eth_dev->data->kdrv = RTE_KDRV_NONE;
1073f18b146cSJerin Jacob 	eth_dev->data->numa_node = dev->device.numa_node;
1074f18b146cSJerin Jacob 
1075f18b146cSJerin Jacob 	rte_memcpy(data, (eth_dev)->data, sizeof(*data));
1076f18b146cSJerin Jacob 	data->dev_private = nic;
1077f18b146cSJerin Jacob 
1078f18b146cSJerin Jacob 	data->port_id = eth_dev->data->port_id;
1079f18b146cSJerin Jacob 	snprintf(data->name, sizeof(data->name), "%s", eth_dev->data->name);
1080f18b146cSJerin Jacob 
1081f18b146cSJerin Jacob 	nic->ev_queues = 1;
1082f18b146cSJerin Jacob 	nic->ev_ports = 1;
1083f18b146cSJerin Jacob 
1084f18b146cSJerin Jacob 	data->dev_link.link_status = ETH_LINK_DOWN;
1085f18b146cSJerin Jacob 	data->dev_started = 0;
1086f18b146cSJerin Jacob 	data->promiscuous = 0;
1087f18b146cSJerin Jacob 	data->all_multicast = 0;
1088f18b146cSJerin Jacob 	data->scattered_rx = 0;
1089f18b146cSJerin Jacob 
1090f18b146cSJerin Jacob 	data->mac_addrs = rte_zmalloc_socket(octtx_name, ETHER_ADDR_LEN, 0,
1091f18b146cSJerin Jacob 							socket_id);
1092f18b146cSJerin Jacob 	if (data->mac_addrs == NULL) {
1093f18b146cSJerin Jacob 		octeontx_log_err("failed to allocate memory for mac_addrs");
1094f18b146cSJerin Jacob 		res = -ENOMEM;
1095f18b146cSJerin Jacob 		goto err;
1096f18b146cSJerin Jacob 	}
1097f18b146cSJerin Jacob 
1098f18b146cSJerin Jacob 	eth_dev->data = data;
1099f18b146cSJerin Jacob 	eth_dev->dev_ops = &octeontx_dev_ops;
1100f18b146cSJerin Jacob 
1101f18b146cSJerin Jacob 	/* Finally save ethdev pointer to the NIC structure */
1102f18b146cSJerin Jacob 	nic->dev = eth_dev;
1103f18b146cSJerin Jacob 
1104f18b146cSJerin Jacob 	if (nic->port_id != data->port_id) {
1105f18b146cSJerin Jacob 		octeontx_log_err("eth_dev->port_id (%d) is diff to orig (%d)",
1106f18b146cSJerin Jacob 				data->port_id, nic->port_id);
1107f18b146cSJerin Jacob 		res = -EINVAL;
1108f18b146cSJerin Jacob 		goto err;
1109f18b146cSJerin Jacob 	}
1110f18b146cSJerin Jacob 
1111f18b146cSJerin Jacob 	/* Update port_id mac to eth_dev */
1112f18b146cSJerin Jacob 	memcpy(data->mac_addrs, nic->mac_addr, ETHER_ADDR_LEN);
1113f18b146cSJerin Jacob 
1114f18b146cSJerin Jacob 	PMD_INIT_LOG(DEBUG, "ethdev info: ");
1115f18b146cSJerin Jacob 	PMD_INIT_LOG(DEBUG, "port %d, port_ena %d ochan %d num_ochan %d tx_q %d",
1116f18b146cSJerin Jacob 				nic->port_id, nic->port_ena,
1117f18b146cSJerin Jacob 				nic->base_ochan, nic->num_ochans,
1118f18b146cSJerin Jacob 				nic->num_tx_queues);
1119f18b146cSJerin Jacob 	PMD_INIT_LOG(DEBUG, "speed %d mtu %d", nic->speed, nic->mtu);
1120f18b146cSJerin Jacob 
1121f18b146cSJerin Jacob 	return data->port_id;
1122f18b146cSJerin Jacob 
1123f18b146cSJerin Jacob err:
1124f18b146cSJerin Jacob 	if (port)
1125f18b146cSJerin Jacob 		octeontx_port_close(nic);
1126f18b146cSJerin Jacob 
1127f18b146cSJerin Jacob 	if (eth_dev != NULL) {
1128f18b146cSJerin Jacob 		rte_free(eth_dev->data->mac_addrs);
1129f18b146cSJerin Jacob 		rte_free(data);
1130f18b146cSJerin Jacob 		rte_free(nic);
1131f18b146cSJerin Jacob 		rte_eth_dev_release_port(eth_dev);
1132f18b146cSJerin Jacob 	}
1133f18b146cSJerin Jacob 
1134f18b146cSJerin Jacob 	return res;
1135f7be70e5SJerin Jacob }
1136f7be70e5SJerin Jacob 
1137f7be70e5SJerin Jacob /* Un initialize octeontx device */
1138f7be70e5SJerin Jacob static int
1139f7be70e5SJerin Jacob octeontx_remove(struct rte_vdev_device *dev)
1140f7be70e5SJerin Jacob {
1141f7be70e5SJerin Jacob 	char octtx_name[OCTEONTX_MAX_NAME_LEN];
1142f7be70e5SJerin Jacob 	struct rte_eth_dev *eth_dev = NULL;
1143f7be70e5SJerin Jacob 	struct octeontx_nic *nic = NULL;
1144f7be70e5SJerin Jacob 	int i;
1145f7be70e5SJerin Jacob 
1146f7be70e5SJerin Jacob 	if (dev == NULL)
1147f7be70e5SJerin Jacob 		return -EINVAL;
1148f7be70e5SJerin Jacob 
1149f7be70e5SJerin Jacob 	for (i = 0; i < OCTEONTX_VDEV_DEFAULT_MAX_NR_PORT; i++) {
1150f7be70e5SJerin Jacob 		sprintf(octtx_name, "eth_octeontx_%d", i);
1151f7be70e5SJerin Jacob 
1152f7be70e5SJerin Jacob 		/* reserve an ethdev entry */
1153f7be70e5SJerin Jacob 		eth_dev = rte_eth_dev_allocated(octtx_name);
1154f7be70e5SJerin Jacob 		if (eth_dev == NULL)
1155f7be70e5SJerin Jacob 			return -ENODEV;
1156f7be70e5SJerin Jacob 
1157f7be70e5SJerin Jacob 		nic = octeontx_pmd_priv(eth_dev);
1158f7be70e5SJerin Jacob 		rte_event_dev_stop(nic->evdev);
1159f7be70e5SJerin Jacob 		PMD_INIT_LOG(INFO, "Closing octeontx device %s", octtx_name);
1160f7be70e5SJerin Jacob 
1161f7be70e5SJerin Jacob 		rte_free(eth_dev->data->mac_addrs);
1162f7be70e5SJerin Jacob 		rte_free(eth_dev->data->dev_private);
1163f7be70e5SJerin Jacob 		rte_free(eth_dev->data);
1164f7be70e5SJerin Jacob 		rte_eth_dev_release_port(eth_dev);
1165f7be70e5SJerin Jacob 		rte_event_dev_close(nic->evdev);
1166f7be70e5SJerin Jacob 	}
1167f7be70e5SJerin Jacob 
1168f7be70e5SJerin Jacob 	/* Free FC resource */
1169f7be70e5SJerin Jacob 	octeontx_pko_fc_free();
1170f7be70e5SJerin Jacob 
1171f7be70e5SJerin Jacob 	return 0;
1172f7be70e5SJerin Jacob }
1173f7be70e5SJerin Jacob 
1174f7be70e5SJerin Jacob /* Initialize octeontx device */
1175f7be70e5SJerin Jacob static int
1176f7be70e5SJerin Jacob octeontx_probe(struct rte_vdev_device *dev)
1177f7be70e5SJerin Jacob {
1178f7be70e5SJerin Jacob 	const char *dev_name;
1179f7be70e5SJerin Jacob 	static int probe_once;
1180f7be70e5SJerin Jacob 	uint8_t socket_id, qlist;
1181f7be70e5SJerin Jacob 	int tx_vfcnt, port_id, evdev, qnum, pnum, res, i;
1182f7be70e5SJerin Jacob 	struct rte_event_dev_config dev_conf;
1183f7be70e5SJerin Jacob 	const char *eventdev_name = "event_octeontx";
1184f7be70e5SJerin Jacob 	struct rte_event_dev_info info;
1185f7be70e5SJerin Jacob 
1186f7be70e5SJerin Jacob 	struct octeontx_vdev_init_params init_params = {
1187f7be70e5SJerin Jacob 		OCTEONTX_VDEV_DEFAULT_MAX_NR_PORT
1188f7be70e5SJerin Jacob 	};
1189f7be70e5SJerin Jacob 
1190f7be70e5SJerin Jacob 	dev_name = rte_vdev_device_name(dev);
1191f7be70e5SJerin Jacob 	res = octeontx_parse_vdev_init_params(&init_params, dev);
1192f7be70e5SJerin Jacob 	if (res < 0)
1193f7be70e5SJerin Jacob 		return -EINVAL;
1194f7be70e5SJerin Jacob 
1195f7be70e5SJerin Jacob 	if (init_params.nr_port > OCTEONTX_VDEV_DEFAULT_MAX_NR_PORT) {
1196f7be70e5SJerin Jacob 		octeontx_log_err("nr_port (%d) > max (%d)", init_params.nr_port,
1197f7be70e5SJerin Jacob 				OCTEONTX_VDEV_DEFAULT_MAX_NR_PORT);
1198f7be70e5SJerin Jacob 		return -ENOTSUP;
1199f7be70e5SJerin Jacob 	}
1200f7be70e5SJerin Jacob 
1201f7be70e5SJerin Jacob 	PMD_INIT_LOG(DEBUG, "initializing %s pmd", dev_name);
1202f7be70e5SJerin Jacob 
1203f7be70e5SJerin Jacob 	socket_id = rte_socket_id();
1204f7be70e5SJerin Jacob 
1205f7be70e5SJerin Jacob 	tx_vfcnt = octeontx_pko_vf_count();
1206f7be70e5SJerin Jacob 
1207f7be70e5SJerin Jacob 	if (tx_vfcnt < init_params.nr_port) {
1208f7be70e5SJerin Jacob 		octeontx_log_err("not enough PKO (%d) for port number (%d)",
1209f7be70e5SJerin Jacob 				tx_vfcnt, init_params.nr_port);
1210f7be70e5SJerin Jacob 		return -EINVAL;
1211f7be70e5SJerin Jacob 	}
1212f7be70e5SJerin Jacob 	evdev = rte_event_dev_get_dev_id(eventdev_name);
1213f7be70e5SJerin Jacob 	if (evdev < 0) {
1214f7be70e5SJerin Jacob 		octeontx_log_err("eventdev %s not found", eventdev_name);
1215f7be70e5SJerin Jacob 		return -ENODEV;
1216f7be70e5SJerin Jacob 	}
1217f7be70e5SJerin Jacob 
1218f7be70e5SJerin Jacob 	res = rte_event_dev_info_get(evdev, &info);
1219f7be70e5SJerin Jacob 	if (res < 0) {
1220f7be70e5SJerin Jacob 		octeontx_log_err("failed to eventdev info %d", res);
1221f7be70e5SJerin Jacob 		return -EINVAL;
1222f7be70e5SJerin Jacob 	}
1223f7be70e5SJerin Jacob 
1224f7be70e5SJerin Jacob 	PMD_INIT_LOG(DEBUG, "max_queue %d max_port %d",
1225f7be70e5SJerin Jacob 			info.max_event_queues, info.max_event_ports);
1226f7be70e5SJerin Jacob 
1227f7be70e5SJerin Jacob 	if (octeontx_pko_init_fc(tx_vfcnt))
1228f7be70e5SJerin Jacob 		return -ENOMEM;
1229f7be70e5SJerin Jacob 
1230f7be70e5SJerin Jacob 	devconf_set_default_sane_values(&dev_conf, &info);
1231f7be70e5SJerin Jacob 	res = rte_event_dev_configure(evdev, &dev_conf);
1232f7be70e5SJerin Jacob 	if (res < 0)
1233f7be70e5SJerin Jacob 		goto parse_error;
1234f7be70e5SJerin Jacob 
1235f7be70e5SJerin Jacob 	rte_event_dev_attr_get(evdev, RTE_EVENT_DEV_ATTR_PORT_COUNT,
1236f7be70e5SJerin Jacob 			(uint32_t *)&pnum);
1237f7be70e5SJerin Jacob 	rte_event_dev_attr_get(evdev, RTE_EVENT_DEV_ATTR_QUEUE_COUNT,
1238f7be70e5SJerin Jacob 			(uint32_t *)&qnum);
1239f7be70e5SJerin Jacob 	if (pnum < qnum) {
1240f7be70e5SJerin Jacob 		octeontx_log_err("too few event ports (%d) for event_q(%d)",
1241f7be70e5SJerin Jacob 				pnum, qnum);
1242f7be70e5SJerin Jacob 		res = -EINVAL;
1243f7be70e5SJerin Jacob 		goto parse_error;
1244f7be70e5SJerin Jacob 	}
1245f7be70e5SJerin Jacob 	if (pnum > qnum) {
1246f7be70e5SJerin Jacob 		/*
1247f7be70e5SJerin Jacob 		 * We don't poll on event ports
1248f7be70e5SJerin Jacob 		 * that do not have any queues assigned.
1249f7be70e5SJerin Jacob 		 */
1250f7be70e5SJerin Jacob 		pnum = qnum;
1251f7be70e5SJerin Jacob 		PMD_INIT_LOG(INFO,
1252f7be70e5SJerin Jacob 			"reducing number of active event ports to %d", pnum);
1253f7be70e5SJerin Jacob 	}
1254f7be70e5SJerin Jacob 	for (i = 0; i < qnum; i++) {
1255f7be70e5SJerin Jacob 		res = rte_event_queue_setup(evdev, i, NULL);
1256f7be70e5SJerin Jacob 		if (res < 0) {
1257f7be70e5SJerin Jacob 			octeontx_log_err("failed to setup event_q(%d): res %d",
1258f7be70e5SJerin Jacob 					i, res);
1259f7be70e5SJerin Jacob 			goto parse_error;
1260f7be70e5SJerin Jacob 		}
1261f7be70e5SJerin Jacob 	}
1262f7be70e5SJerin Jacob 
1263f7be70e5SJerin Jacob 	for (i = 0; i < pnum; i++) {
1264f7be70e5SJerin Jacob 		res = rte_event_port_setup(evdev, i, NULL);
1265f7be70e5SJerin Jacob 		if (res < 0) {
1266f7be70e5SJerin Jacob 			res = -ENODEV;
1267f7be70e5SJerin Jacob 			octeontx_log_err("failed to setup ev port(%d) res=%d",
1268f7be70e5SJerin Jacob 						i, res);
1269f7be70e5SJerin Jacob 			goto parse_error;
1270f7be70e5SJerin Jacob 		}
1271f7be70e5SJerin Jacob 		/* Link one queue to one event port */
1272f7be70e5SJerin Jacob 		qlist = i;
1273f7be70e5SJerin Jacob 		res = rte_event_port_link(evdev, i, &qlist, NULL, 1);
1274f7be70e5SJerin Jacob 		if (res < 0) {
1275f7be70e5SJerin Jacob 			res = -ENODEV;
1276f7be70e5SJerin Jacob 			octeontx_log_err("failed to link port (%d): res=%d",
1277f7be70e5SJerin Jacob 					i, res);
1278f7be70e5SJerin Jacob 			goto parse_error;
1279f7be70e5SJerin Jacob 		}
1280f7be70e5SJerin Jacob 	}
1281f7be70e5SJerin Jacob 
1282f7be70e5SJerin Jacob 	/* Create ethdev interface */
1283f7be70e5SJerin Jacob 	for (i = 0; i < init_params.nr_port; i++) {
1284f7be70e5SJerin Jacob 		port_id = octeontx_create(dev, i, evdev, socket_id);
1285f7be70e5SJerin Jacob 		if (port_id < 0) {
1286f7be70e5SJerin Jacob 			octeontx_log_err("failed to create device %s",
1287f7be70e5SJerin Jacob 					dev_name);
1288f7be70e5SJerin Jacob 			res = -ENODEV;
1289f7be70e5SJerin Jacob 			goto parse_error;
1290f7be70e5SJerin Jacob 		}
1291f7be70e5SJerin Jacob 
1292f7be70e5SJerin Jacob 		PMD_INIT_LOG(INFO, "created ethdev %s for port %d", dev_name,
1293f7be70e5SJerin Jacob 					port_id);
1294f7be70e5SJerin Jacob 	}
1295f7be70e5SJerin Jacob 
1296f7be70e5SJerin Jacob 	if (probe_once) {
1297f7be70e5SJerin Jacob 		octeontx_log_err("interface %s not supported", dev_name);
1298f7be70e5SJerin Jacob 		octeontx_remove(dev);
1299f7be70e5SJerin Jacob 		res = -ENOTSUP;
1300f7be70e5SJerin Jacob 		goto parse_error;
1301f7be70e5SJerin Jacob 	}
1302f7be70e5SJerin Jacob 	probe_once = 1;
1303f7be70e5SJerin Jacob 
1304f7be70e5SJerin Jacob 	return 0;
1305f7be70e5SJerin Jacob 
1306f7be70e5SJerin Jacob parse_error:
1307f7be70e5SJerin Jacob 	octeontx_pko_fc_free();
1308f7be70e5SJerin Jacob 	return res;
1309f7be70e5SJerin Jacob }
1310f7be70e5SJerin Jacob 
1311f7be70e5SJerin Jacob static struct rte_vdev_driver octeontx_pmd_drv = {
1312f7be70e5SJerin Jacob 	.probe = octeontx_probe,
1313f7be70e5SJerin Jacob 	.remove = octeontx_remove,
1314f7be70e5SJerin Jacob };
1315f7be70e5SJerin Jacob 
1316f7be70e5SJerin Jacob RTE_PMD_REGISTER_VDEV(OCTEONTX_PMD, octeontx_pmd_drv);
1317f7be70e5SJerin Jacob RTE_PMD_REGISTER_ALIAS(OCTEONTX_PMD, eth_octeontx);
1318f7be70e5SJerin Jacob RTE_PMD_REGISTER_PARAM_STRING(OCTEONTX_PMD, "nr_port=<int> ");
1319