Release version 0.1.2. First implementation for Fintek F71882FG chips. Fixed Intel Core i7 temperature reading. Changed Nvidia GPU 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.Reflection;
44 namespace OpenHardwareMonitor.Hardware.CPU {
45 public class IntelCPU : IHardware {
50 private Sensor[] coreTemperatures;
52 private float tjMax = 0;
53 private uint logicalProcessorsPerCore;
55 private const uint IA32_THERM_STATUS_MSR = 0x019C;
56 private const uint IA32_TEMPERATURE_TARGET = 0x01A2;
58 public IntelCPU(string name, uint family, uint model, uint stepping,
59 uint[,] cpuidData, uint[,] cpuidExtData) {
62 this.icon = Utilities.EmbeddedResources.GetImage("cpu.png");
64 uint logicalProcessors = 1;
65 if (cpuidData.GetLength(0) > 0x04)
66 logicalProcessors = ((cpuidData[4, 0] >> 26) & 0x3F) + 1;
68 logicalProcessorsPerCore = 1;
69 if (cpuidData.GetLength(0) > 0x0B)
70 logicalProcessorsPerCore = cpuidData[0x0B, 1] & 0xFF;
71 if (logicalProcessorsPerCore == 0)
72 logicalProcessorsPerCore = 1;
74 uint coreCount = logicalProcessors / logicalProcessorsPerCore;
79 case 0x0F: // Intel Core 65nm
98 case 0x17: // Intel Core 45nm
100 case 0x1C: // Intel Atom
103 uint eax = 0, edx = 0;
104 if (WinRing0.RdmsrPx(
105 IA32_TEMPERATURE_TARGET, ref eax, ref edx, (UIntPtr)1)) {
106 tjMax = (eax >> 16) & 0xFF;
114 default: tjMax = 100; break;
117 coreTemperatures = new Sensor[coreCount];
118 for (int i = 0; i < coreTemperatures.Length; i++)
119 coreTemperatures[i] =
120 new Sensor("Core #" + (i + 1), i, tjMax, SensorType.Temperature,
130 public string Identifier {
131 get { return "/intelcpu/0"; }
138 public ISensor[] Sensors {
140 return coreTemperatures;
144 public string GetReport() {
145 StringBuilder r = new StringBuilder();
147 r.AppendLine("Intel CPU");
149 r.AppendFormat("Name: {0}{1}", name, Environment.NewLine);
150 r.AppendFormat("Number of cores: {0}{1}", coreTemperatures.Length,
151 Environment.NewLine);
152 r.AppendFormat("TjMax: {0}{1}", tjMax, Environment.NewLine);
158 public void Update() {
160 uint eax = 0, edx = 0;
161 for (int i = 0; i < coreTemperatures.Length; i++) {
162 if (WinRing0.RdmsrPx(
163 IA32_THERM_STATUS_MSR, ref eax, ref edx,
164 (UIntPtr)(logicalProcessorsPerCore << i)))
166 // if reading is valid
167 if ((eax & 0x80000000) != 0) {
168 // get the dist from tjMax from bits 22:16
169 coreTemperatures[i].Value = tjMax - ((eax & 0x007F0000) >> 16);
175 #pragma warning disable 67
176 public event SensorEventHandler SensorAdded;
177 public event SensorEventHandler SensorRemoved;
178 #pragma warning restore 67