app/eventdev: modify setup to support ethdev
[dpdk.git] / app / test-eventdev / test_perf_common.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2017 Cavium, Inc
3  */
4
5 #ifndef _TEST_PERF_COMMON_
6 #define _TEST_PERF_COMMON_
7
8 #include <stdio.h>
9 #include <stdbool.h>
10 #include <unistd.h>
11
12 #include <rte_cycles.h>
13 #include <rte_ethdev.h>
14 #include <rte_eventdev.h>
15 #include <rte_lcore.h>
16 #include <rte_malloc.h>
17 #include <rte_mempool.h>
18 #include <rte_prefetch.h>
19
20 #include "evt_common.h"
21 #include "evt_options.h"
22 #include "evt_test.h"
23
24 struct test_perf;
25
26 struct worker_data {
27         uint64_t processed_pkts;
28         uint64_t latency;
29         uint8_t dev_id;
30         uint8_t port_id;
31         struct test_perf *t;
32 } __rte_cache_aligned;
33
34 struct prod_data {
35         uint8_t dev_id;
36         uint8_t port_id;
37         uint8_t queue_id;
38         struct test_perf *t;
39 } __rte_cache_aligned;
40
41 struct test_perf {
42         /* Don't change the offset of "done". Signal handler use this memory
43          * to terminate all lcores work.
44          */
45         int done;
46         uint64_t outstand_pkts;
47         uint8_t nb_workers;
48         enum evt_test_result result;
49         uint32_t nb_flows;
50         uint64_t nb_pkts;
51         struct rte_mempool *pool;
52         struct prod_data prod[EVT_MAX_PORTS];
53         struct worker_data worker[EVT_MAX_PORTS];
54         struct evt_options *opt;
55         uint8_t sched_type_list[EVT_MAX_STAGES] __rte_cache_aligned;
56 } __rte_cache_aligned;
57
58 struct perf_elt {
59         uint64_t timestamp;
60 } __rte_cache_aligned;
61
62 #define BURST_SIZE 16
63
64 #define PERF_WORKER_INIT\
65         struct worker_data *w  = arg;\
66         struct test_perf *t = w->t;\
67         struct evt_options *opt = t->opt;\
68         const uint8_t dev = w->dev_id;\
69         const uint8_t port = w->port_id;\
70         uint8_t *const sched_type_list = &t->sched_type_list[0];\
71         struct rte_mempool *const pool = t->pool;\
72         const uint8_t nb_stages = t->opt->nb_stages;\
73         const uint8_t laststage = nb_stages - 1;\
74         uint8_t cnt = 0;\
75         void *bufs[16] __rte_cache_aligned;\
76         int const sz = RTE_DIM(bufs);\
77         if (opt->verbose_level > 1)\
78                 printf("%s(): lcore %d dev_id %d port=%d\n", __func__,\
79                                 rte_lcore_id(), dev, port)
80
81 static inline __attribute__((always_inline)) int
82 perf_process_last_stage(struct rte_mempool *const pool,
83                 struct rte_event *const ev, struct worker_data *const w,
84                 void *bufs[], int const buf_sz, uint8_t count)
85 {
86         bufs[count++] = ev->event_ptr;
87         w->processed_pkts++;
88         rte_smp_wmb();
89
90         if (unlikely(count == buf_sz)) {
91                 count = 0;
92                 rte_mempool_put_bulk(pool, bufs, buf_sz);
93         }
94         return count;
95 }
96
97 static inline __attribute__((always_inline)) uint8_t
98 perf_process_last_stage_latency(struct rte_mempool *const pool,
99                 struct rte_event *const ev, struct worker_data *const w,
100                 void *bufs[], int const buf_sz, uint8_t count)
101 {
102         uint64_t latency;
103         struct perf_elt *const m = ev->event_ptr;
104
105         bufs[count++] = ev->event_ptr;
106         w->processed_pkts++;
107
108         if (unlikely(count == buf_sz)) {
109                 count = 0;
110                 latency = rte_get_timer_cycles() - m->timestamp;
111                 rte_mempool_put_bulk(pool, bufs, buf_sz);
112         } else {
113                 latency = rte_get_timer_cycles() - m->timestamp;
114         }
115
116         w->latency += latency;
117         rte_smp_wmb();
118         return count;
119 }
120
121
122 static inline int
123 perf_nb_event_ports(struct evt_options *opt)
124 {
125         return evt_nr_active_lcores(opt->wlcores) +
126                         evt_nr_active_lcores(opt->plcores);
127 }
128
129 int perf_test_result(struct evt_test *test, struct evt_options *opt);
130 int perf_opt_check(struct evt_options *opt, uint64_t nb_queues);
131 int perf_test_setup(struct evt_test *test, struct evt_options *opt);
132 int perf_mempool_setup(struct evt_test *test, struct evt_options *opt);
133 int perf_event_dev_port_setup(struct evt_test *test, struct evt_options *opt,
134                                 uint8_t stride, uint8_t nb_queues);
135 int perf_event_dev_service_setup(uint8_t dev_id);
136 int perf_launch_lcores(struct evt_test *test, struct evt_options *opt,
137                 int (*worker)(void *));
138 void perf_opt_dump(struct evt_options *opt, uint8_t nb_queues);
139 void perf_test_destroy(struct evt_test *test, struct evt_options *opt);
140 void perf_eventdev_destroy(struct evt_test *test, struct evt_options *opt);
141 void perf_mempool_destroy(struct evt_test *test, struct evt_options *opt);
142
143 #endif /* _TEST_PERF_COMMON_ */