New upstream version 18.02
[deb_dpdk.git] / lib / librte_eal / common / include / rte_lcore.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation
3  */
4
5 #ifndef _RTE_LCORE_H_
6 #define _RTE_LCORE_H_
7
8 /**
9  * @file
10  *
11  * API for lcore and socket manipulation
12  *
13  */
14 #include <rte_config.h>
15 #include <rte_per_lcore.h>
16 #include <rte_eal.h>
17 #include <rte_launch.h>
18
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22
23 #define LCORE_ID_ANY     UINT32_MAX       /**< Any lcore. */
24
25 #if defined(__linux__)
26         typedef cpu_set_t rte_cpuset_t;
27 #elif defined(__FreeBSD__)
28 #include <pthread_np.h>
29         typedef cpuset_t rte_cpuset_t;
30 #endif
31
32 /**
33  * Structure storing internal configuration (per-lcore)
34  */
35 struct lcore_config {
36         unsigned detected;         /**< true if lcore was detected */
37         pthread_t thread_id;       /**< pthread identifier */
38         int pipe_master2slave[2];  /**< communication pipe with master */
39         int pipe_slave2master[2];  /**< communication pipe with master */
40         lcore_function_t * volatile f;         /**< function to call */
41         void * volatile arg;       /**< argument of function */
42         volatile int ret;          /**< return value of function */
43         volatile enum rte_lcore_state_t state; /**< lcore state */
44         unsigned socket_id;        /**< physical socket id for this lcore */
45         unsigned core_id;          /**< core number on socket for this lcore */
46         int core_index;            /**< relative index, starting from 0 */
47         rte_cpuset_t cpuset;       /**< cpu set which the lcore affinity to */
48         uint8_t core_role;         /**< role of core eg: OFF, RTE, SERVICE */
49 };
50
51 /**
52  * Internal configuration (per-lcore)
53  */
54 extern struct lcore_config lcore_config[RTE_MAX_LCORE];
55
56 RTE_DECLARE_PER_LCORE(unsigned, _lcore_id);  /**< Per thread "lcore id". */
57 RTE_DECLARE_PER_LCORE(rte_cpuset_t, _cpuset); /**< Per thread "cpuset". */
58
59 /**
60  * Return the Application thread ID of the execution unit.
61  *
62  * Note: in most cases the lcore id returned here will also correspond
63  *   to the processor id of the CPU on which the thread is pinned, this
64  *   will not be the case if the user has explicitly changed the thread to
65  *   core affinities using --lcores EAL argument e.g. --lcores '(0-3)@10'
66  *   to run threads with lcore IDs 0, 1, 2 and 3 on physical core 10..
67  *
68  * @return
69  *  Logical core ID (in EAL thread) or LCORE_ID_ANY (in non-EAL thread)
70  */
71 static inline unsigned
72 rte_lcore_id(void)
73 {
74         return RTE_PER_LCORE(_lcore_id);
75 }
76
77 /**
78  * Get the id of the master lcore
79  *
80  * @return
81  *   the id of the master lcore
82  */
83 static inline unsigned
84 rte_get_master_lcore(void)
85 {
86         return rte_eal_get_configuration()->master_lcore;
87 }
88
89 /**
90  * Return the number of execution units (lcores) on the system.
91  *
92  * @return
93  *   the number of execution units (lcores) on the system.
94  */
95 static inline unsigned
96 rte_lcore_count(void)
97 {
98         const struct rte_config *cfg = rte_eal_get_configuration();
99         return cfg->lcore_count;
100 }
101
102 /**
103  * Return the index of the lcore starting from zero.
104  *
105  * When option -c or -l is given, the index corresponds
106  * to the order in the list.
107  * For example:
108  * -c 0x30, lcore 4 has index 0, and 5 has index 1.
109  * -l 22,18 lcore 22 has index 0, and 18 has index 1.
110  *
111  * @param lcore_id
112  *   The targeted lcore, or -1 for the current one.
113  * @return
114  *   The relative index, or -1 if not enabled.
115  */
116 static inline int
117 rte_lcore_index(int lcore_id)
118 {
119         if (lcore_id >= RTE_MAX_LCORE)
120                 return -1;
121         if (lcore_id < 0)
122                 lcore_id = rte_lcore_id();
123         return lcore_config[lcore_id].core_index;
124 }
125
126 /**
127  * Return the ID of the physical socket of the logical core we are
128  * running on.
129  * @return
130  *   the ID of current lcoreid's physical socket
131  */
132 unsigned rte_socket_id(void);
133
134 /**
135  * Get the ID of the physical socket of the specified lcore
136  *
137  * @param lcore_id
138  *   the targeted lcore, which MUST be between 0 and RTE_MAX_LCORE-1.
139  * @return
140  *   the ID of lcoreid's physical socket
141  */
142 static inline unsigned
143 rte_lcore_to_socket_id(unsigned lcore_id)
144 {
145         return lcore_config[lcore_id].socket_id;
146 }
147
148 /**
149  * Test if an lcore is enabled.
150  *
151  * @param lcore_id
152  *   The identifier of the lcore, which MUST be between 0 and
153  *   RTE_MAX_LCORE-1.
154  * @return
155  *   True if the given lcore is enabled; false otherwise.
156  */
157 static inline int
158 rte_lcore_is_enabled(unsigned lcore_id)
159 {
160         struct rte_config *cfg = rte_eal_get_configuration();
161         if (lcore_id >= RTE_MAX_LCORE)
162                 return 0;
163         return cfg->lcore_role[lcore_id] == ROLE_RTE;
164 }
165
166 /**
167  * Get the next enabled lcore ID.
168  *
169  * @param i
170  *   The current lcore (reference).
171  * @param skip_master
172  *   If true, do not return the ID of the master lcore.
173  * @param wrap
174  *   If true, go back to 0 when RTE_MAX_LCORE is reached; otherwise,
175  *   return RTE_MAX_LCORE.
176  * @return
177  *   The next lcore_id or RTE_MAX_LCORE if not found.
178  */
179 static inline unsigned
180 rte_get_next_lcore(unsigned i, int skip_master, int wrap)
181 {
182         i++;
183         if (wrap)
184                 i %= RTE_MAX_LCORE;
185
186         while (i < RTE_MAX_LCORE) {
187                 if (!rte_lcore_is_enabled(i) ||
188                     (skip_master && (i == rte_get_master_lcore()))) {
189                         i++;
190                         if (wrap)
191                                 i %= RTE_MAX_LCORE;
192                         continue;
193                 }
194                 break;
195         }
196         return i;
197 }
198 /**
199  * Macro to browse all running lcores.
200  */
201 #define RTE_LCORE_FOREACH(i)                                            \
202         for (i = rte_get_next_lcore(-1, 0, 0);                          \
203              i<RTE_MAX_LCORE;                                           \
204              i = rte_get_next_lcore(i, 0, 0))
205
206 /**
207  * Macro to browse all running lcores except the master lcore.
208  */
209 #define RTE_LCORE_FOREACH_SLAVE(i)                                      \
210         for (i = rte_get_next_lcore(-1, 1, 0);                          \
211              i<RTE_MAX_LCORE;                                           \
212              i = rte_get_next_lcore(i, 1, 0))
213
214 /**
215  * Set core affinity of the current thread.
216  * Support both EAL and non-EAL thread and update TLS.
217  *
218  * @param cpusetp
219  *   Point to cpu_set_t for setting current thread affinity.
220  * @return
221  *   On success, return 0; otherwise return -1;
222  */
223 int rte_thread_set_affinity(rte_cpuset_t *cpusetp);
224
225 /**
226  * Get core affinity of the current thread.
227  *
228  * @param cpusetp
229  *   Point to cpu_set_t for getting current thread cpu affinity.
230  *   It presumes input is not NULL, otherwise it causes panic.
231  *
232  */
233 void rte_thread_get_affinity(rte_cpuset_t *cpusetp);
234
235 /**
236  * Set thread names.
237  *
238  * @note It fails with glibc < 2.12.
239  *
240  * @param id
241  *   Thread id.
242  * @param name
243  *   Thread name to set.
244  * @return
245  *   On success, return 0; otherwise return a negative value.
246  */
247 int rte_thread_setname(pthread_t id, const char *name);
248
249 /**
250  * Test if the core supplied has a specific role
251  *
252  * @param lcore_id
253  *   The identifier of the lcore, which MUST be between 0 and
254  *   RTE_MAX_LCORE-1.
255  * @param role
256  *   The role to be checked against.
257  * @return
258  *   On success, return 0; otherwise return a negative value.
259  */
260 int
261 rte_lcore_has_role(unsigned int lcore_id, enum rte_lcore_role_t role);
262
263 #ifdef __cplusplus
264 }
265 #endif
266
267
268 #endif /* _RTE_LCORE_H_ */