2010-02-01 20:16:26 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.mozilla.org/MPL/
|
|
|
|
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
for the specific language governing rights and limitations under the License.
|
|
|
|
|
|
|
|
The Original Code is the Open Hardware Monitor code.
|
|
|
|
|
|
|
|
The Initial Developer of the Original Code is
|
|
|
|
Michael Möller <m.moeller@gmx.ch>.
|
|
|
|
Portions created by the Initial Developer are Copyright (C) 2009-2010
|
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
|
|
|
Alternatively, the contents of this file may be used under the terms of
|
|
|
|
either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
of those above. If you wish to allow use of your version of this file only
|
|
|
|
under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
use your version of this file under the terms of the MPL, indicate your
|
|
|
|
decision by deleting the provisions above and replace them with the notice
|
|
|
|
and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
the provisions above, a recipient may use your version of this file under
|
|
|
|
the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2010-08-12 20:53:27 +00:00
|
|
|
using System.Globalization;
|
2010-02-01 20:16:26 +00:00
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace OpenHardwareMonitor.Hardware.LPC {
|
2010-08-08 13:57:26 +00:00
|
|
|
internal class IT87XX : ISuperIO {
|
2010-06-03 22:40:18 +00:00
|
|
|
|
2010-09-21 20:32:36 +00:00
|
|
|
private readonly ushort address;
|
|
|
|
private readonly Chip chip;
|
|
|
|
private readonly byte version;
|
2010-02-01 20:16:26 +00:00
|
|
|
|
2010-10-17 16:04:19 +00:00
|
|
|
private readonly ushort gpioAddress;
|
|
|
|
private readonly int gpioCount;
|
|
|
|
|
2010-03-09 20:35:19 +00:00
|
|
|
private readonly ushort addressReg;
|
|
|
|
private readonly ushort dataReg;
|
|
|
|
|
2010-09-21 20:32:36 +00:00
|
|
|
private readonly float?[] voltages = new float?[0];
|
|
|
|
private readonly float?[] temperatures = new float?[0];
|
|
|
|
private readonly float?[] fans = new float?[0];
|
2010-08-17 21:44:02 +00:00
|
|
|
|
|
|
|
private readonly float voltageGain;
|
2011-04-16 14:49:47 +00:00
|
|
|
private readonly bool has16bitFanCounter;
|
2010-02-01 20:16:26 +00:00
|
|
|
|
|
|
|
// Consts
|
|
|
|
private const byte ITE_VENDOR_ID = 0x90;
|
|
|
|
|
|
|
|
// Environment Controller
|
|
|
|
private const byte ADDRESS_REGISTER_OFFSET = 0x05;
|
|
|
|
private const byte DATA_REGISTER_OFFSET = 0x06;
|
|
|
|
|
|
|
|
// Environment Controller Registers
|
|
|
|
private const byte CONFIGURATION_REGISTER = 0x00;
|
|
|
|
private const byte TEMPERATURE_BASE_REG = 0x29;
|
|
|
|
private const byte VENDOR_ID_REGISTER = 0x58;
|
2011-04-16 14:49:47 +00:00
|
|
|
private const byte FAN_TACHOMETER_DIVISOR_REGISTER = 0x0B;
|
2010-09-21 20:32:36 +00:00
|
|
|
private readonly byte[] FAN_TACHOMETER_REG =
|
2010-02-01 20:16:26 +00:00
|
|
|
new byte[] { 0x0d, 0x0e, 0x0f, 0x80, 0x82 };
|
2010-09-21 20:32:36 +00:00
|
|
|
private readonly byte[] FAN_TACHOMETER_EXT_REG =
|
2010-02-01 20:16:26 +00:00
|
|
|
new byte[] { 0x18, 0x19, 0x1a, 0x81, 0x83 };
|
2010-03-09 20:35:19 +00:00
|
|
|
private const byte VOLTAGE_BASE_REG = 0x20;
|
|
|
|
|
|
|
|
private byte ReadByte(byte register, out bool valid) {
|
2010-10-31 22:08:47 +00:00
|
|
|
Ring0.WriteIoPort(addressReg, register);
|
|
|
|
byte value = Ring0.ReadIoPort(dataReg);
|
|
|
|
valid = register == Ring0.ReadIoPort(addressReg);
|
2010-03-09 20:35:19 +00:00
|
|
|
return value;
|
2010-10-17 16:04:19 +00:00
|
|
|
}
|
|
|
|
|
2011-01-20 21:31:54 +00:00
|
|
|
private bool WriteByte(byte register, byte value) {
|
|
|
|
Ring0.WriteIoPort(addressReg, register);
|
|
|
|
Ring0.WriteIoPort(dataReg, value);
|
2011-04-16 14:49:47 +00:00
|
|
|
return register == Ring0.ReadIoPort(addressReg);
|
|
|
|
}
|
2011-01-20 21:31:54 +00:00
|
|
|
|
2010-10-17 16:04:19 +00:00
|
|
|
public byte? ReadGPIO(int index) {
|
|
|
|
if (index >= gpioCount)
|
|
|
|
return null;
|
|
|
|
|
2010-10-31 22:08:47 +00:00
|
|
|
return Ring0.ReadIoPort((ushort)(gpioAddress + index));
|
2010-10-17 16:04:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void WriteGPIO(int index, byte value) {
|
|
|
|
if (index >= gpioCount)
|
|
|
|
return;
|
|
|
|
|
2010-10-31 22:08:47 +00:00
|
|
|
Ring0.WriteIoPort((ushort)(gpioAddress + index), value);
|
2010-10-17 16:04:19 +00:00
|
|
|
}
|
2010-02-01 20:16:26 +00:00
|
|
|
|
2010-10-17 16:04:19 +00:00
|
|
|
public IT87XX(Chip chip, ushort address, ushort gpioAddress, byte version) {
|
2011-04-16 14:49:47 +00:00
|
|
|
|
2010-02-01 20:16:26 +00:00
|
|
|
this.address = address;
|
2010-06-03 22:40:18 +00:00
|
|
|
this.chip = chip;
|
2010-06-28 20:39:49 +00:00
|
|
|
this.version = version;
|
2010-03-09 20:35:19 +00:00
|
|
|
this.addressReg = (ushort)(address + ADDRESS_REGISTER_OFFSET);
|
|
|
|
this.dataReg = (ushort)(address + DATA_REGISTER_OFFSET);
|
2010-10-17 16:04:19 +00:00
|
|
|
this.gpioAddress = gpioAddress;
|
|
|
|
|
2010-02-01 20:16:26 +00:00
|
|
|
// Check vendor id
|
2010-03-09 20:35:19 +00:00
|
|
|
bool valid;
|
|
|
|
byte vendorId = ReadByte(VENDOR_ID_REGISTER, out valid);
|
|
|
|
if (!valid || vendorId != ITE_VENDOR_ID)
|
2010-02-01 20:16:26 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Bit 0x10 of the configuration register should always be 1
|
2010-03-09 20:35:19 +00:00
|
|
|
if ((ReadByte(CONFIGURATION_REGISTER, out valid) & 0x10) == 0)
|
|
|
|
return;
|
|
|
|
if (!valid)
|
2010-02-01 20:16:26 +00:00
|
|
|
return;
|
|
|
|
|
2010-06-03 22:40:18 +00:00
|
|
|
voltages = new float?[9];
|
|
|
|
temperatures = new float?[3];
|
|
|
|
fans = new float?[5];
|
2010-08-17 21:44:02 +00:00
|
|
|
|
|
|
|
// The IT8721F uses a 12mV resultion ADC, all others 16mV
|
|
|
|
if (chip == Chip.IT8721F) {
|
|
|
|
voltageGain = 0.012f;
|
|
|
|
} else {
|
2011-04-16 14:49:47 +00:00
|
|
|
voltageGain = 0.016f;
|
|
|
|
}
|
|
|
|
|
|
|
|
// older IT8721F revision do not have 16-bit fan counters
|
|
|
|
if (chip == Chip.IT8712F && version < 8) {
|
|
|
|
has16bitFanCounter = false;
|
|
|
|
} else {
|
|
|
|
has16bitFanCounter = true;
|
2010-08-17 21:44:02 +00:00
|
|
|
}
|
2010-10-17 16:04:19 +00:00
|
|
|
|
|
|
|
// Set the number of GPIO sets
|
|
|
|
switch (chip) {
|
|
|
|
case Chip.IT8712F:
|
|
|
|
case Chip.IT8716F:
|
|
|
|
case Chip.IT8718F:
|
|
|
|
case Chip.IT8726F:
|
|
|
|
gpioCount = 5;
|
|
|
|
break;
|
|
|
|
case Chip.IT8720F:
|
|
|
|
case Chip.IT8721F:
|
|
|
|
gpioCount = 8;
|
|
|
|
break;
|
|
|
|
}
|
2010-02-01 20:16:26 +00:00
|
|
|
}
|
|
|
|
|
2010-06-03 22:40:18 +00:00
|
|
|
public Chip Chip { get { return chip; } }
|
|
|
|
public float?[] Voltages { get { return voltages; } }
|
|
|
|
public float?[] Temperatures { get { return temperatures; } }
|
|
|
|
public float?[] Fans { get { return fans; } }
|
2010-02-01 20:16:26 +00:00
|
|
|
|
2010-06-03 22:40:18 +00:00
|
|
|
public string GetReport() {
|
2010-02-01 20:16:26 +00:00
|
|
|
StringBuilder r = new StringBuilder();
|
|
|
|
|
2010-02-07 19:53:51 +00:00
|
|
|
r.AppendLine("LPC " + this.GetType().Name);
|
2010-02-01 20:16:26 +00:00
|
|
|
r.AppendLine();
|
|
|
|
r.Append("Chip ID: 0x"); r.AppendLine(chip.ToString("X"));
|
2010-08-12 20:53:27 +00:00
|
|
|
r.Append("Chip Version: 0x"); r.AppendLine(
|
|
|
|
version.ToString("X", CultureInfo.InvariantCulture));
|
|
|
|
r.Append("Base Address: 0x"); r.AppendLine(
|
|
|
|
address.ToString("X4", CultureInfo.InvariantCulture));
|
2010-10-17 16:04:19 +00:00
|
|
|
r.Append("GPIO Address: 0x"); r.AppendLine(
|
|
|
|
gpioAddress.ToString("X4", CultureInfo.InvariantCulture));
|
2010-02-01 20:16:26 +00:00
|
|
|
r.AppendLine();
|
2010-08-04 20:27:05 +00:00
|
|
|
|
2010-10-31 22:08:47 +00:00
|
|
|
if (!Ring0.WaitIsaBusMutex(100))
|
2010-08-04 20:27:05 +00:00
|
|
|
return r.ToString();
|
|
|
|
|
2010-02-01 20:16:26 +00:00
|
|
|
r.AppendLine("Environment Controller Registers");
|
|
|
|
r.AppendLine();
|
|
|
|
r.AppendLine(" 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F");
|
|
|
|
r.AppendLine();
|
|
|
|
for (int i = 0; i <= 0xA; i++) {
|
2010-08-12 20:53:27 +00:00
|
|
|
r.Append(" ");
|
|
|
|
r.Append((i << 4).ToString("X2", CultureInfo.InvariantCulture));
|
|
|
|
r.Append(" ");
|
2010-02-01 20:16:26 +00:00
|
|
|
for (int j = 0; j <= 0xF; j++) {
|
|
|
|
r.Append(" ");
|
2010-03-09 20:35:19 +00:00
|
|
|
bool valid;
|
|
|
|
byte value = ReadByte((byte)((i << 4) | j), out valid);
|
2010-09-21 20:32:36 +00:00
|
|
|
r.Append(
|
|
|
|
valid ? value.ToString("X2", CultureInfo.InvariantCulture) : "??");
|
2010-02-01 20:16:26 +00:00
|
|
|
}
|
|
|
|
r.AppendLine();
|
|
|
|
}
|
|
|
|
r.AppendLine();
|
|
|
|
|
2010-10-17 16:04:19 +00:00
|
|
|
r.AppendLine("GPIO Registers");
|
|
|
|
r.AppendLine();
|
|
|
|
for (int i = 0; i < gpioCount; i++) {
|
|
|
|
r.Append(" ");
|
|
|
|
r.Append(ReadGPIO(i).Value.ToString("X2",
|
|
|
|
CultureInfo.InvariantCulture));
|
|
|
|
}
|
|
|
|
r.AppendLine();
|
|
|
|
r.AppendLine();
|
|
|
|
|
2010-10-31 22:08:47 +00:00
|
|
|
Ring0.ReleaseIsaBusMutex();
|
2010-08-04 20:27:05 +00:00
|
|
|
|
2010-02-01 20:16:26 +00:00
|
|
|
return r.ToString();
|
|
|
|
}
|
|
|
|
|
2010-06-03 22:40:18 +00:00
|
|
|
public void Update() {
|
2010-10-31 22:08:47 +00:00
|
|
|
if (!Ring0.WaitIsaBusMutex(10))
|
2010-08-04 20:27:05 +00:00
|
|
|
return;
|
2010-02-01 20:16:26 +00:00
|
|
|
|
2010-06-03 22:40:18 +00:00
|
|
|
for (int i = 0; i < voltages.Length; i++) {
|
2010-03-09 20:35:19 +00:00
|
|
|
bool valid;
|
2010-08-17 21:44:02 +00:00
|
|
|
|
|
|
|
float value =
|
|
|
|
voltageGain * ReadByte((byte)(VOLTAGE_BASE_REG + i), out valid);
|
|
|
|
|
2010-03-09 20:35:19 +00:00
|
|
|
if (!valid)
|
|
|
|
continue;
|
2010-05-24 15:27:46 +00:00
|
|
|
if (value > 0)
|
2010-06-03 22:40:18 +00:00
|
|
|
voltages[i] = value;
|
|
|
|
else
|
|
|
|
voltages[i] = null;
|
2010-02-01 20:16:26 +00:00
|
|
|
}
|
|
|
|
|
2010-06-03 22:40:18 +00:00
|
|
|
for (int i = 0; i < temperatures.Length; i++) {
|
2010-03-09 20:35:19 +00:00
|
|
|
bool valid;
|
|
|
|
sbyte value = (sbyte)ReadByte(
|
2010-06-03 22:40:18 +00:00
|
|
|
(byte)(TEMPERATURE_BASE_REG + i), out valid);
|
2010-03-09 20:35:19 +00:00
|
|
|
if (!valid)
|
|
|
|
continue;
|
|
|
|
|
2010-02-01 20:16:26 +00:00
|
|
|
if (value < sbyte.MaxValue && value > 0)
|
2010-06-03 22:40:18 +00:00
|
|
|
temperatures[i] = value;
|
|
|
|
else
|
|
|
|
temperatures[i] = null;
|
2010-02-01 20:16:26 +00:00
|
|
|
}
|
|
|
|
|
2011-04-16 14:49:47 +00:00
|
|
|
if (has16bitFanCounter) {
|
|
|
|
for (int i = 0; i < fans.Length; i++) {
|
|
|
|
bool valid;
|
|
|
|
int value = ReadByte(FAN_TACHOMETER_REG[i], out valid);
|
|
|
|
if (!valid)
|
|
|
|
continue;
|
|
|
|
value |= ReadByte(FAN_TACHOMETER_EXT_REG[i], out valid) << 8;
|
|
|
|
if (!valid)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (value > 0x3f) {
|
|
|
|
fans[i] = (value < 0xffff) ? 1.35e6f / (value * 2) : 0;
|
|
|
|
} else {
|
|
|
|
fans[i] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (int i = 0; i < fans.Length; i++) {
|
|
|
|
bool valid;
|
|
|
|
int value = ReadByte(FAN_TACHOMETER_REG[i], out valid);
|
|
|
|
if (!valid)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int divisor = 2;
|
|
|
|
if (i < 2) {
|
|
|
|
int divisors = ReadByte(FAN_TACHOMETER_DIVISOR_REGISTER, out valid);
|
|
|
|
if (!valid)
|
|
|
|
continue;
|
|
|
|
divisor = 1 << ((divisors >> (3 * i)) & 0x7);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value > 0) {
|
|
|
|
fans[i] = (value < 0xff) ? 1.35e6f / (value * divisor) : 0;
|
|
|
|
} else {
|
|
|
|
fans[i] = null;
|
|
|
|
}
|
2010-02-01 20:16:26 +00:00
|
|
|
}
|
2010-08-04 20:27:05 +00:00
|
|
|
}
|
|
|
|
|
2010-10-31 22:08:47 +00:00
|
|
|
Ring0.ReleaseIsaBusMutex();
|
2010-05-24 15:27:46 +00:00
|
|
|
}
|
2010-06-03 22:40:18 +00:00
|
|
|
}
|
2010-02-01 20:16:26 +00:00
|
|
|
}
|