Hardware/CPU/IntelCPU.cs
author moel.mich
Wed, 27 Jan 2010 23:10:38 +0000
changeset 5 a5ecd988d38f
parent 4 5d81d4a63965
child 7 9523a3322777
permissions -rw-r--r--
Release version 0.1.1
     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.Reflection;
    42 using System.Text;
    43 
    44 namespace OpenHardwareMonitor.Hardware.CPU {
    45   public class IntelCPU : IHardware {
    46 
    47     private string name;
    48     private Image icon;
    49 
    50     private Sensor[] coreTemperatures;
    51 
    52     private float tjMax = 0;   
    53 
    54     private const uint IA32_THERM_STATUS_MSR = 0x019C;
    55     private const uint IA32_TEMPERATURE_TARGET = 0x01A2;
    56 
    57     public IntelCPU(string name, uint family, uint model, uint stepping, 
    58       uint[,] cpuidData, uint[,] cpuidExtData) {
    59       
    60       this.name = name;
    61       this.icon = Utilities.EmbeddedResources.GetImage("cpu.png");
    62       
    63       uint logicalProcessors = 1;
    64       if (cpuidData.GetLength(0) > 0x04)
    65         logicalProcessors = ((cpuidData[4, 0] >> 26) & 0x3F) + 1;
    66 
    67       uint logicalProcessorsPerCore = 1;
    68       if (cpuidData.GetLength(0) > 0x0B)
    69         logicalProcessorsPerCore = cpuidData[0x0B, 1] & 0xFF;
    70       if (logicalProcessorsPerCore == 0)
    71         logicalProcessorsPerCore = 1;
    72 
    73       uint coreCount = logicalProcessors / logicalProcessorsPerCore;
    74 
    75       switch (family) {
    76         case 0x06: {
    77           switch (model) {
    78             case 0x0F: // Intel Core 65nm
    79               switch (stepping) {
    80                 case 0x06: // B2
    81                   switch (coreCount) {
    82                     case 2:
    83                       tjMax = 80; break;
    84                     case 4:
    85                       tjMax = 90; break;
    86                     default:
    87                       tjMax = 85; break;
    88                   }
    89                   tjMax = 80; break;
    90                 case 0x0B: // G0
    91                   tjMax = 90; break;
    92                 case 0x0D: // M0
    93                   tjMax = 85; break;
    94                 default:
    95                   tjMax = 85; break;
    96               } break;            
    97             case 0x17: // Intel Core 45nm
    98               tjMax = 100; break;
    99             case 0x1C: // Intel Atom 
   100               tjMax = 90; break;
   101             case 0x1A:
   102               uint eax = 0, edx = 0;
   103               if (WinRing0.RdmsrPx(
   104                   IA32_TEMPERATURE_TARGET, ref eax, ref edx, (UIntPtr)1)) {
   105                 tjMax = (eax >> 16) & 0xFF;
   106               } else
   107                 tjMax = 100;
   108               break;
   109             default:
   110               tjMax = 100; break;
   111           }
   112         } break;
   113         default: tjMax = 100; break;
   114       }
   115 
   116       coreTemperatures = new Sensor[coreCount];
   117       for (int i = 0; i < coreTemperatures.Length; i++)
   118         coreTemperatures[i] =
   119           new Sensor("Core #" + (i + 1), i, tjMax, SensorType.Temperature, 
   120             this);
   121 
   122       Update();                   
   123     }
   124 
   125     public string Name {
   126       get { return name; }
   127     }
   128 
   129     public string Identifier {
   130       get { return "/intelcpu/0"; }
   131     }
   132 
   133     public Image Icon {
   134       get { return icon; }
   135     }
   136 
   137     public ISensor[] Sensors {
   138       get {
   139         return coreTemperatures;
   140       }
   141     }
   142 
   143     public string GetReport() {
   144       StringBuilder r = new StringBuilder();
   145 
   146       r.AppendLine("Intel CPU");
   147       r.AppendLine();
   148       r.AppendFormat("Name: {0}{1}", name, Environment.NewLine);
   149       r.AppendFormat("Number of cores: {0}{1}", coreTemperatures.Length, 
   150         Environment.NewLine);
   151       r.AppendFormat("TjMax: {0}{1}", tjMax, Environment.NewLine);
   152       r.AppendLine();
   153 
   154       return r.ToString();
   155     }
   156 
   157     public void Update() {
   158 
   159       uint eax = 0, edx = 0;      
   160       for (int i = 0; i < coreTemperatures.Length; i++) {
   161         if (WinRing0.RdmsrPx(
   162           IA32_THERM_STATUS_MSR, ref eax, ref edx, (UIntPtr)(1 << i))) 
   163         {
   164           // if reading is valid
   165           if ((eax & 0x80000000) != 0) {
   166             // get the dist from tjMax from bits 22:16
   167             coreTemperatures[i].Value = tjMax - ((eax & 0x007F0000) >> 16);
   168           }
   169         }        
   170       }  
   171     }
   172 
   173     #pragma warning disable 67
   174     public event SensorEventHandler SensorAdded;
   175     public event SensorEventHandler SensorRemoved;
   176     #pragma warning restore 67
   177   }
   178 }