1 | /* $Id: tstGIP-2.cpp 57219 2015-08-06 14:55:47Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * SUP Testcase - Global Info Page interface (ring 3).
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2015 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 | /*******************************************************************************
|
---|
28 | * Header Files *
|
---|
29 | *******************************************************************************/
|
---|
30 | #include <VBox/sup.h>
|
---|
31 | #include <VBox/err.h>
|
---|
32 | #include <VBox/param.h>
|
---|
33 | #include <iprt/asm.h>
|
---|
34 | #include <iprt/assert.h>
|
---|
35 | #include <iprt/alloc.h>
|
---|
36 | #include <iprt/thread.h>
|
---|
37 | #include <iprt/stream.h>
|
---|
38 | #include <iprt/string.h>
|
---|
39 | #include <iprt/initterm.h>
|
---|
40 | #include <iprt/getopt.h>
|
---|
41 | #include <iprt/x86.h>
|
---|
42 |
|
---|
43 | int main(int argc, char **argv)
|
---|
44 | {
|
---|
45 | RTR3InitExe(argc, &argv, 0);
|
---|
46 |
|
---|
47 | /*
|
---|
48 | * Parse args
|
---|
49 | */
|
---|
50 | static const RTGETOPTDEF g_aOptions[] =
|
---|
51 | {
|
---|
52 | { "--iterations", 'i', RTGETOPT_REQ_INT32 },
|
---|
53 | { "--hex", 'h', RTGETOPT_REQ_NOTHING },
|
---|
54 | { "--decimal", 'd', RTGETOPT_REQ_NOTHING },
|
---|
55 | { "--spin", 's', RTGETOPT_REQ_NOTHING },
|
---|
56 | { "--reference", 'r', RTGETOPT_REQ_UINT64 }, /* reference value of CpuHz, display the
|
---|
57 | * CpuHz deviation in a separate column. */
|
---|
58 | { "--notestmode", 't', RTGETOPT_REQ_NOTHING } /* don't run GIP in test-mode (atm, test-mode
|
---|
59 | * implies updating GIP CpuHz even when invariant) */
|
---|
60 | };
|
---|
61 |
|
---|
62 | uint32_t cIterations = 40;
|
---|
63 | bool fHex = true;
|
---|
64 | bool fSpin = false;
|
---|
65 | bool fCompat = true;
|
---|
66 | bool fTestMode = true;
|
---|
67 | int ch;
|
---|
68 | uint64_t uCpuHzRef = UINT64_MAX;
|
---|
69 | uint64_t uCpuHzOverallDeviation = 0;
|
---|
70 | uint32_t cCpuHzNotCompat = 0;
|
---|
71 | int64_t iCpuHzMaxDeviation = 0;
|
---|
72 | int32_t cCpuHzOverallDevCnt = 0;
|
---|
73 | RTGETOPTUNION ValueUnion;
|
---|
74 | RTGETOPTSTATE GetState;
|
---|
75 | RTGetOptInit(&GetState, argc, argv, g_aOptions, RT_ELEMENTS(g_aOptions), 1, RTGETOPTINIT_FLAGS_NO_STD_OPTS);
|
---|
76 | while ((ch = RTGetOpt(&GetState, &ValueUnion)))
|
---|
77 | {
|
---|
78 | switch (ch)
|
---|
79 | {
|
---|
80 | case 'i':
|
---|
81 | cIterations = ValueUnion.u32;
|
---|
82 | break;
|
---|
83 |
|
---|
84 | case 'd':
|
---|
85 | fHex = false;
|
---|
86 | break;
|
---|
87 |
|
---|
88 | case 'h':
|
---|
89 | fHex = true;
|
---|
90 | break;
|
---|
91 |
|
---|
92 | case 's':
|
---|
93 | fSpin = true;
|
---|
94 | break;
|
---|
95 |
|
---|
96 | case 'r':
|
---|
97 | uCpuHzRef = ValueUnion.u64;
|
---|
98 | break;
|
---|
99 |
|
---|
100 | case 't':
|
---|
101 | fTestMode = false;
|
---|
102 | break;
|
---|
103 |
|
---|
104 | default:
|
---|
105 | return RTGetOptPrintError(ch, &ValueUnion);
|
---|
106 | }
|
---|
107 | }
|
---|
108 |
|
---|
109 | /*
|
---|
110 | * Init
|
---|
111 | */
|
---|
112 | PSUPDRVSESSION pSession = NIL_RTR0PTR;
|
---|
113 | int rc = SUPR3Init(&pSession);
|
---|
114 | if (RT_SUCCESS(rc))
|
---|
115 | {
|
---|
116 | if (g_pSUPGlobalInfoPage)
|
---|
117 | {
|
---|
118 | /* Pick current CpuHz as the reference if none was specified. */
|
---|
119 | if (uCpuHzRef == UINT64_MAX)
|
---|
120 | uCpuHzRef = SUPGetCpuHzFromGip(g_pSUPGlobalInfoPage);
|
---|
121 |
|
---|
122 | if ( fTestMode
|
---|
123 | && g_pSUPGlobalInfoPage->u32Mode == SUPGIPMODE_INVARIANT_TSC)
|
---|
124 | SUPR3GipSetFlags(SUPGIP_FLAGS_TESTING_ENABLE, UINT32_MAX);
|
---|
125 |
|
---|
126 | RTPrintf("tstGIP-2: cCpus=%d u32UpdateHz=%RU32 u32UpdateIntervalNS=%RU32 u64NanoTSLastUpdateHz=%RX64 u64CpuHz=%RU64 uCpuHzRef=%RU64 u32Mode=%d (%s) u32Version=%#x\n",
|
---|
127 | g_pSUPGlobalInfoPage->cCpus,
|
---|
128 | g_pSUPGlobalInfoPage->u32UpdateHz,
|
---|
129 | g_pSUPGlobalInfoPage->u32UpdateIntervalNS,
|
---|
130 | g_pSUPGlobalInfoPage->u64NanoTSLastUpdateHz,
|
---|
131 | g_pSUPGlobalInfoPage->u64CpuHz,
|
---|
132 | uCpuHzRef,
|
---|
133 | g_pSUPGlobalInfoPage->u32Mode,
|
---|
134 | SUPGetGIPModeName(g_pSUPGlobalInfoPage),
|
---|
135 | g_pSUPGlobalInfoPage->u32Version);
|
---|
136 | RTPrintf(fHex
|
---|
137 | ? "tstGIP-2: it: u64NanoTS delta u64TSC UpIntTSC H TransId CpuHz %sTSC Interval History...\n"
|
---|
138 | : "tstGIP-2: it: u64NanoTS delta u64TSC UpIntTSC H TransId CpuHz %sTSC Interval History...\n",
|
---|
139 | uCpuHzRef ? " CpuHz deviation Compat " : "");
|
---|
140 | static SUPGIPCPU s_aaCPUs[2][256];
|
---|
141 | for (uint32_t i = 0; i < cIterations; i++)
|
---|
142 | {
|
---|
143 | /* copy the data */
|
---|
144 | memcpy(&s_aaCPUs[i & 1][0], &g_pSUPGlobalInfoPage->aCPUs[0], g_pSUPGlobalInfoPage->cCpus * sizeof(g_pSUPGlobalInfoPage->aCPUs[0]));
|
---|
145 |
|
---|
146 | /* display it & find something to spin on. */
|
---|
147 | uint32_t u32TransactionId = 0;
|
---|
148 | uint32_t volatile *pu32TransactionId = NULL;
|
---|
149 | for (unsigned iCpu = 0; iCpu < g_pSUPGlobalInfoPage->cCpus; iCpu++)
|
---|
150 | if (g_pSUPGlobalInfoPage->aCPUs[iCpu].enmState == SUPGIPCPUSTATE_ONLINE)
|
---|
151 | {
|
---|
152 | char szCpuHzDeviation[32];
|
---|
153 | PSUPGIPCPU pPrevCpu = &s_aaCPUs[!(i & 1)][iCpu];
|
---|
154 | PSUPGIPCPU pCpu = &s_aaCPUs[i & 1][iCpu];
|
---|
155 | if (uCpuHzRef)
|
---|
156 | {
|
---|
157 | int64_t iCpuHzDeviation = pCpu->u64CpuHz - uCpuHzRef;
|
---|
158 | uint64_t uCpuHzDeviation = RT_ABS(iCpuHzDeviation);
|
---|
159 | if (uCpuHzDeviation > 999999999)
|
---|
160 | RTStrPrintf(szCpuHzDeviation, sizeof(szCpuHzDeviation), "%17s ", "?");
|
---|
161 | else
|
---|
162 | {
|
---|
163 | /* Wait until the history validation code takes effect. */
|
---|
164 | bool fCurHzCompat = true;
|
---|
165 | if (pCpu->u32TransactionId > 23 + (8 * 2) + 1)
|
---|
166 | {
|
---|
167 | if (RT_ABS(iCpuHzDeviation) > RT_ABS(iCpuHzMaxDeviation))
|
---|
168 | iCpuHzMaxDeviation = iCpuHzDeviation;
|
---|
169 | uCpuHzOverallDeviation += uCpuHzDeviation;
|
---|
170 | cCpuHzOverallDevCnt++;
|
---|
171 | fCurHzCompat = SUPIsTscFreqCompatibleEx(uCpuHzRef, pCpu->u64CpuHz, false /* fRelax */);
|
---|
172 | }
|
---|
173 | uint32_t uPct = (uint32_t)(uCpuHzDeviation * 100000 / uCpuHzRef + 5);
|
---|
174 | RTStrPrintf(szCpuHzDeviation, sizeof(szCpuHzDeviation), "%10RI64%3d.%02d%% %RTbool ",
|
---|
175 | iCpuHzDeviation, uPct / 1000, (uPct % 1000) / 10, fCurHzCompat);
|
---|
176 | if (!fCurHzCompat)
|
---|
177 | ++cCpuHzNotCompat;
|
---|
178 | fCompat &= fCurHzCompat;
|
---|
179 | }
|
---|
180 | }
|
---|
181 | else
|
---|
182 | szCpuHzDeviation[0] = '\0';
|
---|
183 | RTPrintf(fHex
|
---|
184 | ? "tstGIP-2: %4d/%d: %016llx %09llx %016llx %08x %d %08x %15llu %s%08x %08x %08x %08x %08x %08x %08x %08x (%d)\n"
|
---|
185 | : "tstGIP-2: %4d/%d: %016llu %09llu %016llu %010u %d %010u %15llu %s%08x %08x %08x %08x %08x %08x %08x %08x (%d)\n",
|
---|
186 | i, iCpu,
|
---|
187 | pCpu->u64NanoTS,
|
---|
188 | i ? pCpu->u64NanoTS - pPrevCpu->u64NanoTS : 0,
|
---|
189 | pCpu->u64TSC,
|
---|
190 | pCpu->u32UpdateIntervalTSC,
|
---|
191 | pCpu->iTSCHistoryHead,
|
---|
192 | pCpu->u32TransactionId,
|
---|
193 | pCpu->u64CpuHz,
|
---|
194 | szCpuHzDeviation,
|
---|
195 | pCpu->au32TSCHistory[0],
|
---|
196 | pCpu->au32TSCHistory[1],
|
---|
197 | pCpu->au32TSCHistory[2],
|
---|
198 | pCpu->au32TSCHistory[3],
|
---|
199 | pCpu->au32TSCHistory[4],
|
---|
200 | pCpu->au32TSCHistory[5],
|
---|
201 | pCpu->au32TSCHistory[6],
|
---|
202 | pCpu->au32TSCHistory[7],
|
---|
203 | pCpu->cErrors);
|
---|
204 | if (!pu32TransactionId)
|
---|
205 | {
|
---|
206 | pu32TransactionId = &g_pSUPGlobalInfoPage->aCPUs[iCpu].u32TransactionId;
|
---|
207 | u32TransactionId = pCpu->u32TransactionId;
|
---|
208 | }
|
---|
209 | }
|
---|
210 |
|
---|
211 | /* wait a bit / spin */
|
---|
212 | if (!fSpin)
|
---|
213 | RTThreadSleep(9);
|
---|
214 | else
|
---|
215 | {
|
---|
216 | if (pu32TransactionId)
|
---|
217 | {
|
---|
218 | uint32_t uTmp;
|
---|
219 | while ( u32TransactionId == (uTmp = *pu32TransactionId)
|
---|
220 | || (uTmp & 1))
|
---|
221 | ASMNopPause();
|
---|
222 | }
|
---|
223 | else
|
---|
224 | RTThreadSleep(1);
|
---|
225 | }
|
---|
226 | }
|
---|
227 |
|
---|
228 | /*
|
---|
229 | * Display TSC deltas.
|
---|
230 | *
|
---|
231 | * First iterative over the APIC ID array to get mostly consistent CPUID to APIC ID mapping.
|
---|
232 | * Then iterate over the offline CPUs. It is possible that there's a race between the online/offline
|
---|
233 | * states between the two iterations, but that cannot be helped from ring-3 anyway and not a biggie.
|
---|
234 | */
|
---|
235 | RTPrintf("tstGIP-2: TSC deltas:\n");
|
---|
236 | RTPrintf("tstGIP-2: idApic: i64TSCDelta\n");
|
---|
237 | for (unsigned i = 0; i < RT_ELEMENTS(g_pSUPGlobalInfoPage->aiCpuFromApicId); i++)
|
---|
238 | {
|
---|
239 | uint16_t iCpu = g_pSUPGlobalInfoPage->aiCpuFromApicId[i];
|
---|
240 | if (iCpu != UINT16_MAX)
|
---|
241 | {
|
---|
242 | RTPrintf("tstGIP-2: %7d: %lld\n", g_pSUPGlobalInfoPage->aCPUs[iCpu].idApic,
|
---|
243 | g_pSUPGlobalInfoPage->aCPUs[iCpu].i64TSCDelta);
|
---|
244 | }
|
---|
245 | }
|
---|
246 |
|
---|
247 | for (unsigned iCpu = 0; iCpu < g_pSUPGlobalInfoPage->cCpus; iCpu++)
|
---|
248 | if (g_pSUPGlobalInfoPage->aCPUs[iCpu].idApic == UINT16_MAX)
|
---|
249 | RTPrintf("tstGIP-2: offline: %lld\n", g_pSUPGlobalInfoPage->aCPUs[iCpu].i64TSCDelta);
|
---|
250 |
|
---|
251 | RTPrintf("tstGIP-2: enmUseTscDelta=%d fGetGipCpu=%#x\n",
|
---|
252 | g_pSUPGlobalInfoPage->enmUseTscDelta, g_pSUPGlobalInfoPage->fGetGipCpu);
|
---|
253 | if ( uCpuHzRef
|
---|
254 | && cCpuHzOverallDevCnt)
|
---|
255 | {
|
---|
256 | uint32_t uPct = (uint32_t)(uCpuHzOverallDeviation * 100000 / cCpuHzOverallDevCnt / uCpuHzRef + 5);
|
---|
257 | RTPrintf("tstGIP-2: Average CpuHz deviation: %d.%02d%%\n",
|
---|
258 | uPct / 1000, (uPct % 1000) / 10);
|
---|
259 |
|
---|
260 | uint32_t uMaxPct = (uint32_t)(RT_ABS(iCpuHzMaxDeviation) * 100000 / uCpuHzRef + 5);
|
---|
261 | RTPrintf("tstGIP-2: Maximum CpuHz deviation: %d.%02d%% (%RI64 ticks)\n",
|
---|
262 | uMaxPct / 1000, (uMaxPct % 1000) / 10, iCpuHzMaxDeviation);
|
---|
263 |
|
---|
264 | RTPrintf("tstGIP-2: CpuHz compatibility: %RTbool (incompatible %u of %u times w/ %RU64 Hz)\n", fCompat,
|
---|
265 | cCpuHzNotCompat, cIterations * g_pSUPGlobalInfoPage->cCpus, uCpuHzRef);
|
---|
266 |
|
---|
267 | if ( !fCompat
|
---|
268 | && g_pSUPGlobalInfoPage->u32Mode == SUPGIPMODE_INVARIANT_TSC)
|
---|
269 | rc = -1;
|
---|
270 | }
|
---|
271 |
|
---|
272 | /* Disable GIP test mode. */
|
---|
273 | if (fTestMode)
|
---|
274 | SUPR3GipSetFlags(0, ~SUPGIP_FLAGS_TESTING_ENABLE);
|
---|
275 | }
|
---|
276 | else
|
---|
277 | {
|
---|
278 | RTPrintf("tstGIP-2: g_pSUPGlobalInfoPage is NULL\n");
|
---|
279 | rc = -1;
|
---|
280 | }
|
---|
281 |
|
---|
282 | SUPR3Term(false /*fForced*/);
|
---|
283 | }
|
---|
284 | else
|
---|
285 | RTPrintf("tstGIP-2: SUPR3Init failed: %Rrc\n", rc);
|
---|
286 | return !!rc;
|
---|
287 | }
|
---|
288 |
|
---|