VirtualBox

source: vbox/trunk/include/VBox/vmm/gvmm.h@ 67989

Last change on this file since 67989 was 67989, checked in by vboxsync, 7 years ago

GVMMR0Sched*: pass pGVM along when we've got it.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 9.5 KB
Line 
1/* $Id: gvmm.h 67989 2017-07-17 12:13:28Z vboxsync $ */
2/** @file
3 * GVMM - The Global VM Manager.
4 */
5
6/*
7 * Copyright (C) 2007-2016 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27#ifndef ___VBox_vmm_gvmm_h
28#define ___VBox_vmm_gvmm_h
29
30#include <VBox/types.h>
31#include <VBox/sup.h>
32#include <iprt/cpuset.h> /* RTCPUSET_MAX_CPUS */
33
34
35RT_C_DECLS_BEGIN
36
37/** @defgroup grp_gvmm GVMM - The Global VM Manager.
38 * @ingroup grp_vmm
39 * @{
40 */
41
42/** @def IN_GVMM_R0
43 * Used to indicate whether we're inside the same link module as the ring 0
44 * part of the Global VM Manager or not.
45 */
46#ifdef DOXYGEN_RUNNING
47# define IN_GVMM_R0
48#endif
49/** @def GVMMR0DECL
50 * Ring 0 VM export or import declaration.
51 * @param type The return type of the function declaration.
52 */
53#ifdef IN_GVMM_R0
54# define GVMMR0DECL(type) DECLEXPORT(type) VBOXCALL
55#else
56# define GVMMR0DECL(type) DECLIMPORT(type) VBOXCALL
57#endif
58
59/** @def NIL_GVM_HANDLE
60 * The nil GVM VM handle value (VM::hSelf).
61 */
62#define NIL_GVM_HANDLE 0
63
64
65/**
66 * The scheduler statistics
67 */
68typedef struct GVMMSTATSSCHED
69{
70 /** The number of calls to GVMMR0SchedHalt. */
71 uint64_t cHaltCalls;
72 /** The number of times we did go to sleep in GVMMR0SchedHalt. */
73 uint64_t cHaltBlocking;
74 /** The number of times we timed out in GVMMR0SchedHalt. */
75 uint64_t cHaltTimeouts;
76 /** The number of times we didn't go to sleep in GVMMR0SchedHalt. */
77 uint64_t cHaltNotBlocking;
78 /** The number of wake ups done during GVMMR0SchedHalt. */
79 uint64_t cHaltWakeUps;
80
81 /** The number of calls to GVMMR0WakeUp. */
82 uint64_t cWakeUpCalls;
83 /** The number of times the EMT thread wasn't actually halted when GVMMR0WakeUp
84 * was called. */
85 uint64_t cWakeUpNotHalted;
86 /** The number of wake ups done during GVMMR0WakeUp (not counting the explicit
87 * one). */
88 uint64_t cWakeUpWakeUps;
89
90 /** The number of calls to GVMMR0Poke. */
91 uint64_t cPokeCalls;
92 /** The number of times the EMT thread wasn't actually busy when
93 * GVMMR0Poke was called. */
94 uint64_t cPokeNotBusy;
95
96 /** The number of calls to GVMMR0SchedPoll. */
97 uint64_t cPollCalls;
98 /** The number of times the EMT has halted in a GVMMR0SchedPoll call. */
99 uint64_t cPollHalts;
100 /** The number of wake ups done during GVMMR0SchedPoll. */
101 uint64_t cPollWakeUps;
102
103 uint64_t u64Alignment; /**< padding */
104} GVMMSTATSSCHED;
105/** Pointer to the GVMM scheduler statistics. */
106typedef GVMMSTATSSCHED *PGVMMSTATSSCHED;
107
108/**
109 * Per host cpu statistics.
110 */
111typedef struct GVMMSTATSHOSTCPU
112{
113 /** The CPU ID. */
114 RTCPUID idCpu;
115 /** The CPU's set index. */
116 uint32_t idxCpuSet;
117 /** The desired PPT frequency. */
118 uint32_t uDesiredHz;
119 /** The current PPT timer frequency. */
120 uint32_t uTimerHz;
121 /** The number of times the PPT was changed. */
122 uint32_t cChanges;
123 /** The number of times the PPT was started. */
124 uint32_t cStarts;
125} GVMMSTATSHOSTCPU;
126/** Pointer to the GVMM per host CPU statistics. */
127typedef GVMMSTATSHOSTCPU *PGVMMSTATSHOSTCPU;
128
129/**
130 * The GVMM statistics.
131 */
132typedef struct GVMMSTATS
133{
134 /** The VM statistics if a VM was specified. */
135 GVMMSTATSSCHED SchedVM;
136 /** The sum statistics of all VMs accessible to the caller. */
137 GVMMSTATSSCHED SchedSum;
138 /** The number of VMs accessible to the caller. */
139 uint32_t cVMs;
140 /** The number of emulation threads in those VMs. */
141 uint32_t cEMTs;
142 /** Padding. */
143 uint32_t u32Padding;
144 /** The number of valid entries in aHostCpus. */
145 uint32_t cHostCpus;
146 /** Per host CPU statistics. */
147 GVMMSTATSHOSTCPU aHostCpus[RTCPUSET_MAX_CPUS];
148} GVMMSTATS;
149/** Pointer to the GVMM statistics. */
150typedef GVMMSTATS *PGVMMSTATS;
151/** Const pointer to the GVMM statistics. */
152typedef const GVMMSTATS *PCGVMMSTATS;
153
154
155
156GVMMR0DECL(int) GVMMR0Init(void);
157GVMMR0DECL(void) GVMMR0Term(void);
158GVMMR0DECL(int) GVMMR0SetConfig(PSUPDRVSESSION pSession, const char *pszName, uint64_t u64Value);
159GVMMR0DECL(int) GVMMR0QueryConfig(PSUPDRVSESSION pSession, const char *pszName, uint64_t *pu64Value);
160
161GVMMR0DECL(int) GVMMR0CreateVM(PSUPDRVSESSION pSession, uint32_t cCpus, PVM *ppVM);
162GVMMR0DECL(int) GVMMR0InitVM(PVM pVM);
163GVMMR0DECL(void) GVMMR0DoneInitVM(PVM pVM);
164GVMMR0DECL(bool) GVMMR0DoingTermVM(PVM pVM, PGVM pGVM);
165GVMMR0DECL(int) GVMMR0DestroyVM(PGVM pGVM, PVM pVM);
166GVMMR0DECL(int) GVMMR0RegisterVCpu(PGVM pGVM, PVM pVM, VMCPUID idCpu);
167GVMMR0DECL(int) GVMMR0DeregisterVCpu(PGVM pGVM, PVM pVM, VMCPUID idCpu);
168GVMMR0DECL(PGVM) GVMMR0ByHandle(uint32_t hGVM);
169GVMMR0DECL(int) GVMMR0ByVM(PVM pVM, PGVM *ppGVM);
170GVMMR0DECL(int) GVMMR0ByVMAndEMT(PVM pVM, VMCPUID idCpu, PGVM *ppGVM);
171GVMMR0DECL(PVM) GVMMR0GetVMByHandle(uint32_t hGVM);
172GVMMR0DECL(PVM) GVMMR0GetVMByEMT(RTNATIVETHREAD hEMT);
173GVMMR0DECL(int) GVMMR0SchedHalt(PGVM pGVM, PVM pVM, VMCPUID idCpu, uint64_t u64ExpireGipTime);
174GVMMR0DECL(int) GVMMR0SchedWakeUp(PGVM pGVM, PVM pVM, VMCPUID idCpu);
175GVMMR0DECL(int) GVMMR0SchedWakeUpEx(PGVM pGVM, PVM pVM, VMCPUID idCpu, bool fTakeUsedLock);
176GVMMR0DECL(int) GVMMR0SchedWakeUpNoGVMNoLock(PVM pVM, VMCPUID idCpu);
177GVMMR0DECL(int) GVMMR0SchedPoke(PGVM pGVM, PVM pVM, VMCPUID idCpu);
178GVMMR0DECL(int) GVMMR0SchedPokeEx(PGVM pGVM, PVM pVM, VMCPUID idCpu, bool fTakeUsedLock);
179GVMMR0DECL(int) GVMMR0SchedPokeNoGVMNoLock(PVM pVM, VMCPUID idCpu);
180GVMMR0DECL(int) GVMMR0SchedWakeUpAndPokeCpus(PVM pVM, PCVMCPUSET pSleepSet, PCVMCPUSET pPokeSet);
181GVMMR0DECL(int) GVMMR0SchedPoll(PVM pVM, VMCPUID idCpu, bool fYield);
182GVMMR0DECL(void) GVMMR0SchedUpdatePeriodicPreemptionTimer(PVM pVM, RTCPUID idHostCpu, uint32_t uHz);
183GVMMR0DECL(int) GVMMR0QueryStatistics(PGVMMSTATS pStats, PSUPDRVSESSION pSession, PVM pVM);
184GVMMR0DECL(int) GVMMR0ResetStatistics(PCGVMMSTATS pStats, PSUPDRVSESSION pSession, PVM pVM);
185
186
187/**
188 * Request packet for calling GVMMR0CreateVM.
189 */
190typedef struct GVMMCREATEVMREQ
191{
192 /** The request header. */
193 SUPVMMR0REQHDR Hdr;
194 /** The support driver session. (IN) */
195 PSUPDRVSESSION pSession;
196 /** Number of virtual CPUs for the new VM. (IN) */
197 uint32_t cCpus;
198 /** Pointer to the ring-3 mapping of the shared VM structure on return. (OUT) */
199 PVMR3 pVMR3;
200 /** Pointer to the ring-0 mapping of the shared VM structure on return. (OUT) */
201 PVMR0 pVMR0;
202} GVMMCREATEVMREQ;
203/** Pointer to a GVMMR0CreateVM request packet. */
204typedef GVMMCREATEVMREQ *PGVMMCREATEVMREQ;
205
206GVMMR0DECL(int) GVMMR0CreateVMReq(PGVMMCREATEVMREQ pReq, PSUPDRVSESSION pSession);
207
208
209/**
210 * Request buffer for GVMMR0SchedWakeUpAndPokeCpusReq / VMMR0_DO_GVMM_SCHED_WAKE_UP_AND_POKE_CPUS.
211 * @see GVMMR0SchedWakeUpAndPokeCpus.
212 */
213typedef struct GVMMSCHEDWAKEUPANDPOKECPUSREQ /* nice and unreadable... */
214{
215 /** The header. */
216 SUPVMMR0REQHDR Hdr;
217 /** The sleeper set. */
218 VMCPUSET SleepSet;
219 /** The set of virtual CPUs to poke. */
220 VMCPUSET PokeSet;
221} GVMMSCHEDWAKEUPANDPOKECPUSREQ;
222/** Pointer to a GVMMR0QueryStatisticsReq / VMMR0_DO_GVMM_QUERY_STATISTICS request buffer. */
223typedef GVMMSCHEDWAKEUPANDPOKECPUSREQ *PGVMMSCHEDWAKEUPANDPOKECPUSREQ;
224
225GVMMR0DECL(int) GVMMR0SchedWakeUpAndPokeCpusReq(PVM pVM, PGVMMSCHEDWAKEUPANDPOKECPUSREQ pReq);
226
227
228/**
229 * Request buffer for GVMMR0QueryStatisticsReq / VMMR0_DO_GVMM_QUERY_STATISTICS.
230 * @see GVMMR0QueryStatistics.
231 */
232typedef struct GVMMQUERYSTATISTICSSREQ
233{
234 /** The header. */
235 SUPVMMR0REQHDR Hdr;
236 /** The support driver session. */
237 PSUPDRVSESSION pSession;
238 /** The statistics. */
239 GVMMSTATS Stats;
240} GVMMQUERYSTATISTICSSREQ;
241/** Pointer to a GVMMR0QueryStatisticsReq / VMMR0_DO_GVMM_QUERY_STATISTICS request buffer. */
242typedef GVMMQUERYSTATISTICSSREQ *PGVMMQUERYSTATISTICSSREQ;
243
244GVMMR0DECL(int) GVMMR0QueryStatisticsReq(PVM pVM, PGVMMQUERYSTATISTICSSREQ pReq, PSUPDRVSESSION pSession);
245
246
247/**
248 * Request buffer for GVMMR0ResetStatisticsReq / VMMR0_DO_GVMM_RESET_STATISTICS.
249 * @see GVMMR0ResetStatistics.
250 */
251typedef struct GVMMRESETSTATISTICSSREQ
252{
253 /** The header. */
254 SUPVMMR0REQHDR Hdr;
255 /** The support driver session. */
256 PSUPDRVSESSION pSession;
257 /** The statistics to reset.
258 * Any non-zero entry will be reset (if permitted). */
259 GVMMSTATS Stats;
260} GVMMRESETSTATISTICSSREQ;
261/** Pointer to a GVMMR0ResetStatisticsReq / VMMR0_DO_GVMM_RESET_STATISTICS request buffer. */
262typedef GVMMRESETSTATISTICSSREQ *PGVMMRESETSTATISTICSSREQ;
263
264GVMMR0DECL(int) GVMMR0ResetStatisticsReq(PVM pVM, PGVMMRESETSTATISTICSSREQ pReq, PSUPDRVSESSION pSession);
265
266
267/** @} */
268
269RT_C_DECLS_END
270
271#endif
272
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