spinlock: support non-EAL thread
[dpdk.git] / lib / librte_eal / common / include / rte_lcore.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef _RTE_LCORE_H_
35 #define _RTE_LCORE_H_
36
37 /**
38  * @file
39  *
40  * API for lcore and socket manipulation
41  *
42  */
43 #include <rte_per_lcore.h>
44 #include <rte_eal.h>
45 #include <rte_launch.h>
46
47 #ifdef __cplusplus
48 extern "C" {
49 #endif
50
51 #define LCORE_ID_ANY     UINT32_MAX       /**< Any lcore. */
52
53 #if defined(__linux__)
54         typedef cpu_set_t rte_cpuset_t;
55 #elif defined(__FreeBSD__)
56 #include <pthread_np.h>
57         typedef cpuset_t rte_cpuset_t;
58 #endif
59
60 /**
61  * Structure storing internal configuration (per-lcore)
62  */
63 struct lcore_config {
64         unsigned detected;         /**< true if lcore was detected */
65         pthread_t thread_id;       /**< pthread identifier */
66         int pipe_master2slave[2];  /**< communication pipe with master */
67         int pipe_slave2master[2];  /**< communication pipe with master */
68         lcore_function_t * volatile f;         /**< function to call */
69         void * volatile arg;       /**< argument of function */
70         volatile int ret;          /**< return value of function */
71         volatile enum rte_lcore_state_t state; /**< lcore state */
72         unsigned socket_id;        /**< physical socket id for this lcore */
73         unsigned core_id;          /**< core number on socket for this lcore */
74         int core_index;            /**< relative index, starting from 0 */
75         rte_cpuset_t cpuset;       /**< cpu set which the lcore affinity to */
76 };
77
78 /**
79  * Internal configuration (per-lcore)
80  */
81 extern struct lcore_config lcore_config[RTE_MAX_LCORE];
82
83 RTE_DECLARE_PER_LCORE(unsigned, _lcore_id);  /**< Per thread "lcore id". */
84 RTE_DECLARE_PER_LCORE(unsigned, _socket_id); /**< Per thread "socket id". */
85 RTE_DECLARE_PER_LCORE(rte_cpuset_t, _cpuset); /**< Per thread "cpuset". */
86
87 /**
88  * Return the ID of the execution unit we are running on.
89  * @return
90  *  Logical core ID (in EAL thread) or LCORE_ID_ANY (in non-EAL thread)
91  */
92 static inline unsigned
93 rte_lcore_id(void)
94 {
95         return RTE_PER_LCORE(_lcore_id);
96 }
97
98 /**
99  * Get the id of the master lcore
100  *
101  * @return
102  *   the id of the master lcore
103  */
104 static inline unsigned
105 rte_get_master_lcore(void)
106 {
107         return rte_eal_get_configuration()->master_lcore;
108 }
109
110 /**
111  * Return the number of execution units (lcores) on the system.
112  *
113  * @return
114  *   the number of execution units (lcores) on the system.
115  */
116 static inline unsigned
117 rte_lcore_count(void)
118 {
119         const struct rte_config *cfg = rte_eal_get_configuration();
120         return cfg->lcore_count;
121 }
122
123 /**
124  * Return the index of the lcore starting from zero.
125  * The order is physical or given by command line (-l option).
126  *
127  * @param lcore_id
128  *   The targeted lcore, or -1 for the current one.
129  * @return
130  *   The relative index, or -1 if not enabled.
131  */
132 static inline int
133 rte_lcore_index(int lcore_id)
134 {
135         if (lcore_id >= RTE_MAX_LCORE)
136                 return -1;
137         if (lcore_id < 0)
138                 lcore_id = rte_lcore_id();
139         return lcore_config[lcore_id].core_index;
140 }
141
142 /**
143  * Return the ID of the physical socket of the logical core we are
144  * running on.
145  * @return
146  *   the ID of current lcoreid's physical socket
147  */
148 static inline unsigned
149 rte_socket_id(void)
150 {
151         return RTE_PER_LCORE(_socket_id);
152 }
153
154 /**
155  * Get the ID of the physical socket of the specified lcore
156  *
157  * @param lcore_id
158  *   the targeted lcore, which MUST be between 0 and RTE_MAX_LCORE-1.
159  * @return
160  *   the ID of lcoreid's physical socket
161  */
162 static inline unsigned
163 rte_lcore_to_socket_id(unsigned lcore_id)
164 {
165         return lcore_config[lcore_id].socket_id;
166 }
167
168 /**
169  * Test if an lcore is enabled.
170  *
171  * @param lcore_id
172  *   The identifier of the lcore, which MUST be between 0 and
173  *   RTE_MAX_LCORE-1.
174  * @return
175  *   True if the given lcore is enabled; false otherwise.
176  */
177 static inline int
178 rte_lcore_is_enabled(unsigned lcore_id)
179 {
180         struct rte_config *cfg = rte_eal_get_configuration();
181         if (lcore_id >= RTE_MAX_LCORE)
182                 return 0;
183         return (cfg->lcore_role[lcore_id] != ROLE_OFF);
184 }
185
186 /**
187  * Get the next enabled lcore ID.
188  *
189  * @param i
190  *   The current lcore (reference).
191  * @param skip_master
192  *   If true, do not return the ID of the master lcore.
193  * @param wrap
194  *   If true, go back to 0 when RTE_MAX_LCORE is reached; otherwise,
195  *   return RTE_MAX_LCORE.
196  * @return
197  *   The next lcore_id or RTE_MAX_LCORE if not found.
198  */
199 static inline unsigned
200 rte_get_next_lcore(unsigned i, int skip_master, int wrap)
201 {
202         i++;
203         if (wrap)
204                 i %= RTE_MAX_LCORE;
205
206         while (i < RTE_MAX_LCORE) {
207                 if (!rte_lcore_is_enabled(i) ||
208                     (skip_master && (i == rte_get_master_lcore()))) {
209                         i++;
210                         if (wrap)
211                                 i %= RTE_MAX_LCORE;
212                         continue;
213                 }
214                 break;
215         }
216         return i;
217 }
218 /**
219  * Macro to browse all running lcores.
220  */
221 #define RTE_LCORE_FOREACH(i)                                            \
222         for (i = rte_get_next_lcore(-1, 0, 0);                          \
223              i<RTE_MAX_LCORE;                                           \
224              i = rte_get_next_lcore(i, 0, 0))
225
226 /**
227  * Macro to browse all running lcores except the master lcore.
228  */
229 #define RTE_LCORE_FOREACH_SLAVE(i)                                      \
230         for (i = rte_get_next_lcore(-1, 1, 0);                          \
231              i<RTE_MAX_LCORE;                                           \
232              i = rte_get_next_lcore(i, 1, 0))
233
234 /**
235  * Set core affinity of the current thread.
236  * Support both EAL and non-EAL thread and update TLS.
237  *
238  * @param cpusetp
239  *   Point to cpu_set_t for setting current thread affinity.
240  * @return
241  *   On success, return 0; otherwise return -1;
242  */
243 int rte_thread_set_affinity(rte_cpuset_t *cpusetp);
244
245 /**
246  * Get core affinity of the current thread.
247  *
248  * @param cpusetp
249  *   Point to cpu_set_t for getting current thread cpu affinity.
250  *   It presumes input is not NULL, otherwise it causes panic.
251  *
252  */
253 void rte_thread_get_affinity(rte_cpuset_t *cpusetp);
254
255
256 #ifdef __cplusplus
257 }
258 #endif
259
260
261 #endif /* _RTE_LCORE_H_ */