Added thermal and voltage/frequency MSRs for K8 CPUs, fixed chars-per-line limit
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-2010
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.
39 using System.Collections.Generic;
40 using System.Globalization;
42 using System.Threading;
44 namespace OpenHardwareMonitor.Hardware.LPC {
45 internal class LPCIO {
47 private List<ISuperIO> superIOs = new List<ISuperIO>();
48 private StringBuilder report = new StringBuilder();
51 private ushort[] REGISTER_PORTS = new ushort[] { 0x2E, 0x4E };
52 private ushort[] VALUE_PORTS = new ushort[] { 0x2F, 0x4F };
54 private ushort registerPort;
55 private ushort valuePort;
58 private const byte CONFIGURATION_CONTROL_REGISTER = 0x02;
59 private const byte DEVCIE_SELECT_REGISTER = 0x07;
60 private const byte CHIP_ID_REGISTER = 0x20;
61 private const byte CHIP_REVISION_REGISTER = 0x21;
62 private const byte BASE_ADDRESS_REGISTER = 0x60;
64 private byte ReadByte(byte register) {
65 WinRing0.WriteIoPortByte(registerPort, register);
66 return WinRing0.ReadIoPortByte(valuePort);
69 private ushort ReadWord(byte register) {
70 return (ushort)((ReadByte(register) << 8) |
71 ReadByte((byte)(register + 1)));
74 private void Select(byte logicalDeviceNumber) {
75 WinRing0.WriteIoPortByte(registerPort, DEVCIE_SELECT_REGISTER);
76 WinRing0.WriteIoPortByte(valuePort, logicalDeviceNumber);
79 private void ReportUnknownChip(string type, int chip) {
80 report.Append("Chip ID: Unknown ");
82 report.Append(" with ID 0x");
83 report.Append(chip.ToString("X", CultureInfo.InvariantCulture));
84 report.Append(" at 0x");
85 report.Append(registerPort.ToString("X", CultureInfo.InvariantCulture));
87 report.AppendLine(valuePort.ToString("X", CultureInfo.InvariantCulture));
91 #region Winbond, Fintek
93 private const byte FINTEK_VENDOR_ID_REGISTER = 0x23;
94 private const ushort FINTEK_VENDOR_ID = 0x1934;
96 private const byte WINBOND_HARDWARE_MONITOR_LDN = 0x0B;
98 private const byte F71858_HARDWARE_MONITOR_LDN = 0x02;
99 private const byte FINTEK_HARDWARE_MONITOR_LDN = 0x04;
101 private void WinbondFintekEnter() {
102 WinRing0.WriteIoPortByte(registerPort, 0x87);
103 WinRing0.WriteIoPortByte(registerPort, 0x87);
106 private void WinbondFintekExit() {
107 WinRing0.WriteIoPortByte(registerPort, 0xAA);
110 private bool DetectWinbondFintek() {
111 WinbondFintekEnter();
113 byte logicalDeviceNumber;
114 byte id = ReadByte(CHIP_ID_REGISTER);
115 byte revision = ReadByte(CHIP_REVISION_REGISTER);
116 Chip chip = Chip.Unknown;
117 logicalDeviceNumber = 0;
123 logicalDeviceNumber = F71858_HARDWARE_MONITOR_LDN;
127 logicalDeviceNumber = FINTEK_HARDWARE_MONITOR_LDN;
134 logicalDeviceNumber = FINTEK_HARDWARE_MONITOR_LDN;
141 logicalDeviceNumber = FINTEK_HARDWARE_MONITOR_LDN;
148 logicalDeviceNumber = FINTEK_HARDWARE_MONITOR_LDN;
154 chip = Chip.F71889ED;
155 logicalDeviceNumber = FINTEK_HARDWARE_MONITOR_LDN;
163 chip = Chip.W83627HF;
164 logicalDeviceNumber = WINBOND_HARDWARE_MONITOR_LDN;
168 switch (revision & 0xF0) {
170 chip = Chip.W83627THF;
171 logicalDeviceNumber = WINBOND_HARDWARE_MONITOR_LDN;
177 chip = Chip.W83687THF;
178 logicalDeviceNumber = WINBOND_HARDWARE_MONITOR_LDN;
182 switch (revision & 0xF0) {
185 chip = Chip.W83627EHF;
186 logicalDeviceNumber = WINBOND_HARDWARE_MONITOR_LDN;
190 switch (revision & 0xF0) {
192 chip = Chip.W83627DHG;
193 logicalDeviceNumber = WINBOND_HARDWARE_MONITOR_LDN;
197 switch (revision & 0xF0) {
199 chip = Chip.W83667HG;
200 logicalDeviceNumber = WINBOND_HARDWARE_MONITOR_LDN;
204 switch (revision & 0xF0) {
206 chip = Chip.W83627DHGP;
207 logicalDeviceNumber = WINBOND_HARDWARE_MONITOR_LDN;
211 switch (revision & 0xF0) {
213 chip = Chip.W83667HGB;
214 logicalDeviceNumber = WINBOND_HARDWARE_MONITOR_LDN;
218 if (chip == Chip.Unknown) {
219 if (id != 0 && id != 0xff) {
222 ReportUnknownChip("Winbond / Fintek", ((id << 8) | revision));
226 Select(logicalDeviceNumber);
227 ushort address = ReadWord(BASE_ADDRESS_REGISTER);
229 ushort verify = ReadWord(BASE_ADDRESS_REGISTER);
231 ushort vendorID = ReadWord(FINTEK_VENDOR_ID_REGISTER);
235 if (address != verify) {
236 report.Append("Chip ID: 0x");
237 report.AppendLine(chip.ToString("X"));
238 report.Append("Chip revision: 0x");
239 report.AppendLine(revision.ToString("X",
240 CultureInfo.InvariantCulture));
241 report.AppendLine("Error: Address verification failed");
246 // some Fintek chips have address register offset 0x05 added already
247 if ((address & 0x07) == 0x05)
250 if (address < 0x100 || (address & 0xF007) != 0) {
251 report.Append("Chip ID: 0x");
252 report.AppendLine(chip.ToString("X"));
253 report.Append("Chip revision: 0x");
254 report.AppendLine(revision.ToString("X",
255 CultureInfo.InvariantCulture));
256 report.Append("Error: Invalid address 0x");
257 report.AppendLine(address.ToString("X",
258 CultureInfo.InvariantCulture));
265 case Chip.W83627DHGP:
272 superIOs.Add(new W836XX(chip, revision, address));
280 if (vendorID != FINTEK_VENDOR_ID) {
281 report.Append("Chip ID: 0x");
282 report.AppendLine(chip.ToString("X"));
283 report.Append("Chip revision: 0x");
284 report.AppendLine(revision.ToString("X",
285 CultureInfo.InvariantCulture));
286 report.Append("Error: Invalid vendor ID 0x");
287 report.AppendLine(vendorID.ToString("X",
288 CultureInfo.InvariantCulture));
292 superIOs.Add(new F718XX(chip, address));
307 private const byte IT87_ENVIRONMENT_CONTROLLER_LDN = 0x04;
308 private const byte IT87_CHIP_VERSION_REGISTER = 0x22;
310 private void IT87Enter() {
311 WinRing0.WriteIoPortByte(registerPort, 0x87);
312 WinRing0.WriteIoPortByte(registerPort, 0x01);
313 WinRing0.WriteIoPortByte(registerPort, 0x55);
314 WinRing0.WriteIoPortByte(registerPort, 0x55);
317 private void IT87Exit() {
318 WinRing0.WriteIoPortByte(registerPort, CONFIGURATION_CONTROL_REGISTER);
319 WinRing0.WriteIoPortByte(valuePort, 0x02);
322 private bool DetectIT87() {
324 // IT87XX can enter only on port 0x2E
325 if (registerPort != 0x2E)
330 ushort chipID = ReadWord(CHIP_ID_REGISTER);
333 case 0x8712: chip = Chip.IT8712F; break;
334 case 0x8716: chip = Chip.IT8716F; break;
335 case 0x8718: chip = Chip.IT8718F; break;
336 case 0x8720: chip = Chip.IT8720F; break;
337 case 0x8721: chip = Chip.IT8721F; break;
338 case 0x8726: chip = Chip.IT8726F; break;
339 default: chip = Chip.Unknown; break;
341 if (chip == Chip.Unknown) {
342 if (chipID != 0 && chipID != 0xffff) {
345 ReportUnknownChip("ITE", chipID);
348 Select(IT87_ENVIRONMENT_CONTROLLER_LDN);
349 ushort address = ReadWord(BASE_ADDRESS_REGISTER);
351 ushort verify = ReadWord(BASE_ADDRESS_REGISTER);
353 byte version = (byte)(ReadByte(IT87_CHIP_VERSION_REGISTER) & 0x0F);
357 if (address != verify || address < 0x100 || (address & 0xF007) != 0) {
358 report.Append("Chip ID: 0x");
359 report.AppendLine(chip.ToString("X"));
360 report.Append("Error: Invalid address 0x");
361 report.AppendLine(address.ToString("X",
362 CultureInfo.InvariantCulture));
367 superIOs.Add(new IT87XX(chip, address, version));
378 private void SMSCEnter() {
379 WinRing0.WriteIoPortByte(registerPort, 0x55);
382 private void SMSCExit() {
383 WinRing0.WriteIoPortByte(registerPort, 0xAA);
386 private bool DetectSMSC() {
389 ushort chipID = ReadWord(CHIP_ID_REGISTER);
392 default: chip = Chip.Unknown; break;
394 if (chip == Chip.Unknown) {
395 if (chipID != 0 && chipID != 0xffff) {
398 ReportUnknownChip("SMSC", chipID);
410 private void Detect() {
412 for (int i = 0; i < REGISTER_PORTS.Length; i++) {
413 registerPort = REGISTER_PORTS[i];
414 valuePort = VALUE_PORTS[i];
416 if (DetectWinbondFintek()) continue;
418 if (DetectIT87()) continue;
420 if (DetectSMSC()) continue;
425 if (!WinRing0.IsAvailable)
428 if (!WinRing0.WaitIsaBusMutex(100))
433 WinRing0.ReleaseIsaBusMutex();
436 public ISuperIO[] SuperIO {
438 return superIOs.ToArray();
442 public string GetReport() {
443 if (report.Length > 0) {
444 return "LPCIO" + Environment.NewLine + Environment.NewLine +