Restored CTSHolding check and added more report output for T-Balancer enumeration.
3 Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 The contents of this file are subject to the Mozilla Public License Version
6 1.1 (the "License"); you may not use this file except in compliance with
7 the License. You may obtain a copy of the License at
9 http://www.mozilla.org/MPL/
11 Software distributed under the License is distributed on an "AS IS" basis,
12 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 for the specific language governing rights and limitations under the License.
15 The Original Code is the Open Hardware Monitor code.
17 The Initial Developer of the Original Code is
18 Michael Möller <m.moeller@gmx.ch>.
19 Portions created by the Initial Developer are Copyright (C) 2009-2010
20 the Initial Developer. All Rights Reserved.
24 Alternatively, the contents of this file may be used under the terms of
25 either the GNU General Public License Version 2 or later (the "GPL"), or
26 the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 in which case the provisions of the GPL or the LGPL are applicable instead
28 of those above. If you wish to allow use of your version of this file only
29 under the terms of either the GPL or the LGPL, and not to allow others to
30 use your version of this file under the terms of the MPL, indicate your
31 decision by deleting the provisions above and replace them with the notice
32 and other provisions required by the GPL or the LGPL. If you do not delete
33 the provisions above, a recipient may use your version of this file under
34 the terms of any one of the MPL, the GPL or the LGPL.
39 using System.Collections.Generic;
41 using System.Diagnostics;
42 using System.Reflection;
45 namespace OpenHardwareMonitor.Hardware.CPU {
46 public class IntelCPU : Hardware, IHardware {
53 private uint stepping;
55 private Sensor[] coreTemperatures;
56 private Sensor totalLoad;
57 private Sensor[] coreLoads;
58 private Sensor[] coreClocks;
59 private Sensor busClock;
61 private float tjMax = 0;
62 private uint logicalProcessors;
63 private uint logicalProcessorsPerCore;
64 private uint coreCount;
66 private CPULoad cpuLoad;
68 private ulong lastCount;
69 private long lastTime;
70 private uint maxNehalemMultiplier = 0;
72 private const uint IA32_THERM_STATUS_MSR = 0x019C;
73 private const uint IA32_TEMPERATURE_TARGET = 0x01A2;
74 private const uint IA32_PERF_STATUS = 0x0198;
75 private const uint MSR_PLATFORM_INFO = 0xCE;
77 public IntelCPU(string name, uint family, uint model, uint stepping,
78 uint[,] cpuidData, uint[,] cpuidExtData) {
81 this.icon = Utilities.EmbeddedResources.GetImage("cpu.png");
85 this.stepping = stepping;
87 logicalProcessors = 0;
88 if (cpuidData.GetLength(0) > 0x0B) {
89 uint eax, ebx, ecx, edx;
90 WinRing0.CpuidEx(0x0B, 0, out eax, out ebx, out ecx, out edx);
91 logicalProcessorsPerCore = ebx & 0xFF;
92 if (logicalProcessorsPerCore > 0) {
93 WinRing0.CpuidEx(0x0B, 1, out eax, out ebx, out ecx, out edx);
94 logicalProcessors = ebx & 0xFF;
97 if (logicalProcessors <= 0 && cpuidData.GetLength(0) > 0x04) {
98 logicalProcessors = ((cpuidData[4, 0] >> 26) & 0x3F) + 1;
99 logicalProcessorsPerCore = 1;
101 if (logicalProcessors <= 0) {
102 logicalProcessors = 1;
103 logicalProcessorsPerCore = 1;
106 coreCount = logicalProcessors / logicalProcessorsPerCore;
108 // check if processor supports a digital thermal sensor
109 if (cpuidData.GetLength(0) > 6 && (cpuidData[6, 0] & 1) != 0) {
114 case 0x0F: // Intel Core 65nm
133 case 0x17: // Intel Core 45nm
135 case 0x1C: // Intel Atom
137 case 0x1A: // Intel Core i7
138 case 0x1E: // Intel Core i5
140 if (WinRing0.Rdmsr(IA32_TEMPERATURE_TARGET, out eax, out edx))
142 tjMax = (eax >> 16) & 0xFF;
150 default: tjMax = 100; break;
153 if (family == 0x06 && model >= 0x1A) { // Core i5, i7
155 if (WinRing0.Rdmsr(MSR_PLATFORM_INFO, out eax, out edx)) {
156 maxNehalemMultiplier = (eax >> 8) & 0xff;
160 coreTemperatures = new Sensor[coreCount];
161 for (int i = 0; i < coreTemperatures.Length; i++) {
162 coreTemperatures[i] = new Sensor("Core #" + (i + 1), i, tjMax,
163 SensorType.Temperature, this);
166 coreTemperatures = new Sensor[0];
169 totalLoad = new Sensor("CPU Total", 0, SensorType.Load, this);
170 coreLoads = new Sensor[coreCount];
171 for (int i = 0; i < coreLoads.Length; i++)
172 coreLoads[i] = new Sensor("Core #" + (i + 1), i + 1,
173 SensorType.Load, this);
174 cpuLoad = new CPULoad(coreCount, logicalProcessorsPerCore);
175 if (cpuLoad.IsAvailable) {
176 foreach (Sensor sensor in coreLoads)
177 ActivateSensor(sensor);
178 ActivateSensor(totalLoad);
183 busClock = new Sensor("Bus Speed", 0, SensorType.Clock, this);
184 coreClocks = new Sensor[coreCount];
185 for (int i = 0; i < coreClocks.Length; i++) {
187 new Sensor("Core #" + (i + 1), i + 1, SensorType.Clock, this);
188 ActivateSensor(coreClocks[i]);
198 public string Identifier {
199 get { return "/intelcpu/0"; }
206 public string GetReport() {
207 StringBuilder r = new StringBuilder();
209 r.AppendLine("Intel CPU");
211 r.AppendFormat("Name: {0}{1}", name, Environment.NewLine);
212 r.AppendFormat("Number of cores: {0}{1}", coreCount,
213 Environment.NewLine);
214 r.AppendFormat("Threads per core: {0}{1}", logicalProcessorsPerCore,
215 Environment.NewLine);
216 r.AppendFormat("TjMax: {0}{1}", tjMax, Environment.NewLine);
222 public void Update() {
224 for (int i = 0; i < coreTemperatures.Length; i++) {
226 if (WinRing0.RdmsrTx(
227 IA32_THERM_STATUS_MSR, out eax, out edx,
228 (UIntPtr)(1 << (int)(logicalProcessorsPerCore * i))))
230 // if reading is valid
231 if ((eax & 0x80000000) != 0) {
232 // get the dist from tjMax from bits 22:16
233 coreTemperatures[i].Value = tjMax - ((eax & 0x007F0000) >> 16);
234 ActivateSensor(coreTemperatures[i]);
236 DeactivateSensor(coreTemperatures[i]);
241 if (cpuLoad.IsAvailable) {
243 for (int i = 0; i < coreLoads.Length; i++)
244 coreLoads[i].Value = cpuLoad.GetCoreLoad(i);
245 totalLoad.Value = cpuLoad.GetTotalLoad();
249 bool valid = WinRing0.RdtscTx(out lsb, out msb, (UIntPtr)1);
250 long time = Stopwatch.GetTimestamp();
251 ulong count = ((ulong)msb << 32) | lsb;
252 double delta = ((double)(time - lastTime)) / Stopwatch.Frequency;
253 if (valid && delta > 0.5) {
254 double maxClock = (count - lastCount) / (1e6 * delta);
257 for (int i = 0; i < coreClocks.Length; i++) {
258 System.Threading.Thread.Sleep(1);
259 if (WinRing0.RdmsrTx(IA32_PERF_STATUS, out eax, out edx,
260 (UIntPtr)(1 << (int)(logicalProcessorsPerCore * i)))) {
261 if (model < 0x1A) { // Core 2
262 uint multiplier = (eax >> 8) & 0x1f;
263 uint maxMultiplier = (edx >> 8) & 0x1f;
264 // factor = multiplier * 2 to handle non integer multipliers
265 uint factor = (multiplier << 1) | ((eax >> 14) & 1);
266 uint maxFactor = (maxMultiplier << 1) | ((edx >> 14) & 1);
268 coreClocks[i].Value = (float)(factor * maxClock / maxFactor);
269 busClock = (float)(2 * maxClock / maxFactor);
271 } else { // Core i5, i7
272 uint nehalemMultiplier = eax & 0xff;
273 if (maxNehalemMultiplier > 0) {
274 coreClocks[i].Value =
275 (float)(nehalemMultiplier * maxClock / maxNehalemMultiplier);
276 busClock = (float)(maxClock / maxNehalemMultiplier);
279 } else { // Intel Pentium 4
280 // if IA32_PERF_STATUS is not available, assume maxClock
281 coreClocks[i].Value = (float)maxClock;
285 this.busClock.Value = (float)busClock;
286 ActivateSensor(this.busClock);