Hardware/LPC/LPCGroup.cs
author moel.mich
Mon, 01 Feb 2010 20:16:26 +0000
changeset 16 e9abdc6e05af
parent 13 d32fc5f2e822
child 19 890e8fca7f33
permissions -rw-r--r--
Added support for Fintek F71862, F71869, F71889.
moel@1
     1
/*
moel@1
     2
  
moel@1
     3
  Version: MPL 1.1/GPL 2.0/LGPL 2.1
moel@1
     4
moel@1
     5
  The contents of this file are subject to the Mozilla Public License Version
moel@1
     6
  1.1 (the "License"); you may not use this file except in compliance with
moel@1
     7
  the License. You may obtain a copy of the License at
moel@1
     8
 
moel@1
     9
  http://www.mozilla.org/MPL/
moel@1
    10
moel@1
    11
  Software distributed under the License is distributed on an "AS IS" basis,
moel@1
    12
  WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
moel@1
    13
  for the specific language governing rights and limitations under the License.
moel@1
    14
moel@1
    15
  The Original Code is the Open Hardware Monitor code.
moel@1
    16
moel@1
    17
  The Initial Developer of the Original Code is 
moel@1
    18
  Michael Möller <m.moeller@gmx.ch>.
moel@1
    19
  Portions created by the Initial Developer are Copyright (C) 2009-2010
moel@1
    20
  the Initial Developer. All Rights Reserved.
moel@1
    21
moel@1
    22
  Contributor(s):
moel@1
    23
moel@1
    24
  Alternatively, the contents of this file may be used under the terms of
moel@1
    25
  either the GNU General Public License Version 2 or later (the "GPL"), or
moel@1
    26
  the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
moel@1
    27
  in which case the provisions of the GPL or the LGPL are applicable instead
moel@1
    28
  of those above. If you wish to allow use of your version of this file only
moel@1
    29
  under the terms of either the GPL or the LGPL, and not to allow others to
moel@1
    30
  use your version of this file under the terms of the MPL, indicate your
moel@1
    31
  decision by deleting the provisions above and replace them with the notice
moel@1
    32
  and other provisions required by the GPL or the LGPL. If you do not delete
moel@1
    33
  the provisions above, a recipient may use your version of this file under
moel@1
    34
  the terms of any one of the MPL, the GPL or the LGPL.
moel@1
    35
 
moel@1
    36
*/
moel@1
    37
moel@1
    38
using System;
moel@1
    39
using System.Collections.Generic;
moel@1
    40
using System.Text;
moel@1
    41
using System.Threading;
moel@1
    42
moel@1
    43
