VirtualBox

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

Last change on this file since 46412 was 46144, checked in by vboxsync, 12 years ago

Runtime: RTMpGetCoreCount() for Linux

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