Hardware/CPU/GenericCPU.cs
author moel.mich
Tue, 21 Sep 2010 20:32:36 +0000
changeset 195 0ee888c485d5
parent 191 6545fa3ae298
child 201 958e9fe8afdf
permissions -rw-r--r--
Refactored some of the hardware monitoring code and fixed a few code inspection warnings.
moel@191
     1
/*
moel@191
     2
  
moel@191
     3
  Version: MPL 1.1/GPL 2.0/LGPL 2.1
moel@191
     4
moel@191
     5
  The contents of this file are subject to the Mozilla Public License Version
moel@191
     6
  1.1 (the "License"); you may not use this file except in compliance with
moel@191
     7
  the License. You may obtain a copy of the License at
moel@191
     8
 
moel@191
     9
  http://www.mozilla.org/MPL/
moel@191
    10
moel@191
    11
  Software distributed under the License is distributed on an "AS IS" basis,
moel@191
    12
  WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
moel@191
    13
  for the specific language governing rights and limitations under the License.
moel@191
    14
moel@191
    15
  The Original Code is the Open Hardware Monitor code.
moel@191
    16
moel@191
    17
  The Initial Developer of the Original Code is 
moel@191
    18
  Michael Möller <m.moeller@gmx.ch>.
moel@191
    19
  Portions created by the Initial Developer are Copyright (C) 2010
moel@191
    20
  the Initial Developer. All Rights Reserved.
moel@191
    21
moel@191
    22
  Contributor(s):
moel@191
    23
moel@191
    24
  Alternatively, the contents of this file may be used under the terms of
moel@191
    25
  either the GNU General Public License Version 2 or later (the "GPL"), or
moel@191
    26
  the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
moel@191
    27
  in which case the provisions of the GPL or the LGPL are applicable instead
moel@191
    28
  of those above. If you wish to allow use of your version of this file only
moel@191
    29
  under the terms of either the GPL or the LGPL, and not to allow others to
moel@191
    30
  use your version of this file under the terms of the MPL, indicate your
moel@191
    31
  decision by deleting the provisions above and replace them with the notice
moel@191
    32
  and other provisions required by the GPL or the LGPL. If you do not delete
moel@191
    33
  the provisions above, a recipient may use your version of this file under
moel@191
    34
  the terms of any one of the MPL, the GPL or the LGPL.
moel@191
    35
 
moel@191
    36
*/
moel@191
    37
moel@191
    38
using System;
moel@191
    39
using System.Collections.Generic;
moel@191
    40
using System.Diagnostics;
moel@191
    41
using System.Globalization;
moel@191
    42
using System.Text;
moel@191
    43
using System.Threading;
moel@191
    44
moel@191
    45