namespace OpenHardwareMonitor.Hardware.LPC {
moel@1
    44
  public class LPCGroup : IGroup {
moel@1
    45
    private List<IHardware> hardware = new List<IHardware>();
moel@1
    46
moel@1
    47
    private Chip chip = Chip.Unknown;
moel@1
    48
moel@1
    49
    // I/O Ports
moel@7
    50
    private ushort[] REGISTER_PORTS = new ushort[] { 0x2e, 0x4e };
moel@7
    51
    private ushort[] VALUE_PORTS = new ushort[] { 0x2f, 0x4f };
moel@7
    52
moel@7
    53
    private ushort registerPort;
moel@7
    54
    private ushort valuePort;
moel@1
    55
moel@1
    56
    // Registers
moel@1
    57
    private const byte CONFIGURATION_CONTROL_REGISTER = 0x02;
moel@1
    58
    private const byte DEVCIE_SELECT_REGISTER = 0x07;
moel@1
    59
    private const byte CHIP_ID_REGISTER = 0x20;
moel@1
    60
    private const byte CHIP_REVISION_REGISTER = 0x21;
moel@7
    61
    private const byte BASE_ADDRESS_REGISTER = 0x60;
moel@1
    62
moel@7
    63
    private byte ReadByte(byte register) {
moel@7
    64
      WinRing0.WriteIoPortByte(registerPort, register);
moel@7
    65
      return WinRing0.ReadIoPortByte(valuePort);
moel@13
    66
    } 
moel@1
    67
moel@7
    68
    private ushort ReadWord(byte register) {
moel@7
    69
      return (ushort)((ReadByte(register) << 8) | 
moel@7
    70
        ReadByte((byte)(register + 1)));
moel@1
    71
    }
moel@1
    72
moel@7
    73
    private void Select(byte logicalDeviceNumber) {
moel@7
    74
      WinRing0.WriteIoPortByte(registerPort, DEVCIE_SELECT_REGISTER);
moel@7
    75
      WinRing0.WriteIoPortByte(valuePort, logicalDeviceNumber);
moel@1
    76
    }
moel@1
    77
moel@7
    78
    private const byte IT87_ENVIRONMENT_CONTROLLER_LDN = 0x04;    
moel@1
    79
moel@7
    80
    private void IT87Enter() {
moel@7
    81
      WinRing0.WriteIoPortByte(registerPort, 0x87);
moel@7
    82
      WinRing0.WriteIoPortByte(registerPort, 0x01);
moel@7
    83
      WinRing0.WriteIoPortByte(registerPort, 0x55);
moel@7
    84
      WinRing0.WriteIoPortByte(registerPort, 0x55);
moel@1
    85
    }
moel@1
    86
moel@7
    87
    internal void IT87Exit() {
moel@7
    88
      WinRing0.WriteIoPortByte(registerPort, CONFIGURATION_CONTROL_REGISTER);
moel@7
    89
      WinRing0.WriteIoPortByte(valuePort, 0x02);
moel@1
    90
    }
moel@1
    91
moel@7
    92
    // Winbond, Fintek
moel@7
    93
    private const byte FINTEK_VENDOR_ID_REGISTER = 0x23;
moel@7
    94
    private const ushort FINTEK_VENDOR_ID = 0x1934;
moel@7
    95
moel@7
    96
    private const byte W83627DHG_HARDWARE_MONITOR_LDN = 0x0B;
moel@16
    97
moel@16
    98
    private const byte F71858_HARDWARE_MONITOR_LDN = 0x02;
moel@16
    99
    private const byte FINTEK_HARDWARE_MONITOR_LDN = 0x04;
moel@7
   100
moel@7
   101
    private void WinbondFintekEnter() {
moel@7
   102
      WinRing0.WriteIoPortByte(registerPort, 0x87);
moel@7
   103
      WinRing0.WriteIoPortByte(registerPort, 0x87);
moel@1
   104
    }
moel@1
   105
moel@7
   106
    private void WinbondFintekExit() {
moel@7
   107
      WinRing0.WriteIoPortByte(registerPort, 0xAA);      
moel@1
   108
    }
moel@1
   109
moel@1
   110
    public LPCGroup() {
moel@1
   111
      if (!WinRing0.IsAvailable)
moel@1
   112
        return;
moel@1
   113
moel@7
   114
      for (int i = 0; i < REGISTER_PORTS.Length; i++) {
moel@7
   115
        registerPort = REGISTER_PORTS[i];
moel@7
   116
        valuePort = VALUE_PORTS[i];
moel@1
   117
moel@7
   118
        WinbondFintekEnter();
moel@1
   119
moel@16
   120
        byte logicalDeviceNumber;
moel@7
   121
        byte id = ReadByte(CHIP_ID_REGISTER);
moel@7
   122
        byte revision = ReadByte(CHIP_REVISION_REGISTER);
moel@7
   123
        switch (id) {
moel@16
   124
          case 0x05:
moel@16
   125
            switch (revision) {
moel@16
   126
              case 0x41:
moel@16
   127
                chip = Chip.F71882;
moel@16
   128
                logicalDeviceNumber = FINTEK_HARDWARE_MONITOR_LDN;
moel@16
   129
                break;
moel@16
   130
              default:
moel@16
   131
                chip = Chip.Unknown;
moel@16
   132
                logicalDeviceNumber = 0;
moel@16
   133
                break;
moel@16
   134
            } break;
moel@16
   135
          case 0x06:
moel@16
   136
            switch (revision) {             
moel@16
   137
              case 0x01:
moel@16
   138
                chip = Chip.F71862;
moel@16
   139
                logicalDeviceNumber = FINTEK_HARDWARE_MONITOR_LDN;
moel@16
   140
                break;
moel@16
   141
              default:
moel@16
   142
                chip = Chip.Unknown;
moel@16
   143
                logicalDeviceNumber = 0;
moel@16
   144
                break;
moel@16
   145
            } break;
moel@16
   146
          case 0x07:
moel@16
   147
            switch (revision) {
moel@16
   148
              case 0x23:
moel@16
   149
                chip = Chip.F71889;
moel@16
   150
                logicalDeviceNumber = FINTEK_HARDWARE_MONITOR_LDN;
moel@16
   151
                break;
moel@16
   152
              default:
moel@16
   153
                chip = Chip.Unknown;
moel@16
   154
                logicalDeviceNumber = 0;
moel@16
   155
                break;
moel@16
   156
            } break;
moel@16
   157
          case 0x08:
moel@16
   158
            switch (revision) {
moel@16
   159
              case 0x14:
moel@16
   160
                chip = Chip.F71869;
moel@16
   161
                logicalDeviceNumber = FINTEK_HARDWARE_MONITOR_LDN;
moel@16
   162
                break;
moel@16
   163
              default:
moel@16
   164
                chip = Chip.Unknown;
moel@16
   165
                logicalDeviceNumber = 0;
moel@16
   166
                break;
moel@16
   167
            } break;
moel@7
   168
          case 0xA0:
moel@7
   169
            switch (revision & 0xF0) {
moel@7
   170
              case 0x20: 
moel@7
   171
                chip = Chip.W83627DHG;
moel@16
   172
                logicalDeviceNumber = W83627DHG_HARDWARE_MONITOR_LDN;  
moel@7
   173
                break;
moel@7
   174
              default: 
moel@7
   175
                chip = Chip.Unknown;
moel@16
   176
                logicalDeviceNumber = 0;
moel@7
   177
                break;
moel@16
   178
            } break;          
moel@7
   179
          default:
moel@7
   180
            chip = Chip.Unknown; 
moel@16
   181
            logicalDeviceNumber = 0;
moel@7
   182
            break;
moel@7
   183
        }
moel@7
   184
        if (chip != Chip.Unknown) {
moel@1
   185
moel@16
   186
          Select(logicalDeviceNumber);
moel@7
   187
          ushort address = ReadWord(BASE_ADDRESS_REGISTER);
moel@7
   188
          Thread.Sleep(1);
moel@7
   189
          ushort verify = ReadWord(BASE_ADDRESS_REGISTER);
moel@1
   190
moel@7
   191
          ushort vendorID = 0;
moel@16
   192
          if (chip == Chip.F71862 || chip == Chip.F71882 || chip == Chip.F71889)
moel@7
   193
            vendorID = ReadWord(FINTEK_VENDOR_ID_REGISTER);
moel@1
   194
moel@7
   195
          WinbondFintekExit();
moel@1
   196
moel@7
   197
          if (address != verify || address == 0 || (address & 0xF007) != 0)
moel@7
   198
            return;
moel@7
   199
          
moel@7
   200
          switch (chip) {
moel@7
   201
            case Chip.W83627DHG:
moel@7
   202
              W83627DHG w83627dhg = new W83627DHG(revision, address);
moel@7
   203
              if (w83627dhg.IsAvailable)
moel@7
   204
                hardware.Add(w83627dhg);
moel@7
   205
              break;
moel@16
   206
            case Chip.F71862:
moel@16
   207
            case Chip.F71882:
moel@16
   208
            case Chip.F71889: 
moel@7
   209
              if (vendorID == FINTEK_VENDOR_ID)
moel@16
   210
                hardware.Add(new F718XX(chip, address));
moel@16
   211
              break;
moel@16
   212
            case Chip.F71869:
moel@16
   213
              hardware.Add(new F718XX(chip, address));
moel@7
   214
              break;
moel@7
   215
            default: break;
moel@7
   216
          }
moel@7
   217
          
moel@7
   218
          return;
moel@7
   219
        }
moel@1
   220
moel@7
   221
        IT87Enter();
moel@1
   222
moel@7
   223
        switch (ReadWord(CHIP_ID_REGISTER)) {
moel@16
   224
          case 0x8716: chip = Chip.IT8716; break;
moel@16
   225
          case 0x8718: chip = Chip.IT8718; break;
moel@16
   226
          case 0x8720: chip = Chip.IT8720; break;
moel@16
   227
          case 0x8726: chip = Chip.IT8726; break;
moel@7
   228
          default: chip = Chip.Unknown; break;
moel@7
   229
        }
moel@7
   230
moel@7
   231
        if (chip != Chip.Unknown) {
moel@7
   232
          Select(IT87_ENVIRONMENT_CONTROLLER_LDN);
moel@7
   233
          ushort address = ReadWord(BASE_ADDRESS_REGISTER);
moel@7
   234
          Thread.Sleep(1);
moel@7
   235
          ushort verify = ReadWord(BASE_ADDRESS_REGISTER);
moel@7
   236
moel@7
   237
          IT87Exit();
moel@7
   238
moel@7
   239
          if (address != verify || address == 0 || (address & 0xF007) != 0)
moel@7
   240
            return;
moel@7
   241
moel@16
   242
          IT87XX it87 = new IT87XX(chip, address);
moel@7
   243
          if (it87.IsAvailable)
moel@7
   244
            hardware.Add(it87);
moel@7
   245
moel@1
   246
          return;
moel@7
   247
        }
moel@7
   248
      }   
moel@1
   249
    }
moel@1
   250
moel@1
   251
    public IHardware[] Hardware {
moel@1
   252
      get {
moel@1
   253
        return hardware.ToArray();
moel@1
   254
      }
moel@1
   255
    }
moel@1
   256
moel@1
   257
    public string GetReport() {
moel@1
   258
      return null;
moel@1
   259
    }
moel@1
   260
moel@1
   261
    public void Close() { }
moel@1
   262
  }
moel@1
   263
}