Added support for the Fintek F71869A (F71868AD) super I/O chip.

This commit is contained in:
Michael Möller
2013-06-30 11:41:36 +00:00
parent 9868e12d7a
commit 67354b4125
5 changed files with 16 additions and 6 deletions

View File

@@ -4,7 +4,7 @@
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
Copyright (C) 2009-2012 Michael Möller <mmoeller@openhardwaremonitor.org>
Copyright (C) 2009-2013 Michael Möller <mmoeller@openhardwaremonitor.org>
*/
@@ -18,6 +18,7 @@ namespace OpenHardwareMonitor.Hardware.LPC {
F71858 = 0x0507,
F71862 = 0x0601,
F71869 = 0x0814,
F71869A = 0x1007,
F71882 = 0x0541,
F71889AD = 0x1005,
F71889ED = 0x0909,
@@ -60,6 +61,7 @@ namespace OpenHardwareMonitor.Hardware.LPC {
case Chip.F71858: return "Fintek F71858";
case Chip.F71862: return "Fintek F71862";
case Chip.F71869: return "Fintek F71869";
case Chip.F71869A: return "Fintek F71869A";
case Chip.F71882: return "Fintek F71882";
case Chip.F71889AD: return "Fintek F71889AD";
case Chip.F71889ED: return "Fintek F71889ED";

View File

@@ -41,6 +41,8 @@ namespace OpenHardwareMonitor.Hardware.LPC {
lmChips.Add(new LMChip(Chip.F71862, path)); break;
case "f71869":
lmChips.Add(new LMChip(Chip.F71869, path)); break;
case "f71869a":
lmChips.Add(new LMChip(Chip.F71869A, path)); break;
case "f71882fg":
lmChips.Add(new LMChip(Chip.F71882, path)); break;
case "f71889a":

View File

@@ -4,7 +4,7 @@
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
Copyright (C) 2009-2012 Michael Möller <mmoeller@openhardwaremonitor.org>
Copyright (C) 2009-2013 Michael Möller <mmoeller@openhardwaremonitor.org>
*/
@@ -137,6 +137,10 @@ namespace OpenHardwareMonitor.Hardware.LPC {
chip = Chip.F71889AD;
logicalDeviceNumber = FINTEK_HARDWARE_MONITOR_LDN;
break;
case 0x07:
chip = Chip.F71869A;
logicalDeviceNumber = FINTEK_HARDWARE_MONITOR_LDN;
break;
} break;
case 0x52:
switch (revision) {
@@ -284,6 +288,7 @@ namespace OpenHardwareMonitor.Hardware.LPC {
case Chip.F71858:
case Chip.F71862:
case Chip.F71869:
case Chip.F71869A:
case Chip.F71882:
case Chip.F71889AD:
case Chip.F71889ED:

View File

@@ -4,7 +4,7 @@
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
Copyright (C) 2009-2012 Michael Möller <mmoeller@openhardwaremonitor.org>
Copyright (C) 2009-2013 Michael Möller <mmoeller@openhardwaremonitor.org>
*/
@@ -683,6 +683,7 @@ namespace OpenHardwareMonitor.Hardware.Mainboard {
break;
case Chip.F71862:
case Chip.F71869:
case Chip.F71869A:
case Chip.F71882:
case Chip.F71889AD:
case Chip.F71889ED:

View File

@@ -10,5 +10,5 @@
using System.Reflection;
[assembly: AssemblyVersion("0.5.1.18")]
[assembly: AssemblyInformationalVersion("0.5.1.18 Alpha")]
[assembly: AssemblyVersion("0.5.1.19")]
[assembly: AssemblyInformationalVersion("0.5.1.19 Alpha")]