Modified and extended version of the patch v4 by Roland Reinl (see Issue 256). Main differences to the original patch: DeviceIoControl refactorings removed, SmartAttribute is now descriptive only and does not hold any state, report is written as one 80 columns table, sensors are created only for meaningful values and without duplicates (remaining life, temperatures, host writes and reads). Also the current implementation should really preserve all the functionality of the old system. Additionally there is now a simple SMART devices emulation class (DebugSmart) that can be used in place of WindowsSmart for testing with reported data.
3 Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 The contents of this file are subject to the Mozilla Public License Version
6 1.1 (the "License"); you may not use this file except in compliance with
7 the License. You may obtain a copy of the License at
9 http://www.mozilla.org/MPL/
11 Software distributed under the License is distributed on an "AS IS" basis,
12 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 for the specific language governing rights and limitations under the License.
15 The Original Code is the Open Hardware Monitor code.
17 The Initial Developer of the Original Code is
18 Michael Möller <m.moeller@gmx.ch>.
19 Portions created by the Initial Developer are Copyright (C) 2009-2011
20 the Initial Developer. All Rights Reserved.
24 Alternatively, the contents of this file may be used under the terms of
25 either the GNU General Public License Version 2 or later (the "GPL"), or
26 the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 in which case the provisions of the GPL or the LGPL are applicable instead
28 of those above. If you wish to allow use of your version of this file only
29 under the terms of either the GPL or the LGPL, and not to allow others to
30 use your version of this file under the terms of the MPL, indicate your
31 decision by deleting the provisions above and replace them with the notice
32 and other provisions required by the GPL or the LGPL. If you do not delete
33 the provisions above, a recipient may use your version of this file under
34 the terms of any one of the MPL, the GPL or the LGPL.
38 using System.Globalization;
41 namespace OpenHardwareMonitor.Hardware.LPC {
42 internal class F718XX : ISuperIO {
44 private readonly ushort address;
45 private readonly Chip chip;
47 private readonly float?[] voltages;
48 private readonly float?[] temperatures;
49 private readonly float?[] fans;
50 private readonly float?[] controls;
53 private const byte ADDRESS_REGISTER_OFFSET = 0x05;
54 private const byte DATA_REGISTER_OFFSET = 0x06;
56 // Hardware Monitor Registers
57 private const byte VOLTAGE_BASE_REG = 0x20;
58 private const byte TEMPERATURE_CONFIG_REG = 0x69;
59 private const byte TEMPERATURE_BASE_REG = 0x70;
60 private readonly byte[] FAN_TACHOMETER_REG =
61 new byte[] { 0xA0, 0xB0, 0xC0, 0xD0 };
63 private byte ReadByte(byte register) {
65 (ushort)(address + ADDRESS_REGISTER_OFFSET), register);
66 return Ring0.ReadIoPort((ushort)(address + DATA_REGISTER_OFFSET));
69 public byte? ReadGPIO(int index) {
73 public void WriteGPIO(int index, byte value) { }
75 public void SetControl(int index, byte? value) { }
77 public F718XX(Chip chip, ushort address) {
78 this.address = address;
81 voltages = new float?[chip == Chip.F71858 ? 3 : 9];
82 temperatures = new float?[3];
83 fans = new float?[chip == Chip.F71882 || chip == Chip.F71858? 4 : 3];
84 controls = new float?[0];
87 public Chip Chip { get { return chip; } }
88 public float?[] Voltages { get { return voltages; } }
89 public float?[] Temperatures { get { return temperatures; } }
90 public float?[] Fans { get { return fans; } }
91 public float?[] Controls { get { return controls; } }
93 public string GetReport() {
94 StringBuilder r = new StringBuilder();
96 r.AppendLine("LPC " + this.GetType().Name);
98 r.Append("Base Adress: 0x");
99 r.AppendLine(address.ToString("X4", CultureInfo.InvariantCulture));
102 if (!Ring0.WaitIsaBusMutex(100))
105 r.AppendLine("Hardware Monitor Registers");
107 r.AppendLine(" 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F");
109 for (int i = 0; i <= 0xF; i++) {
111 r.Append((i << 4).ToString("X2", CultureInfo.InvariantCulture));
113 for (int j = 0; j <= 0xF; j++) {
115 r.Append(ReadByte((byte)((i << 4) | j)).ToString("X2",
116 CultureInfo.InvariantCulture));
122 Ring0.ReleaseIsaBusMutex();
127 public void Update() {
128 if (!Ring0.WaitIsaBusMutex(10))
131 for (int i = 0; i < voltages.Length; i++) {
132 int value = ReadByte((byte)(VOLTAGE_BASE_REG + i));
133 voltages[i] = 0.008f * value;
136 for (int i = 0; i < temperatures.Length; i++) {
139 int tableMode = 0x3 & ReadByte(TEMPERATURE_CONFIG_REG);
141 ReadByte((byte)(TEMPERATURE_BASE_REG + 2 * i));
143 ReadByte((byte)(TEMPERATURE_BASE_REG + 2 * i + 1));
144 if (high != 0xbb && high != 0xcc) {
147 case 0: bits = 0; break;
148 case 1: bits = 0; break;
149 case 2: bits = (high & 0x80) << 8; break;
150 case 3: bits = (low & 0x01) << 15; break;
153 bits |= (low & 0xe0) >> 1;
154 short value = (short)(bits & 0xfff0);
155 temperatures[i] = value / 128.0f;
157 temperatures[i] = null;
161 sbyte value = (sbyte)ReadByte((byte)(
162 TEMPERATURE_BASE_REG + 2 * (i + 1)));
163 if (value < sbyte.MaxValue && value > 0)
164 temperatures[i] = value;
166 temperatures[i] = null;
171 for (int i = 0; i < fans.Length; i++) {
172 int value = ReadByte(FAN_TACHOMETER_REG[i]) << 8;
173 value |= ReadByte((byte)(FAN_TACHOMETER_REG[i] + 1));
176 fans[i] = (value < 0x0fff) ? 1.5e6f / value : 0;
181 Ring0.ReleaseIsaBusMutex();