1 | /** @file
|
---|
2 | * IPRT - Multiprocessor.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2008 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef ___iprt_mp_h
|
---|
27 | #define ___iprt_mp_h
|
---|
28 |
|
---|
29 | #include <iprt/cdefs.h>
|
---|
30 | #include <iprt/types.h>
|
---|
31 |
|
---|
32 |
|
---|
33 | RT_C_DECLS_BEGIN
|
---|
34 |
|
---|
35 | /** @defgroup grp_rt_mp RTMp - Multiprocessor
|
---|
36 | * @ingroup grp_rt
|
---|
37 | * @{
|
---|
38 | */
|
---|
39 |
|
---|
40 | /**
|
---|
41 | * Gets the identifier of the CPU executing the call.
|
---|
42 | *
|
---|
43 | * When called from a system mode where scheduling is active, like ring-3 or
|
---|
44 | * kernel mode with interrupts enabled on some systems, no assumptions should
|
---|
45 | * be made about the current CPU when the call returns.
|
---|
46 | *
|
---|
47 | * @returns CPU Id.
|
---|
48 | */
|
---|
49 | RTDECL(RTCPUID) RTMpCpuId(void);
|
---|
50 |
|
---|
51 | /**
|
---|
52 | * Converts a CPU identifier to a CPU set index.
|
---|
53 | *
|
---|
54 | * This may or may not validate the presence of the CPU.
|
---|
55 | *
|
---|
56 | * @returns The CPU set index on success, -1 on failure.
|
---|
57 | * @param idCpu The identifier of the CPU.
|
---|
58 | */
|
---|
59 | RTDECL(int) RTMpCpuIdToSetIndex(RTCPUID idCpu);
|
---|
60 |
|
---|
61 | /**
|
---|
62 | * Converts a CPU set index to a a CPU identifier.
|
---|
63 | *
|
---|
64 | * This may or may not validate the presence of the CPU, so, use
|
---|
65 | * RTMpIsCpuPossible for that.
|
---|
66 | *
|
---|
67 | * @returns The corresponding CPU identifier, NIL_RTCPUID on failure.
|
---|
68 | * @param iCpu The CPU set index.
|
---|
69 | */
|
---|
70 | RTDECL(RTCPUID) RTMpCpuIdFromSetIndex(int iCpu);
|
---|
71 |
|
---|
72 | /**
|
---|
73 | * Gets the max CPU identifier (inclusive).
|
---|
74 | *
|
---|
75 | * Intended for brute force enumerations, but use with
|
---|
76 | * care as it may be expensive.
|
---|
77 | *
|
---|
78 | * @returns The current higest CPU identifier value.
|
---|
79 | */
|
---|
80 | RTDECL(RTCPUID) RTMpGetMaxCpuId(void);
|
---|
81 |
|
---|
82 | /**
|
---|
83 | * Gets the size of a CPU array that is indexed by CPU set index.
|
---|
84 | *
|
---|
85 | * This takes both online, offline and hot-plugged cpus into account.
|
---|
86 | *
|
---|
87 | * @returns Number of elements.
|
---|
88 | *
|
---|
89 | * @remarks Use RTMpCpuIdToSetIndex to convert a RTCPUID into an array index.
|
---|
90 | */
|
---|
91 | RTDECL(uint32_t) RTMpGetArraySize(void);
|
---|
92 |
|
---|
93 | /**
|
---|
94 | * Checks if a CPU exists in the system or may possibly be hotplugged later.
|
---|
95 | *
|
---|
96 | * @returns true/false accordingly.
|
---|
97 | * @param idCpu The identifier of the CPU.
|
---|
98 | */
|
---|
99 | RTDECL(bool) RTMpIsCpuPossible(RTCPUID idCpu);
|
---|
100 |
|
---|
101 | /**
|
---|
102 | * Gets set of the CPUs present in the system plus any that may
|
---|
103 | * possibly be hotplugged later.
|
---|
104 | *
|
---|
105 | * @returns pSet.
|
---|
106 | * @param pSet Where to put the set.
|
---|
107 | */
|
---|
108 | RTDECL(PRTCPUSET) RTMpGetSet(PRTCPUSET pSet);
|
---|
109 |
|
---|
110 | /**
|
---|
111 | * Get the count of CPUs present in the system plus any that may
|
---|
112 | * possibly be hotplugged later.
|
---|
113 | *
|
---|
114 | * @returns The count.
|
---|
115 | * @remarks Don't use this for CPU array sizing, use RTMpGetArraySize instead.
|
---|
116 | */
|
---|
117 | RTDECL(RTCPUID) RTMpGetCount(void);
|
---|
118 |
|
---|
119 |
|
---|
120 | /**
|
---|
121 | * Gets set of the CPUs present that are currently online.
|
---|
122 | *
|
---|
123 | * @returns pSet.
|
---|
124 | * @param pSet Where to put the set.
|
---|
125 | */
|
---|
126 | RTDECL(PRTCPUSET) RTMpGetOnlineSet(PRTCPUSET pSet);
|
---|
127 |
|
---|
128 | /**
|
---|
129 | * Get the count of CPUs that are currently online.
|
---|
130 | *
|
---|
131 | * @return The count.
|
---|
132 | */
|
---|
133 | RTDECL(RTCPUID) RTMpGetOnlineCount(void);
|
---|
134 |
|
---|
135 | /**
|
---|
136 | * Checks if a CPU is online or not.
|
---|
137 | *
|
---|
138 | * @returns true/false accordingly.
|
---|
139 | * @param idCpu The identifier of the CPU.
|
---|
140 | */
|
---|
141 | RTDECL(bool) RTMpIsCpuOnline(RTCPUID idCpu);
|
---|
142 |
|
---|
143 |
|
---|
144 | /**
|
---|
145 | * Gets set of the CPUs present in the system.
|
---|
146 | *
|
---|
147 | * @returns pSet.
|
---|
148 | * @param pSet Where to put the set.
|
---|
149 | */
|
---|
150 | RTDECL(PRTCPUSET) RTMpGetPresentSet(PRTCPUSET pSet);
|
---|
151 |
|
---|
152 | /**
|
---|
153 | * Get the count of CPUs that are present in the system.
|
---|
154 | *
|
---|
155 | * @return The count.
|
---|
156 | */
|
---|
157 | RTDECL(RTCPUID) RTMpGetPresentCount(void);
|
---|
158 |
|
---|
159 | /**
|
---|
160 | * Checks if a CPU is present in the system.
|
---|
161 | *
|
---|
162 | * @returns true/false accordingly.
|
---|
163 | * @param idCpu The identifier of the CPU.
|
---|
164 | */
|
---|
165 | RTDECL(bool) RTMpIsCpuPresent(RTCPUID idCpu);
|
---|
166 |
|
---|
167 |
|
---|
168 | /**
|
---|
169 | * Get the current frequency of a CPU.
|
---|
170 | *
|
---|
171 | * The CPU must be online.
|
---|
172 | *
|
---|
173 | * @returns The frequency as MHz. 0 if the CPU is offline
|
---|
174 | * or the information is not available.
|
---|
175 | * @param idCpu The identifier of the CPU.
|
---|
176 | */
|
---|
177 | RTDECL(uint32_t) RTMpGetCurFrequency(RTCPUID idCpu);
|
---|
178 |
|
---|
179 | /**
|
---|
180 | * Get the maximum frequency of a CPU.
|
---|
181 | *
|
---|
182 | * The CPU must be online.
|
---|
183 | *
|
---|
184 | * @returns The frequency as MHz. 0 if the CPU is offline
|
---|
185 | * or the information is not available.
|
---|
186 | * @param idCpu The identifier of the CPU.
|
---|
187 | */
|
---|
188 | RTDECL(uint32_t) RTMpGetMaxFrequency(RTCPUID idCpu);
|
---|
189 |
|
---|
190 | /**
|
---|
191 | * Get the CPU description string.
|
---|
192 | *
|
---|
193 | * The CPU must be online.
|
---|
194 | *
|
---|
195 | * @returns IPRT status code.
|
---|
196 | * @param idCpu The identifier of the CPU.
|
---|
197 | * @param pszBuf The output buffer.
|
---|
198 | * @param cbBuf The size of the output buffer.
|
---|
199 | */
|
---|
200 | RTDECL(int) RTMpGetDescription(RTCPUID idCpu, char *pszBuf, size_t cbBuf);
|
---|
201 |
|
---|
202 |
|
---|
203 | #ifdef IN_RING0
|
---|
204 |
|
---|
205 | /**
|
---|
206 | * Check if there's work (DPCs on Windows) pending on the current CPU.
|
---|
207 | *
|
---|
208 | * @return true if there's pending work on the current CPU, false otherwise.
|
---|
209 | */
|
---|
210 | RTDECL(bool) RTMpIsCpuWorkPending(void);
|
---|
211 |
|
---|
212 |
|
---|
213 | /**
|
---|
214 | * Worker function passed to RTMpOnAll, RTMpOnOthers and RTMpOnSpecific that
|
---|
215 | * is to be called on the target cpus.
|
---|
216 | *
|
---|
217 | * @param idCpu The identifier for the CPU the function is called on.
|
---|
218 | * @param pvUser1 The 1st user argument.
|
---|
219 | * @param pvUser2 The 2nd user argument.
|
---|
220 | */
|
---|
221 | typedef DECLCALLBACK(void) FNRTMPWORKER(RTCPUID idCpu, void *pvUser1, void *pvUser2);
|
---|
222 | /** Pointer to a FNRTMPWORKER. */
|
---|
223 | typedef FNRTMPWORKER *PFNRTMPWORKER;
|
---|
224 |
|
---|
225 | /**
|
---|
226 | * Executes a function on each (online) CPU in the system.
|
---|
227 | *
|
---|
228 | * @returns IPRT status code.
|
---|
229 | * @retval VINF_SUCCESS on success.
|
---|
230 | * @retval VERR_NOT_SUPPORTED if this kind of operation isn't supported by the system.
|
---|
231 | *
|
---|
232 | * @param pfnWorker The worker function.
|
---|
233 | * @param pvUser1 The first user argument for the worker.
|
---|
234 | * @param pvUser2 The second user argument for the worker.
|
---|
235 | *
|
---|
236 | * @remarks The execution isn't in any way guaranteed to be simultaneous,
|
---|
237 | * it might even be serial (cpu by cpu).
|
---|
238 | */
|
---|
239 | RTDECL(int) RTMpOnAll(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2);
|
---|
240 |
|
---|
241 | /**
|
---|
242 | * Executes a function on a all other (online) CPUs in the system.
|
---|
243 | *
|
---|
244 | * The caller must disable preemption prior to calling this API if the outcome
|
---|
245 | * is to make any sense. But do *not* disable interrupts.
|
---|
246 | *
|
---|
247 | * @returns IPRT status code.
|
---|
248 | * @retval VINF_SUCCESS on success.
|
---|
249 | * @retval VERR_NOT_SUPPORTED if this kind of operation isn't supported by the system.
|
---|
250 | *
|
---|
251 | * @param pfnWorker The worker function.
|
---|
252 | * @param pvUser1 The first user argument for the worker.
|
---|
253 | * @param pvUser2 The second user argument for the worker.
|
---|
254 | *
|
---|
255 | * @remarks The execution isn't in any way guaranteed to be simultaneous,
|
---|
256 | * it might even be serial (cpu by cpu).
|
---|
257 | */
|
---|
258 | RTDECL(int) RTMpOnOthers(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2);
|
---|
259 |
|
---|
260 | /**
|
---|
261 | * Executes a function on a specific CPU in the system.
|
---|
262 | *
|
---|
263 | * @returns IPRT status code.
|
---|
264 | * @retval VINF_SUCCESS on success.
|
---|
265 | * @retval VERR_NOT_SUPPORTED if this kind of operation isn't supported by the system.
|
---|
266 | * @retval VERR_CPU_OFFLINE if the CPU is offline.
|
---|
267 | * @retval VERR_CPU_NOT_FOUND if the CPU wasn't found.
|
---|
268 | *
|
---|
269 | * @param idCpu The id of the CPU.
|
---|
270 | * @param pfnWorker The worker function.
|
---|
271 | * @param pvUser1 The first user argument for the worker.
|
---|
272 | * @param pvUser2 The second user argument for the worker.
|
---|
273 | */
|
---|
274 | RTDECL(int) RTMpOnSpecific(RTCPUID idCpu, PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2);
|
---|
275 |
|
---|
276 | /**
|
---|
277 | * Pokes the specified CPU.
|
---|
278 | *
|
---|
279 | * This should cause the execution on the CPU to be interrupted and forcing it
|
---|
280 | * to enter kernel context. It is optimized version of a RTMpOnSpecific call
|
---|
281 | * with a worker which returns immediately.
|
---|
282 | *
|
---|
283 | * @returns IPRT status code.
|
---|
284 | * @retval VERR_NOT_SUPPORTED if this kind of operation isn't supported by the
|
---|
285 | * system. The caller must not automatically assume that this API works
|
---|
286 | * when any of the RTMpOn* APIs works. This is because not all systems
|
---|
287 | * supports unicast MP events and this API will not be implemented as a
|
---|
288 | * broadcast.
|
---|
289 | * @retval VERR_CPU_OFFLINE if the CPU is offline.
|
---|
290 | * @retval VERR_CPU_NOT_FOUND if the CPU wasn't found.
|
---|
291 | *
|
---|
292 | * @param idCpu The id of the CPU to poke.
|
---|
293 | */
|
---|
294 | RTDECL(int) RTMpPokeCpu(RTCPUID idCpu);
|
---|
295 |
|
---|
296 |
|
---|
297 | /**
|
---|
298 | * MP event, see FNRTMPNOTIFICATION.
|
---|
299 | */
|
---|
300 | typedef enum RTMPEVENT
|
---|
301 | {
|
---|
302 | /** The CPU goes online. */
|
---|
303 | RTMPEVENT_ONLINE = 1,
|
---|
304 | /** The CPU goes offline. */
|
---|
305 | RTMPEVENT_OFFLINE
|
---|
306 | } RTMPEVENT;
|
---|
307 |
|
---|
308 | /**
|
---|
309 | * Notification callback.
|
---|
310 | *
|
---|
311 | * The context this is called in differs a bit from platform to
|
---|
312 | * platform, so be careful while in here.
|
---|
313 | *
|
---|
314 | * @param idCpu The CPU this applies to.
|
---|
315 | * @param enmEvent The event.
|
---|
316 | * @param pvUser The user argument.
|
---|
317 | */
|
---|
318 | typedef DECLCALLBACK(void) FNRTMPNOTIFICATION(RTMPEVENT enmEvent, RTCPUID idCpu, void *pvUser);
|
---|
319 | /** Pointer to a FNRTMPNOTIFICATION(). */
|
---|
320 | typedef FNRTMPNOTIFICATION *PFNRTMPNOTIFICATION;
|
---|
321 |
|
---|
322 | /**
|
---|
323 | * Registers a notification callback for cpu events.
|
---|
324 | *
|
---|
325 | * On platforms which doesn't do cpu offline/online events this API
|
---|
326 | * will just be a no-op that pretends to work.
|
---|
327 | *
|
---|
328 | * @todo We'll be adding a flag to this soon to indicate whether the callback should be called on all
|
---|
329 | * CPUs that are currently online while it's being registered. This is to help avoid some race
|
---|
330 | * conditions (we'll hopefully be able to implement this on linux, solaris/win is no issue).
|
---|
331 | *
|
---|
332 | * @returns IPRT status code.
|
---|
333 | * @retval VINF_SUCCESS on success.
|
---|
334 | * @retval VERR_NO_MEMORY if a registration record cannot be allocated.
|
---|
335 | * @retval VERR_ALREADY_EXISTS if the pfnCallback and pvUser already exist
|
---|
336 | * in the callback list.
|
---|
337 | *
|
---|
338 | * @param pfnCallback The callback.
|
---|
339 | * @param pvUser The user argument to the callback function.
|
---|
340 | */
|
---|
341 | RTDECL(int) RTMpNotificationRegister(PFNRTMPNOTIFICATION pfnCallback, void *pvUser);
|
---|
342 |
|
---|
343 | /**
|
---|
344 | * This deregisters a notification callback registered via RTMpNotificationRegister().
|
---|
345 | *
|
---|
346 | * The pfnCallback and pvUser arguments must be identical to the registration call
|
---|
347 | * of we won't find the right entry.
|
---|
348 | *
|
---|
349 | * @returns IPRT status code.
|
---|
350 | * @retval VINF_SUCCESS on success.
|
---|
351 | * @retval VERR_NOT_FOUND if no matching entry was found.
|
---|
352 | *
|
---|
353 | * @param pfnCallback The callback.
|
---|
354 | * @param pvUser The user argument to the callback function.
|
---|
355 | */
|
---|
356 | RTDECL(int) RTMpNotificationDeregister(PFNRTMPNOTIFICATION pfnCallback, void *pvUser);
|
---|
357 |
|
---|
358 | #endif /* IN_RING0 */
|
---|
359 |
|
---|
360 | /** @} */
|
---|
361 |
|
---|
362 | RT_C_DECLS_END
|
---|
363 |
|
---|
364 | #endif
|
---|
365 |
|
---|