Changed ATI 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;
54 private const uint IA32_THERM_STATUS_MSR = 0x019C;
56 public IntelCPU(string name, uint family, uint model, uint stepping,
57 uint[,] cpuidData, uint[,] cpuidExtData) {
60 this.icon = Utilities.EmbeddedResources.GetImage("cpu.png");
63 if (cpuidData.GetLength(0) > 4)
64 coreCount = ((cpuidData[4, 0] >> 26) & 0x3F) + 1;
69 case 0x0F: // Intel Core 65nm
88 case 0x1c: // Intel Atom
90 case 0x17: // Intel Core 45nm
96 default: tjMax = 100; break;
99 coreTemperatures = new Sensor[coreCount];
100 for (int i = 0; i < coreTemperatures.Length; i++)
101 coreTemperatures[i] =
102 new Sensor("Core #" + (i + 1), i, tjMax, SensorType.Temperature,
112 public string Identifier {
113 get { return "/intelcpu/0"; }
120 public ISensor[] Sensors {
122 return coreTemperatures;
126 public string GetReport() {
130 public void Update() {
132 uint eax = 0, edx = 0;
133 for (int i = 0; i < coreTemperatures.Length; i++) {
134 if (WinRing0.RdmsrPx(
135 IA32_THERM_STATUS_MSR, ref eax, ref edx, (UIntPtr)(1 << i)))
137 // if reading is valid
138 if ((eax & 0x80000000) != 0) {
139 // get the dist from tjMax from bits 22:16
140 coreTemperatures[i].Value = tjMax - ((eax & 0x007F0000) >> 16);
146 #pragma warning disable 67
147 public event SensorEventHandler SensorAdded;
148 public event SensorEventHandler SensorRemoved;
149 #pragma warning restore 67