Hardware/CPU/GenericCPU.cs
author moel.mich
Sat, 30 Apr 2011 16:03:58 +0000
changeset 275 35788ddd1825
parent 266 2687ac753d90
child 279 6bce967ba1b5
permissions -rw-r--r--
Fixed Issue 199.
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@266
    19
  Portions created by the Initial Developer are Copyright (C) 2010-2011
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@236
    42
using System.Runtime.InteropServices;
moel@191
    43
using System.Text;
moel@191
    44
using System.Threading;
moel@191
    45
moel@191
    46
namespace OpenHardwareMonitor.Hardware.CPU {
moel@195
    47
  internal class GenericCPU : Hardware {
moel@191
    48
moel@191
    49
    protected readonly CPUID[][] cpuid;
moel@191
    50
   
moel@191
    51
    protected readonly uint family;
moel@191
    52
    protected readonly uint model;
moel@191
    53
    protected readonly uint stepping;
moel@191
    54
moel@191
    55
    protected readonly int processorIndex;
moel@191
    56
    protected readonly int coreCount;
moel@191
    57
moel@236
    58
    private readonly bool hasModelSpecificRegisters;
moel@236
    59
moel@201
    60
    private readonly bool hasTimeStampCounter;
moel@201
    61
    private readonly bool isInvariantTimeStampCounter;
moel@201
    62
    private readonly double estimatedTimeStampCounterFrequency;
moel@191
    63
moel@191
    64
    private ulong lastTimeStampCount;
moel@191
    65
    private long lastTime;
moel@201
    66
    private double timeStampCounterFrequency;    
moel@191
    67
moel@195
    68
    private readonly Vendor vendor;
moel@191
    69
moel@191
    70
    private readonly CPULoad cpuLoad;
moel@191
    71
    private readonly Sensor totalLoad;
moel@191
    72
    private readonly Sensor[] coreLoads;
moel@191
    73
moel@191
    74
    protected string CoreString(int i) {
moel@191
    75
      if (coreCount == 1)
moel@191
    76
        return "CPU Core";
moel@191
    77
      else
moel@191
    78
        return "CPU Core #" + (i + 1);
moel@191
    79
    }
moel@191
    80
moel@275
    81
    public GenericCPU(int processorIndex, CPUID[][] cpuid, ISettings settings)
moel@275
    82
      : base(cpuid[0][0].Name, CreateIdentifier(cpuid[0][0].Vendor, 
moel@275
    83
      processorIndex), settings)
moel@275
    84
    {
moel@191
    85
      this.cpuid = cpuid;
moel@191
    86
moel@191
    87
      this.vendor = cpuid[0][0].Vendor;
moel@191
    88
moel@191
    89
      this.family = cpuid[0][0].Family;
moel@191
    90
      this.model = cpuid[0][0].Model;
moel@191
    91
      this.stepping = cpuid[0][0].Stepping;
moel@191
    92
moel@191
    93
      this.processorIndex = processorIndex;
moel@275
    94
      this.coreCount = cpuid.Length;  
moel@236
    95
  
moel@236
    96
      // check if processor has MSRs
moel@236
    97
      if (cpuid[0][0].Data.GetLength(0) > 1
moel@236
    98
        && (cpuid[0][0].Data[1, 3] & 0x20) != 0)
moel@236
    99
        hasModelSpecificRegisters = true;
moel@236
   100
      else
moel@236
   101
        hasModelSpecificRegisters = false;
moel@191
   102
moel@201
   103
      // check if processor has a TSC
moel@191
   104
      if (cpuid[0][0].Data.GetLength(0) > 1
moel@191
   105
        && (cpuid[0][0].Data[1, 3] & 0x10) != 0)
moel@201
   106
        hasTimeStampCounter = true;
moel@191
   107
      else
moel@201
   108
        hasTimeStampCounter = false;
moel@191
   109
moel@201
   110
      // check if processor supports an invariant TSC 
moel@191
   111
      if (cpuid[0][0].ExtData.GetLength(0) > 7
moel@191
   112
        && (cpuid[0][0].ExtData[7, 3] & 0x100) != 0)
moel@201
   113
        isInvariantTimeStampCounter = true;
moel@191
   114
      else
moel@201
   115
        isInvariantTimeStampCounter = false;
moel@191
   116
moel@191
   117
      if (coreCount > 1)
moel@191
   118
        totalLoad = new Sensor("CPU Total", 0, SensorType.Load, this, settings);
moel@191
   119
      else
moel@191
   120
        totalLoad = null;
moel@191
   121
      coreLoads = new Sensor[coreCount];
moel@191
   122
      for (int i = 0; i < coreLoads.Length; i++)
moel@191
   123
        coreLoads[i] = new Sensor(CoreString(i), i + 1,
moel@191
   124
          SensorType.Load, this, settings);
moel@191
   125
      cpuLoad = new CPULoad(cpuid);
moel@191
   126
      if (cpuLoad.IsAvailable) {
moel@191
   127
        foreach (Sensor sensor in coreLoads)
moel@191
   128
          ActivateSensor(sensor);
moel@191
   129
        if (totalLoad != null)
moel@191
   130
          ActivateSensor(totalLoad);
moel@191
   131
      }
moel@191
   132
moel@203
   133
      if (hasTimeStampCounter) {
moel@238
   134
        ulong mask = ThreadAffinity.Set(1UL << cpuid[0][0].Thread);
moel@238
   135
        
moel@203
   136
        estimatedTimeStampCounterFrequency = 
moel@238
   137
          EstimateTimeStampCounterFrequency();  
moel@238
   138
        
moel@238
   139
        ThreadAffinity.Set(mask);
moel@203
   140
      } else {
moel@201
   141
        estimatedTimeStampCounterFrequency = 0;
moel@203
   142
      }
moel@203
   143
moel@203
   144
      timeStampCounterFrequency = estimatedTimeStampCounterFrequency;                  
moel@191
   145
    }
moel@191
   146
moel@275
   147
    private static Identifier CreateIdentifier(Vendor vendor,
moel@275
   148
      int processorIndex) 
moel@275
   149
    {
moel@275
   150
      string s;
moel@275
   151
      switch (vendor) {
moel@275
   152
        case Vendor.AMD: s = "amdcpu"; break;
moel@275
   153
        case Vendor.Intel: s = "intelcpu"; break;
moel@275
   154
        default: s = "genericcpu"; break;
moel@275
   155
      }
moel@275
   156
      return new Identifier(s,
moel@275
   157
        processorIndex.ToString(CultureInfo.InvariantCulture));
moel@275
   158
    }
moel@275
   159
moel@238
   160
    private static double EstimateTimeStampCounterFrequency() {           
moel@191
   161
      // preload the function
moel@201
   162
      EstimateTimeStampCounterFrequency(0);
moel@201
   163
      EstimateTimeStampCounterFrequency(0);
moel@191
   164
moel@201
   165
      // estimate the frequency in MHz      
moel@201
   166
      List<double> estimatedFrequency = new List<double>(3);
moel@191
   167
      for (int i = 0; i < 3; i++)
moel@201
   168
        estimatedFrequency.Add(1e-6 * EstimateTimeStampCounterFrequency(0.025));
moel@238
   169
                 
moel@201
   170
      estimatedFrequency.Sort();
moel@201
   171
      return estimatedFrequency[1];
moel@191
   172
    }
moel@191
   173
moel@201
   174
    private static double EstimateTimeStampCounterFrequency(double timeWindow) {
moel@191
   175
      long ticks = (long)(timeWindow * Stopwatch.Frequency);
moel@236
   176
      ulong countBegin, countEnd;
moel@191
   177
moel@191
   178
      long timeBegin = Stopwatch.GetTimestamp() +
moel@191
   179
        (long)Math.Ceiling(0.001 * ticks);
moel@191
   180
      long timeEnd = timeBegin + ticks;
moel@191
   181
      while (Stopwatch.GetTimestamp() < timeBegin) { }
moel@236
   182
      countBegin = Opcode.Rdtsc();
moel@191
   183
      while (Stopwatch.GetTimestamp() < timeEnd) { }
moel@236
   184
      countEnd = Opcode.Rdtsc();
moel@191
   185
moel@191
   186
      return (((double)(countEnd - countBegin)) * Stopwatch.Frequency) /
moel@191
   187
        (timeEnd - timeBegin);
moel@191
   188
    }
moel@191
   189
moel@236
   190
moel@191
   191
    private static void AppendMSRData(StringBuilder r, uint msr, int thread) {
moel@191
   192
      uint eax, edx;
moel@238
   193
      if (Ring0.RdmsrTx(msr, out eax, out edx, 1UL << thread)) {
moel@191
   194
        r.Append(" ");
moel@191
   195
        r.Append((msr).ToString("X8", CultureInfo.InvariantCulture));
moel@191
   196
        r.Append("  ");
moel@191
   197
        r.Append((edx).ToString("X8", CultureInfo.InvariantCulture));
moel@191
   198
        r.Append("  ");
moel@191
   199
        r.Append((eax).ToString("X8", CultureInfo.InvariantCulture));
moel@191
   200
        r.AppendLine();
moel@191
   201
      }
moel@191
   202
    }
moel@191
   203
moel@191
   204
    protected virtual uint[] GetMSRs() {
moel@191
   205
      return null;
moel@191
   206
    }
moel@191
   207
moel@191
   208
    public override string GetReport() {
moel@191
   209
      StringBuilder r = new StringBuilder();
moel@191
   210
moel@191
   211
      switch (vendor) {
moel@195
   212
        case Vendor.AMD: r.AppendLine("AMD CPU"); break;
moel@191
   213
        case Vendor.Intel: r.AppendLine("Intel CPU"); break;
moel@191
   214
        default: r.AppendLine("Generic CPU"); break;
moel@191
   215
      }
moel@191
   216
moel@191
   217
      r.AppendLine();
moel@191
   218
      r.AppendFormat("Name: {0}{1}", name, Environment.NewLine);
moel@191
   219
      r.AppendFormat("Number of Cores: {0}{1}", coreCount,
moel@191
   220
        Environment.NewLine);
moel@191
   221
      r.AppendFormat("Threads per Core: {0}{1}", cpuid[0].Length,
moel@191
   222
        Environment.NewLine);
moel@191
   223
      r.AppendLine(string.Format(CultureInfo.InvariantCulture,
moel@191
   224
        "Timer Frequency: {0} MHz", Stopwatch.Frequency * 1e-6));
moel@201
   225
      r.AppendLine("Time Stamp Counter: " + (hasTimeStampCounter ? (
moel@201
   226
        isInvariantTimeStampCounter ? "Invariant" : "Not Invariant") : "None"));
moel@191
   227
      r.AppendLine(string.Format(CultureInfo.InvariantCulture,
moel@201
   228
        "Time Stamp Counter Frequency: {0} MHz",
moel@201
   229
        Math.Round(timeStampCounterFrequency * 100) * 0.01));   
moel@191
   230
      r.AppendLine();
moel@191
   231
moel@191
   232
      uint[] msrArray = GetMSRs();
moel@191
   233
      if (msrArray != null && msrArray.Length > 0) {
moel@191
   234
        for (int i = 0; i < cpuid.Length; i++) {
moel@191
   235
          r.AppendLine("MSR Core #" + (i + 1));
moel@191
   236
          r.AppendLine();
moel@191
   237
          r.AppendLine(" MSR       EDX       EAX");
moel@191
   238
          foreach (uint msr in msrArray)
moel@191
   239
            AppendMSRData(r, msr, cpuid[i][0].Thread);
moel@191
   240
          r.AppendLine();
moel@191
   241
        }
moel@191
   242
      }
moel@191
   243
moel@191
   244
      return r.ToString();
moel@191
   245
    }
moel@191
   246
moel@191
   247
    public override HardwareType HardwareType {
moel@191
   248
      get { return HardwareType.CPU; }
moel@191
   249
    }
moel@191
   250
moel@236
   251
    public bool HasModelSpecificRegisters {
moel@236
   252
      get { return hasModelSpecificRegisters; }
moel@236
   253
    }
moel@236
   254
moel@201
   255
    public bool HasTimeStampCounter {
moel@201
   256
      get { return hasTimeStampCounter; }
moel@201
   257
    }
moel@201
   258
moel@201
   259
    public double TimeStampCounterFrequency {
moel@201
   260
      get { return timeStampCounterFrequency; }
moel@191
   261
    }
moel@191
   262
moel@191
   263
    public override void Update() {
moel@222
   264
      if (hasTimeStampCounter && isInvariantTimeStampCounter) {
moel@236
   265
moel@236
   266
        // make sure always the same thread is used
moel@238
   267
        ulong mask = ThreadAffinity.Set(1UL << cpuid[0][0].Thread);
moel@222
   268
moel@222
   269
        // read time before and after getting the TSC to estimate the error
moel@222
   270
        long firstTime = Stopwatch.GetTimestamp();
moel@236
   271
        ulong timeStampCount = Opcode.Rdtsc();
moel@191
   272
        long time = Stopwatch.GetTimestamp();
moel@222
   273
moel@236
   274
        // restore the thread affinity mask
moel@238
   275
        ThreadAffinity.Set(mask);
moel@236
   276
moel@191
   277
        double delta = ((double)(time - lastTime)) / Stopwatch.Frequency;
moel@222
   278
        double error = ((double)(time - firstTime)) / Stopwatch.Frequency;
moel@222
   279
moel@222
   280
        // only use data if they are measured accuarte enough (max 0.1ms delay)
moel@222
   281
        if (error < 0.0001) {
moel@222
   282
moel@222
   283
          // ignore the first reading because there are no initial values 
moel@222
   284
          // ignore readings with too large or too small time window
moel@222
   285
          if (lastTime != 0 && delta > 0.5 && delta < 2) {
moel@222
   286
moel@222
   287
            // update the TSC frequency with the new value
moel@222
   288
            timeStampCounterFrequency =
moel@201
   289
              (timeStampCount - lastTimeStampCount) / (1e6 * delta);
moel@222
   290
          }
moel@191
   291
moel@191
   292
          lastTimeStampCount = timeStampCount;
moel@191
   293
          lastTime = time;
moel@191
   294
        }        
moel@191
   295
      }
moel@191
   296
moel@191
   297
      if (cpuLoad.IsAvailable) {
moel@191
   298
        cpuLoad.Update();
moel@191
   299
        for (int i = 0; i < coreLoads.Length; i++)
moel@191
   300
          coreLoads[i].Value = cpuLoad.GetCoreLoad(i);
moel@191
   301
        if (totalLoad != null)
moel@191
   302
          totalLoad.Value = cpuLoad.GetTotalLoad();
moel@191
   303
      }
moel@191
   304
    }
moel@266
   305
moel@266
   306
    public virtual void Close() {
moel@266
   307
moel@266
   308
    }
moel@191
   309
  }
moel@191
   310
}