moel@1
|
1 |
/*
|
moel@1
|
2 |
|
moel@344
|
3 |
This Source Code Form is subject to the terms of the Mozilla Public
|
moel@344
|
4 |
License, v. 2.0. If a copy of the MPL was not distributed with this
|
moel@344
|
5 |
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
moel@1
|
6 |
|
moel@396
|
7 |
Copyright (C) 2009-2013 Michael Möller <mmoeller@openhardwaremonitor.org>
|
moel@344
|
8 |
|
moel@1
|
9 |
*/
|
moel@1
|
10 |
|
moel@1
|
11 |
using System;
|
moel@219
|
12 |
using System.Globalization;
|
moel@219
|
13 |
using System.Text;
|
moel@1
|
14 |
|
moel@1
|
15 |
namespace OpenHardwareMonitor.Hardware.CPU {
|
moel@191
|
16 |
internal sealed class IntelCPU : GenericCPU {
|
moel@46
|
17 |
|
moel@219
|
18 |
private enum Microarchitecture {
|
moel@219
|
19 |
Unknown,
|
moel@264
|
20 |
NetBurst,
|
moel@219
|
21 |
Core,
|
moel@219
|
22 |
Atom,
|
moel@249
|
23 |
Nehalem,
|
moel@350
|
24 |
SandyBridge,
|
moel@396
|
25 |
IvyBridge,
|
moel@396
|
26 |
Haswell
|
moel@219
|
27 |
}
|
moel@219
|
28 |
|
moel@195
|
29 |
private readonly Sensor[] coreTemperatures;
|
moel@306
|
30 |
private readonly Sensor packageTemperature;
|
moel@195
|
31 |
private readonly Sensor[] coreClocks;
|
moel@195
|
32 |
private readonly Sensor busClock;
|
moel@321
|
33 |
private readonly Sensor[] powerSensors;
|
moel@63
|
34 |
|
moel@219
|
35 |
private readonly Microarchitecture microarchitecture;
|
moel@219
|
36 |
private readonly double timeStampCounterMultiplier;
|
moel@79
|
37 |
|
moel@1
|
38 |
private const uint IA32_THERM_STATUS_MSR = 0x019C;
|
moel@4
|
39 |
private const uint IA32_TEMPERATURE_TARGET = 0x01A2;
|
moel@44
|
40 |
private const uint IA32_PERF_STATUS = 0x0198;
|
moel@46
|
41 |
private const uint MSR_PLATFORM_INFO = 0xCE;
|
moel@306
|
42 |
private const uint IA32_PACKAGE_THERM_STATUS = 0x1B1;
|
moel@317
|
43 |
private const uint MSR_RAPL_POWER_UNIT = 0x606;
|
moel@317
|
44 |
private const uint MSR_PKG_ENERY_STATUS = 0x611;
|
moel@321
|
45 |
private const uint MSR_DRAM_ENERGY_STATUS = 0x619;
|
moel@317
|
46 |
private const uint MSR_PP0_ENERY_STATUS = 0x639;
|
moel@320
|
47 |
private const uint MSR_PP1_ENERY_STATUS = 0x641;
|
moel@317
|
48 |
|
moel@321
|
49 |
private readonly uint[] energyStatusMSRs = { MSR_PKG_ENERY_STATUS,
|
moel@321
|
50 |
MSR_PP0_ENERY_STATUS, MSR_PP1_ENERY_STATUS, MSR_DRAM_ENERGY_STATUS };
|
moel@321
|
51 |
private readonly string[] powerSensorLabels =
|
moel@321
|
52 |
{ "CPU Package", "CPU Cores", "CPU Graphics", "CPU DRAM" };
|
moel@317
|
53 |
private float energyUnitMultiplier = 0;
|
moel@321
|
54 |
private DateTime[] lastEnergyTime;
|
moel@321
|
55 |
private uint[] lastEnergyConsumed;
|
moel@317
|
56 |
|
moel@1
|
57 |
|
moel@69
|
58 |
private float[] Floats(float f) {
|
moel@69
|
59 |
float[] result = new float[coreCount];
|
moel@69
|
60 |
for (int i = 0; i < coreCount; i++)
|
moel@69
|
61 |
result[i] = f;
|
moel@69
|
62 |
return result;
|
moel@69
|
63 |
}
|
moel@69
|
64 |
|
moel@249
|
65 |
private float[] GetTjMaxFromMSR() {
|
moel@249
|
66 |
uint eax, edx;
|
moel@249
|
67 |
float[] result = new float[coreCount];
|
moel@249
|
68 |
for (int i = 0; i < coreCount; i++) {
|
moel@249
|
69 |
if (Ring0.RdmsrTx(IA32_TEMPERATURE_TARGET, out eax,
|
moel@249
|
70 |
out edx, 1UL << cpuid[i][0].Thread)) {
|
moel@249
|
71 |
result[i] = (eax >> 16) & 0xFF;
|
moel@249
|
72 |
} else {
|
moel@249
|
73 |
result[i] = 100;
|
moel@249
|
74 |
}
|
moel@249
|
75 |
}
|
moel@249
|
76 |
return result;
|
moel@249
|
77 |
}
|
moel@249
|
78 |
|
moel@191
|
79 |
public IntelCPU(int processorIndex, CPUID[][] cpuid, ISettings settings)
|
moel@321
|
80 |
: base(processorIndex, cpuid, settings) {
|
moel@219
|
81 |
// set tjMax
|
moel@69
|
82 |
float[] tjMax;
|
moel@49
|
83 |
switch (family) {
|
moel@49
|
84 |
case 0x06: {
|
moel@49
|
85 |
switch (model) {
|
moel@219
|
86 |
case 0x0F: // Intel Core 2 (65nm)
|
moel@219
|
87 |
microarchitecture = Microarchitecture.Core;
|
moel@49
|
88 |
switch (stepping) {
|
moel@49
|
89 |
case 0x06: // B2
|
moel@49
|
90 |
switch (coreCount) {
|
moel@49
|
91 |
case 2:
|
moel@69
|
92 |
tjMax = Floats(80 + 10); break;
|
moel@49
|
93 |
case 4:
|
moel@69
|
94 |
tjMax = Floats(90 + 10); break;
|
moel@49
|
95 |
default:
|
moel@69
|
96 |
tjMax = Floats(85 + 10); break;
|
moel@49
|
97 |
}
|
moel@69
|
98 |
tjMax = Floats(80 + 10); break;
|
moel@49
|
99 |
case 0x0B: // G0
|
moel@69
|
100 |
tjMax = Floats(90 + 10); break;
|
moel@49
|
101 |
case 0x0D: // M0
|
moel@69
|
102 |
tjMax = Floats(85 + 10); break;
|
moel@49
|
103 |
default:
|
moel@69
|
104 |
tjMax = Floats(85 + 10); break;
|
moel@49
|
105 |
} break;
|
moel@219
|
106 |
case 0x17: // Intel Core 2 (45nm)
|
moel@219
|
107 |
microarchitecture = Microarchitecture.Core;
|
moel@69
|
108 |
tjMax = Floats(100); break;
|
moel@114
|
109 |
case 0x1C: // Intel Atom (45nm)
|
moel@219
|
110 |
microarchitecture = Microarchitecture.Atom;
|
moel@114
|
111 |
switch (stepping) {
|
moel@114
|
112 |
case 0x02: // C0
|
moel@114
|
113 |
tjMax = Floats(90); break;
|
moel@114
|
114 |
case 0x0A: // A0, B0
|
moel@114
|
115 |
tjMax = Floats(100); break;
|
moel@114
|
116 |
default:
|
moel@114
|
117 |
tjMax = Floats(90); break;
|
moel@191
|
118 |
} break;
|
moel@49
|
119 |
case 0x1A: // Intel Core i7 LGA1366 (45nm)
|
moel@49
|
120 |
case 0x1E: // Intel Core i5, i7 LGA1156 (45nm)
|
moel@249
|
121 |
case 0x1F: // Intel Core i5, i7
|
moel@49
|
122 |
case 0x25: // Intel Core i3, i5, i7 LGA1156 (32nm)
|
moel@91
|
123 |
case 0x2C: // Intel Core i7 LGA1366 (32nm) 6 Core
|
moel@350
|
124 |
case 0x2E: // Intel Xeon Processor 7500 series (45nm)
|
moel@350
|
125 |
case 0x2F: // Intel Xeon Processor (32nm)
|
moel@219
|
126 |
microarchitecture = Microarchitecture.Nehalem;
|
moel@249
|
127 |
tjMax = GetTjMaxFromMSR();
|
moel@249
|
128 |
break;
|
moel@249
|
129 |
case 0x2A: // Intel Core i5, i7 2xxx LGA1155 (32nm)
|
moel@350
|
130 |
case 0x2D: // Next Generation Intel Xeon, i7 3xxx LGA2011 (32nm)
|
moel@249
|
131 |
microarchitecture = Microarchitecture.SandyBridge;
|
moel@249
|
132 |
tjMax = GetTjMaxFromMSR();
|
moel@49
|
133 |
break;
|
moel@350
|
134 |
case 0x3A: // Intel Core i5, i7 3xxx LGA1155 (22nm)
|
moel@417
|
135 |
case 0x3E: // Intel Core i7 4xxx LGA2011 (22nm)
|
moel@350
|
136 |
microarchitecture = Microarchitecture.IvyBridge;
|
moel@350
|
137 |
tjMax = GetTjMaxFromMSR();
|
moel@350
|
138 |
break;
|
moel@396
|
139 |
case 0x3C: // Intel Core i5, i7 4xxx LGA1150 (22nm)
|
moel@396
|
140 |
case 0x45:
|
moel@396
|
141 |
case 0x46:
|
moel@396
|
142 |
microarchitecture = Microarchitecture.Haswell;
|
moel@396
|
143 |
tjMax = GetTjMaxFromMSR();
|
moel@396
|
144 |
break;
|
moel@49
|
145 |
default:
|
moel@219
|
146 |
microarchitecture = Microarchitecture.Unknown;
|
moel@321
|
147 |
tjMax = Floats(100);
|
moel@219
|
148 |
break;
|
moel@49
|
149 |
}
|
moel@49
|
150 |
} break;
|
moel@264
|
151 |
case 0x0F: {
|
moel@264
|
152 |
switch (model) {
|
moel@264
|
153 |
case 0x00: // Pentium 4 (180nm)
|
moel@264
|
154 |
case 0x01: // Pentium 4 (130nm)
|
moel@264
|
155 |
case 0x02: // Pentium 4 (130nm)
|
moel@264
|
156 |
case 0x03: // Pentium 4, Celeron D (90nm)
|
moel@264
|
157 |
case 0x04: // Pentium 4, Pentium D, Celeron D (90nm)
|
moel@264
|
158 |
case 0x06: // Pentium 4, Pentium D, Celeron D (65nm)
|
moel@264
|
159 |
microarchitecture = Microarchitecture.NetBurst;
|
moel@321
|
160 |
tjMax = Floats(100);
|
moel@264
|
161 |
break;
|
moel@264
|
162 |
default:
|
moel@264
|
163 |
microarchitecture = Microarchitecture.Unknown;
|
moel@264
|
164 |
tjMax = Floats(100);
|
moel@264
|
165 |
break;
|
moel@264
|
166 |
}
|
moel@264
|
167 |
} break;
|
moel@219
|
168 |
default:
|
moel@219
|
169 |
microarchitecture = Microarchitecture.Unknown;
|
moel@321
|
170 |
tjMax = Floats(100);
|
moel@219
|
171 |
break;
|
moel@219
|
172 |
}
|
moel@219
|
173 |
|
moel@219
|
174 |
// set timeStampCounterMultiplier
|
moel@219
|
175 |
switch (microarchitecture) {
|
moel@264
|
176 |
case Microarchitecture.NetBurst:
|
moel@219
|
177 |
case Microarchitecture.Atom:
|
moel@219
|
178 |
case Microarchitecture.Core: {
|
moel@219
|
179 |
uint eax, edx;
|
moel@236
|
180 |
if (Ring0.Rdmsr(IA32_PERF_STATUS, out eax, out edx)) {
|
moel@321
|
181 |
timeStampCounterMultiplier =
|
moel@219
|
182 |
((edx >> 8) & 0x1f) + 0.5 * ((edx >> 14) & 1);
|
moel@219
|
183 |
}
|
moel@219
|
184 |
} break;
|
moel@321
|
185 |
case Microarchitecture.Nehalem:
|
moel@350
|
186 |
case Microarchitecture.SandyBridge:
|
moel@396
|
187 |
case Microarchitecture.IvyBridge:
|
moel@396
|
188 |
case Microarchitecture.Haswell: {
|
moel@219
|
189 |
uint eax, edx;
|
moel@236
|
190 |
if (Ring0.Rdmsr(MSR_PLATFORM_INFO, out eax, out edx)) {
|
moel@219
|
191 |
timeStampCounterMultiplier = (eax >> 8) & 0xff;
|
moel@219
|
192 |
}
|
moel@219
|
193 |
} break;
|
moel@350
|
194 |
default:
|
moel@350
|
195 |
timeStampCounterMultiplier = 0;
|
moel@350
|
196 |
break;
|
moel@49
|
197 |
}
|
moel@1
|
198 |
|
moel@306
|
199 |
// check if processor supports a digital thermal sensor at core level
|
moel@191
|
200 |
if (cpuid[0][0].Data.GetLength(0) > 6 &&
|
moel@350
|
201 |
(cpuid[0][0].Data[6, 0] & 1) != 0 &&
|
moel@350
|
202 |
microarchitecture != Microarchitecture.Unknown)
|
moel@350
|
203 |
{
|
moel@44
|
204 |
coreTemperatures = new Sensor[coreCount];
|
moel@44
|
205 |
for (int i = 0; i < coreTemperatures.Length; i++) {
|
moel@134
|
206 |
coreTemperatures[i] = new Sensor(CoreString(i), i,
|
moel@321
|
207 |
SensorType.Temperature, this, new[] {
|
moel@63
|
208 |
new ParameterDescription(
|
moel@306
|
209 |
"TjMax [°C]", "TjMax temperature of the core sensor.\n" +
|
moel@69
|
210 |
"Temperature = TjMax - TSlope * Value.", tjMax[i]),
|
moel@122
|
211 |
new ParameterDescription("TSlope [°C]",
|
moel@122
|
212 |
"Temperature slope of the digital thermal sensor.\n" +
|
moel@165
|
213 |
"Temperature = TjMax - TSlope * Value.", 1)}, settings);
|
moel@155
|
214 |
ActivateSensor(coreTemperatures[i]);
|
moel@44
|
215 |
}
|
moel@44
|
216 |
} else {
|
moel@44
|
217 |
coreTemperatures = new Sensor[0];
|
moel@1
|
218 |
}
|
moel@49
|
219 |
|
moel@306
|
220 |
// check if processor supports a digital thermal sensor at package level
|
moel@306
|
221 |
if (cpuid[0][0].Data.GetLength(0) > 6 &&
|
moel@350
|
222 |
(cpuid[0][0].Data[6, 0] & 0x40) != 0 &&
|
moel@350
|
223 |
microarchitecture != Microarchitecture.Unknown)
|
moel@350
|
224 |
{
|
moel@321
|
225 |
packageTemperature = new Sensor("CPU Package",
|
moel@321
|
226 |
coreTemperatures.Length, SensorType.Temperature, this, new[] {
|
moel@306
|
227 |
new ParameterDescription(
|
moel@306
|
228 |
"TjMax [°C]", "TjMax temperature of the package sensor.\n" +
|
moel@306
|
229 |
"Temperature = TjMax - TSlope * Value.", tjMax[0]),
|
moel@306
|
230 |
new ParameterDescription("TSlope [°C]",
|
moel@306
|
231 |
"Temperature slope of the digital thermal sensor.\n" +
|
moel@306
|
232 |
"Temperature = TjMax - TSlope * Value.", 1)}, settings);
|
moel@306
|
233 |
ActivateSensor(packageTemperature);
|
moel@321
|
234 |
}
|
moel@306
|
235 |
|
moel@191
|
236 |
busClock = new Sensor("Bus Speed", 0, SensorType.Clock, this, settings);
|
moel@44
|
237 |
coreClocks = new Sensor[coreCount];
|
moel@44
|
238 |
for (int i = 0; i < coreClocks.Length; i++) {
|
moel@49
|
239 |
coreClocks[i] =
|
moel@165
|
240 |
new Sensor(CoreString(i), i + 1, SensorType.Clock, this, settings);
|
moel@350
|
241 |
if (HasTimeStampCounter && microarchitecture != Microarchitecture.Unknown)
|
moel@79
|
242 |
ActivateSensor(coreClocks[i]);
|
moel@44
|
243 |
}
|
moel@191
|
244 |
|
moel@350
|
245 |
if (microarchitecture == Microarchitecture.SandyBridge ||
|
moel@396
|
246 |
microarchitecture == Microarchitecture.IvyBridge ||
|
moel@396
|
247 |
microarchitecture == Microarchitecture.Haswell)
|
moel@350
|
248 |
{
|
moel@321
|
249 |
powerSensors = new Sensor[energyStatusMSRs.Length];
|
moel@321
|
250 |
lastEnergyTime = new DateTime[energyStatusMSRs.Length];
|
moel@321
|
251 |
lastEnergyConsumed = new uint[energyStatusMSRs.Length];
|
moel@321
|
252 |
|
moel@317
|
253 |
uint eax, edx;
|
moel@317
|
254 |
if (Ring0.Rdmsr(MSR_RAPL_POWER_UNIT, out eax, out edx))
|
moel@317
|
255 |
energyUnitMultiplier = 1.0f / (1 << (int)((eax >> 8) & 0x1FF));
|
moel@317
|
256 |
|
moel@321
|
257 |
if (energyUnitMultiplier != 0) {
|
moel@321
|
258 |
for (int i = 0; i < energyStatusMSRs.Length; i++) {
|
moel@321
|
259 |
if (!Ring0.Rdmsr(energyStatusMSRs[i], out eax, out edx))
|
moel@321
|
260 |
continue;
|
moel@317
|
261 |
|
moel@321
|
262 |
lastEnergyTime[i] = DateTime.UtcNow;
|
moel@321
|
263 |
lastEnergyConsumed[i] = eax;
|
moel@321
|
264 |
powerSensors[i] = new Sensor(powerSensorLabels[i], i,
|
moel@321
|
265 |
SensorType.Power, this, settings);
|
moel@321
|
266 |
ActivateSensor(powerSensors[i]);
|
moel@321
|
267 |
}
|
moel@317
|
268 |
}
|
moel@317
|
269 |
}
|
moel@317
|
270 |
|
moel@191
|
271 |
Update();
|
moel@1
|
272 |
}
|
moel@1
|
273 |
|
moel@191
|
274 |
protected override uint[] GetMSRs() {
|
moel@321
|
275 |
return new[] {
|
moel@191
|
276 |
MSR_PLATFORM_INFO,
|
moel@191
|
277 |
IA32_PERF_STATUS ,
|
moel@191
|
278 |
IA32_THERM_STATUS_MSR,
|
moel@306
|
279 |
IA32_TEMPERATURE_TARGET,
|
moel@317
|
280 |
IA32_PACKAGE_THERM_STATUS,
|
moel@317
|
281 |
MSR_RAPL_POWER_UNIT,
|
moel@317
|
282 |
MSR_PKG_ENERY_STATUS,
|
moel@321
|
283 |
MSR_DRAM_ENERGY_STATUS,
|
moel@320
|
284 |
MSR_PP0_ENERY_STATUS,
|
moel@320
|
285 |
MSR_PP1_ENERY_STATUS
|
moel@191
|
286 |
};
|
moel@1
|
287 |
}
|
moel@1
|
288 |
|
moel@219
|
289 |
public override string GetReport() {
|
moel@219
|
290 |
StringBuilder r = new StringBuilder();
|
moel@219
|
291 |
r.Append(base.GetReport());
|
moel@219
|
292 |
|
moel@264
|
293 |
r.Append("Microarchitecture: ");
|
moel@264
|
294 |
r.AppendLine(microarchitecture.ToString());
|
moel@219
|
295 |
r.Append("Time Stamp Counter Multiplier: ");
|
moel@219
|
296 |
r.AppendLine(timeStampCounterMultiplier.ToString(
|
moel@219
|
297 |
CultureInfo.InvariantCulture));
|
moel@219
|
298 |
r.AppendLine();
|
moel@219
|
299 |
|
moel@219
|
300 |
return r.ToString();
|
moel@219
|
301 |
}
|
moel@219
|
302 |
|
moel@191
|
303 |
public override void Update() {
|
moel@191
|
304 |
base.Update();
|
moel@1
|
305 |
|
moel@1
|
306 |
for (int i = 0; i < coreTemperatures.Length; i++) {
|
moel@46
|
307 |
uint eax, edx;
|
moel@418
|
308 |
// if reading is valid
|
moel@418
|
309 |
if (Ring0.RdmsrTx(IA32_THERM_STATUS_MSR, out eax, out edx,
|
moel@418
|
310 |
1UL << cpuid[i][0].Thread) && (eax & 0x80000000) != 0)
|
moel@418
|
311 |
{
|
moel@418
|
312 |
// get the dist from tjMax from bits 22:16
|
moel@418
|
313 |
float deltaT = ((eax & 0x007F0000) >> 16);
|
moel@418
|
314 |
float tjMax = coreTemperatures[i].Parameters[0].Value;
|
moel@418
|
315 |
float tSlope = coreTemperatures[i].Parameters[1].Value;
|
moel@418
|
316 |
coreTemperatures[i].Value = tjMax - tSlope * deltaT;
|
moel@418
|
317 |
} else {
|
moel@418
|
318 |
coreTemperatures[i].Value = null;
|
moel@79
|
319 |
}
|
moel@24
|
320 |
}
|
moel@24
|
321 |
|
moel@306
|
322 |
if (packageTemperature != null) {
|
moel@306
|
323 |
uint eax, edx;
|
moel@418
|
324 |
// if reading is valid
|
moel@418
|
325 |
if (Ring0.RdmsrTx(IA32_PACKAGE_THERM_STATUS, out eax, out edx,
|
moel@418
|
326 |
1UL << cpuid[0][0].Thread) && (eax & 0x80000000) != 0)
|
moel@418
|
327 |
{
|
moel@306
|
328 |
// get the dist from tjMax from bits 22:16
|
moel@306
|
329 |
float deltaT = ((eax & 0x007F0000) >> 16);
|
moel@306
|
330 |
float tjMax = packageTemperature.Parameters[0].Value;
|
moel@306
|
331 |
float tSlope = packageTemperature.Parameters[1].Value;
|
moel@306
|
332 |
packageTemperature.Value = tjMax - tSlope * deltaT;
|
moel@306
|
333 |
} else {
|
moel@306
|
334 |
packageTemperature.Value = null;
|
moel@306
|
335 |
}
|
moel@306
|
336 |
}
|
moel@306
|
337 |
|
moel@350
|
338 |
if (HasTimeStampCounter && timeStampCounterMultiplier > 0) {
|
moel@191
|
339 |
double newBusClock = 0;
|
moel@191
|
340 |
uint eax, edx;
|
moel@191
|
341 |
for (int i = 0; i < coreClocks.Length; i++) {
|
moel@191
|
342 |
System.Threading.Thread.Sleep(1);
|
moel@236
|
343 |
if (Ring0.RdmsrTx(IA32_PERF_STATUS, out eax, out edx,
|
moel@321
|
344 |
1UL << cpuid[i][0].Thread)) {
|
moel@321
|
345 |
newBusClock =
|
moel@219
|
346 |
TimeStampCounterFrequency / timeStampCounterMultiplier;
|
moel@250
|
347 |
switch (microarchitecture) {
|
moel@250
|
348 |
case Microarchitecture.Nehalem: {
|
moel@250
|
349 |
uint multiplier = eax & 0xff;
|
moel@250
|
350 |
coreClocks[i].Value = (float)(multiplier * newBusClock);
|
moel@250
|
351 |
} break;
|
moel@350
|
352 |
case Microarchitecture.SandyBridge:
|
moel@396
|
353 |
case Microarchitecture.IvyBridge:
|
moel@396
|
354 |
case Microarchitecture.Haswell: {
|
moel@250
|
355 |
uint multiplier = (eax >> 8) & 0xff;
|
moel@250
|
356 |
coreClocks[i].Value = (float)(multiplier * newBusClock);
|
moel@250
|
357 |
} break;
|
moel@250
|
358 |
default: {
|
moel@321
|
359 |
double multiplier =
|
moel@250
|
360 |
((eax >> 8) & 0x1f) + 0.5 * ((eax >> 14) & 1);
|
moel@250
|
361 |
coreClocks[i].Value = (float)(multiplier * newBusClock);
|
moel@250
|
362 |
} break;
|
moel@321
|
363 |
}
|
moel@321
|
364 |
} else {
|
moel@201
|
365 |
// if IA32_PERF_STATUS is not available, assume TSC frequency
|
moel@201
|
366 |
coreClocks[i].Value = (float)TimeStampCounterFrequency;
|
moel@46
|
367 |
}
|
moel@44
|
368 |
}
|
moel@191
|
369 |
if (newBusClock > 0) {
|
moel@191
|
370 |
this.busClock.Value = (float)newBusClock;
|
moel@191
|
371 |
ActivateSensor(this.busClock);
|
moel@191
|
372 |
}
|
moel@44
|
373 |
}
|
moel@317
|
374 |
|
moel@321
|
375 |
if (powerSensors != null) {
|
moel@321
|
376 |
foreach (Sensor sensor in powerSensors) {
|
moel@321
|
377 |
if (sensor == null)
|
moel@321
|
378 |
continue;
|
moel@317
|
379 |
|
moel@321
|
380 |
uint eax, edx;
|
moel@321
|
381 |
if (!Ring0.Rdmsr(energyStatusMSRs[sensor.Index], out eax, out edx))
|
moel@321
|
382 |
continue;
|
moel@317
|
383 |
|
moel@317
|
384 |
DateTime time = DateTime.UtcNow;
|
moel@317
|
385 |
uint energyConsumed = eax;
|
moel@321
|
386 |
float deltaTime =
|
moel@321
|
387 |
(float)(time - lastEnergyTime[sensor.Index]).TotalSeconds;
|
moel@321
|
388 |
if (deltaTime < 0.01)
|
moel@321
|
389 |
continue;
|
moel@321
|
390 |
|
moel@321
|
391 |
sensor.Value = energyUnitMultiplier * unchecked(
|
moel@321
|
392 |
energyConsumed - lastEnergyConsumed[sensor.Index]) / deltaTime;
|
moel@321
|
393 |
lastEnergyTime[sensor.Index] = time;
|
moel@321
|
394 |
lastEnergyConsumed[sensor.Index] = energyConsumed;
|
moel@317
|
395 |
}
|
moel@317
|
396 |
}
|
moel@46
|
397 |
}
|
moel@191
|
398 |
}
|
moel@1
|
399 |
}
|