Chameleon

Chameleon Svn Source Tree

Root/trunk/i386/libsaio/cpu.c

1/*
2 * Copyright 2008 Islam Ahmed Zaid. All rights reserved. <azismed@gmail.com>
3 * AsereBLN: 2009: cleanup and bugfix
4 */
5
6#include "libsaio.h"
7#include "platform.h"
8#include "cpu.h"
9#include "bootstruct.h"
10#include "boot.h"
11
12#ifndef DEBUG_CPU
13#define DEBUG_CPU 0
14#endif
15
16#if DEBUG_CPU
17#define DBG(x...)printf(x)
18#else
19#define DBG(x...)msglog(x)
20#endif
21
22/*
23 * DFE: Measures the TSC frequency in Hz (64-bit) using the ACPI PM timer
24 */
25static uint64_t measure_tsc_frequency(void)
26{
27 uint64_t tscStart;
28 uint64_t tscEnd;
29 uint64_t tscDelta = 0xffffffffffffffffULL;
30 unsigned long pollCount;
31 uint64_t retval = 0;
32 int i;
33
34 /* Time how many TSC ticks elapse in 30 msec using the 8254 PIT
35 * counter 2. We run this loop 3 times to make sure the cache
36 * is hot and we take the minimum delta from all of the runs.
37 * That is to say that we're biased towards measuring the minimum
38 * number of TSC ticks that occur while waiting for the timer to
39 * expire. That theoretically helps avoid inconsistencies when
40 * running under a VM if the TSC is not virtualized and the host
41 * steals time. The TSC is normally virtualized for VMware.
42 */
43 for(i = 0; i < 10; ++i)
44 {
45 enable_PIT2();
46 set_PIT2_mode0(CALIBRATE_LATCH);
47 tscStart = rdtsc64();
48 pollCount = poll_PIT2_gate();
49 tscEnd = rdtsc64();
50 /* The poll loop must have run at least a few times for accuracy */
51 if(pollCount <= 1)
52 continue;
53 /* The TSC must increment at LEAST once every millisecond. We
54 * should have waited exactly 30 msec so the TSC delta should
55 * be >= 30. Anything less and the processor is way too slow.
56 */
57 if((tscEnd - tscStart) <= CALIBRATE_TIME_MSEC)
58 continue;
59 // tscDelta = min(tscDelta, (tscEnd - tscStart))
60 if( (tscEnd - tscStart) < tscDelta )
61 tscDelta = tscEnd - tscStart;
62 }
63 /* tscDelta is now the least number of TSC ticks the processor made in
64 * a timespan of 0.03 s (e.g. 30 milliseconds)
65 * Linux thus divides by 30 which gives the answer in kiloHertz because
66 * 1 / ms = kHz. But we're xnu and most of the rest of the code uses
67 * Hz so we need to convert our milliseconds to seconds. Since we're
68 * dividing by the milliseconds, we simply multiply by 1000.
69 */
70
71 /* Unlike linux, we're not limited to 32-bit, but we do need to take care
72 * that we're going to multiply by 1000 first so we do need at least some
73 * arithmetic headroom. For now, 32-bit should be enough.
74 * Also unlike Linux, our compiler can do 64-bit integer arithmetic.
75 */
76 if(tscDelta > (1ULL<<32))
77 retval = 0;
78 else
79 {
80 retval = tscDelta * 1000 / 30;
81 }
82 disable_PIT2();
83 return retval;
84}
85
86/*
87 * Calculates the FSB and CPU frequencies using specific MSRs for each CPU
88 * - multi. is read from a specific MSR. In the case of Intel, there is:
89 * a max multi. (used to calculate the FSB freq.),
90 * and a current multi. (used to calculate the CPU freq.)
91 * - fsbFrequency = tscFrequency / multi
92 * - cpuFrequency = fsbFrequency * multi
93 */
94
95void scan_cpu(PlatformInfo_t *p)
96{
97uint64_ttscFrequency, fsbFrequency, cpuFrequency;
98uint64_tmsr, flex_ratio;
99uint8_tmaxcoef, maxdiv, currcoef, bus_ratio_max, currdiv;
100const char *newratio;
101int len, myfsb;
102uint8_t bus_ratio_min;
103uint32_t max_ratio, min_ratio;
104
105max_ratio = min_ratio = myfsb = bus_ratio_min = 0;
106maxcoef = maxdiv = bus_ratio_max = currcoef = currdiv = 0;
107
108/* get cpuid values */
109do_cpuid(0x00000000, p->CPU.CPUID[CPUID_0]);
110do_cpuid(0x00000001, p->CPU.CPUID[CPUID_1]);
111do_cpuid(0x00000002, p->CPU.CPUID[CPUID_2]);
112do_cpuid(0x00000003, p->CPU.CPUID[CPUID_3]);
113do_cpuid2(0x00000004, 0, p->CPU.CPUID[CPUID_4]);
114do_cpuid(0x80000000, p->CPU.CPUID[CPUID_80]);
115if ((p->CPU.CPUID[CPUID_80][0] & 0x0000000f) >= 1) {
116do_cpuid(0x80000001, p->CPU.CPUID[CPUID_81]);
117}
118#if DEBUG_CPU
119{
120inti;
121printf("CPUID Raw Values:\n");
122for (i=0; i<CPUID_MAX; i++) {
123printf("%02d: %08x-%08x-%08x-%08x\n", i,
124p->CPU.CPUID[i][0], p->CPU.CPUID[i][1],
125p->CPU.CPUID[i][2], p->CPU.CPUID[i][3]);
126}
127}
128#endif
129p->CPU.Vendor= p->CPU.CPUID[CPUID_0][1];
130p->CPU.Signature= p->CPU.CPUID[CPUID_1][0];
131p->CPU.Stepping= bitfield(p->CPU.CPUID[CPUID_1][0], 3, 0);
132p->CPU.Model= bitfield(p->CPU.CPUID[CPUID_1][0], 7, 4);
133p->CPU.Family= bitfield(p->CPU.CPUID[CPUID_1][0], 11, 8);
134p->CPU.ExtModel= bitfield(p->CPU.CPUID[CPUID_1][0], 19, 16);
135p->CPU.ExtFamily= bitfield(p->CPU.CPUID[CPUID_1][0], 27, 20);
136p->CPU.NoThreads= bitfield(p->CPU.CPUID[CPUID_1][1], 23, 16);
137p->CPU.NoCores= bitfield(p->CPU.CPUID[CPUID_4][0], 31, 26) + 1;
138
139p->CPU.Model += (p->CPU.ExtModel << 4);
140
141/* get brand string (if supported) */
142/* Copyright: from Apple's XNU cpuid.c */
143if (p->CPU.CPUID[CPUID_80][0] > 0x80000004) {
144uint32_treg[4];
145 char str[128], *s;
146/*
147 * The brand string 48 bytes (max), guaranteed to
148 * be NUL terminated.
149 */
150do_cpuid(0x80000002, reg);
151bcopy((char *)reg, &str[0], 16);
152do_cpuid(0x80000003, reg);
153bcopy((char *)reg, &str[16], 16);
154do_cpuid(0x80000004, reg);
155bcopy((char *)reg, &str[32], 16);
156for (s = str; *s != '\0'; s++) {
157if (*s != ' ') break;
158}
159
160strlcpy(p->CPU.BrandString,s, sizeof(p->CPU.BrandString));
161
162if (!strncmp(p->CPU.BrandString, CPU_STRING_UNKNOWN, min(sizeof(p->CPU.BrandString), strlen(CPU_STRING_UNKNOWN) + 1))) {
163 /*
164 * This string means we have a firmware-programmable brand string,
165 * and the firmware couldn't figure out what sort of CPU we have.
166 */
167 p->CPU.BrandString[0] = '\0';
168 }
169}
170
171/* setup features */
172if ((bit(23) & p->CPU.CPUID[CPUID_1][3]) != 0) {
173p->CPU.Features |= CPU_FEATURE_MMX;
174}
175if ((bit(25) & p->CPU.CPUID[CPUID_1][3]) != 0) {
176p->CPU.Features |= CPU_FEATURE_SSE;
177}
178if ((bit(26) & p->CPU.CPUID[CPUID_1][3]) != 0) {
179p->CPU.Features |= CPU_FEATURE_SSE2;
180}
181if ((bit(0) & p->CPU.CPUID[CPUID_1][2]) != 0) {
182p->CPU.Features |= CPU_FEATURE_SSE3;
183}
184if ((bit(19) & p->CPU.CPUID[CPUID_1][2]) != 0) {
185p->CPU.Features |= CPU_FEATURE_SSE41;
186}
187if ((bit(20) & p->CPU.CPUID[CPUID_1][2]) != 0) {
188p->CPU.Features |= CPU_FEATURE_SSE42;
189}
190if ((bit(29) & p->CPU.CPUID[CPUID_81][3]) != 0) {
191p->CPU.Features |= CPU_FEATURE_EM64T;
192}
193if ((bit(5) & p->CPU.CPUID[CPUID_1][3]) != 0) {
194p->CPU.Features |= CPU_FEATURE_MSR;
195}
196//if ((bit(28) & p->CPU.CPUID[CPUID_1][3]) != 0) {
197if (p->CPU.NoThreads > p->CPU.NoCores) {
198p->CPU.Features |= CPU_FEATURE_HTT;
199}
200
201tscFrequency = measure_tsc_frequency();
202fsbFrequency = 0;
203cpuFrequency = 0;
204
205if ((p->CPU.Vendor == 0x756E6547 /* Intel */) && ((p->CPU.Family == 0x06) || (p->CPU.Family == 0x0f))) {
206int intelCPU = p->CPU.Model;
207if ((p->CPU.Family == 0x06 && p->CPU.Model >= 0x0c) || (p->CPU.Family == 0x0f && p->CPU.Model >= 0x03)) {
208/* Nehalem CPU model */
209if (p->CPU.Family == 0x06 && (p->CPU.Model == 0x1a || p->CPU.Model == 0x1e
210 || p->CPU.Model == 0x1f || p->CPU.Model == 0x25 || p->CPU.Model == 0x2c || p->CPU.Model == CPU_MODEL_SANDY)) {
211msr = rdmsr64(MSR_PLATFORM_INFO);
212DBG("msr(%d): platform_info %08x\n", __LINE__, msr & 0xffffffff);
213bus_ratio_max = (msr >> 8) & 0xff;
214bus_ratio_min = (msr >> 40) & 0xff; //valv: not sure about this one (Remarq.1)
215msr = rdmsr64(MSR_FLEX_RATIO);
216DBG("msr(%d): flex_ratio %08x\n", __LINE__, msr & 0xffffffff);
217if ((msr >> 16) & 0x01) {
218flex_ratio = (msr >> 8) & 0xff;
219/* bcc9: at least on the gigabyte h67ma-ud2h,
220 where the cpu multipler can't be changed to
221 allow overclocking, the flex_ratio msr has unexpected (to OSX)
222 contents. These contents cause mach_kernel to
223 fail to compute the bus ratio correctly, instead
224 causing the system to crash since tscGranularity
225 is inadvertently set to 0.
226*/
227if (flex_ratio == 0) {
228/* Clear bit 16 (evidently the
229 presence bit) */
230wrmsr64(MSR_FLEX_RATIO, (msr & 0xFFFFFFFFFFFEFFFFULL));
231msr = rdmsr64(MSR_FLEX_RATIO);
232verbose("Unusable flex ratio detected. Patched MSR now %08x\n", msr & 0xffffffff);
233} else {
234if (bus_ratio_max > flex_ratio) {
235bus_ratio_max = flex_ratio;
236}
237}
238}
239
240if (bus_ratio_max) {
241fsbFrequency = (tscFrequency / bus_ratio_max);
242}
243//valv: Turbo Ratio Limit
244if ((intelCPU != 0x2e) && (intelCPU != 0x2f)) {
245msr = rdmsr64(MSR_TURBO_RATIO_LIMIT);
246cpuFrequency = bus_ratio_max * fsbFrequency;
247max_ratio = bus_ratio_max * 10;
248} else {
249cpuFrequency = tscFrequency;
250}
251if ((getValueForKey(kbusratio, &newratio, &len, &bootInfo->bootConfig)) && (len <= 4)) {
252max_ratio = atoi(newratio);
253max_ratio = (max_ratio * 10);
254if (len >= 3) max_ratio = (max_ratio + 5);
255
256verbose("Bus-Ratio: min=%d, max=%s\n", bus_ratio_min, newratio);
257
258// extreme overclockers may love 320 ;)
259if ((max_ratio >= min_ratio) && (max_ratio <= 320)) {
260cpuFrequency = (fsbFrequency * max_ratio) / 10;
261if (len >= 3) maxdiv = 1;
262else maxdiv = 0;
263} else {
264max_ratio = (bus_ratio_max * 10);
265}
266}
267//valv: to be uncommented if Remarq.1 didn't stick
268/*if(bus_ratio_max > 0) bus_ratio = flex_ratio;*/
269p->CPU.MaxRatio = max_ratio;
270p->CPU.MinRatio = min_ratio;
271
272myfsb = fsbFrequency / 1000000;
273verbose("Sticking with [BCLK: %dMhz, Bus-Ratio: %d]\n", myfsb, max_ratio);
274currcoef = bus_ratio_max;
275} else {
276msr = rdmsr64(MSR_IA32_PERF_STATUS);
277DBG("msr(%d): ia32_perf_stat 0x%08x\n", __LINE__, msr & 0xffffffff);
278currcoef = (msr >> 8) & 0x1f;
279/* Non-integer bus ratio for the max-multi*/
280maxdiv = (msr >> 46) & 0x01;
281/* Non-integer bus ratio for the current-multi (undocumented)*/
282currdiv = (msr >> 14) & 0x01;
283
284if ((p->CPU.Family == 0x06 && p->CPU.Model >= 0x0e) || (p->CPU.Family == 0x0f)) // This will always be model >= 3
285{
286/* On these models, maxcoef defines TSC freq */
287maxcoef = (msr >> 40) & 0x1f;
288} else {
289/* On lower models, currcoef defines TSC freq */
290/* XXX */
291maxcoef = currcoef;
292}
293
294if (maxcoef) {
295if (maxdiv) {
296fsbFrequency = ((tscFrequency * 2) / ((maxcoef * 2) + 1));
297} else {
298fsbFrequency = (tscFrequency / maxcoef);
299}
300if (currdiv) {
301cpuFrequency = (fsbFrequency * ((currcoef * 2) + 1) / 2);
302} else {
303cpuFrequency = (fsbFrequency * currcoef);
304}
305DBG("max: %d%s current: %d%s\n", maxcoef, maxdiv ? ".5" : "",currcoef, currdiv ? ".5" : "");
306}
307}
308}
309/* Mobile CPU ? */
310if (rdmsr64(0x17) & (1<<28)) {
311p->CPU.Features |= CPU_FEATURE_MOBILE;
312}
313}
314#if 0
315else if((p->CPU.Vendor == 0x68747541 /* AMD */) && (p->CPU.Family == 0x0f)) {
316if(p->CPU.ExtFamily == 0x00 /* K8 */) {
317msr = rdmsr64(K8_FIDVID_STATUS);
318currcoef = (msr & 0x3f) / 2 + 4;
319currdiv = (msr & 0x01) * 2;
320} else if(p->CPU.ExtFamily >= 0x01 /* K10+ */) {
321msr = rdmsr64(K10_COFVID_STATUS);
322if(p->CPU.ExtFamily == 0x01 /* K10 */)
323currcoef = (msr & 0x3f) + 0x10;
324else /* K11+ */
325currcoef = (msr & 0x3f) + 0x08;
326currdiv = (2 << ((msr >> 6) & 0x07));
327}
328
329if (currcoef) {
330if (currdiv) {
331fsbFrequency = ((tscFrequency * currdiv) / currcoef);
332DBG("%d.%d\n", currcoef / currdiv, ((currcoef % currdiv) * 100) / currdiv);
333} else {
334fsbFrequency = (tscFrequency / currcoef);
335DBG("%d\n", currcoef);
336}
337fsbFrequency = (tscFrequency / currcoef);
338cpuFrequency = tscFrequency;
339}
340}
341
342if (!fsbFrequency) {
343fsbFrequency = (DEFAULT_FSB * 1000);
344cpuFrequency = tscFrequency;
345DBG("0 ! using the default value for FSB !\n");
346}
347#endif
348
349p->CPU.MaxCoef = maxcoef;
350p->CPU.MaxDiv = maxdiv;
351p->CPU.CurrCoef = currcoef;
352p->CPU.CurrDiv = currdiv;
353p->CPU.TSCFrequency = tscFrequency;
354p->CPU.FSBFrequency = fsbFrequency;
355p->CPU.CPUFrequency = cpuFrequency;
356
357DBG("CPU: Vendor/Model/ExtModel: 0x%x/0x%x/0x%x\n", p->CPU.Vendor, p->CPU.Model, p->CPU.ExtModel);
358DBG("CPU: Family/ExtFamily: 0x%x/0x%x\n", p->CPU.Family, p->CPU.ExtFamily);
359DBG("CPU: MaxCoef/CurrCoef: 0x%x/0x%x\n", p->CPU.MaxCoef, p->CPU.CurrCoef);
360DBG("CPU: MaxDiv/CurrDiv: 0x%x/0x%x\n", p->CPU.MaxDiv, p->CPU.CurrDiv);
361DBG("CPU: TSCFreq: %dMHz\n", p->CPU.TSCFrequency / 1000000);
362DBG("CPU: FSBFreq: %dMHz\n", p->CPU.FSBFrequency / 1000000);
363DBG("CPU: CPUFreq: %dMHz\n", p->CPU.CPUFrequency / 1000000);
364DBG("CPU: NoCores/NoThreads: %d/%d\n", p->CPU.NoCores, p->CPU.NoThreads);
365DBG("CPU: Features: 0x%08x\n", p->CPU.Features);
366#if DEBUG_CPU
367pause();
368#endif
369}
370

Archive Download this file

Revision: 827