2 * SPDX-License-Identifier: BSD-3-Clause
3 * Copyright 2017 Cavium, Inc.
6 #include "test_pipeline_common.h"
9 pipeline_test_result(struct evt_test *test, struct evt_options *opt)
14 struct test_pipeline *t = evt_test_priv(test);
16 evt_info("Packet distribution across worker cores :");
17 for (i = 0; i < t->nb_workers; i++)
18 total += t->worker[i].processed_pkts;
19 for (i = 0; i < t->nb_workers; i++)
20 evt_info("Worker %d packets: "CLGRN"%"PRIx64""CLNRM" percentage:"
21 CLGRN" %3.2f"CLNRM, i,
22 t->worker[i].processed_pkts,
23 (((double)t->worker[i].processed_pkts)/total)
29 pipeline_opt_dump(struct evt_options *opt, uint8_t nb_queues)
31 evt_dump("nb_worker_lcores", "%d", evt_nr_active_lcores(opt->wlcores));
32 evt_dump_worker_lcores(opt);
33 evt_dump_nb_stages(opt);
34 evt_dump("nb_evdev_ports", "%d", pipeline_nb_event_ports(opt));
35 evt_dump("nb_evdev_queues", "%d", nb_queues);
36 evt_dump_queue_priority(opt);
37 evt_dump_sched_type_list(opt);
38 evt_dump_producer_type(opt);
41 static inline uint64_t
42 processed_pkts(struct test_pipeline *t)
48 for (i = 0; i < t->nb_workers; i++)
49 total += t->worker[i].processed_pkts;
55 pipeline_launch_lcores(struct evt_test *test, struct evt_options *opt,
56 int (*worker)(void *))
59 struct test_pipeline *t = evt_test_priv(test);
63 RTE_LCORE_FOREACH_SLAVE(lcore_id) {
64 if (!(opt->wlcores[lcore_id]))
67 ret = rte_eal_remote_launch(worker,
68 &t->worker[port_idx], lcore_id);
70 evt_err("failed to launch worker %d", lcore_id);
76 uint64_t perf_cycles = rte_get_timer_cycles();
77 const uint64_t perf_sample = rte_get_timer_hz();
79 static float total_mpps;
80 static uint64_t samples;
82 uint64_t prev_pkts = 0;
84 while (t->done == false) {
85 const uint64_t new_cycles = rte_get_timer_cycles();
87 if ((new_cycles - perf_cycles) > perf_sample) {
88 const uint64_t curr_pkts = processed_pkts(t);
90 float mpps = (float)(curr_pkts - prev_pkts)/1000000;
92 prev_pkts = curr_pkts;
93 perf_cycles = new_cycles;
96 printf(CLGRN"\r%.3f mpps avg %.3f mpps"CLNRM,
97 mpps, total_mpps/samples);
106 pipeline_opt_check(struct evt_options *opt, uint64_t nb_queues)
110 * N worker + 1 master
114 if (opt->prod_type != EVT_PROD_TYPE_ETH_RX_ADPTR) {
115 evt_err("Invalid producer type '%s' valid producer '%s'",
116 evt_prod_id_to_name(opt->prod_type),
117 evt_prod_id_to_name(EVT_PROD_TYPE_ETH_RX_ADPTR));
121 if (!rte_eth_dev_count_avail()) {
122 evt_err("test needs minimum 1 ethernet dev");
126 if (rte_lcore_count() < lcores) {
127 evt_err("test need minimum %d lcores", lcores);
131 /* Validate worker lcores */
132 if (evt_lcores_has_overlap(opt->wlcores, rte_get_master_lcore())) {
133 evt_err("worker lcores overlaps with master lcore");
136 if (evt_has_disabled_lcore(opt->wlcores)) {
137 evt_err("one or more workers lcores are not enabled");
140 if (!evt_has_active_lcore(opt->wlcores)) {
141 evt_err("minimum one worker is required");
145 if (nb_queues > EVT_MAX_QUEUES) {
146 evt_err("number of queues exceeds %d", EVT_MAX_QUEUES);
149 if (pipeline_nb_event_ports(opt) > EVT_MAX_PORTS) {
150 evt_err("number of ports exceeds %d", EVT_MAX_PORTS);
154 if (evt_has_invalid_stage(opt))
157 if (evt_has_invalid_sched_type(opt))
163 #define NB_RX_DESC 128
164 #define NB_TX_DESC 512
166 pipeline_ethdev_setup(struct evt_test *test, struct evt_options *opt)
170 uint8_t nb_queues = 1;
171 struct test_pipeline *t = evt_test_priv(test);
172 struct rte_eth_rxconf rx_conf;
173 struct rte_eth_conf port_conf = {
175 .mq_mode = ETH_MQ_RX_RSS,
180 .rss_hf = ETH_RSS_IP,
185 if (!rte_eth_dev_count_avail()) {
186 evt_err("No ethernet ports found.");
190 if (opt->max_pkt_sz < RTE_ETHER_MIN_LEN) {
191 evt_err("max_pkt_sz can not be less than %d",
196 port_conf.rxmode.max_rx_pkt_len = opt->max_pkt_sz;
197 if (opt->max_pkt_sz > RTE_ETHER_MAX_LEN)
198 port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_JUMBO_FRAME;
200 t->internal_port = 1;
201 RTE_ETH_FOREACH_DEV(i) {
202 struct rte_eth_dev_info dev_info;
203 struct rte_eth_conf local_port_conf = port_conf;
206 ret = rte_event_eth_tx_adapter_caps_get(opt->dev_id, i, &caps);
208 evt_err("failed to get event tx adapter[%d] caps", i);
212 if (!(caps & RTE_EVENT_ETH_TX_ADAPTER_CAP_INTERNAL_PORT))
213 t->internal_port = 0;
215 ret = rte_eth_dev_info_get(i, &dev_info);
217 evt_err("Error during getting device (port %u) info: %s\n",
222 rx_conf = dev_info.default_rxconf;
223 rx_conf.offloads = port_conf.rxmode.offloads;
225 local_port_conf.rx_adv_conf.rss_conf.rss_hf &=
226 dev_info.flow_type_rss_offloads;
227 if (local_port_conf.rx_adv_conf.rss_conf.rss_hf !=
228 port_conf.rx_adv_conf.rss_conf.rss_hf) {
229 evt_info("Port %u modified RSS hash function based on hardware support,"
230 "requested:%#"PRIx64" configured:%#"PRIx64"",
232 port_conf.rx_adv_conf.rss_conf.rss_hf,
233 local_port_conf.rx_adv_conf.rss_conf.rss_hf);
236 if (rte_eth_dev_configure(i, nb_queues, nb_queues,
239 evt_err("Failed to configure eth port [%d]", i);
243 if (rte_eth_rx_queue_setup(i, 0, NB_RX_DESC,
244 rte_socket_id(), &rx_conf, t->pool) < 0) {
245 evt_err("Failed to setup eth port [%d] rx_queue: %d.",
249 if (rte_eth_tx_queue_setup(i, 0, NB_TX_DESC,
250 rte_socket_id(), NULL) < 0) {
251 evt_err("Failed to setup eth port [%d] tx_queue: %d.",
256 ret = rte_eth_promiscuous_enable(i);
258 evt_err("Failed to enable promiscuous mode for eth port [%d]: %s",
259 i, rte_strerror(-ret));
268 pipeline_event_port_setup(struct evt_test *test, struct evt_options *opt,
269 uint8_t *queue_arr, uint8_t nb_queues,
270 const struct rte_event_port_conf p_conf)
274 struct test_pipeline *t = evt_test_priv(test);
277 /* setup one port per worker, linking to all queues */
278 for (port = 0; port < evt_nr_active_lcores(opt->wlcores); port++) {
279 struct worker_data *w = &t->worker[port];
281 w->dev_id = opt->dev_id;
284 w->processed_pkts = 0;
286 ret = rte_event_port_setup(opt->dev_id, port, &p_conf);
288 evt_err("failed to setup port %d", port);
292 if (rte_event_port_link(opt->dev_id, port, queue_arr, NULL,
293 nb_queues) != nb_queues)
300 evt_err("failed to link queues to port %d", port);
305 pipeline_event_rx_adapter_setup(struct evt_options *opt, uint8_t stride,
306 struct rte_event_port_conf prod_conf)
310 struct rte_event_eth_rx_adapter_queue_conf queue_conf;
312 memset(&queue_conf, 0,
313 sizeof(struct rte_event_eth_rx_adapter_queue_conf));
314 queue_conf.ev.sched_type = opt->sched_type_list[0];
315 RTE_ETH_FOREACH_DEV(prod) {
318 ret = rte_event_eth_rx_adapter_caps_get(opt->dev_id,
321 evt_err("failed to get event rx adapter[%d]"
326 queue_conf.ev.queue_id = prod * stride;
327 ret = rte_event_eth_rx_adapter_create(prod, opt->dev_id,
330 evt_err("failed to create rx adapter[%d]", prod);
333 ret = rte_event_eth_rx_adapter_queue_add(prod, prod, -1,
336 evt_err("failed to add rx queues to adapter[%d]", prod);
340 if (!(cap & RTE_EVENT_ETH_RX_ADAPTER_CAP_INTERNAL_PORT)) {
341 uint32_t service_id = -1U;
343 rte_event_eth_rx_adapter_service_id_get(prod,
345 ret = evt_service_setup(service_id);
347 evt_err("Failed to setup service core"
353 evt_info("Port[%d] using Rx adapter[%d] configured", prod,
361 pipeline_event_tx_adapter_setup(struct evt_options *opt,
362 struct rte_event_port_conf port_conf)
367 RTE_ETH_FOREACH_DEV(consm) {
370 ret = rte_event_eth_tx_adapter_caps_get(opt->dev_id,
373 evt_err("failed to get event tx adapter[%d] caps",
378 ret = rte_event_eth_tx_adapter_create(consm, opt->dev_id,
381 evt_err("failed to create tx adapter[%d]", consm);
385 ret = rte_event_eth_tx_adapter_queue_add(consm, consm, -1);
387 evt_err("failed to add tx queues to adapter[%d]",
392 if (!(cap & RTE_EVENT_ETH_TX_ADAPTER_CAP_INTERNAL_PORT)) {
393 uint32_t service_id = -1U;
395 ret = rte_event_eth_tx_adapter_service_id_get(consm,
397 if (ret != -ESRCH && ret != 0) {
398 evt_err("Failed to get Tx adptr service ID");
401 ret = evt_service_setup(service_id);
403 evt_err("Failed to setup service core"
409 evt_info("Port[%d] using Tx adapter[%d] Configured", consm,
417 pipeline_ethdev_destroy(struct evt_test *test, struct evt_options *opt)
423 RTE_ETH_FOREACH_DEV(i) {
424 rte_event_eth_rx_adapter_stop(i);
425 rte_event_eth_tx_adapter_stop(i);
431 pipeline_eventdev_destroy(struct evt_test *test, struct evt_options *opt)
435 rte_event_dev_stop(opt->dev_id);
436 rte_event_dev_close(opt->dev_id);
440 pipeline_mempool_setup(struct evt_test *test, struct evt_options *opt)
442 struct test_pipeline *t = evt_test_priv(test);
446 opt->mbuf_sz = RTE_MBUF_DEFAULT_BUF_SIZE;
448 if (!opt->max_pkt_sz)
449 opt->max_pkt_sz = RTE_ETHER_MAX_LEN;
451 RTE_ETH_FOREACH_DEV(i) {
452 struct rte_eth_dev_info dev_info;
453 uint16_t data_size = 0;
455 memset(&dev_info, 0, sizeof(dev_info));
456 ret = rte_eth_dev_info_get(i, &dev_info);
458 evt_err("Error during getting device (port %u) info: %s\n",
463 if (dev_info.rx_desc_lim.nb_mtu_seg_max != UINT16_MAX &&
464 dev_info.rx_desc_lim.nb_mtu_seg_max != 0) {
465 data_size = opt->max_pkt_sz /
466 dev_info.rx_desc_lim.nb_mtu_seg_max;
467 data_size += RTE_PKTMBUF_HEADROOM;
469 if (data_size > opt->mbuf_sz)
470 opt->mbuf_sz = data_size;
474 t->pool = rte_pktmbuf_pool_create(test->name, /* mempool name */
475 opt->pool_sz, /* number of elements*/
479 opt->socket_id); /* flags */
481 if (t->pool == NULL) {
482 evt_err("failed to create mempool");
490 pipeline_mempool_destroy(struct evt_test *test, struct evt_options *opt)
493 struct test_pipeline *t = evt_test_priv(test);
495 rte_mempool_free(t->pool);
499 pipeline_test_setup(struct evt_test *test, struct evt_options *opt)
503 test_pipeline = rte_zmalloc_socket(test->name,
504 sizeof(struct test_pipeline), RTE_CACHE_LINE_SIZE,
506 if (test_pipeline == NULL) {
507 evt_err("failed to allocate test_pipeline memory");
510 test->test_priv = test_pipeline;
512 struct test_pipeline *t = evt_test_priv(test);
514 t->nb_workers = evt_nr_active_lcores(opt->wlcores);
515 t->outstand_pkts = opt->nb_pkts * evt_nr_active_lcores(opt->wlcores);
517 t->nb_flows = opt->nb_flows;
518 t->result = EVT_TEST_FAILED;
520 opt->prod_type = EVT_PROD_TYPE_ETH_RX_ADPTR;
521 memcpy(t->sched_type_list, opt->sched_type_list,
522 sizeof(opt->sched_type_list));
529 pipeline_test_destroy(struct evt_test *test, struct evt_options *opt)
533 rte_free(test->test_priv);