Fixed Issue 199.
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.
41 namespace OpenHardwareMonitor.Hardware.CPU {
43 internal enum Vendor {
49 internal class CPUID {
51 private readonly int thread;
53 private readonly Vendor vendor = Vendor.Unknown;
55 private readonly string cpuBrandString = "";
56 private readonly string name = "";
58 private readonly uint[,] cpuidData = new uint[0, 0];
59 private readonly uint[,] cpuidExtData = new uint[0, 0];
61 private readonly uint family;
62 private readonly uint model;
63 private readonly uint stepping;
65 private readonly uint apicId;
67 private readonly uint threadMaskWith;
68 private readonly uint coreMaskWith;
70 private readonly uint processorId;
71 private readonly uint coreId;
72 private readonly uint threadId;
74 public const uint CPUID_0 = 0;
75 public const uint CPUID_EXT = 0x80000000;
77 private static void AppendRegister(StringBuilder b, uint value) {
78 b.Append((char)((value) & 0xff));
79 b.Append((char)((value >> 8) & 0xff));
80 b.Append((char)((value >> 16) & 0xff));
81 b.Append((char)((value >> 24) & 0xff));
84 private static uint NextLog2(long x) {
98 public CPUID(int thread) {
102 uint maxCpuidExt = 0;
104 uint eax, ebx, ecx, edx;
107 throw new ArgumentOutOfRangeException("thread");
108 ulong mask = 1UL << thread;
110 if (Opcode.CpuidTx(CPUID_0, 0,
111 out eax, out ebx, out ecx, out edx, mask)) {
117 StringBuilder vendorBuilder = new StringBuilder();
118 AppendRegister(vendorBuilder, ebx);
119 AppendRegister(vendorBuilder, edx);
120 AppendRegister(vendorBuilder, ecx);
121 string cpuVendor = vendorBuilder.ToString();
124 vendor = Vendor.Intel;
130 vendor = Vendor.Unknown;
133 eax = ebx = ecx = edx = 0;
134 if (Opcode.CpuidTx(CPUID_EXT, 0,
135 out eax, out ebx, out ecx, out edx, mask)) {
137 maxCpuidExt = eax - CPUID_EXT;
141 throw new ArgumentOutOfRangeException("thread");
144 throw new ArgumentOutOfRangeException("thread");
147 maxCpuid = Math.Min(maxCpuid, 1024);
148 maxCpuidExt = Math.Min(maxCpuidExt, 1024);
150 cpuidData = new uint[maxCpuid + 1, 4];
151 for (uint i = 0; i < (maxCpuid + 1); i++)
152 Opcode.CpuidTx(CPUID_0 + i, 0,
153 out cpuidData[i, 0], out cpuidData[i, 1],
154 out cpuidData[i, 2], out cpuidData[i, 3], mask);
156 cpuidExtData = new uint[maxCpuidExt + 1, 4];
157 for (uint i = 0; i < (maxCpuidExt + 1); i++)
158 Opcode.CpuidTx(CPUID_EXT + i, 0,
159 out cpuidExtData[i, 0], out cpuidExtData[i, 1],
160 out cpuidExtData[i, 2], out cpuidExtData[i, 3], mask);
162 StringBuilder nameBuilder = new StringBuilder();
163 for (uint i = 2; i <= 4; i++) {
164 if (Opcode.CpuidTx(CPUID_EXT + i, 0,
165 out eax, out ebx, out ecx, out edx, mask))
167 AppendRegister(nameBuilder, eax);
168 AppendRegister(nameBuilder, ebx);
169 AppendRegister(nameBuilder, ecx);
170 AppendRegister(nameBuilder, edx);
173 nameBuilder.Replace('\0', ' ');
174 cpuBrandString = nameBuilder.ToString().Trim();
175 nameBuilder.Replace("(R)", " ");
176 nameBuilder.Replace("(TM)", " ");
177 nameBuilder.Replace("(tm)", " ");
178 nameBuilder.Replace("CPU", "");
179 for (int i = 0; i < 10; i++) nameBuilder.Replace(" ", " ");
180 name = nameBuilder.ToString();
181 if (name.Contains("@"))
182 name = name.Remove(name.LastIndexOf('@'));
185 this.family = ((cpuidData[1, 0] & 0x0FF00000) >> 20) +
186 ((cpuidData[1, 0] & 0x0F00) >> 8);
187 this.model = ((cpuidData[1, 0] & 0x0F0000) >> 12) +
188 ((cpuidData[1, 0] & 0xF0) >> 4);
189 this.stepping = (cpuidData[1, 0] & 0x0F);
191 this.apicId = (cpuidData[1, 1] >> 24) & 0xFF;
195 uint maxCoreAndThreadIdPerPackage = (cpuidData[1, 1] >> 16) & 0xFF;
196 uint maxCoreIdPerPackage;
198 maxCoreIdPerPackage = ((cpuidData[4, 0] >> 26) & 0x3F) + 1;
200 maxCoreIdPerPackage = 1;
202 NextLog2(maxCoreAndThreadIdPerPackage / maxCoreIdPerPackage);
203 coreMaskWith = NextLog2(maxCoreIdPerPackage);
207 if (maxCpuidExt >= 8)
208 corePerPackage = (cpuidExtData[8, 2] & 0xFF) + 1;
212 coreMaskWith = NextLog2(corePerPackage);
220 processorId = (apicId >> (int)(coreMaskWith + threadMaskWith));
221 coreId = ((apicId >> (int)(threadMaskWith))
222 - (processorId << (int)(coreMaskWith)));
224 - (processorId << (int)(coreMaskWith + threadMaskWith))
225 - (coreId << (int)(threadMaskWith));
232 public string BrandString {
233 get { return cpuBrandString; }
237 get { return thread; }
240 public Vendor Vendor {
241 get { return vendor; }
245 get { return family; }
249 get { return model; }
252 public uint Stepping {
253 get { return stepping; }
257 get { return apicId; }
260 public uint ProcessorId {
261 get { return processorId; }
265 get { return coreId; }
268 public uint ThreadId {
269 get { return threadId; }
272 public uint[,] Data {
273 get { return cpuidData; }
276 public uint[,] ExtData {
277 get { return cpuidExtData; }