Hardware/CPU/IntelCPU.cs
author moel.mich
Sun, 09 Jun 2013 16:10:43 +0000
changeset 396 c7e2a6aa4f96
parent 350 6de77245e32b
child 417 4865cf06a7fa
permissions -rw-r--r--
Added experimental support for Intel Haswell CPUs.
moel@1
     1
/*
moel@1
     2
 
moel@344
     3
  This Source Code Form is subject to the terms of the Mozilla Public
moel@344
     4
  License, v. 2.0. If a copy of the MPL was not distributed with this
moel@344
     5
  file, You can obtain one at http://mozilla.org/MPL/2.0/.
moel@1
     6
 
moel@396
     7
  Copyright (C) 2009-2013 Michael Möller <mmoeller@openhardwaremonitor.org>
moel@344
     8
	
moel@1
     9
*/
moel@1
    10
moel@1
    11
using System;
moel@219
    12
using System.Globalization;
moel@219
    13
using System.Text;
moel@1
    14
moel@1
    15
namespace OpenHardwareMonitor.Hardware.CPU {
moel@191
    16
  internal sealed class IntelCPU : GenericCPU {
moel@46
    17
moel@219
    18
    private enum Microarchitecture {
moel@219
    19
      Unknown,
moel@264
    20
      NetBurst,
moel@219
    21
      Core,
moel@219
    22
      Atom,
moel@249
    23
      Nehalem,
moel@350
    24
      SandyBridge,
moel@396
    25
      IvyBridge,
moel@396
    26
      Haswell
moel@219
    27
    }
moel@219
    28
moel@195
    29
    private readonly Sensor[] coreTemperatures;
moel@306
    30
    private readonly Sensor packageTemperature;
moel@195
    31
    private readonly Sensor[] coreClocks;
moel@195
    32
    private readonly Sensor busClock;
moel@321
    33
    private readonly Sensor[] powerSensors;
moel@63
    34
moel@219
    35
    private readonly Microarchitecture microarchitecture;
moel@219
    36
    private readonly double timeStampCounterMultiplier;
moel@79
    37
moel@1
    38
    private const uint IA32_THERM_STATUS_MSR = 0x019C;
moel@4
    39
    private const uint IA32_TEMPERATURE_TARGET = 0x01A2;
moel@44
    40
    private const uint IA32_PERF_STATUS = 0x0198;
moel@46
    41
    private const uint MSR_PLATFORM_INFO = 0xCE;
moel@306
    42
    private const uint IA32_PACKAGE_THERM_STATUS = 0x1B1;
moel@317
    43
    private const uint MSR_RAPL_POWER_UNIT = 0x606;
moel@317
    44
    private const uint MSR_PKG_ENERY_STATUS = 0x611;
moel@321
    45
    private const uint MSR_DRAM_ENERGY_STATUS = 0x619;
moel@317
    46
    private const uint MSR_PP0_ENERY_STATUS = 0x639;
moel@320
    47
    private const uint MSR_PP1_ENERY_STATUS = 0x641;
moel@317
    48
moel@321
    49
    private readonly uint[] energyStatusMSRs = { MSR_PKG_ENERY_STATUS, 
moel@321
    50
      MSR_PP0_ENERY_STATUS, MSR_PP1_ENERY_STATUS, MSR_DRAM_ENERGY_STATUS };
moel@321
    51
    private readonly string[] powerSensorLabels = 
moel@321
    52
      { "CPU Package", "CPU Cores", "CPU Graphics", "CPU DRAM" };
moel@317
    53
    private float energyUnitMultiplier = 0;
moel@321
    54
    private DateTime[] lastEnergyTime;
moel@321
    55
    private uint[] lastEnergyConsumed;
moel@317
    56
moel@1
    57
moel@69
    58
    private float[] Floats(float f) {
moel@69
    59
      float[] result = new float[coreCount];
moel@69
    60
      for (int i = 0; i < coreCount; i++)
moel@69
    61
        result[i] = f;
moel@69
    62
      return result;
moel@69
    63
    }
moel@69
    64
moel@249
    65
    private float[] GetTjMaxFromMSR() {
moel@249
    66
      uint eax, edx;
moel@249
    67
      float[] result = new float[coreCount];
moel@249
    68
      for (int i = 0; i < coreCount; i++) {
moel@249
    69
        if (Ring0.RdmsrTx(IA32_TEMPERATURE_TARGET, out eax,
moel@249
    70
          out edx, 1UL << cpuid[i][0].Thread)) {
moel@249
    71
          result[i] = (eax >> 16) & 0xFF;
moel@249
    72
        } else {
moel@249
    73
          result[i] = 100;
moel@249
    74
        }
moel@249
    75
      }
moel@249
    76
      return result;
moel@249
    77
    }
moel@249
    78
moel@191
    79
    public IntelCPU(int processorIndex, CPUID[][] cpuid, ISettings settings)
moel@321
    80
      : base(processorIndex, cpuid, settings) {
moel@219
    81
      // set tjMax
moel@69
    82
      float[] tjMax;
moel@49
    83
      switch (family) {
moel@49
    84
        case 0x06: {
moel@49
    85
            switch (model) {
moel@219
    86
              case 0x0F: // Intel Core 2 (65nm)
moel@219
    87
                microarchitecture = Microarchitecture.Core;
moel@49
    88
                switch (stepping) {
moel@49
    89
                  case 0x06: // B2
moel@49
    90
                    switch (coreCount) {
moel@49
    91
                      case 2:
moel@69
    92
                        tjMax = Floats(80 + 10); break;
moel@49
    93
                      case 4:
moel@69
    94
                        tjMax = Floats(90 + 10); break;
moel@49
    95
                      default:
moel@69
    96
                        tjMax = Floats(85 + 10); break;
moel@49
    97
                    }
moel@69
    98
                    tjMax = Floats(80 + 10); break;
moel@49
    99
                  case 0x0B: // G0
moel@69
   100
                    tjMax = Floats(90 + 10); break;
moel@49
   101
                  case 0x0D: // M0
moel@69
   102
                    tjMax = Floats(85 + 10); break;
moel@49
   103
                  default:
moel@69
   104
                    tjMax = Floats(85 + 10); break;
moel@49
   105
                } break;
moel@219
   106
              case 0x17: // Intel Core 2 (45nm)
moel@219
   107
                microarchitecture = Microarchitecture.Core;
moel@69
   108
                tjMax = Floats(100); break;
moel@114
   109
              case 0x1C: // Intel Atom (45nm)
moel@219
   110
                microarchitecture = Microarchitecture.Atom;
moel@114
   111
                switch (stepping) {
moel@114
   112
                  case 0x02: // C0
moel@114
   113
                    tjMax = Floats(90); break;
moel@114
   114
                  case 0x0A: // A0, B0
moel@114
   115
                    tjMax = Floats(100); break;
moel@114
   116
                  default:
moel@114
   117
                    tjMax = Floats(90); break;
moel@191
   118
                } break;
moel@49
   119
              case 0x1A: // Intel Core i7 LGA1366 (45nm)
moel@49
   120
              case 0x1E: // Intel Core i5, i7 LGA1156 (45nm)
moel@249
   121
              case 0x1F: // Intel Core i5, i7 
moel@49
   122
              case 0x25: // Intel Core i3, i5, i7 LGA1156 (32nm)
moel@91
   123
              case 0x2C: // Intel Core i7 LGA1366 (32nm) 6 Core
moel@350
   124
              case 0x2E: // Intel Xeon Processor 7500 series (45nm)
moel@350
   125
              case 0x2F: // Intel Xeon Processor (32nm)
moel@219
   126
                microarchitecture = Microarchitecture.Nehalem;
moel@249
   127
                tjMax = GetTjMaxFromMSR();
moel@249
   128
                break;
moel@249
   129
              case 0x2A: // Intel Core i5, i7 2xxx LGA1155 (32nm)
moel@350
   130
              case 0x2D: // Next Generation Intel Xeon, i7 3xxx LGA2011 (32nm)
moel@249
   131
                microarchitecture = Microarchitecture.SandyBridge;
moel@249
   132
                tjMax = GetTjMaxFromMSR();
moel@49
   133
                break;
moel@350
   134
              case 0x3A: // Intel Core i5, i7 3xxx LGA1155 (22nm)
moel@350
   135
                microarchitecture = Microarchitecture.IvyBridge;
moel@350
   136
                tjMax = GetTjMaxFromMSR();
moel@350
   137
                break;
moel@396
   138
              case 0x3C: // Intel Core i5, i7 4xxx LGA1150 (22nm)
moel@396
   139
              case 0x45:
moel@396
   140
              case 0x46:
moel@396
   141
                microarchitecture = Microarchitecture.Haswell;
moel@396
   142
                tjMax = GetTjMaxFromMSR();
moel@396
   143
                break;
moel@49
   144
              default:
moel@219
   145
                microarchitecture = Microarchitecture.Unknown;
moel@321
   146
                tjMax = Floats(100);
moel@219
   147
                break;
moel@49
   148
            }
moel@49
   149
          } break;
moel@264
   150
        case 0x0F: {
moel@264
   151
            switch (model) {
moel@264
   152
              case 0x00: // Pentium 4 (180nm)
moel@264
   153
              case 0x01: // Pentium 4 (130nm)
moel@264
   154
              case 0x02: // Pentium 4 (130nm)
moel@264
   155
              case 0x03: // Pentium 4, Celeron D (90nm)
moel@264
   156
              case 0x04: // Pentium 4, Pentium D, Celeron D (90nm)
moel@264
   157
              case 0x06: // Pentium 4, Pentium D, Celeron D (65nm)
moel@264
   158
                microarchitecture = Microarchitecture.NetBurst;
moel@321
   159
                tjMax = Floats(100);
moel@264
   160
                break;
moel@264
   161
              default:
moel@264
   162
                microarchitecture = Microarchitecture.Unknown;
moel@264
   163
                tjMax = Floats(100);
moel@264
   164
                break;
moel@264
   165
            }
moel@264
   166
          } break;
moel@219
   167
        default:
moel@219
   168
          microarchitecture = Microarchitecture.Unknown;
moel@321
   169
          tjMax = Floats(100);
moel@219
   170
          break;
moel@219
   171
      }
moel@219
   172
moel@219
   173
      // set timeStampCounterMultiplier
moel@219
   174
      switch (microarchitecture) {
moel@264
   175
        case Microarchitecture.NetBurst:
moel@219
   176
        case Microarchitecture.Atom:
moel@219
   177
        case Microarchitecture.Core: {
moel@219
   178
            uint eax, edx;
moel@236
   179
            if (Ring0.Rdmsr(IA32_PERF_STATUS, out eax, out edx)) {
moel@321
   180
              timeStampCounterMultiplier =
moel@219
   181
                ((edx >> 8) & 0x1f) + 0.5 * ((edx >> 14) & 1);
moel@219
   182
            }
moel@219
   183
          } break;
moel@321
   184
        case Microarchitecture.Nehalem:
moel@350
   185
        case Microarchitecture.SandyBridge:
moel@396
   186
        case Microarchitecture.IvyBridge:
moel@396
   187
        case Microarchitecture.Haswell: {
moel@219
   188
            uint eax, edx;
moel@236
   189
            if (Ring0.Rdmsr(MSR_PLATFORM_INFO, out eax, out edx)) {
moel@219
   190
              timeStampCounterMultiplier = (eax >> 8) & 0xff;
moel@219
   191
            }
moel@219
   192
          } break;
moel@350
   193
        default: 
moel@350
   194
          timeStampCounterMultiplier = 0;
moel@350
   195
          break;
moel@49
   196
      }
moel@1
   197
moel@306
   198
      // check if processor supports a digital thermal sensor at core level
moel@191
   199
      if (cpuid[0][0].Data.GetLength(0) > 6 &&
moel@350
   200
        (cpuid[0][0].Data[6, 0] & 1) != 0 && 
moel@350
   201
        microarchitecture != Microarchitecture.Unknown) 
moel@350
   202
      {
moel@44
   203
        coreTemperatures = new Sensor[coreCount];
moel@44
   204
        for (int i = 0; i < coreTemperatures.Length; i++) {
moel@134
   205
          coreTemperatures[i] = new Sensor(CoreString(i), i,
moel@321
   206
            SensorType.Temperature, this, new[] { 
moel@63
   207
              new ParameterDescription(
moel@306
   208
                "TjMax [°C]", "TjMax temperature of the core sensor.\n" + 
moel@69
   209
                "Temperature = TjMax - TSlope * Value.", tjMax[i]), 
moel@122
   210
              new ParameterDescription("TSlope [°C]", 
moel@122
   211
                "Temperature slope of the digital thermal sensor.\n" + 
moel@165
   212
                "Temperature = TjMax - TSlope * Value.", 1)}, settings);
moel@155
   213
          ActivateSensor(coreTemperatures[i]);
moel@44
   214
        }
moel@44
   215
      } else {
moel@44
   216
        coreTemperatures = new Sensor[0];
moel@1
   217
      }
moel@49
   218
moel@306
   219
      // check if processor supports a digital thermal sensor at package level
moel@306
   220
      if (cpuid[0][0].Data.GetLength(0) > 6 &&
moel@350
   221
        (cpuid[0][0].Data[6, 0] & 0x40) != 0 && 
moel@350
   222
        microarchitecture != Microarchitecture.Unknown) 
moel@350
   223
      {
moel@321
   224
        packageTemperature = new Sensor("CPU Package",
moel@321
   225
          coreTemperatures.Length, SensorType.Temperature, this, new[] { 
moel@306
   226
              new ParameterDescription(
moel@306
   227
                "TjMax [°C]", "TjMax temperature of the package sensor.\n" + 
moel@306
   228
                "Temperature = TjMax - TSlope * Value.", tjMax[0]), 
moel@306
   229
              new ParameterDescription("TSlope [°C]", 
moel@306
   230
                "Temperature slope of the digital thermal sensor.\n" + 
moel@306
   231
                "Temperature = TjMax - TSlope * Value.", 1)}, settings);
moel@306
   232
        ActivateSensor(packageTemperature);
moel@321
   233
      }
moel@306
   234
moel@191
   235
      busClock = new Sensor("Bus Speed", 0, SensorType.Clock, this, settings);
moel@44
   236
      coreClocks = new Sensor[coreCount];
moel@44
   237
      for (int i = 0; i < coreClocks.Length; i++) {
moel@49
   238
        coreClocks[i] =
moel@165
   239
          new Sensor(CoreString(i), i + 1, SensorType.Clock, this, settings);
moel@350
   240
        if (HasTimeStampCounter && microarchitecture != Microarchitecture.Unknown)
moel@79
   241
          ActivateSensor(coreClocks[i]);
moel@44
   242
      }
moel@191
   243
moel@350
   244
      if (microarchitecture == Microarchitecture.SandyBridge ||
moel@396
   245
          microarchitecture == Microarchitecture.IvyBridge ||
moel@396
   246
          microarchitecture == Microarchitecture.Haswell) 
moel@350
   247
      {
moel@321
   248
        powerSensors = new Sensor[energyStatusMSRs.Length];
moel@321
   249
        lastEnergyTime = new DateTime[energyStatusMSRs.Length];
moel@321
   250
        lastEnergyConsumed = new uint[energyStatusMSRs.Length];
moel@321
   251
moel@317
   252
        uint eax, edx;
moel@317
   253
        if (Ring0.Rdmsr(MSR_RAPL_POWER_UNIT, out eax, out edx))
moel@317
   254
          energyUnitMultiplier = 1.0f / (1 << (int)((eax >> 8) & 0x1FF));
moel@317
   255
moel@321
   256
        if (energyUnitMultiplier != 0) {
moel@321
   257
          for (int i = 0; i < energyStatusMSRs.Length; i++) {
moel@321
   258
            if (!Ring0.Rdmsr(energyStatusMSRs[i], out eax, out edx))
moel@321
   259
              continue;
moel@317
   260
moel@321
   261
            lastEnergyTime[i] = DateTime.UtcNow;
moel@321
   262
            lastEnergyConsumed[i] = eax;
moel@321
   263
            powerSensors[i] = new Sensor(powerSensorLabels[i], i,
moel@321
   264
              SensorType.Power, this, settings);
moel@321
   265
            ActivateSensor(powerSensors[i]);
moel@321
   266
          }
moel@317
   267
        }
moel@317
   268
      }
moel@317
   269
moel@191
   270
      Update();
moel@1
   271
    }
moel@1
   272
moel@191
   273
    protected override uint[] GetMSRs() {
moel@321
   274
      return new[] {
moel@191
   275
        MSR_PLATFORM_INFO,
moel@191
   276
        IA32_PERF_STATUS ,
moel@191
   277
        IA32_THERM_STATUS_MSR,
moel@306
   278
        IA32_TEMPERATURE_TARGET,
moel@317
   279
        IA32_PACKAGE_THERM_STATUS,
moel@317
   280
        MSR_RAPL_POWER_UNIT,
moel@317
   281
        MSR_PKG_ENERY_STATUS,
moel@321
   282
        MSR_DRAM_ENERGY_STATUS,
moel@320
   283
        MSR_PP0_ENERY_STATUS,
moel@320
   284
        MSR_PP1_ENERY_STATUS
moel@191
   285
      };
moel@1
   286
    }
moel@1
   287
moel@219
   288
    public override string GetReport() {
moel@219
   289
      StringBuilder r = new StringBuilder();
moel@219
   290
      r.Append(base.GetReport());
moel@219
   291
moel@264
   292
      r.Append("Microarchitecture: ");
moel@264
   293
      r.AppendLine(microarchitecture.ToString());
moel@219
   294
      r.Append("Time Stamp Counter Multiplier: ");
moel@219
   295
      r.AppendLine(timeStampCounterMultiplier.ToString(
moel@219
   296
        CultureInfo.InvariantCulture));
moel@219
   297
      r.AppendLine();
moel@219
   298
moel@219
   299
      return r.ToString();
moel@219
   300
    }
moel@219
   301
moel@191
   302
    public override void Update() {
moel@191
   303
      base.Update();
moel@1
   304
moel@1
   305
      for (int i = 0; i < coreTemperatures.Length; i++) {
moel@46
   306
        uint eax, edx;
moel@236
   307
        if (Ring0.RdmsrTx(
moel@191
   308
          IA32_THERM_STATUS_MSR, out eax, out edx,
moel@238
   309
            1UL << cpuid[i][0].Thread)) {
moel@1
   310
          // if reading is valid
moel@1
   311
          if ((eax & 0x80000000) != 0) {
moel@1
   312
            // get the dist from tjMax from bits 22:16
moel@63
   313
            float deltaT = ((eax & 0x007F0000) >> 16);
moel@63
   314
            float tjMax = coreTemperatures[i].Parameters[0].Value;
moel@63
   315
            float tSlope = coreTemperatures[i].Parameters[1].Value;
moel@63
   316
            coreTemperatures[i].Value = tjMax - tSlope * deltaT;
moel@24
   317
          } else {
moel@155
   318
            coreTemperatures[i].Value = null;
moel@1
   319
          }
moel@79
   320
        }
moel@24
   321
      }
moel@24
   322
moel@306
   323
      if (packageTemperature != null) {
moel@306
   324
        uint eax, edx;
moel@306
   325
        if (Ring0.RdmsrTx(
moel@315
   326
          IA32_PACKAGE_THERM_STATUS, out eax, out edx,
moel@306
   327
            1UL << cpuid[0][0].Thread)) {
moel@306
   328
          // get the dist from tjMax from bits 22:16
moel@306
   329
          float deltaT = ((eax & 0x007F0000) >> 16);
moel@306
   330
          float tjMax = packageTemperature.Parameters[0].Value;
moel@306
   331
          float tSlope = packageTemperature.Parameters[1].Value;
moel@306
   332
          packageTemperature.Value = tjMax - tSlope * deltaT;
moel@306
   333
        } else {
moel@306
   334
          packageTemperature.Value = null;
moel@306
   335
        }
moel@306
   336
      }
moel@306
   337
moel@350
   338
      if (HasTimeStampCounter && timeStampCounterMultiplier > 0) {
moel@191
   339
        double newBusClock = 0;
moel@191
   340
        uint eax, edx;
moel@191
   341
        for (int i = 0; i < coreClocks.Length; i++) {
moel@191
   342
          System.Threading.Thread.Sleep(1);
moel@236
   343
          if (Ring0.RdmsrTx(IA32_PERF_STATUS, out eax, out edx,
moel@321
   344
            1UL << cpuid[i][0].Thread)) {
moel@321
   345
            newBusClock =
moel@219
   346
              TimeStampCounterFrequency / timeStampCounterMultiplier;
moel@250
   347
            switch (microarchitecture) {
moel@250
   348
              case Microarchitecture.Nehalem: {
moel@250
   349
                  uint multiplier = eax & 0xff;
moel@250
   350
                  coreClocks[i].Value = (float)(multiplier * newBusClock);
moel@250
   351
                } break;
moel@350
   352
              case Microarchitecture.SandyBridge:
moel@396
   353
              case Microarchitecture.IvyBridge:
moel@396
   354
              case Microarchitecture.Haswell: {
moel@250
   355
                  uint multiplier = (eax >> 8) & 0xff;
moel@250
   356
                  coreClocks[i].Value = (float)(multiplier * newBusClock);
moel@250
   357
                } break;
moel@250
   358
              default: {
moel@321
   359
                  double multiplier =
moel@250
   360
                    ((eax >> 8) & 0x1f) + 0.5 * ((eax >> 14) & 1);
moel@250
   361
                  coreClocks[i].Value = (float)(multiplier * newBusClock);
moel@250
   362
                } break;
moel@321
   363
            }
moel@321
   364
          } else {
moel@201
   365
            // if IA32_PERF_STATUS is not available, assume TSC frequency
moel@201
   366
            coreClocks[i].Value = (float)TimeStampCounterFrequency;
moel@46
   367
          }
moel@44
   368
        }
moel@191
   369
        if (newBusClock > 0) {
moel@191
   370
          this.busClock.Value = (float)newBusClock;
moel@191
   371
          ActivateSensor(this.busClock);
moel@191
   372
        }
moel@44
   373
      }
moel@317
   374
moel@321
   375
      if (powerSensors != null) {
moel@321
   376
        foreach (Sensor sensor in powerSensors) {
moel@321
   377
          if (sensor == null)
moel@321
   378
            continue;
moel@317
   379
moel@321
   380
          uint eax, edx;
moel@321
   381
          if (!Ring0.Rdmsr(energyStatusMSRs[sensor.Index], out eax, out edx))
moel@321
   382
            continue;
moel@317
   383
moel@317
   384
          DateTime time = DateTime.UtcNow;
moel@317
   385
          uint energyConsumed = eax;
moel@321
   386
          float deltaTime =
moel@321
   387
            (float)(time - lastEnergyTime[sensor.Index]).TotalSeconds;
moel@321
   388
          if (deltaTime < 0.01)
moel@321
   389
            continue;
moel@321
   390
moel@321
   391
          sensor.Value = energyUnitMultiplier * unchecked(
moel@321
   392
            energyConsumed - lastEnergyConsumed[sensor.Index]) / deltaTime;
moel@321
   393
          lastEnergyTime[sensor.Index] = time;
moel@321
   394
          lastEnergyConsumed[sensor.Index] = energyConsumed;
moel@317
   395
        }
moel@317
   396
      }
moel@46
   397
    }
moel@191
   398
  }
moel@1
   399
}