Hardware/CPU/IntelCPU.cs
author moel.mich
Wed, 27 Jan 2010 19:30:10 +0000
changeset 3 1a0928afac6b
child 4 5d81d4a63965
permissions -rw-r--r--
Changed ATI GPU enumeration.
     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 
    56     public IntelCPU(string name, uint family, uint model, uint stepping, 
    57       uint[,] cpuidData, uint[,] cpuidExtData) {
    58       
    59       this.name = name;
    60       this.icon = Utilities.EmbeddedResources.GetImage("cpu.png");
    61       
    62       uint coreCount = 1;
    63       if (cpuidData.GetLength(0) > 4)
    64         coreCount = ((cpuidData[4, 0] >> 26) & 0x3F) + 1;
    65 
    66       switch (family) {
    67         case 0x06: {
    68           switch (model) {
    69             case 0x0F: // Intel Core 65nm
    70               switch (stepping) {
    71                 case 0x06: // B2
    72                   switch (coreCount) {
    73                     case 2:
    74                       tjMax = 80; break;
    75                     case 4:
    76                       tjMax = 90; break;
    77                     default:
    78                       tjMax = 85; break;
    79                   }
    80                   tjMax = 80; break;
    81                 case 0x0B: // G0
    82                   tjMax = 90; break;
    83                 case 0x0D: // M0
    84                   tjMax = 85; break;
    85                 default:
    86                   tjMax = 85; break;
    87               } break;
    88             case 0x1c: // Intel Atom 
    89               tjMax = 90; break;
    90             case 0x17: // Intel Core 45nm
    91               tjMax = 100; break;
    92             default:
    93               tjMax = 100; break;
    94           }
    95         } break;
    96         default: tjMax = 100; break;
    97       }
    98 
    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, 
   103             this);
   104 
   105       Update();                   
   106     }
   107 
   108     public string Name {
   109       get { return name; }
   110     }
   111 
   112     public string Identifier {
   113       get { return "/intelcpu/0"; }
   114     }
   115 
   116     public Image Icon {
   117       get { return icon; }
   118     }
   119 
   120     public ISensor[] Sensors {
   121       get {
   122         return coreTemperatures;
   123       }
   124     }
   125 
   126     public string GetReport() {
   127       return null;
   128     }
   129 
   130     public void Update() {
   131 
   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))) 
   136         {
   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);
   141           }
   142         }        
   143       }  
   144     }
   145 
   146     #pragma warning disable 67
   147     public event SensorEventHandler SensorAdded;
   148     public event SensorEventHandler SensorRemoved;
   149     #pragma warning restore 67
   150   }
   151 }