eal: remove duplicate function declaration
[dpdk.git] / lib / librte_eal / common / eal_private.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 _EAL_PRIVATE_H_
35 #define _EAL_PRIVATE_H_
36
37 #include <stdio.h>
38 #include <rte_pci.h>
39
40 /**
41  * Initialize the memzone subsystem (private to eal).
42  *
43  * @return
44  *   - 0 on success
45  *   - Negative on error
46  */
47 int rte_eal_memzone_init(void);
48
49 /**
50  * Common log initialization function (private to eal).
51  *
52  * @param default_log
53  *   The default log stream to be used.
54  * @return
55  *   - 0 on success
56  *   - Negative on error
57  */
58 int rte_eal_common_log_init(FILE *default_log);
59
60 /**
61  * Fill configuration with number of physical and logical processors
62  *
63  * This function is private to EAL.
64  *
65  * Parse /proc/cpuinfo to get the number of physical and logical
66  * processors on the machine.
67  *
68  * @return
69  *   0 on success, negative on error
70  */
71 int rte_eal_cpu_init(void);
72
73 /**
74  * Map memory
75  *
76  * This function is private to EAL.
77  *
78  * Fill configuration structure with these infos, and return 0 on success.
79  *
80  * @return
81  *   0 on success, negative on error
82  */
83 int rte_eal_memory_init(void);
84
85 /**
86  * Configure timers
87  *
88  * This function is private to EAL.
89  *
90  * Mmap memory areas used by HPET (high precision event timer) that will
91  * provide our time reference, and configure the TSC frequency also for it
92  * to be used as a reference.
93  *
94  * @return
95  *   0 on success, negative on error
96  */
97 int rte_eal_timer_init(void);
98
99 /**
100  * Init early logs
101  *
102  * This function is private to EAL.
103  *
104  * @return
105  *   0 on success, negative on error
106  */
107 int rte_eal_log_early_init(void);
108
109 /**
110  * Init the default log stream
111  *
112  * This function is private to EAL.
113  *
114  * @return
115  *   0 on success, negative on error
116  */
117 int rte_eal_log_init(const char *id, int facility);
118
119 /**
120  * Init the PCI infrastructure
121  *
122  * This function is private to EAL.
123  *
124  * @return
125  *   0 on success, negative on error
126  */
127 int rte_eal_pci_init(void);
128
129 struct rte_pci_driver;
130 struct rte_pci_device;
131
132 /**
133  * Unbind kernel driver for this device
134  *
135  * This function is private to EAL.
136  *
137  * @return
138  *   0 on success, negative on error
139  */
140 int pci_unbind_kernel_driver(struct rte_pci_device *dev);
141
142 /**
143  * Map the PCI resource of a PCI device in virtual memory
144  *
145  * This function is private to EAL.
146  *
147  * @return
148  *   0 on success, negative on error
149  */
150 int pci_uio_map_resource(struct rte_pci_device *dev);
151
152 /**
153  * Unmap the PCI resource of a PCI device
154  *
155  * This function is private to EAL.
156  */
157 void pci_uio_unmap_resource(struct rte_pci_device *dev);
158
159 /**
160  * Allocate uio resource for PCI device
161  *
162  * This function is private to EAL.
163  *
164  * @param dev
165  *   PCI device to allocate uio resource
166  * @param uio_res
167  *   Pointer to uio resource.
168  *   If the function returns 0, the pointer will be filled.
169  * @return
170  *   0 on success, negative on error
171  */
172 int pci_uio_alloc_resource(struct rte_pci_device *dev,
173                 struct mapped_pci_resource **uio_res);
174
175 /**
176  * Free uio resource for PCI device
177  *
178  * This function is private to EAL.
179  *
180  * @param dev
181  *   PCI device to free uio resource
182  * @param uio_res
183  *   Pointer to uio resource.
184  */
185 void pci_uio_free_resource(struct rte_pci_device *dev,
186                 struct mapped_pci_resource *uio_res);
187
188 /**
189  * Map device memory to uio resource
190  *
191  * This function is private to EAL.
192  *
193  * @param dev
194  *   PCI device that has memory information.
195  * @param res_idx
196  *   Memory resource index of the PCI device.
197  * @param uio_res
198  *  uio resource that will keep mapping information.
199  * @param map_idx
200  *   Mapping information index of the uio resource.
201  * @return
202  *   0 on success, negative on error
203  */
204 int pci_uio_map_resource_by_index(struct rte_pci_device *dev, int res_idx,
205                 struct mapped_pci_resource *uio_res, int map_idx);
206
207 /**
208  * Init tail queues for non-EAL library structures. This is to allow
209  * the rings, mempools, etc. lists to be shared among multiple processes
210  *
211  * This function is private to EAL
212  *
213  * @return
214  *    0 on success, negative on error
215  */
216 int rte_eal_tailqs_init(void);
217
218 /**
219  * Init interrupt handling.
220  *
221  * This function is private to EAL.
222  *
223  * @return
224  *  0 on success, negative on error
225  */
226 int rte_eal_intr_init(void);
227
228 /**
229  * Init alarm mechanism. This is to allow a callback be called after
230  * specific time.
231  *
232  * This function is private to EAL.
233  *
234  * @return
235  *  0 on success, negative on error
236  */
237 int rte_eal_alarm_init(void);
238
239 /**
240  * Function is to check if the kernel module(like, vfio, vfio_iommu_type1,
241  * etc.) loaded.
242  *
243  * @param module_name
244  *      The module's name which need to be checked
245  *
246  * @return
247  *      -1 means some error happens(NULL pointer or open failure)
248  *      0  means the module not loaded
249  *      1  means the module loaded
250  */
251 int rte_eal_check_module(const char *module_name);
252
253 /**
254  * Get cpu core_id.
255  *
256  * This function is private to the EAL.
257  */
258 unsigned eal_cpu_core_id(unsigned lcore_id);
259
260 /**
261  * Check if cpu is present.
262  *
263  * This function is private to the EAL.
264  */
265 int eal_cpu_detected(unsigned lcore_id);
266
267 /**
268  * Set TSC frequency from precise value or estimation
269  *
270  * This function is private to the EAL.
271  */
272 void set_tsc_freq(void);
273
274 /**
275  * Get precise TSC frequency from system
276  *
277  * This function is private to the EAL.
278  */
279 uint64_t get_tsc_freq(void);
280
281 /**
282  * Prepare physical memory mapping
283  * i.e. hugepages on Linux and
284  *      contigmem on BSD.
285  *
286  * This function is private to the EAL.
287  */
288 int rte_eal_hugepage_init(void);
289
290 /**
291  * Creates memory mapping in secondary process
292  * i.e. hugepages on Linux and
293  *      contigmem on BSD.
294  *
295  * This function is private to the EAL.
296  */
297 int rte_eal_hugepage_attach(void);
298
299 #endif /* _EAL_PRIVATE_H_ */