namespace OpenHardwareMonitor.Hardware.CPU {
moel@195
    46
  internal class GenericCPU : Hardware {
moel@191
    47
moel@191
    48
    protected readonly CPUID[][] cpuid;
moel@191
    49
   
moel@191
    50
    protected readonly uint family;
moel@191
    51
    protected readonly uint model;
moel@191
    52
    protected readonly uint stepping;
moel@191
    53
moel@191
    54
    protected readonly int processorIndex;
moel@191
    55
    protected readonly int coreCount;
moel@191
    56
    protected readonly string name;
moel@191
    57
moel@191
    58
    protected readonly bool hasTSC;
moel@191
    59
    protected readonly bool invariantTSC;
moel@195
    60
    private readonly double estimatedMaxClock;
moel@191
    61
moel@191
    62
    private ulong lastTimeStampCount;
moel@191
    63
    private long lastTime;
moel@195
    64
    private double maxClock;    
moel@191
    65
moel@195
    66
    private readonly Vendor vendor;
moel@191
    67
moel@191
    68
    private readonly CPULoad cpuLoad;
moel@191
    69
    private readonly Sensor totalLoad;
moel@191
    70
    private readonly Sensor[] coreLoads;
moel@191
    71
moel@191
    72
    protected string CoreString(int i) {
moel@191
    73
      if (coreCount == 1)
moel@191
    74
        return "CPU Core";
moel@191
    75
      else
moel@191
    76
        return "CPU Core #" + (i + 1);
moel@191
    77
    }
moel@191
    78
moel@191
    79
    public GenericCPU(int processorIndex, CPUID[][] cpuid, ISettings settings) {
moel@191
    80
      this.cpuid = cpuid;
moel@191
    81
moel@191
    82
      this.vendor = cpuid[0][0].Vendor;
moel@191
    83
moel@191
    84
      this.family = cpuid[0][0].Family;
moel@191
    85
      this.model = cpuid[0][0].Model;
moel@191
    86
      this.stepping = cpuid[0][0].Stepping;
moel@191
    87
moel@191
    88
      this.processorIndex = processorIndex;
moel@191
    89
      this.coreCount = cpuid.Length;
moel@191
    90
      this.name = cpuid[0][0].Name;      
moel@191
    91
moel@191
    92
      // check if processor has TSC
moel@191
    93
      if (cpuid[0][0].Data.GetLength(0) > 1
moel@191
    94
        && (cpuid[0][0].Data[1, 3] & 0x10) != 0)
moel@191
    95
        hasTSC = true;
moel@191
    96
      else
moel@191
    97
        hasTSC = false;
moel@191
    98
moel@191
    99
      // check if processor supports invariant TSC 
moel@191
   100
      if (cpuid[0][0].ExtData.GetLength(0) > 7
moel@191
   101
        && (cpuid[0][0].ExtData[7, 3] & 0x100) != 0)
moel@191
   102
        invariantTSC = true;
moel@191
   103
      else
moel@191
   104
        invariantTSC = false;
moel@191
   105
moel@191
   106
      if (coreCount > 1)
moel@191
   107
        totalLoad = new Sensor("CPU Total", 0, SensorType.Load, this, settings);
moel@191
   108
      else
moel@191
   109
        totalLoad = null;
moel@191
   110
      coreLoads = new Sensor[coreCount];
moel@191
   111
      for (int i = 0; i < coreLoads.Length; i++)
moel@191
   112
        coreLoads[i] = new Sensor(CoreString(i), i + 1,
moel@191
   113
          SensorType.Load, this, settings);
moel@191
   114
      cpuLoad = new CPULoad(cpuid);
moel@191
   115
      if (cpuLoad.IsAvailable) {
moel@191
   116
        foreach (Sensor sensor in coreLoads)
moel@191
   117
          ActivateSensor(sensor);
moel@191
   118
        if (totalLoad != null)
moel@191
   119
          ActivateSensor(totalLoad);
moel@191
   120
      }
moel@191
   121
moel@191
   122
      if (hasTSC)
moel@191
   123
        estimatedMaxClock = EstimateMaxClock();
moel@191
   124
      else
moel@191
   125
        estimatedMaxClock = 0;
moel@191
   126
      maxClock = estimatedMaxClock;
moel@191
   127
moel@191
   128
      lastTimeStampCount = 0;
moel@191
   129
      lastTime = 0;
moel@191
   130
    }
moel@191
   131
moel@195
   132
    private static double EstimateMaxClock() {
moel@191
   133
      // preload the function
moel@191
   134
      EstimateMaxClock(0);
moel@191
   135
      EstimateMaxClock(0);
moel@191
   136
moel@191
   137
      // estimate the max clock in MHz      
moel@191
   138
      List<double> estimatedMaxClocks = new List<double>(3);
moel@191
   139
      for (int i = 0; i < 3; i++)
moel@191
   140
        estimatedMaxClocks.Add(1e-6 * EstimateMaxClock(0.025));
moel@191
   141
      estimatedMaxClocks.Sort();
moel@191
   142
      return estimatedMaxClocks[1];
moel@191
   143
    }
moel@191
   144
moel@191
   145
    private static double EstimateMaxClock(double timeWindow) {
moel@191
   146
      long ticks = (long)(timeWindow * Stopwatch.Frequency);
moel@191
   147
      uint lsbBegin, msbBegin, lsbEnd, msbEnd;
moel@191
   148
moel@191
   149
      Thread.BeginThreadAffinity();
moel@191
   150
      long timeBegin = Stopwatch.GetTimestamp() +
moel@191
   151
        (long)Math.Ceiling(0.001 * ticks);
moel@191
   152
      long timeEnd = timeBegin + ticks;
moel@191
   153
      while (Stopwatch.GetTimestamp() < timeBegin) { }
moel@191
   154
      WinRing0.Rdtsc(out lsbBegin, out msbBegin);
moel@191
   155
      while (Stopwatch.GetTimestamp() < timeEnd) { }
moel@191
   156
      WinRing0.Rdtsc(out lsbEnd, out msbEnd);
moel@191
   157
      Thread.EndThreadAffinity();
moel@191
   158
moel@191
   159
      ulong countBegin = ((ulong)msbBegin << 32) | lsbBegin;
moel@191
   160
      ulong countEnd = ((ulong)msbEnd << 32) | lsbEnd;
moel@191
   161
moel@191
   162
      return (((double)(countEnd - countBegin)) * Stopwatch.Frequency) /
moel@191
   163
        (timeEnd - timeBegin);
moel@191
   164
    }
moel@191
   165
moel@191
   166
    private static void AppendMSRData(StringBuilder r, uint msr, int thread) {
moel@191
   167
      uint eax, edx;
moel@191
   168
      if (WinRing0.RdmsrTx(msr, out eax, out edx, (UIntPtr)(1L << thread))) {
moel@191
   169
        r.Append(" ");
moel@191
   170
        r.Append((msr).ToString("X8", CultureInfo.InvariantCulture));
moel@191
   171
        r.Append("  ");
moel@191
   172
        r.Append((edx).ToString("X8", CultureInfo.InvariantCulture));
moel@191
   173
        r.Append("  ");
moel@191
   174
        r.Append((eax).ToString("X8", CultureInfo.InvariantCulture));
moel@191
   175
        r.AppendLine();
moel@191
   176
      }
moel@191
   177
    }
moel@191
   178
moel@191
   179
    protected virtual uint[] GetMSRs() {
moel@191
   180
      return null;
moel@191
   181
    }
moel@191
   182
moel@191
   183
    public override string GetReport() {
moel@191
   184
      StringBuilder r = new StringBuilder();
moel@191
   185
moel@191
   186
      switch (vendor) {
moel@195
   187
        case Vendor.AMD: r.AppendLine("AMD CPU"); break;
moel@191
   188
        case Vendor.Intel: r.AppendLine("Intel CPU"); break;
moel@191
   189
        default: r.AppendLine("Generic CPU"); break;
moel@191
   190
      }
moel@191
   191
moel@191
   192
      r.AppendLine();
moel@191
   193
      r.AppendFormat("Name: {0}{1}", name, Environment.NewLine);
moel@191
   194
      r.AppendFormat("Number of Cores: {0}{1}", coreCount,
moel@191
   195
        Environment.NewLine);
moel@191
   196
      r.AppendFormat("Threads per Core: {0}{1}", cpuid[0].Length,
moel@191
   197
        Environment.NewLine);
moel@191
   198
      r.AppendLine("TSC: " +
moel@191
   199
        (hasTSC ? (invariantTSC ? "Invariant" : "Not Invariant") : "None"));
moel@191
   200
      r.AppendLine(string.Format(CultureInfo.InvariantCulture,
moel@191
   201
        "Timer Frequency: {0} MHz", Stopwatch.Frequency * 1e-6));
moel@191
   202
      r.AppendLine(string.Format(CultureInfo.InvariantCulture,
moel@191
   203
        "Max Clock: {0} MHz", Math.Round(maxClock * 100) * 0.01));
moel@191
   204
      r.AppendLine();
moel@191
   205
moel@191
   206
      uint[] msrArray = GetMSRs();
moel@191
   207
      if (msrArray != null && msrArray.Length > 0) {
moel@191
   208
        for (int i = 0; i < cpuid.Length; i++) {
moel@191
   209
          r.AppendLine("MSR Core #" + (i + 1));
moel@191
   210
          r.AppendLine();
moel@191
   211
          r.AppendLine(" MSR       EDX       EAX");
moel@191
   212
          foreach (uint msr in msrArray)
moel@191
   213
            AppendMSRData(r, msr, cpuid[i][0].Thread);
moel@191
   214
          r.AppendLine();
moel@191
   215
        }
moel@191
   216
      }
moel@191
   217
moel@191
   218
      return r.ToString();
moel@191
   219
    }
moel@191
   220
moel@191
   221
    public override Identifier Identifier {
moel@191
   222
      get {
moel@191
   223
        string s;
moel@191
   224
        switch (vendor) {
moel@191
   225
          case Vendor.AMD: s = "amdcpu"; break;
moel@191
   226
          case Vendor.Intel: s = "intelcpu"; break;
moel@191
   227
          default: s = "genericcpu"; break;
moel@191
   228
        }
moel@191
   229
        return new Identifier(s, 
moel@191
   230
          processorIndex.ToString(CultureInfo.InvariantCulture));
moel@191
   231
      }
moel@191
   232
    }
moel@191
   233
moel@191
   234
    public override string Name {
moel@191
   235
      get { return name; }
moel@191
   236
    }
moel@191
   237
moel@191
   238
    public override HardwareType HardwareType {
moel@191
   239
      get { return HardwareType.CPU; }
moel@191
   240
    }
moel@191
   241
moel@191
   242
    protected double MaxClock {
moel@191
   243
      get { return maxClock; }
moel@191
   244
    }
moel@191
   245
moel@191
   246
    public override void Update() {
moel@191
   247
      if (hasTSC) {
moel@191
   248
        uint lsb, msb;
moel@191
   249
        WinRing0.RdtscTx(out lsb, out msb, (UIntPtr)1);
moel@191
   250
        long time = Stopwatch.GetTimestamp();
moel@191
   251
        ulong timeStampCount = ((ulong)msb << 32) | lsb;
moel@191
   252
        double delta = ((double)(time - lastTime)) / Stopwatch.Frequency;
moel@191
   253
        if (delta > 0.5) {
moel@191
   254
          if (invariantTSC)
moel@191
   255
            maxClock = (timeStampCount - lastTimeStampCount) / (1e6 * delta);
moel@191
   256
          else
moel@191
   257
            maxClock = estimatedMaxClock;
moel@191
   258
moel@191
   259
          lastTimeStampCount = timeStampCount;
moel@191
   260
          lastTime = time;
moel@191
   261
        }        
moel@191
   262
      }
moel@191
   263
moel@191
   264
      if (cpuLoad.IsAvailable) {
moel@191
   265
        cpuLoad.Update();
moel@191
   266
        for (int i = 0; i < coreLoads.Length; i++)
moel@191
   267
          coreLoads[i].Value = cpuLoad.GetCoreLoad(i);
moel@191
   268
        if (totalLoad != null)
moel@191
   269
          totalLoad.Value = cpuLoad.GetTotalLoad();
moel@191
   270
      }
moel@191
   271
    }
moel@191
   272
  }
moel@191
   273
}