VirtualBox

source: vbox/trunk/include/iprt/mp.h@ 54293

Last change on this file since 54293 was 54293, checked in by vboxsync, 10 years ago

doc update.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 12.4 KB
Line 
1/** @file
2 * IPRT - Multiprocessor.
3 */
4
5/*
6 * Copyright (C) 2008-2014 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
33RT_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 */
49RTDECL(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 */
59RTDECL(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 */
70RTDECL(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 */
80RTDECL(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 */
91RTDECL(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 */
99RTDECL(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 */
108RTDECL(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 */
117RTDECL(RTCPUID) RTMpGetCount(void);
118
119/**
120 * Get the count of physical CPU cores present in the system plus any that may
121 * possibly be hotplugged later.
122 *
123 * @returns The number of cores.
124 */
125RTDECL(RTCPUID) RTMpGetCoreCount(void);
126
127/**
128 * Gets set of the CPUs present that are currently online.
129 *
130 * @returns pSet.
131 * @param pSet Where to put the set.
132 */
133RTDECL(PRTCPUSET) RTMpGetOnlineSet(PRTCPUSET pSet);
134
135/**
136 * Get the count of CPUs that are currently online.
137 *
138 * @return The count.
139 */
140RTDECL(RTCPUID) RTMpGetOnlineCount(void);
141
142/**
143 * Get the count of physical CPU cores in the system with one or more online
144 * threads.
145 *
146 * @returns The number of online cores.
147 */
148RTDECL(RTCPUID) RTMpGetOnlineCoreCount(void);
149
150/**
151 * Checks if a CPU is online or not.
152 *
153 * @returns true/false accordingly.
154 * @param idCpu The identifier of the CPU.
155 */
156RTDECL(bool) RTMpIsCpuOnline(RTCPUID idCpu);
157
158
159/**
160 * Gets set of the CPUs present in the system.
161 *
162 * @returns pSet.
163 * @param pSet Where to put the set.
164 */
165RTDECL(PRTCPUSET) RTMpGetPresentSet(PRTCPUSET pSet);
166
167/**
168 * Get the count of CPUs that are present in the system.
169 *
170 * @return The count.
171 */
172RTDECL(RTCPUID) RTMpGetPresentCount(void);
173
174/**
175 * Get the count of physical CPU cores present in the system.
176 *
177 * @returns The number of cores.
178 */
179RTDECL(RTCPUID) RTMpGetPresentCoreCount(void);
180
181/**
182 * Checks if a CPU is present in the system.
183 *
184 * @returns true/false accordingly.
185 * @param idCpu The identifier of the CPU.
186 */
187RTDECL(bool) RTMpIsCpuPresent(RTCPUID idCpu);
188
189
190/**
191 * Get the current frequency of a CPU.
192 *
193 * The CPU must be online.
194 *
195 * @returns The frequency as MHz. 0 if the CPU is offline
196 * or the information is not available.
197 * @param idCpu The identifier of the CPU.
198 */
199RTDECL(uint32_t) RTMpGetCurFrequency(RTCPUID idCpu);
200
201/**
202 * Get the maximum frequency of a CPU.
203 *
204 * The CPU must be online.
205 *
206 * @returns The frequency as MHz. 0 if the CPU is offline
207 * or the information is not available.
208 * @param idCpu The identifier of the CPU.
209 */
210RTDECL(uint32_t) RTMpGetMaxFrequency(RTCPUID idCpu);
211
212/**
213 * Get the CPU description string.
214 *
215 * The CPU must be online.
216 *
217 * @returns IPRT status code.
218 * @param idCpu The identifier of the CPU. NIL_RTCPUID can be used to
219 * indicate the current CPU.
220 * @param pszBuf The output buffer.
221 * @param cbBuf The size of the output buffer.
222 */
223RTDECL(int) RTMpGetDescription(RTCPUID idCpu, char *pszBuf, size_t cbBuf);
224
225
226#ifdef IN_RING0
227
228/**
229 * Check if there's work (DPCs on Windows) pending on the current CPU.
230 *
231 * @return true if there's pending work on the current CPU, false otherwise.
232 */
233RTDECL(bool) RTMpIsCpuWorkPending(void);
234
235
236/**
237 * Worker function passed to RTMpOnAll, RTMpOnOthers and RTMpOnSpecific that
238 * is to be called on the target cpus.
239 *
240 * @param idCpu The identifier for the CPU the function is called on.
241 * @param pvUser1 The 1st user argument.
242 * @param pvUser2 The 2nd user argument.
243 */
244typedef DECLCALLBACK(void) FNRTMPWORKER(RTCPUID idCpu, void *pvUser1, void *pvUser2);
245/** Pointer to a FNRTMPWORKER. */
246typedef FNRTMPWORKER *PFNRTMPWORKER;
247
248/**
249 * Checks if the RTMpOnAll() is safe with regards to all threads executing
250 * concurrently.
251 *
252 * If for instance, the RTMpOnAll() is implemented in a way where the threads
253 * might cause a classic deadlock, it is considered -not- concurrent safe.
254 * Windows currently is one such platform where it isn't safe.
255 *
256 * @returns true if RTMpOnAll() is concurrent safe, false otherwise.
257 */
258RTDECL(bool) RTMpOnAllIsConcurrentSafe(void);
259
260/**
261 * Executes a function on each (online) 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 *
267 * @param pfnWorker The worker function.
268 * @param pvUser1 The first user argument for the worker.
269 * @param pvUser2 The second user argument for the worker.
270 *
271 * @remarks The execution isn't in any way guaranteed to be simultaneous,
272 * it might even be serial (cpu by cpu).
273 */
274RTDECL(int) RTMpOnAll(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2);
275
276/**
277 * Executes a function on a all other (online) CPUs in the system.
278 *
279 * The caller must disable preemption prior to calling this API if the outcome
280 * is to make any sense. But do *not* disable interrupts.
281 *
282 * @returns IPRT status code.
283 * @retval VINF_SUCCESS on success.
284 * @retval VERR_NOT_SUPPORTED if this kind of operation isn't supported by the system.
285 *
286 * @param pfnWorker The worker function.
287 * @param pvUser1 The first user argument for the worker.
288 * @param pvUser2 The second user argument for the worker.
289 *
290 * @remarks The execution isn't in any way guaranteed to be simultaneous,
291 * it might even be serial (cpu by cpu).
292 */
293RTDECL(int) RTMpOnOthers(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2);
294
295/**
296 * Executes a function on a specific CPU in the system.
297 *
298 * @returns IPRT status code.
299 * @retval VINF_SUCCESS on success.
300 * @retval VERR_NOT_SUPPORTED if this kind of operation isn't supported by the system.
301 * @retval VERR_CPU_OFFLINE if the CPU is offline.
302 * @retval VERR_CPU_NOT_FOUND if the CPU wasn't found.
303 *
304 * @param idCpu The id of the CPU.
305 * @param pfnWorker The worker function.
306 * @param pvUser1 The first user argument for the worker.
307 * @param pvUser2 The second user argument for the worker.
308 */
309RTDECL(int) RTMpOnSpecific(RTCPUID idCpu, PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2);
310
311/**
312 * Pokes the specified CPU.
313 *
314 * This should cause the execution on the CPU to be interrupted and forcing it
315 * to enter kernel context. It is optimized version of a RTMpOnSpecific call
316 * with a worker which returns immediately.
317 *
318 * @returns IPRT status code.
319 * @retval VERR_NOT_SUPPORTED if this kind of operation isn't supported by the
320 * system. The caller must not automatically assume that this API works
321 * when any of the RTMpOn* APIs works. This is because not all systems
322 * supports unicast MP events and this API will not be implemented as a
323 * broadcast.
324 * @retval VERR_CPU_OFFLINE if the CPU is offline.
325 * @retval VERR_CPU_NOT_FOUND if the CPU wasn't found.
326 *
327 * @param idCpu The id of the CPU to poke.
328 */
329RTDECL(int) RTMpPokeCpu(RTCPUID idCpu);
330
331
332/**
333 * MP event, see FNRTMPNOTIFICATION.
334 */
335typedef enum RTMPEVENT
336{
337 /** The CPU goes online. */
338 RTMPEVENT_ONLINE = 1,
339 /** The CPU goes offline. */
340 RTMPEVENT_OFFLINE
341} RTMPEVENT;
342
343/**
344 * Notification callback.
345 *
346 * The context this is called in differs a bit from platform to platform, so be
347 * careful while in here.
348 *
349 * On Windows we're running with IRQL=PASSIVE_LEVEL according to the
350 * KeRegisterProcessorChangeCallback documentation - unrestricted API access.
351 * Probably not being called on the onlined/offlined CPU...
352 *
353 * On Solaris we're holding the cpu_lock, IPL/SPL/PIL is not yet known. Looks
354 * like we're being called on the CPU that's being onlined/offlined.
355 *
356 * On Linux it looks like we're called on the CPU in question. Interrupts may
357 * be disabled, it seems.
358 *
359 * There is no callbacks for darwin at the moment, due to lack of suitable KPI.
360 *
361 * @param idCpu The CPU this applies to.
362 * @param enmEvent The event.
363 * @param pvUser The user argument.
364 */
365typedef DECLCALLBACK(void) FNRTMPNOTIFICATION(RTMPEVENT enmEvent, RTCPUID idCpu, void *pvUser);
366/** Pointer to a FNRTMPNOTIFICATION(). */
367typedef FNRTMPNOTIFICATION *PFNRTMPNOTIFICATION;
368
369/**
370 * Registers a notification callback for cpu events.
371 *
372 * On platforms which doesn't do cpu offline/online events this API
373 * will just be a no-op that pretends to work.
374 *
375 * @todo We'll be adding a flag to this soon to indicate whether the callback should be called on all
376 * CPUs that are currently online while it's being registered. This is to help avoid some race
377 * conditions (we'll hopefully be able to implement this on linux, solaris/win is no issue).
378 *
379 * @returns IPRT status code.
380 * @retval VINF_SUCCESS on success.
381 * @retval VERR_NO_MEMORY if a registration record cannot be allocated.
382 * @retval VERR_ALREADY_EXISTS if the pfnCallback and pvUser already exist
383 * in the callback list.
384 *
385 * @param pfnCallback The callback.
386 * @param pvUser The user argument to the callback function.
387 */
388RTDECL(int) RTMpNotificationRegister(PFNRTMPNOTIFICATION pfnCallback, void *pvUser);
389
390/**
391 * This deregisters a notification callback registered via RTMpNotificationRegister().
392 *
393 * The pfnCallback and pvUser arguments must be identical to the registration call
394 * of we won't find the right entry.
395 *
396 * @returns IPRT status code.
397 * @retval VINF_SUCCESS on success.
398 * @retval VERR_NOT_FOUND if no matching entry was found.
399 *
400 * @param pfnCallback The callback.
401 * @param pvUser The user argument to the callback function.
402 */
403RTDECL(int) RTMpNotificationDeregister(PFNRTMPNOTIFICATION pfnCallback, void *pvUser);
404
405#endif /* IN_RING0 */
406
407/** @} */
408
409RT_C_DECLS_END
410
411#endif
412
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette