Hardware/CPU/IntelCPU.cs
author moel.mich
Thu, 04 Feb 2010 21:19:27 +0000
changeset 26 0e01b63e1fdc
parent 25 ff3e6edc7113
child 31 c4d1fb76a9e1
permissions -rw-r--r--
Release version 0.1.13. Replaced PerformanceCounter based CPU load sensors with an implementation using NtQuerySystemInformation. Fixed a temperature reading problem for W83627DHG chips (sensors with invalid value 127?C).
     1 /*
     2   
     3   Version: MPL 1.1/GPL 2.0/LGPL 2.1
     4 
     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
     8  
     9   http://www.mozilla.org/MPL/
    10 
    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.
    14 
    15   The Original Code is the Open Hardware Monitor code.
    16 
    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.
    21 
    22   Contributor(s):
    23 
    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.
    35  
    36 */
    37 
    38 using System;
    39 using System.Collections.Generic;
    40 using System.Drawing;
    41 using System.Diagnostics;
    42 using System.Reflection;
    43 using System.Text;
    44 
    45 namespace OpenHardwareMonitor.Hardware.CPU {
    46   public class IntelCPU : IHardware {
    47 
    48     private string name;
    49     private Image icon;
    50 
    51     private Sensor[] coreTemperatures;
    52     private Sensor totalLoad;
    53     private Sensor[] coreLoads;
    54 
    55     private List<ISensor> active = new List<ISensor>();
    56 
    57     private float tjMax = 0;
    58     private uint logicalProcessors;
    59     private uint logicalProcessorsPerCore;
    60     private uint coreCount;
    61 
    62     private CPULoad cpuLoad;
    63     
    64     private const uint IA32_THERM_STATUS_MSR = 0x019C;
    65     private const uint IA32_TEMPERATURE_TARGET = 0x01A2;
    66 
    67     public IntelCPU(string name, uint family, uint model, uint stepping, 
    68       uint[,] cpuidData, uint[,] cpuidExtData) {
    69       
    70       this.name = name;
    71       this.icon = Utilities.EmbeddedResources.GetImage("cpu.png");
    72             
    73       logicalProcessors = 0;
    74       if (cpuidData.GetLength(0) > 0x0B) {
    75         uint eax, ebx, ecx, edx;
    76         WinRing0.CpuidEx(0x0B, 0, out eax, out ebx, out ecx, out edx);
    77         logicalProcessorsPerCore = ebx & 0xFF;
    78         if (logicalProcessorsPerCore > 0) {
    79           WinRing0.CpuidEx(0x0B, 1, out eax, out ebx, out ecx, out edx);
    80           logicalProcessors = ebx & 0xFF;
    81         }   
    82       }
    83       if (logicalProcessors <= 0 && cpuidData.GetLength(0) > 0x04) {
    84         logicalProcessors = ((cpuidData[4, 0] >> 26) & 0x3F) + 1;
    85         logicalProcessorsPerCore = 1;
    86       }
    87       if (logicalProcessors <= 0) {
    88         logicalProcessors = 1;
    89         logicalProcessorsPerCore = 1;
    90       }
    91 
    92       coreCount = logicalProcessors / logicalProcessorsPerCore;
    93 
    94       switch (family) {
    95         case 0x06: {
    96           switch (model) {
    97             case 0x0F: // Intel Core 65nm
    98               switch (stepping) {
    99                 case 0x06: // B2
   100                   switch (coreCount) {
   101                     case 2:
   102                       tjMax = 80; break;
   103                     case 4:
   104                       tjMax = 90; break;
   105                     default:
   106                       tjMax = 85; break;
   107                   }
   108                   tjMax = 80; break;
   109                 case 0x0B: // G0
   110                   tjMax = 90; break;
   111                 case 0x0D: // M0
   112                   tjMax = 85; break;
   113                 default:
   114                   tjMax = 85; break;
   115               } break;            
   116             case 0x17: // Intel Core 45nm
   117               tjMax = 100; break;
   118             case 0x1C: // Intel Atom 
   119               tjMax = 90; break;
   120             case 0x1A:
   121               uint eax = 0, edx = 0;
   122               if (WinRing0.RdmsrPx(
   123                   IA32_TEMPERATURE_TARGET, ref eax, ref edx, (UIntPtr)1)) {
   124                 tjMax = (eax >> 16) & 0xFF;
   125               } else
   126                 tjMax = 100;
   127               break;
   128             default:
   129               tjMax = 100; break;
   130           }
   131         } break;
   132         default: tjMax = 100; break;
   133       }
   134 
   135       totalLoad = new Sensor("CPU Total", 0, SensorType.Load, this);     
   136 
   137       coreTemperatures = new Sensor[coreCount];
   138       coreLoads = new Sensor[coreCount];
   139       for (int i = 0; i < coreTemperatures.Length; i++) {
   140         coreTemperatures[i] = new Sensor("Core #" + (i + 1), i, tjMax,
   141           SensorType.Temperature, this);
   142         coreLoads[i] = new Sensor("Core #" + (i + 1), i + 1, 
   143           SensorType.Load, this);
   144       }
   145 
   146       cpuLoad = new CPULoad(coreCount, logicalProcessorsPerCore);
   147       if (cpuLoad.IsAvailable) {
   148         foreach (Sensor sensor in coreLoads)
   149           ActivateSensor(sensor);
   150         ActivateSensor(totalLoad);
   151       }
   152 
   153       Update();                   
   154     }
   155 
   156     public string Name {
   157       get { return name; }
   158     }
   159 
   160     public string Identifier {
   161       get { return "/intelcpu/0"; }
   162     }
   163 
   164     public Image Icon {
   165       get { return icon; }
   166     }
   167 
   168     public ISensor[] Sensors {
   169       get { return active.ToArray(); }
   170     }
   171 
   172     public string GetReport() {
   173       StringBuilder r = new StringBuilder();
   174 
   175       r.AppendLine("Intel CPU");
   176       r.AppendLine();
   177       r.AppendFormat("Name: {0}{1}", name, Environment.NewLine);
   178       r.AppendFormat("Number of cores: {0}{1}", coreCount, 
   179         Environment.NewLine);
   180       r.AppendFormat("Threads per core: {0}{1}", logicalProcessorsPerCore,
   181         Environment.NewLine);
   182       r.AppendFormat("TjMax: {0}{1}", tjMax, Environment.NewLine);
   183       r.AppendLine();
   184 
   185       return r.ToString();
   186     }
   187 
   188     public void Update() {
   189 
   190       uint eax = 0, edx = 0;      
   191       for (int i = 0; i < coreTemperatures.Length; i++) {
   192         if (WinRing0.RdmsrPx(
   193           IA32_THERM_STATUS_MSR, ref eax, ref edx, 
   194             (UIntPtr)(1 << (int)(logicalProcessorsPerCore * i)))) 
   195         {
   196           // if reading is valid
   197           if ((eax & 0x80000000) != 0) {
   198             // get the dist from tjMax from bits 22:16
   199             coreTemperatures[i].Value = tjMax - ((eax & 0x007F0000) >> 16);
   200             ActivateSensor(coreTemperatures[i]);
   201           } else {
   202             DeactivateSensor(coreTemperatures[i]);
   203           }
   204         }        
   205       }
   206 
   207       if (cpuLoad.IsAvailable) {
   208         cpuLoad.Update();
   209         for (int i = 0; i < coreLoads.Length; i++)
   210           coreLoads[i].Value = cpuLoad.GetCoreLoad(i);
   211         totalLoad.Value = cpuLoad.GetTotalLoad();
   212       }
   213     }
   214 
   215     private void ActivateSensor(Sensor sensor) {
   216       if (!active.Contains(sensor)) {
   217         active.Add(sensor);
   218         if (SensorAdded != null)
   219           SensorAdded(sensor);
   220       }
   221     }
   222 
   223     private void DeactivateSensor(Sensor sensor) {
   224       if (active.Contains(sensor)) {
   225         active.Remove(sensor);
   226         if (SensorRemoved != null)
   227           SensorRemoved(sensor);
   228       }
   229     }
   230 
   231     public event SensorEventHandler SensorAdded;
   232     public event SensorEventHandler SensorRemoved;
   233   }
   234 }