1 | /** @file
|
---|
2 | * TM - Time Manager.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2013 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 ___VBox_vmm_tm_h
|
---|
27 | #define ___VBox_vmm_tm_h
|
---|
28 |
|
---|
29 | #include <VBox/types.h>
|
---|
30 | #ifdef IN_RING3
|
---|
31 | # include <iprt/time.h>
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | RT_C_DECLS_BEGIN
|
---|
35 |
|
---|
36 | /** @defgroup grp_tm The Time Manager API
|
---|
37 | * @{
|
---|
38 | */
|
---|
39 |
|
---|
40 | /** Enable a timer hack which improves the timer response/resolution a bit. */
|
---|
41 | #define VBOX_HIGH_RES_TIMERS_HACK
|
---|
42 |
|
---|
43 |
|
---|
44 | /**
|
---|
45 | * Clock type.
|
---|
46 | */
|
---|
47 | typedef enum TMCLOCK
|
---|
48 | {
|
---|
49 | /** Real host time.
|
---|
50 | * This clock ticks all the time, so use with care. */
|
---|
51 | TMCLOCK_REAL = 0,
|
---|
52 | /** Virtual guest time.
|
---|
53 | * This clock only ticks when the guest is running. It's implemented
|
---|
54 | * as an offset to monotonic real time (GIP). */
|
---|
55 | TMCLOCK_VIRTUAL,
|
---|
56 | /** Virtual guest synchronized timer time.
|
---|
57 | * This is a special clock and timer queue for synchronizing virtual timers
|
---|
58 | * and virtual time sources. This clock is trying to keep up with
|
---|
59 | * TMCLOCK_VIRTUAL, but will wait for timers to be executed. If it lags
|
---|
60 | * too far behind TMCLOCK_VIRTUAL, it will try speed up to close the
|
---|
61 | * distance.
|
---|
62 | * @remarks Do not use this unless you really *must*. */
|
---|
63 | TMCLOCK_VIRTUAL_SYNC,
|
---|
64 | /** Virtual CPU timestamp.
|
---|
65 | * By default this is a function of TMCLOCK_VIRTUAL_SYNC and the virtual
|
---|
66 | * CPU frequency. */
|
---|
67 | TMCLOCK_TSC,
|
---|
68 | /** Number of clocks. */
|
---|
69 | TMCLOCK_MAX
|
---|
70 | } TMCLOCK;
|
---|
71 |
|
---|
72 |
|
---|
73 | /** @defgroup grp_tm_timer_flags Timer flags.
|
---|
74 | * @{ */
|
---|
75 | /** Use the default critical section for the class of timers. */
|
---|
76 | #define TMTIMER_FLAGS_DEFAULT_CRIT_SECT 0
|
---|
77 | /** No critical section needed or a custom one is set using
|
---|
78 | * TMR3TimerSetCritSect(). */
|
---|
79 | #define TMTIMER_FLAGS_NO_CRIT_SECT RT_BIT_32(0)
|
---|
80 | /** @} */
|
---|
81 |
|
---|
82 |
|
---|
83 | VMMDECL(void) TMNotifyStartOfExecution(PVMCPU pVCpu);
|
---|
84 | VMMDECL(void) TMNotifyEndOfExecution(PVMCPU pVCpu);
|
---|
85 | VMM_INT_DECL(void) TMNotifyStartOfHalt(PVMCPU pVCpu);
|
---|
86 | VMM_INT_DECL(void) TMNotifyEndOfHalt(PVMCPU pVCpu);
|
---|
87 | #ifdef IN_RING3
|
---|
88 | VMMR3DECL(int) TMR3NotifySuspend(PVM pVM, PVMCPU pVCpu);
|
---|
89 | VMMR3DECL(int) TMR3NotifyResume(PVM pVM, PVMCPU pVCpu);
|
---|
90 | VMMR3DECL(int) TMR3SetWarpDrive(PUVM pUVM, uint32_t u32Percent);
|
---|
91 | VMMR3DECL(uint32_t) TMR3GetWarpDrive(PUVM pUVM);
|
---|
92 | #endif
|
---|
93 | VMM_INT_DECL(uint32_t) TMCalcHostTimerFrequency(PVM pVM, PVMCPU pVCpu);
|
---|
94 | #ifdef IN_RING3
|
---|
95 | VMMR3DECL(int) TMR3GetCpuLoadTimes(PVM pVM, VMCPUID idCpu, uint64_t *pcNsTotal, uint64_t *pcNsExecuting,
|
---|
96 | uint64_t *pcNsHalted, uint64_t *pcNsOther);
|
---|
97 | #endif
|
---|
98 |
|
---|
99 |
|
---|
100 | /** @name Real Clock Methods
|
---|
101 | * @{
|
---|
102 | */
|
---|
103 | VMM_INT_DECL(uint64_t) TMRealGet(PVM pVM);
|
---|
104 | VMM_INT_DECL(uint64_t) TMRealGetFreq(PVM pVM);
|
---|
105 | /** @} */
|
---|
106 |
|
---|
107 |
|
---|
108 | /** @name Virtual Clock Methods
|
---|
109 | * @{
|
---|
110 | */
|
---|
111 | VMM_INT_DECL(uint64_t) TMVirtualGet(PVM pVM);
|
---|
112 | VMM_INT_DECL(uint64_t) TMVirtualGetNoCheck(PVM pVM);
|
---|
113 | VMM_INT_DECL(uint64_t) TMVirtualSyncGetLag(PVM pVM);
|
---|
114 | VMM_INT_DECL(uint32_t) TMVirtualSyncGetCatchUpPct(PVM pVM);
|
---|
115 | VMM_INT_DECL(uint64_t) TMVirtualGetFreq(PVM pVM);
|
---|
116 | VMM_INT_DECL(uint64_t) TMVirtualSyncGet(PVM pVM);
|
---|
117 | VMM_INT_DECL(uint64_t) TMVirtualSyncGetNoCheck(PVM pVM);
|
---|
118 | VMM_INT_DECL(uint64_t) TMVirtualSyncGetEx(PVM pVM, bool fCheckTimers);
|
---|
119 | VMM_INT_DECL(uint64_t) TMVirtualSyncGetWithDeadlineNoCheck(PVM pVM, uint64_t *pcNsToDeadline);
|
---|
120 | VMM_INT_DECL(uint64_t) TMVirtualSyncGetNsToDeadline(PVM pVM);
|
---|
121 | VMM_INT_DECL(uint64_t) TMVirtualToNano(PVM pVM, uint64_t u64VirtualTicks);
|
---|
122 | VMM_INT_DECL(uint64_t) TMVirtualToMicro(PVM pVM, uint64_t u64VirtualTicks);
|
---|
123 | VMM_INT_DECL(uint64_t) TMVirtualToMilli(PVM pVM, uint64_t u64VirtualTicks);
|
---|
124 | VMM_INT_DECL(uint64_t) TMVirtualFromNano(PVM pVM, uint64_t u64NanoTS);
|
---|
125 | VMM_INT_DECL(uint64_t) TMVirtualFromMicro(PVM pVM, uint64_t u64MicroTS);
|
---|
126 | VMM_INT_DECL(uint64_t) TMVirtualFromMilli(PVM pVM, uint64_t u64MilliTS);
|
---|
127 | /** @} */
|
---|
128 |
|
---|
129 |
|
---|
130 | /** @name CPU Clock Methods
|
---|
131 | * @{
|
---|
132 | */
|
---|
133 | VMMDECL(uint64_t) TMCpuTickGet(PVMCPU pVCpu);
|
---|
134 | VMM_INT_DECL(uint64_t) TMCpuTickGetNoCheck(PVMCPU pVCpu);
|
---|
135 | VMM_INT_DECL(bool) TMCpuTickCanUseRealTSC(PVMCPU pVCpu, uint64_t *poffRealTSC, bool *pfParavirtTsc);
|
---|
136 | VMM_INT_DECL(uint64_t) TMCpuTickGetDeadlineAndTscOffset(PVMCPU pVCpu, bool *pfOffsettedTsc, bool *pfParavirtTsc, uint64_t *poffRealTSC);
|
---|
137 | VMM_INT_DECL(int) TMCpuTickSet(PVM pVM, PVMCPU pVCpu, uint64_t u64Tick);
|
---|
138 | VMM_INT_DECL(int) TMCpuTickSetLastSeen(PVMCPU pVCpu, uint64_t u64LastSeenTick);
|
---|
139 | VMM_INT_DECL(uint64_t) TMCpuTickGetLastSeen(PVMCPU pVCpu);
|
---|
140 | VMMDECL(uint64_t) TMCpuTicksPerSecond(PVM pVM);
|
---|
141 | /** @} */
|
---|
142 |
|
---|
143 |
|
---|
144 | /** @name Timer Methods
|
---|
145 | * @{
|
---|
146 | */
|
---|
147 | /**
|
---|
148 | * Device timer callback function.
|
---|
149 | *
|
---|
150 | * @param pDevIns Device instance of the device which registered the timer.
|
---|
151 | * @param pTimer The timer handle.
|
---|
152 | * @param pvUser User argument specified upon timer creation.
|
---|
153 | */
|
---|
154 | typedef DECLCALLBACK(void) FNTMTIMERDEV(PPDMDEVINS pDevIns, PTMTIMER pTimer, void *pvUser);
|
---|
155 | /** Pointer to a device timer callback function. */
|
---|
156 | typedef FNTMTIMERDEV *PFNTMTIMERDEV;
|
---|
157 |
|
---|
158 | /**
|
---|
159 | * USB device timer callback function.
|
---|
160 | *
|
---|
161 | * @param pUsbIns The USB device instance the timer is associated
|
---|
162 | * with.
|
---|
163 | * @param pTimer The timer handle.
|
---|
164 | * @param pvUser User argument specified upon timer creation.
|
---|
165 | */
|
---|
166 | typedef DECLCALLBACK(void) FNTMTIMERUSB(PPDMUSBINS pUsbIns, PTMTIMER pTimer, void *pvUser);
|
---|
167 | /** Pointer to a timer callback for a USB device. */
|
---|
168 | typedef FNTMTIMERUSB *PFNTMTIMERUSB;
|
---|
169 |
|
---|
170 | /**
|
---|
171 | * Driver timer callback function.
|
---|
172 | *
|
---|
173 | * @param pDrvIns Device instance of the device which registered the timer.
|
---|
174 | * @param pTimer The timer handle.
|
---|
175 | * @param pvUser User argument specified upon timer creation.
|
---|
176 | */
|
---|
177 | typedef DECLCALLBACK(void) FNTMTIMERDRV(PPDMDRVINS pDrvIns, PTMTIMER pTimer, void *pvUser);
|
---|
178 | /** Pointer to a driver timer callback function. */
|
---|
179 | typedef FNTMTIMERDRV *PFNTMTIMERDRV;
|
---|
180 |
|
---|
181 | /**
|
---|
182 | * Service timer callback function.
|
---|
183 | *
|
---|
184 | * @param pSrvIns Service instance of the device which registered the timer.
|
---|
185 | * @param pTimer The timer handle.
|
---|
186 | */
|
---|
187 | typedef DECLCALLBACK(void) FNTMTIMERSRV(PPDMSRVINS pSrvIns, PTMTIMER pTimer);
|
---|
188 | /** Pointer to a service timer callback function. */
|
---|
189 | typedef FNTMTIMERSRV *PFNTMTIMERSRV;
|
---|
190 |
|
---|
191 | /**
|
---|
192 | * Internal timer callback function.
|
---|
193 | *
|
---|
194 | * @param pVM The VM.
|
---|
195 | * @param pTimer The timer handle.
|
---|
196 | * @param pvUser User argument specified upon timer creation.
|
---|
197 | */
|
---|
198 | typedef DECLCALLBACK(void) FNTMTIMERINT(PVM pVM, PTMTIMER pTimer, void *pvUser);
|
---|
199 | /** Pointer to internal timer callback function. */
|
---|
200 | typedef FNTMTIMERINT *PFNTMTIMERINT;
|
---|
201 |
|
---|
202 | /**
|
---|
203 | * External timer callback function.
|
---|
204 | *
|
---|
205 | * @param pvUser User argument as specified when the timer was created.
|
---|
206 | */
|
---|
207 | typedef DECLCALLBACK(void) FNTMTIMEREXT(void *pvUser);
|
---|
208 | /** Pointer to an external timer callback function. */
|
---|
209 | typedef FNTMTIMEREXT *PFNTMTIMEREXT;
|
---|
210 |
|
---|
211 | VMMDECL(PTMTIMERR3) TMTimerR3Ptr(PTMTIMER pTimer);
|
---|
212 | VMMDECL(PTMTIMERR0) TMTimerR0Ptr(PTMTIMER pTimer);
|
---|
213 | VMMDECL(PTMTIMERRC) TMTimerRCPtr(PTMTIMER pTimer);
|
---|
214 | VMMDECL(int) TMTimerLock(PTMTIMER pTimer, int rcBusy);
|
---|
215 | VMMDECL(void) TMTimerUnlock(PTMTIMER pTimer);
|
---|
216 | VMMDECL(bool) TMTimerIsLockOwner(PTMTIMER pTimer);
|
---|
217 | VMMDECL(int) TMTimerSet(PTMTIMER pTimer, uint64_t u64Expire);
|
---|
218 | VMMDECL(int) TMTimerSetRelative(PTMTIMER pTimer, uint64_t cTicksToNext, uint64_t *pu64Now);
|
---|
219 | VMMDECL(int) TMTimerSetFrequencyHint(PTMTIMER pTimer, uint32_t uHz);
|
---|
220 | VMMDECL(uint64_t) TMTimerGet(PTMTIMER pTimer);
|
---|
221 | VMMDECL(int) TMTimerStop(PTMTIMER pTimer);
|
---|
222 | VMMDECL(bool) TMTimerIsActive(PTMTIMER pTimer);
|
---|
223 |
|
---|
224 | VMMDECL(int) TMTimerSetMillies(PTMTIMER pTimer, uint32_t cMilliesToNext);
|
---|
225 | VMMDECL(int) TMTimerSetMicro(PTMTIMER pTimer, uint64_t cMicrosToNext);
|
---|
226 | VMMDECL(int) TMTimerSetNano(PTMTIMER pTimer, uint64_t cNanosToNext);
|
---|
227 | VMMDECL(uint64_t) TMTimerGetNano(PTMTIMER pTimer);
|
---|
228 | VMMDECL(uint64_t) TMTimerGetMicro(PTMTIMER pTimer);
|
---|
229 | VMMDECL(uint64_t) TMTimerGetMilli(PTMTIMER pTimer);
|
---|
230 | VMMDECL(uint64_t) TMTimerGetFreq(PTMTIMER pTimer);
|
---|
231 | VMMDECL(uint64_t) TMTimerGetExpire(PTMTIMER pTimer);
|
---|
232 | VMMDECL(uint64_t) TMTimerToNano(PTMTIMER pTimer, uint64_t cTicks);
|
---|
233 | VMMDECL(uint64_t) TMTimerToMicro(PTMTIMER pTimer, uint64_t cTicks);
|
---|
234 | VMMDECL(uint64_t) TMTimerToMilli(PTMTIMER pTimer, uint64_t cTicks);
|
---|
235 | VMMDECL(uint64_t) TMTimerFromNano(PTMTIMER pTimer, uint64_t cNanoSecs);
|
---|
236 | VMMDECL(uint64_t) TMTimerFromMicro(PTMTIMER pTimer, uint64_t cMicroSecs);
|
---|
237 | VMMDECL(uint64_t) TMTimerFromMilli(PTMTIMER pTimer, uint64_t cMilliSecs);
|
---|
238 |
|
---|
239 | VMMDECL(bool) TMTimerPollBool(PVM pVM, PVMCPU pVCpu);
|
---|
240 | VMM_INT_DECL(void) TMTimerPollVoid(PVM pVM, PVMCPU pVCpu);
|
---|
241 | VMM_INT_DECL(uint64_t) TMTimerPollGIP(PVM pVM, PVMCPU pVCpu, uint64_t *pu64Delta);
|
---|
242 |
|
---|
243 | /** @} */
|
---|
244 |
|
---|
245 |
|
---|
246 | #ifdef IN_RING3
|
---|
247 | /** @defgroup grp_tm_r3 The TM Host Context Ring-3 API
|
---|
248 | * @ingroup grp_tm
|
---|
249 | * @{
|
---|
250 | */
|
---|
251 | VMM_INT_DECL(int) TMR3Init(PVM pVM);
|
---|
252 | VMM_INT_DECL(int) TMR3InitFinalize(PVM pVM);
|
---|
253 | VMM_INT_DECL(void) TMR3Relocate(PVM pVM, RTGCINTPTR offDelta);
|
---|
254 | VMM_INT_DECL(int) TMR3Term(PVM pVM);
|
---|
255 | VMM_INT_DECL(void) TMR3Reset(PVM pVM);
|
---|
256 | VMM_INT_DECL(int) TMR3GetImportRC(PVM pVM, const char *pszSymbol, PRTRCPTR pRCPtrValue);
|
---|
257 | VMM_INT_DECL(int) TMR3TimerCreateDevice(PVM pVM, PPDMDEVINS pDevIns, TMCLOCK enmClock, PFNTMTIMERDEV pfnCallback, void *pvUser, uint32_t fFlags, const char *pszDesc, PPTMTIMERR3 ppTimer);
|
---|
258 | VMM_INT_DECL(int) TMR3TimerCreateUsb(PVM pVM, PPDMUSBINS pUsbIns, TMCLOCK enmClock, PFNTMTIMERUSB pfnCallback, void *pvUser, uint32_t fFlags, const char *pszDesc, PPTMTIMERR3 ppTimer);
|
---|
259 | VMM_INT_DECL(int) TMR3TimerCreateDriver(PVM pVM, PPDMDRVINS pDrvIns, TMCLOCK enmClock, PFNTMTIMERDRV pfnCallback, void *pvUser, uint32_t fFlags, const char *pszDesc, PPTMTIMERR3 ppTimer);
|
---|
260 | VMMR3DECL(int) TMR3TimerCreateInternal(PVM pVM, TMCLOCK enmClock, PFNTMTIMERINT pfnCallback, void *pvUser, const char *pszDesc, PPTMTIMERR3 ppTimer);
|
---|
261 | VMMR3DECL(PTMTIMERR3) TMR3TimerCreateExternal(PVM pVM, TMCLOCK enmClock, PFNTMTIMEREXT pfnCallback, void *pvUser, const char *pszDesc);
|
---|
262 | VMMR3DECL(int) TMR3TimerDestroy(PTMTIMER pTimer);
|
---|
263 | VMM_INT_DECL(int) TMR3TimerDestroyDevice(PVM pVM, PPDMDEVINS pDevIns);
|
---|
264 | VMM_INT_DECL(int) TMR3TimerDestroyUsb(PVM pVM, PPDMUSBINS pUsbIns);
|
---|
265 | VMM_INT_DECL(int) TMR3TimerDestroyDriver(PVM pVM, PPDMDRVINS pDrvIns);
|
---|
266 | VMMR3DECL(int) TMR3TimerSave(PTMTIMERR3 pTimer, PSSMHANDLE pSSM);
|
---|
267 | VMMR3DECL(int) TMR3TimerLoad(PTMTIMERR3 pTimer, PSSMHANDLE pSSM);
|
---|
268 | VMMR3DECL(int) TMR3TimerSetCritSect(PTMTIMERR3 pTimer, PPDMCRITSECT pCritSect);
|
---|
269 | VMMR3DECL(void) TMR3TimerQueuesDo(PVM pVM);
|
---|
270 | VMMR3_INT_DECL(void) TMR3VirtualSyncFF(PVM pVM, PVMCPU pVCpu);
|
---|
271 | VMMR3_INT_DECL(PRTTIMESPEC) TMR3UtcNow(PVM pVM, PRTTIMESPEC pTime);
|
---|
272 | /** @} */
|
---|
273 | #endif /* IN_RING3 */
|
---|
274 |
|
---|
275 |
|
---|
276 | /** @} */
|
---|
277 |
|
---|
278 | RT_C_DECLS_END
|
---|
279 |
|
---|
280 | #endif
|
---|
281 |
|
---|