add experimental tag to appropriate functions
[dpdk.git] / lib / librte_eal / common / include / rte_eal.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2016 Intel Corporation
3  */
4
5 #ifndef _RTE_EAL_H_
6 #define _RTE_EAL_H_
7
8 /**
9  * @file
10  *
11  * EAL Configuration API
12  */
13
14 #include <stdint.h>
15 #include <sched.h>
16
17 #include <rte_config.h>
18 #include <rte_compat.h>
19 #include <rte_per_lcore.h>
20 #include <rte_bus.h>
21
22 #include <rte_pci_dev_feature_defs.h>
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27
28 #define RTE_MAGIC 19820526 /**< Magic number written by the main partition when ready. */
29
30 /* Maximum thread_name length. */
31 #define RTE_MAX_THREAD_NAME_LEN 16
32
33 /**
34  * The lcore role (used in RTE or not).
35  */
36 enum rte_lcore_role_t {
37         ROLE_RTE,
38         ROLE_OFF,
39         ROLE_SERVICE,
40 };
41
42 /**
43  * The type of process in a linuxapp, multi-process setup
44  */
45 enum rte_proc_type_t {
46         RTE_PROC_AUTO = -1,   /* allow auto-detection of primary/secondary */
47         RTE_PROC_PRIMARY = 0, /* set to zero, so primary is the default */
48         RTE_PROC_SECONDARY,
49
50         RTE_PROC_INVALID
51 };
52
53 /**
54  * The global RTE configuration structure.
55  */
56 struct rte_config {
57         uint32_t master_lcore;       /**< Id of the master lcore */
58         uint32_t lcore_count;        /**< Number of available logical cores. */
59         uint32_t service_lcore_count;/**< Number of available service cores. */
60         enum rte_lcore_role_t lcore_role[RTE_MAX_LCORE]; /**< State of cores. */
61
62         /** Primary or secondary configuration */
63         enum rte_proc_type_t process_type;
64
65         /** PA or VA mapping mode */
66         enum rte_iova_mode iova_mode;
67
68         /**
69          * Pointer to memory configuration, which may be shared across multiple
70          * DPDK instances
71          */
72         struct rte_mem_config *mem_config;
73 } __attribute__((__packed__));
74
75 /**
76  * Get the global configuration structure.
77  *
78  * @return
79  *   A pointer to the global configuration structure.
80  */
81 struct rte_config *rte_eal_get_configuration(void);
82
83 /**
84  * Get a lcore's role.
85  *
86  * @param lcore_id
87  *   The identifier of the lcore.
88  * @return
89  *   The role of the lcore.
90  */
91 enum rte_lcore_role_t rte_eal_lcore_role(unsigned lcore_id);
92
93
94 /**
95  * Get the process type in a multi-process setup
96  *
97  * @return
98  *   The process type
99  */
100 enum rte_proc_type_t rte_eal_process_type(void);
101
102 /**
103  * Request iopl privilege for all RPL.
104  *
105  * This function should be called by pmds which need access to ioports.
106
107  * @return
108  *   - On success, returns 0.
109  *   - On failure, returns -1.
110  */
111 int rte_eal_iopl_init(void);
112
113 /**
114  * Initialize the Environment Abstraction Layer (EAL).
115  *
116  * This function is to be executed on the MASTER lcore only, as soon
117  * as possible in the application's main() function.
118  *
119  * The function finishes the initialization process before main() is called.
120  * It puts the SLAVE lcores in the WAIT state.
121  *
122  * When the multi-partition feature is supported, depending on the
123  * configuration (if CONFIG_RTE_EAL_MAIN_PARTITION is disabled), this
124  * function waits to ensure that the magic number is set before
125  * returning. See also the rte_eal_get_configuration() function. Note:
126  * This behavior may change in the future.
127  *
128  * @param argc
129  *   A non-negative value.  If it is greater than 0, the array members
130  *   for argv[0] through argv[argc] (non-inclusive) shall contain pointers
131  *   to strings.
132  * @param argv
133  *   An array of strings.  The contents of the array, as well as the strings
134  *   which are pointed to by the array, may be modified by this function.
135  * @return
136  *   - On success, the number of parsed arguments, which is greater or
137  *     equal to zero. After the call to rte_eal_init(),
138  *     all arguments argv[x] with x < ret may have been modified by this
139  *     function call and should not be further interpreted by the
140  *     application.  The EAL does not take any ownership of the memory used
141  *     for either the argv array, or its members.
142  *   - On failure, -1 and rte_errno is set to a value indicating the cause
143  *     for failure.  In some instances, the application will need to be
144  *     restarted as part of clearing the issue.
145  *
146  *   Error codes returned via rte_errno:
147  *     EACCES indicates a permissions issue.
148  *
149  *     EAGAIN indicates either a bus or system resource was not available,
150  *            setup may be attempted again.
151  *
152  *     EALREADY indicates that the rte_eal_init function has already been
153  *              called, and cannot be called again.
154  *
155  *     EFAULT indicates the tailq configuration name was not found in
156  *            memory configuration.
157  *
158  *     EINVAL indicates invalid parameters were passed as argv/argc.
159  *
160  *     ENOMEM indicates failure likely caused by an out-of-memory condition.
161  *
162  *     ENODEV indicates memory setup issues.
163  *
164  *     ENOTSUP indicates that the EAL cannot initialize on this system.
165  *
166  *     EPROTO indicates that the PCI bus is either not present, or is not
167  *            readable by the eal.
168  *
169  *     ENOEXEC indicates that a service core failed to launch successfully.
170  */
171 int rte_eal_init(int argc, char **argv);
172
173 /**
174  * @warning
175  * @b EXPERIMENTAL: this API may change without prior notice
176  *
177  * Clean up the Environment Abstraction Layer (EAL)
178  *
179  * This function must be called to release any internal resources that EAL has
180  * allocated during rte_eal_init(). After this call, no DPDK function calls may
181  * be made. It is expected that common usage of this function is to call it
182  * just before terminating the process.
183  *
184  * @return 0 Successfully released all internal EAL resources
185  * @return -EFAULT There was an error in releasing all resources.
186  */
187 int __rte_experimental rte_eal_cleanup(void);
188
189 /**
190  * Check if a primary process is currently alive
191  *
192  * This function returns true when a primary process is currently
193  * active.
194  *
195  * @param config_file_path
196  *   The config_file_path argument provided should point at the location
197  *   that the primary process will create its config file. If NULL, the default
198  *   config file path is used.
199  *
200  * @return
201  *  - If alive, returns 1.
202  *  - If dead, returns 0.
203  */
204 int rte_eal_primary_proc_alive(const char *config_file_path);
205
206 /**
207  * Usage function typedef used by the application usage function.
208  *
209  * Use this function typedef to define and call rte_set_application_usage_hook()
210  * routine.
211  */
212 typedef void    (*rte_usage_hook_t)(const char * prgname);
213
214 /**
215  * Add application usage routine callout from the eal_usage() routine.
216  *
217  * This function allows the application to include its usage message
218  * in the EAL system usage message. The routine rte_set_application_usage_hook()
219  * needs to be called before the rte_eal_init() routine in the application.
220  *
221  * This routine is optional for the application and will behave as if the set
222  * routine was never called as the default behavior.
223  *
224  * @param usage_func
225  *   The func argument is a function pointer to the application usage routine.
226  *   Called function is defined using rte_usage_hook_t typedef, which is of
227  *   the form void rte_usage_func(const char * prgname).
228  *
229  *   Calling this routine with a NULL value will reset the usage hook routine and
230  *   return the current value, which could be NULL.
231  * @return
232  *   - Returns the current value of the rte_application_usage pointer to allow
233  *     the caller to daisy chain the usage routines if needing more then one.
234  */
235 rte_usage_hook_t
236 rte_set_application_usage_hook(rte_usage_hook_t usage_func);
237
238 /**
239  * macro to get the lock of tailq in mem_config
240  */
241 #define RTE_EAL_TAILQ_RWLOCK         (&rte_eal_get_configuration()->mem_config->qlock)
242
243 /**
244  * macro to get the multiple lock of mempool shared by mutiple-instance
245  */
246 #define RTE_EAL_MEMPOOL_RWLOCK            (&rte_eal_get_configuration()->mem_config->mplock)
247
248 /**
249  * Whether EAL is using huge pages (disabled by --no-huge option).
250  * The no-huge mode cannot be used with UIO poll-mode drivers like igb/ixgbe.
251  * It is useful for NIC drivers (e.g. librte_pmd_mlx4, librte_pmd_vmxnet3) or
252  * crypto drivers (e.g. librte_crypto_nitrox) provided by third-parties such
253  * as 6WIND.
254  *
255  * @return
256  *   Nonzero if hugepages are enabled.
257  */
258 int rte_eal_has_hugepages(void);
259
260 /**
261  * Whether EAL is using PCI bus.
262  * Disabled by --no-pci option.
263  *
264  * @return
265  *   Nonzero if the PCI bus is enabled.
266  */
267 int rte_eal_has_pci(void);
268
269 /**
270  * Whether the EAL was asked to create UIO device.
271  *
272  * @return
273  *   Nonzero if true.
274  */
275 int rte_eal_create_uio_dev(void);
276
277 /**
278  * The user-configured vfio interrupt mode.
279  *
280  * @return
281  *   Interrupt mode configured with the command line,
282  *   RTE_INTR_MODE_NONE by default.
283  */
284 enum rte_intr_mode rte_eal_vfio_intr_mode(void);
285
286 /**
287  * A wrap API for syscall gettid.
288  *
289  * @return
290  *   On success, returns the thread ID of calling process.
291  *   It is always successful.
292  */
293 int rte_sys_gettid(void);
294
295 /**
296  * Get system unique thread id.
297  *
298  * @return
299  *   On success, returns the thread ID of calling process.
300  *   It is always successful.
301  */
302 static inline int rte_gettid(void)
303 {
304         static RTE_DEFINE_PER_LCORE(int, _thread_id) = -1;
305         if (RTE_PER_LCORE(_thread_id) == -1)
306                 RTE_PER_LCORE(_thread_id) = rte_sys_gettid();
307         return RTE_PER_LCORE(_thread_id);
308 }
309
310 /**
311  * Get the iova mode
312  *
313  * @return
314  *   enum rte_iova_mode value.
315  */
316 enum rte_iova_mode rte_eal_iova_mode(void);
317
318 /**
319  * Get default pool ops name for mbuf
320  *
321  * @return
322  *   returns default pool ops name.
323  */
324 const char *
325 rte_eal_mbuf_default_mempool_ops(void);
326
327 #ifdef __cplusplus
328 }
329 #endif
330
331 #endif /* _RTE_EAL_H_ */