Added a fan control sensor for ATI GPUs.
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;
41 using System.Runtime.InteropServices;
42 using System.Threading;
44 namespace OpenHardwareMonitor.Hardware {
46 public class WinRing0 {
48 public enum OlsDllStatus{
50 OLS_DLL_UNSUPPORTED_PLATFORM = 1,
51 OLS_DLL_DRIVER_NOT_LOADED = 2,
52 OLS_DLL_DRIVER_NOT_FOUND = 3,
53 OLS_DLL_DRIVER_UNLOADED = 4,
54 OLS_DLL_DRIVER_NOT_LOADED_ON_NETWORK = 5,
55 OLS_DLL_UNKNOWN_ERROR = 9
58 private static bool available = false;
59 public static Mutex isaBusMutex;
61 private static string GetDllName() {
62 int p = (int)System.Environment.OSVersion.Platform;
63 if ((p == 4) || (p == 128)) {
64 if (IntPtr.Size == 4) {
67 return "libring0x64.so";
70 if (IntPtr.Size == 4) {
71 return "WinRing0.dll";
73 return "WinRing0x64.dll";
78 private delegate bool InitializeOlsDelegate();
79 private delegate void DeinitializeOlsDelegate();
81 public delegate uint GetDllStatusDelegate();
82 public delegate bool IsCpuidDelegate();
83 public delegate bool CpuidDelegate(uint index, uint ecxValue,
84 out uint eax, out uint ebx, out uint ecx, out uint edx);
85 public delegate bool CpuidTxDelegate(uint index, uint ecxValue,
86 out uint eax, out uint ebx, out uint ecx, out uint edx,
87 UIntPtr threadAffinityMask);
88 public delegate bool RdmsrDelegate(uint index, out uint eax, out uint edx);
89 public delegate bool RdmsrTxDelegate(uint index, out uint eax, out uint edx,
90 UIntPtr threadAffinityMask);
91 public delegate byte ReadIoPortByteDelegate(ushort port);
92 public delegate void WriteIoPortByteDelegate(ushort port, byte value);
93 public delegate void SetPciMaxBusIndexDelegate(byte max);
94 public delegate uint FindPciDeviceByIdDelegate(ushort vendorId,
95 ushort deviceId, byte index);
96 public delegate bool ReadPciConfigDwordExDelegate(uint pciAddress,
97 uint regAddress, out uint value);
98 public delegate bool WritePciConfigDwordExDelegate(uint pciAddress,
99 uint regAddress, uint value);
100 public delegate bool RdtscTxDelegate(out uint eax, out uint edx,
101 UIntPtr threadAffinityMask);
102 public delegate bool RdtscDelegate(out uint eax, out uint edx);
104 private static InitializeOlsDelegate InitializeOls;
105 private static DeinitializeOlsDelegate DeinitializeOls;
107 public static readonly GetDllStatusDelegate GetDllStatus;
108 public static readonly IsCpuidDelegate IsCpuid;
109 public static readonly CpuidDelegate Cpuid;
110 public static readonly CpuidTxDelegate CpuidTx;
111 public static readonly RdmsrDelegate Rdmsr;
112 public static readonly RdmsrTxDelegate RdmsrTx;
113 public static readonly ReadIoPortByteDelegate ReadIoPortByte;
114 public static readonly WriteIoPortByteDelegate WriteIoPortByte;
115 public static readonly SetPciMaxBusIndexDelegate SetPciMaxBusIndex;
116 public static readonly FindPciDeviceByIdDelegate FindPciDeviceById;
117 public static readonly ReadPciConfigDwordExDelegate ReadPciConfigDwordEx;
118 public static readonly WritePciConfigDwordExDelegate WritePciConfigDwordEx;
119 public static readonly RdtscTxDelegate RdtscTx;
120 public static readonly RdtscDelegate Rdtsc;
124 private static void GetDelegate<T>(string entryPoint, out T newDelegate)
127 DllImportAttribute attribute = new DllImportAttribute(GetDllName());
128 attribute.CallingConvention = CallingConvention.Winapi;
129 attribute.PreserveSig = true;
130 attribute.EntryPoint = entryPoint;
131 attribute.CharSet = CharSet.Auto;
132 PInvokeDelegateFactory.CreateDelegate(attribute, out newDelegate);
136 GetDelegate("InitializeOls", out InitializeOls);
137 GetDelegate("DeinitializeOls", out DeinitializeOls);
138 GetDelegate("GetDllStatus", out GetDllStatus);
139 GetDelegate("IsCpuid", out IsCpuid);
140 GetDelegate("Cpuid", out Cpuid);
141 GetDelegate("CpuidTx", out CpuidTx);
142 GetDelegate("Rdmsr", out Rdmsr);
143 GetDelegate("RdmsrTx", out RdmsrTx);
144 GetDelegate("ReadIoPortByte", out ReadIoPortByte);
145 GetDelegate("WriteIoPortByte", out WriteIoPortByte);
146 GetDelegate("SetPciMaxBusIndex", out SetPciMaxBusIndex);
147 GetDelegate("FindPciDeviceById", out FindPciDeviceById);
148 GetDelegate("ReadPciConfigDwordEx", out ReadPciConfigDwordEx);
149 GetDelegate("WritePciConfigDwordEx", out WritePciConfigDwordEx);
150 GetDelegate("RdtscTx", out RdtscTx);
151 GetDelegate("Rdtsc", out Rdtsc);
154 if (InitializeOls != null && InitializeOls())
156 } catch (DllNotFoundException) { }
158 isaBusMutex = new Mutex(false, "Access_ISABUS.HTP.Method");
161 public static bool IsAvailable {
162 get { return available; }
165 public static bool WaitIsaBusMutex(int millisecondsTimeout) {
167 return isaBusMutex.WaitOne(millisecondsTimeout);
168 } catch { return false; }
171 public static void ReleaseIsaBusMutex() {
172 isaBusMutex.ReleaseMutex();
175 private static Deinitializer deinitializer = new Deinitializer();
176 private class Deinitializer {