7cc811485d51768ad6db76d982134bad9326440b
[dpdk.git] / lib / eal / windows / eal_windows.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright (c) 2020 Dmitry Kozlyuk
3  */
4
5 #ifndef _EAL_WINDOWS_H_
6 #define _EAL_WINDOWS_H_
7
8 /**
9  * @file Facilities private to Windows EAL
10  */
11
12 #include <rte_errno.h>
13 #include <rte_windows.h>
14
15 /**
16  * Log current function as not implemented and set rte_errno.
17  */
18 #define EAL_LOG_NOT_IMPLEMENTED() \
19         do { \
20                 RTE_LOG(DEBUG, EAL, "%s() is not implemented\n", __func__); \
21                 rte_errno = ENOTSUP; \
22         } while (0)
23
24 /**
25  * Log current function as a stub.
26  */
27 #define EAL_LOG_STUB() \
28         RTE_LOG(DEBUG, EAL, "Windows: %s() is a stub\n", __func__)
29
30 /**
31  * Create a map of processors and cores on the system.
32  *
33  * @return
34  *  0 on success, (-1) on failure and rte_errno is set.
35  */
36 int eal_create_cpu_map(void);
37
38 /**
39  * Create a thread.
40  *
41  * @param thread
42  *   The location to store the thread id if successful.
43  * @return
44  *   0 for success, -1 if the thread is not created.
45  */
46 int eal_thread_create(pthread_t *thread);
47
48 /**
49  * Get system NUMA node number for a socket ID.
50  *
51  * @param socket_id
52  *  Valid EAL socket ID.
53  * @return
54  *  NUMA node number to use with Win32 API.
55  */
56 unsigned int eal_socket_numa_node(unsigned int socket_id);
57
58 /**
59  * Schedule code for execution in the interrupt thread.
60  *
61  * @param func
62  *  Function to call.
63  * @param arg
64  *  Argument to the called function.
65  * @return
66  *  0 on success, netagive error code on failure.
67  */
68 int eal_intr_thread_schedule(void (*func)(void *arg), void *arg);
69
70 /**
71  * Request interrupt thread to stop and wait its termination.
72  */
73 void eal_intr_thread_cancel(void);
74
75 /**
76  * Open virt2phys driver interface device.
77  *
78  * @return 0 on success, (-1) on failure.
79  */
80 int eal_mem_virt2iova_init(void);
81
82 /**
83  * Locate Win32 memory management routines in system libraries.
84  *
85  * @return 0 on success, (-1) on failure.
86  */
87 int eal_mem_win32api_init(void);
88
89 /**
90  * Allocate new memory in hugepages on the specified NUMA node.
91  *
92  * @param size
93  *  Number of bytes to allocate. Must be a multiple of huge page size.
94  * @param socket_id
95  *  Socket ID.
96  * @return
97  *  Address of the memory allocated on success or NULL on failure.
98  */
99 void *eal_mem_alloc_socket(size_t size, int socket_id);
100
101 /**
102  * Commit memory previously reserved with eal_mem_reserve()
103  * or decommitted from hugepages by eal_mem_decommit().
104  *
105  * @param requested_addr
106  *  Address within a reserved region. Must not be NULL.
107  * @param size
108  *  Number of bytes to commit. Must be a multiple of page size.
109  * @param socket_id
110  *  Socket ID to allocate on. Can be SOCKET_ID_ANY.
111  * @return
112  *  On success, address of the committed memory, that is, requested_addr.
113  *  On failure, NULL and rte_errno is set.
114  */
115 void *eal_mem_commit(void *requested_addr, size_t size, int socket_id);
116
117 /**
118  * Put allocated or committed memory back into reserved state.
119  *
120  * @param addr
121  *  Address of the region to decommit.
122  * @param size
123  *  Number of bytes to decommit, must be the size of a page
124  *  (hugepage or regular one).
125  *
126  * The *addr* and *size* must match location and size
127  * of a previously allocated or committed region.
128  *
129  * @return
130  *  0 on success, (-1) on failure.
131  */
132 int eal_mem_decommit(void *addr, size_t size);
133
134 #endif /* _EAL_WINDOWS_H_ */