Added initial support for W83627HF. Some refactoring for IHardware classes.
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 {
51 private Sensor[] coreTemperatures;
52 private Sensor totalLoad;
53 private Sensor[] coreLoads;
55 private float tjMax = 0;
56 private uint logicalProcessors;
57 private uint logicalProcessorsPerCore;
58 private uint coreCount;
60 private CPULoad cpuLoad;
62 private const uint IA32_THERM_STATUS_MSR = 0x019C;
63 private const uint IA32_TEMPERATURE_TARGET = 0x01A2;
65 public IntelCPU(string name, uint family, uint model, uint stepping,
66 uint[,] cpuidData, uint[,] cpuidExtData) {
69 this.icon = Utilities.EmbeddedResources.GetImage("cpu.png");
71 logicalProcessors = 0;
72 if (cpuidData.GetLength(0) > 0x0B) {
73 uint eax, ebx, ecx, edx;
74 WinRing0.CpuidEx(0x0B, 0, out eax, out ebx, out ecx, out edx);
75 logicalProcessorsPerCore = ebx & 0xFF;
76 if (logicalProcessorsPerCore > 0) {
77 WinRing0.CpuidEx(0x0B, 1, out eax, out ebx, out ecx, out edx);
78 logicalProcessors = ebx & 0xFF;
81 if (logicalProcessors <= 0 && cpuidData.GetLength(0) > 0x04) {
82 logicalProcessors = ((cpuidData[4, 0] >> 26) & 0x3F) + 1;
83 logicalProcessorsPerCore = 1;
85 if (logicalProcessors <= 0) {
86 logicalProcessors = 1;
87 logicalProcessorsPerCore = 1;
90 coreCount = logicalProcessors / logicalProcessorsPerCore;
95 case 0x0F: // Intel Core 65nm
114 case 0x17: // Intel Core 45nm
116 case 0x1C: // Intel Atom
119 uint eax = 0, edx = 0;
120 if (WinRing0.RdmsrPx(
121 IA32_TEMPERATURE_TARGET, ref eax, ref edx, (UIntPtr)1)) {
122 tjMax = (eax >> 16) & 0xFF;
130 default: tjMax = 100; break;
133 totalLoad = new Sensor("CPU Total", 0, SensorType.Load, this);
135 coreTemperatures = new Sensor[coreCount];
136 coreLoads = new Sensor[coreCount];
137 for (int i = 0; i < coreTemperatures.Length; i++) {
138 coreTemperatures[i] = new Sensor("Core #" + (i + 1), i, tjMax,
139 SensorType.Temperature, this);
140 coreLoads[i] = new Sensor("Core #" + (i + 1), i + 1,
141 SensorType.Load, this);
144 cpuLoad = new CPULoad(coreCount, logicalProcessorsPerCore);
145 if (cpuLoad.IsAvailable) {
146 foreach (Sensor sensor in coreLoads)
147 ActivateSensor(sensor);
148 ActivateSensor(totalLoad);
158 public string Identifier {
159 get { return "/intelcpu/0"; }
166 public string GetReport() {
167 StringBuilder r = new StringBuilder();
169 r.AppendLine("Intel CPU");
171 r.AppendFormat("Name: {0}{1}", name, Environment.NewLine);
172 r.AppendFormat("Number of cores: {0}{1}", coreCount,
173 Environment.NewLine);
174 r.AppendFormat("Threads per core: {0}{1}", logicalProcessorsPerCore,
175 Environment.NewLine);
176 r.AppendFormat("TjMax: {0}{1}", tjMax, Environment.NewLine);
182 public void Update() {
184 uint eax = 0, edx = 0;
185 for (int i = 0; i < coreTemperatures.Length; i++) {
186 if (WinRing0.RdmsrPx(
187 IA32_THERM_STATUS_MSR, ref eax, ref edx,
188 (UIntPtr)(1 << (int)(logicalProcessorsPerCore * i))))
190 // if reading is valid
191 if ((eax & 0x80000000) != 0) {
192 // get the dist from tjMax from bits 22:16
193 coreTemperatures[i].Value = tjMax - ((eax & 0x007F0000) >> 16);
194 ActivateSensor(coreTemperatures[i]);
196 DeactivateSensor(coreTemperatures[i]);
201 if (cpuLoad.IsAvailable) {
203 for (int i = 0; i < coreLoads.Length; i++)
204 coreLoads[i].Value = cpuLoad.GetCoreLoad(i);
205 totalLoad.Value = cpuLoad.GetTotalLoad();