enforce experimental tag at beginning of declarations
[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 #define RTE_CPU_AND(dst, src1, src2) CPU_AND(dst, src1, src2)
28 #elif defined(__FreeBSD__)
29 #include <pthread_np.h>
30 typedef cpuset_t rte_cpuset_t;
31 #define RTE_CPU_AND(dst, src1, src2) do \
32 { \
33         cpuset_t tmp; \
34         CPU_COPY(src1, &tmp); \
35         CPU_AND(&tmp, src2); \
36         CPU_COPY(&tmp, dst); \
37 } while (0)
38 #endif
39
40 /**
41  * Structure storing internal configuration (per-lcore)
42  */
43 struct lcore_config {
44         unsigned detected;         /**< true if lcore was detected */
45         pthread_t thread_id;       /**< pthread identifier */
46         int pipe_master2slave[2];  /**< communication pipe with master */
47         int pipe_slave2master[2];  /**< communication pipe with master */
48         lcore_function_t * volatile f;         /**< function to call */
49         void * volatile arg;       /**< argument of function */
50         volatile int ret;          /**< return value of function */
51         volatile enum rte_lcore_state_t state; /**< lcore state */
52         unsigned socket_id;        /**< physical socket id for this lcore */
53         unsigned core_id;          /**< core number on socket for this lcore */
54         int core_index;            /**< relative index, starting from 0 */
55         rte_cpuset_t cpuset;       /**< cpu set which the lcore affinity to */
56         uint8_t core_role;         /**< role of core eg: OFF, RTE, SERVICE */
57 };
58
59 /**
60  * Internal configuration (per-lcore)
61  */
62 extern struct lcore_config lcore_config[RTE_MAX_LCORE];
63
64 RTE_DECLARE_PER_LCORE(unsigned, _lcore_id);  /**< Per thread "lcore id". */
65 RTE_DECLARE_PER_LCORE(rte_cpuset_t, _cpuset); /**< Per thread "cpuset". */
66
67 /**
68  * Return the Application thread ID of the execution unit.
69  *
70  * Note: in most cases the lcore id returned here will also correspond
71  *   to the processor id of the CPU on which the thread is pinned, this
72  *   will not be the case if the user has explicitly changed the thread to
73  *   core affinities using --lcores EAL argument e.g. --lcores '(0-3)@10'
74  *   to run threads with lcore IDs 0, 1, 2 and 3 on physical core 10..
75  *
76  * @return
77  *  Logical core ID (in EAL thread) or LCORE_ID_ANY (in non-EAL thread)
78  */
79 static inline unsigned
80 rte_lcore_id(void)
81 {
82         return RTE_PER_LCORE(_lcore_id);
83 }
84
85 /**
86  * Get the id of the master lcore
87  *
88  * @return
89  *   the id of the master lcore
90  */
91 static inline unsigned
92 rte_get_master_lcore(void)
93 {
94         return rte_eal_get_configuration()->master_lcore;
95 }
96
97 /**
98  * Return the number of execution units (lcores) on the system.
99  *
100  * @return
101  *   the number of execution units (lcores) on the system.
102  */
103 static inline unsigned
104 rte_lcore_count(void)
105 {
106         const struct rte_config *cfg = rte_eal_get_configuration();
107         return cfg->lcore_count;
108 }
109
110 /**
111  * Return the index of the lcore starting from zero.
112  *
113  * When option -c or -l is given, the index corresponds
114  * to the order in the list.
115  * For example:
116  * -c 0x30, lcore 4 has index 0, and 5 has index 1.
117  * -l 22,18 lcore 22 has index 0, and 18 has index 1.
118  *
119  * @param lcore_id
120  *   The targeted lcore, or -1 for the current one.
121  * @return
122  *   The relative index, or -1 if not enabled.
123  */
124 int rte_lcore_index(int lcore_id);
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 int rte_socket_id(void);
133
134 /**
135  * Return number of physical sockets detected on the system.
136  *
137  * Note that number of nodes may not be correspondent to their physical id's:
138  * for example, a system may report two socket id's, but the actual socket id's
139  * may be 0 and 8.
140  *
141  * @return
142  *   the number of physical sockets as recognized by EAL
143  */
144 unsigned int
145 rte_socket_count(void);
146
147 /**
148  * Return socket id with a particular index.
149  *
150  * This will return socket id at a particular position in list of all detected
151  * physical socket id's. For example, on a machine with sockets [0, 8], passing
152  * 1 as a parameter will return 8.
153  *
154  * @param idx
155  *   index of physical socket id to return
156  *
157  * @return
158  *   - physical socket id as recognized by EAL
159  *   - -1 on error, with errno set to EINVAL
160  */
161 int
162 rte_socket_id_by_idx(unsigned int idx);
163
164 /**
165  * Get the ID of the physical socket of the specified lcore
166  *
167  * @param lcore_id
168  *   the targeted lcore, which MUST be between 0 and RTE_MAX_LCORE-1.
169  * @return
170  *   the ID of lcoreid's physical socket
171  */
172 unsigned int
173 rte_lcore_to_socket_id(unsigned int lcore_id);
174
175 /**
176  * @warning
177  * @b EXPERIMENTAL: this API may change without prior notice.
178  *
179  * Return the id of the lcore on a socket starting from zero.
180  *
181  * @param lcore_id
182  *   The targeted lcore, or -1 for the current one.
183  * @return
184  *   The relative index, or -1 if not enabled.
185  */
186 __rte_experimental
187 int
188 rte_lcore_to_cpu_id(int lcore_id);
189
190 /**
191  * @warning
192  * @b EXPERIMENTAL: this API may change without prior notice.
193  *
194  * Return the cpuset for a given lcore.
195  * @param lcore_id
196  *   the targeted lcore, which MUST be between 0 and RTE_MAX_LCORE-1.
197  * @return
198  *   The cpuset of that lcore
199  */
200 __rte_experimental
201 rte_cpuset_t
202 rte_lcore_cpuset(unsigned int lcore_id);
203
204 /**
205  * Test if an lcore is enabled.
206  *
207  * @param lcore_id
208  *   The identifier of the lcore, which MUST be between 0 and
209  *   RTE_MAX_LCORE-1.
210  * @return
211  *   True if the given lcore is enabled; false otherwise.
212  */
213 static inline int
214 rte_lcore_is_enabled(unsigned int lcore_id)
215 {
216         struct rte_config *cfg = rte_eal_get_configuration();
217         if (lcore_id >= RTE_MAX_LCORE)
218                 return 0;
219         return cfg->lcore_role[lcore_id] == ROLE_RTE;
220 }
221
222 /**
223  * Get the next enabled lcore ID.
224  *
225  * @param i
226  *   The current lcore (reference).
227  * @param skip_master
228  *   If true, do not return the ID of the master lcore.
229  * @param wrap
230  *   If true, go back to 0 when RTE_MAX_LCORE is reached; otherwise,
231  *   return RTE_MAX_LCORE.
232  * @return
233  *   The next lcore_id or RTE_MAX_LCORE if not found.
234  */
235 static inline unsigned int
236 rte_get_next_lcore(unsigned int i, int skip_master, int wrap)
237 {
238         i++;
239         if (wrap)
240                 i %= RTE_MAX_LCORE;
241
242         while (i < RTE_MAX_LCORE) {
243                 if (!rte_lcore_is_enabled(i) ||
244                     (skip_master && (i == rte_get_master_lcore()))) {
245                         i++;
246                         if (wrap)
247                                 i %= RTE_MAX_LCORE;
248                         continue;
249                 }
250                 break;
251         }
252         return i;
253 }
254 /**
255  * Macro to browse all running lcores.
256  */
257 #define RTE_LCORE_FOREACH(i)                                            \
258         for (i = rte_get_next_lcore(-1, 0, 0);                          \
259              i<RTE_MAX_LCORE;                                           \
260              i = rte_get_next_lcore(i, 0, 0))
261
262 /**
263  * Macro to browse all running lcores except the master lcore.
264  */
265 #define RTE_LCORE_FOREACH_SLAVE(i)                                      \
266         for (i = rte_get_next_lcore(-1, 1, 0);                          \
267              i<RTE_MAX_LCORE;                                           \
268              i = rte_get_next_lcore(i, 1, 0))
269
270 /**
271  * Set core affinity of the current thread.
272  * Support both EAL and non-EAL thread and update TLS.
273  *
274  * @param cpusetp
275  *   Point to cpu_set_t for setting current thread affinity.
276  * @return
277  *   On success, return 0; otherwise return -1;
278  */
279 int rte_thread_set_affinity(rte_cpuset_t *cpusetp);
280
281 /**
282  * Get core affinity of the current thread.
283  *
284  * @param cpusetp
285  *   Point to cpu_set_t for getting current thread cpu affinity.
286  *   It presumes input is not NULL, otherwise it causes panic.
287  *
288  */
289 void rte_thread_get_affinity(rte_cpuset_t *cpusetp);
290
291 /**
292  * Set thread names.
293  *
294  * @note It fails with glibc < 2.12.
295  *
296  * @param id
297  *   Thread id.
298  * @param name
299  *   Thread name to set.
300  * @return
301  *   On success, return 0; otherwise return a negative value.
302  */
303 int rte_thread_setname(pthread_t id, const char *name);
304
305 /**
306  * Create a control thread.
307  *
308  * Wrapper to pthread_create(), pthread_setname_np() and
309  * pthread_setaffinity_np(). The affinity of the new thread is based
310  * on the CPU affinity retrieved at the time rte_eal_init() was called,
311  * the dataplane and service lcores are then excluded.
312  *
313  * @param thread
314  *   Filled with the thread id of the new created thread.
315  * @param name
316  *   The name of the control thread (max 16 characters including '\0').
317  * @param attr
318  *   Attributes for the new thread.
319  * @param start_routine
320  *   Function to be executed by the new thread.
321  * @param arg
322  *   Argument passed to start_routine.
323  * @return
324  *   On success, returns 0; on error, it returns a negative value
325  *   corresponding to the error number.
326  */
327 int
328 rte_ctrl_thread_create(pthread_t *thread, const char *name,
329                 const pthread_attr_t *attr,
330                 void *(*start_routine)(void *), void *arg);
331
332 /**
333  * Test if the core supplied has a specific role
334  *
335  * @param lcore_id
336  *   The identifier of the lcore, which MUST be between 0 and
337  *   RTE_MAX_LCORE-1.
338  * @param role
339  *   The role to be checked against.
340  * @return
341  *   Boolean value: positive if test is true; otherwise returns 0.
342  */
343 int
344 rte_lcore_has_role(unsigned int lcore_id, enum rte_lcore_role_t role);
345
346 #ifdef __cplusplus
347 }
348 #endif
349
350
351 #endif /* _RTE_LCORE_H_ */