Hardware/LPC/Chip.cs
author moel.mich
Tue, 09 Mar 2010 22:27:10 +0000
changeset 79 9cdbe1d8d12a
parent 67 bb5696abab23
child 93 99fbbbf50357
permissions -rw-r--r--
Changed the CPU clock calculation. If no invariant TSC is available, then the max CPU clock is estimated at startup under load, otherwise an average over one second is used.
moel@1
     1

moel@1
     2
using System;
moel@1
     3
using System.Collections.Generic;
moel@1
     4
using System.Text;
moel@1
     5
moel@1
     6
namespace OpenHardwareMonitor.Hardware.LPC {
moel@1
     7
moel@1
     8
  public enum Chip : ushort {
moel@1
     9
    Unknown = 0,
moel@21
    10
    IT8716F = 0x8716,
moel@21
    11
    IT8718F = 0x8718,
moel@21
    12
    IT8720F = 0x8720,
moel@21
    13
    IT8726F = 0x8726,
moel@7
    14
    W83627DHG = 0xA020,
moel@19
    15
    W83627DHGP = 0xB070,
moel@54
    16
    W83627EHF = 0x8860,    
moel@31
    17
    W83627HF = 0x5200,
moel@54
    18
    W83627THF = 0x8283,
moel@34
    19
    W83667HG = 0xA510,
moel@34
    20
    W83667HGB = 0xB350,
moel@67
    21
    W83687THF = 0x8541,
moel@68
    22
    F71858 = 0x0507,
moel@16
    23
    F71862 = 0x0601, 
moel@16
    24
    F71869 = 0x0814,
moel@16
    25
    F71882 = 0x0541,
moel@16
    26
    F71889 = 0x0723 
moel@1
    27
  }
moel@1
    28
moel@1
    29
}