Hardware/CPU/IntelCPU.cs
author moel.mich
Wed, 03 Feb 2010 22:02:58 +0000
changeset 25 ff3e6edc7113
parent 24 09ab31bee6bd
child 26 0e01b63e1fdc
permissions -rw-r--r--
Release version 0.1.12. Added error handling for PerformanceCounters (CPU load sensor).
     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 PerformanceCounter totalLoadCounter;
    63     private PerformanceCounter[] coreLoadCounters;
    64 
    65     private const uint IA32_THERM_STATUS_MSR = 0x019C;
    66     private const uint IA32_TEMPERATURE_TARGET = 0x01A2;
    67 
    68     public IntelCPU(string name, uint family, uint model, uint stepping, 
    69       uint[,] cpuidData, uint[,] cpuidExtData) {
    70       
    71       this.name = name;
    72       this.icon = Utilities.EmbeddedResources.GetImage("cpu.png");
    73             
    74       logicalProcessors = 0;
    75       if (cpuidData.GetLength(0) > 0x0B) {
    76         uint eax, ebx, ecx, edx;
    77         WinRing0.CpuidEx(0x0B, 0, out eax, out ebx, out ecx, out edx);
    78         logicalProcessorsPerCore = ebx & 0xFF;
    79         if (logicalProcessorsPerCore > 0) {
    80           WinRing0.CpuidEx(0x0B, 1, out eax, out ebx, out ecx, out edx);
    81           logicalProcessors = ebx & 0xFF;
    82         }   
    83       }
    84       if (logicalProcessors <= 0 && cpuidData.GetLength(0) > 0x04) {
    85         logicalProcessors = ((cpuidData[4, 0] >> 26) & 0x3F) + 1;
    86         logicalProcessorsPerCore = 1;
    87       }
    88       if (logicalProcessors <= 0) {
    89         logicalProcessors = 1;
    90         logicalProcessorsPerCore = 1;
    91       }
    92 
    93       coreCount = logicalProcessors / logicalProcessorsPerCore;
    94 
    95       switch (family) {
    96         case 0x06: {
    97           switch (model) {
    98             case 0x0F: // Intel Core 65nm
    99               switch (stepping) {
   100                 case 0x06: // B2
   101                   switch (coreCount) {
   102                     case 2:
   103                       tjMax = 80; break;
   104                     case 4:
   105                       tjMax = 90; break;
   106                     default:
   107                       tjMax = 85; break;
   108                   }
   109                   tjMax = 80; break;
   110                 case 0x0B: // G0
   111                   tjMax = 90; break;
   112                 case 0x0D: // M0
   113                   tjMax = 85; break;
   114                 default:
   115                   tjMax = 85; break;
   116               } break;            
   117             case 0x17: // Intel Core 45nm
   118               tjMax = 100; break;
   119             case 0x1C: // Intel Atom 
   120               tjMax = 90; break;
   121             case 0x1A:
   122               uint eax = 0, edx = 0;
   123               if (WinRing0.RdmsrPx(
   124                   IA32_TEMPERATURE_TARGET, ref eax, ref edx, (UIntPtr)1)) {
   125                 tjMax = (eax >> 16) & 0xFF;
   126               } else
   127                 tjMax = 100;
   128               break;
   129             default:
   130               tjMax = 100; break;
   131           }
   132         } break;
   133         default: tjMax = 100; break;
   134       }
   135 
   136       try {
   137         totalLoadCounter = new PerformanceCounter();
   138         totalLoadCounter.CategoryName = "Processor";
   139         totalLoadCounter.CounterName = "% Processor Time";
   140         totalLoadCounter.InstanceName = "_Total";
   141         totalLoadCounter.NextValue();        
   142       } catch (Exception) {
   143         totalLoadCounter = null;
   144       }
   145       totalLoad = new Sensor("CPU Total", 0, SensorType.Load, this);
   146 
   147       coreLoadCounters = new PerformanceCounter[
   148         coreCount * logicalProcessorsPerCore];
   149       for (int i = 0; i < coreLoadCounters.Length; i++) {
   150         try {
   151           coreLoadCounters[i] = new PerformanceCounter();
   152           coreLoadCounters[i].CategoryName = "Processor";
   153           coreLoadCounters[i].CounterName = "% Processor Time";
   154           coreLoadCounters[i].InstanceName = i.ToString();
   155           coreLoadCounters[i].NextValue();
   156         } catch (Exception) {
   157           coreLoadCounters[i] = null;
   158         }
   159       }
   160 
   161       coreTemperatures = new Sensor[coreCount];
   162       coreLoads = new Sensor[coreCount];
   163       for (int i = 0; i < coreTemperatures.Length; i++) {
   164         coreTemperatures[i] = new Sensor("Core #" + (i + 1), i, tjMax,
   165           SensorType.Temperature, this);
   166         coreLoads[i] = new Sensor("Core #" + (i + 1), i + 1, 
   167           SensorType.Load, this);
   168       }
   169 
   170       Update();                   
   171     }
   172 
   173     public string Name {
   174       get { return name; }
   175     }
   176 
   177     public string Identifier {
   178       get { return "/intelcpu/0"; }
   179     }
   180 
   181     public Image Icon {
   182       get { return icon; }
   183     }
   184 
   185     public ISensor[] Sensors {
   186       get { return active.ToArray(); }
   187     }
   188 
   189     public string GetReport() {
   190       StringBuilder r = new StringBuilder();
   191 
   192       r.AppendLine("Intel CPU");
   193       r.AppendLine();
   194       r.AppendFormat("Name: {0}{1}", name, Environment.NewLine);
   195       r.AppendFormat("Number of cores: {0}{1}", coreCount, 
   196         Environment.NewLine);
   197       r.AppendFormat("Threads per core: {0}{1}", logicalProcessorsPerCore,
   198         Environment.NewLine);
   199       r.AppendFormat("TjMax: {0}{1}", tjMax, Environment.NewLine);
   200       r.AppendLine();
   201 
   202       return r.ToString();
   203     }
   204 
   205     public void Update() {
   206 
   207       uint eax = 0, edx = 0;      
   208       for (int i = 0; i < coreTemperatures.Length; i++) {
   209         if (WinRing0.RdmsrPx(
   210           IA32_THERM_STATUS_MSR, ref eax, ref edx, 
   211             (UIntPtr)(1 << (int)(logicalProcessorsPerCore * i)))) 
   212         {
   213           // if reading is valid
   214           if ((eax & 0x80000000) != 0) {
   215             // get the dist from tjMax from bits 22:16
   216             coreTemperatures[i].Value = tjMax - ((eax & 0x007F0000) >> 16);
   217             ActivateSensor(coreTemperatures[i]);
   218           } else {
   219             DeactivateSensor(coreTemperatures[i]);
   220           }
   221         }        
   222       }
   223 
   224       if (totalLoadCounter != null) {
   225         totalLoad.Value = totalLoadCounter.NextValue();
   226         ActivateSensor(totalLoad);
   227       }
   228 
   229       for (int i = 0; i < coreLoads.Length; i++) {
   230         float value = 0;
   231         int count = 0;
   232         for (int j = 0; j < logicalProcessorsPerCore; j++) {
   233           PerformanceCounter counter =
   234             coreLoadCounters[logicalProcessorsPerCore * i + j];
   235           if (counter != null) {
   236             value += counter.NextValue();
   237             count++;
   238           }
   239         }
   240         if (count > 0) {
   241           value /= count;
   242           coreLoads[i].Value = value;
   243           ActivateSensor(coreLoads[i]);
   244         }
   245       }
   246     }
   247 
   248     private void ActivateSensor(Sensor sensor) {
   249       if (!active.Contains(sensor)) {
   250         active.Add(sensor);
   251         if (SensorAdded != null)
   252           SensorAdded(sensor);
   253       }
   254     }
   255 
   256     private void DeactivateSensor(Sensor sensor) {
   257       if (active.Contains(sensor)) {
   258         active.Remove(sensor);
   259         if (SensorRemoved != null)
   260           SensorRemoved(sensor);
   261       }
   262     }
   263 
   264     public event SensorEventHandler SensorAdded;
   265     public event SensorEventHandler SensorRemoved;
   266   }
   267 }