Added support for W83627DHG chips. Changed Core i7 temperature reading. Fixed IT87 temperature reading.
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.Management;
43 namespace OpenHardwareMonitor.Hardware.SMBIOS {
45 public class SMBIOSGroup : IGroup {
47 private Structure[] table;
49 private BIOSInformation biosInformation = null;
51 private BaseBoardInformation baseBoardInformation = null;
53 public SMBIOSGroup() {
54 int p = (int)System.Environment.OSVersion.Platform;
55 if ((p == 4) || (p == 128))
58 List<Structure> structureList = new List<Structure>();
61 ManagementObjectCollection collection = new ManagementObjectSearcher(
62 "root\\WMI", "SELECT SMBiosData FROM MSSMBios_RawSMBiosTables").Get();
65 foreach (ManagementObject mo in collection) {
66 raw = (byte[])mo["SMBiosData"];
70 if (raw != null && raw.Length > 0) {
72 byte type = raw[offset];
73 while (offset < raw.Length && type != 127) {
75 type = raw[offset]; offset++;
76 int length = raw[offset]; offset++;
77 ushort handle = (ushort)((raw[offset] << 8) | raw[offset + 1]);
80 byte[] data = new byte[length];
81 Array.Copy(raw, offset - 4, data, 0, length); offset += length - 4;
83 List<string> stringsList = new List<string>();
86 while (raw[offset] != 0) {
87 StringBuilder sb = new StringBuilder();
88 while (raw[offset] != 0) {
89 sb.Append((char)raw[offset]); offset++;
92 stringsList.Add(sb.ToString());
97 this.biosInformation = new BIOSInformation(
98 type, handle, data, stringsList.ToArray());
99 structureList.Add(this.biosInformation); break;
100 case 0x02: this.baseBoardInformation = new BaseBoardInformation(
101 type, handle, data, stringsList.ToArray());
102 structureList.Add(this.baseBoardInformation); break;
103 default: structureList.Add(new Structure(
104 type, handle, data, stringsList.ToArray())); break;
108 } catch (NotImplementedException) { }
110 table = structureList.ToArray();
113 public IHardware[] Hardware { get { return new IHardware[0]; } }
115 public string GetReport() {
116 StringBuilder r = new StringBuilder();
118 r.AppendLine("SMBIOS");
121 if (biosInformation != null) {
122 r.Append("BIOS Vendor: "); r.AppendLine(biosInformation.Vendor);
123 r.Append("BIOS Version: "); r.AppendLine(biosInformation.Version);
127 if (baseBoardInformation != null) {
128 r.Append("Mainboard Manufacturer: ");
129 r.AppendLine(baseBoardInformation.Manufacturer);
130 r.Append("Mainboard Name: ");
131 r.AppendLine(baseBoardInformation.ProductName);
138 public void Close() { }
140 public class Structure {
142 private ushort handle;
145 private string[] strings;
147 protected string GetString(int offset) {
148 if (offset < data.Length && data[offset] > 0 &&
149 data[offset] <= strings.Length)
150 return strings[data[offset] - 1];
155 public Structure(byte type, ushort handle, byte[] data, string[] strings)
158 this.handle = handle;
160 this.strings = strings;
163 public byte Type { get { return type; } }
165 public ushort Handle { get { return handle; } }
168 public class BIOSInformation : Structure {
170 private string vendor;
171 private string version;
173 public BIOSInformation(byte type, ushort handle, byte[] data,
175 : base(type, handle, data, strings) {
177 this.vendor = GetString(0x04);
178 this.version = GetString(0x05);
181 public string Vendor { get { return vendor; } }
183 public string Version { get { return version; } }
186 public class BaseBoardInformation : Structure {
188 private string manufacturer;
189 private string productName;
191 public BaseBoardInformation(byte type, ushort handle, byte[] data,
193 : base(type, handle, data, strings) {
195 this.manufacturer = GetString(0x04);
196 this.productName = GetString(0x05);
199 public string Manufacturer { get { return manufacturer; } }
201 public string ProductName { get { return productName; } }