Chameleon

Chameleon Svn Source Tree

Root/branches/ErmaC/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 * timeRDTSC()
24 * This routine sets up PIT counter 2 to count down 1/20 of a second.
25 * It pauses until the value is latched in the counter
26 * and then reads the time stamp counter to return to the caller.
27 */
28uint64_t timeRDTSC(void)
29{
30 intattempts = 0;
31 uint64_t latchTime;
32 uint64_tsaveTime,intermediate;
33 unsigned int timerValue, lastValue;
34 //boolean_tint_enabled;
35 /*
36 * Table of correction factors to account for
37 * - timer counter quantization errors, and
38 * - undercounts 0..5
39 */
40#define SAMPLE_CLKS_EXACT(((double) CLKNUM) / 20.0)
41#define SAMPLE_CLKS_INT((int) CLKNUM / 20)
42#define SAMPLE_NSECS(2000000000LL)
43#define SAMPLE_MULTIPLIER(((double)SAMPLE_NSECS)*SAMPLE_CLKS_EXACT)
44#define ROUND64(x)((uint64_t)((x) + 0.5))
45 uint64_tscale[6] = {
46ROUND64(SAMPLE_MULTIPLIER/(double)(SAMPLE_CLKS_INT-0)),
47ROUND64(SAMPLE_MULTIPLIER/(double)(SAMPLE_CLKS_INT-1)),
48ROUND64(SAMPLE_MULTIPLIER/(double)(SAMPLE_CLKS_INT-2)),
49ROUND64(SAMPLE_MULTIPLIER/(double)(SAMPLE_CLKS_INT-3)),
50ROUND64(SAMPLE_MULTIPLIER/(double)(SAMPLE_CLKS_INT-4)),
51ROUND64(SAMPLE_MULTIPLIER/(double)(SAMPLE_CLKS_INT-5))
52 };
53
54restart:
55 if (attempts >= 9) // increase to up to 9 attempts.
56 // This will flash-reboot. TODO: Use tscPanic instead.
57 printf("Timestamp counter calibation failed with %d attempts\n", attempts);
58 attempts++;
59 enable_PIT2();// turn on PIT2
60 set_PIT2(0);// reset timer 2 to be zero
61 latchTime = rdtsc64();// get the time stamp to time
62 latchTime = get_PIT2(&timerValue) - latchTime; // time how long this takes
63 set_PIT2(SAMPLE_CLKS_INT);// set up the timer for (almost) 1/20th a second
64 saveTime = rdtsc64();// now time how long a 20th a second is...
65 get_PIT2(&lastValue);
66 get_PIT2(&lastValue);// read twice, first value may be unreliable
67 do {
68intermediate = get_PIT2(&timerValue);
69if (timerValue > lastValue) {
70// Timer wrapped
71set_PIT2(0);
72disable_PIT2();
73goto restart;
74}
75lastValue = timerValue;
76 } while (timerValue > 5);
77 printf("timerValue %d\n",timerValue);
78 printf("intermediate 0x%016llx\n",intermediate);
79 printf("saveTime 0x%016llx\n",saveTime);
80
81 intermediate -= saveTime;// raw count for about 1/20 second
82 intermediate *= scale[timerValue];// rescale measured time spent
83 intermediate /= SAMPLE_NSECS;// so its exactly 1/20 a second
84 intermediate += latchTime;// add on our save fudge
85
86 set_PIT2(0);// reset timer 2 to be zero
87 disable_PIT2();// turn off PIT 2
88
89 return intermediate;
90}
91
92/*
93 * DFE: Measures the TSC frequency in Hz (64-bit) using the ACPI PM timer
94 */
95static uint64_t measure_tsc_frequency(void)
96{
97uint64_t tscStart;
98uint64_t tscEnd;
99uint64_t tscDelta = 0xffffffffffffffffULL;
100unsigned long pollCount;
101uint64_t retval = 0;
102int i;
103
104/* Time how many TSC ticks elapse in 30 msec using the 8254 PIT
105 * counter 2. We run this loop 3 times to make sure the cache
106 * is hot and we take the minimum delta from all of the runs.
107 * That is to say that we're biased towards measuring the minimum
108 * number of TSC ticks that occur while waiting for the timer to
109 * expire. That theoretically helps avoid inconsistencies when
110 * running under a VM if the TSC is not virtualized and the host
111 * steals time. The TSC is normally virtualized for VMware.
112 */
113for(i = 0; i < 10; ++i)
114{
115enable_PIT2();
116set_PIT2_mode0(CALIBRATE_LATCH);
117tscStart = rdtsc64();
118pollCount = poll_PIT2_gate();
119tscEnd = rdtsc64();
120/* The poll loop must have run at least a few times for accuracy */
121if (pollCount <= 1)
122continue;
123/* The TSC must increment at LEAST once every millisecond.
124 * We should have waited exactly 30 msec so the TSC delta should
125 * be >= 30. Anything less and the processor is way too slow.
126 */
127if ((tscEnd - tscStart) <= CALIBRATE_TIME_MSEC)
128continue;
129// tscDelta = MIN(tscDelta, (tscEnd - tscStart))
130if ( (tscEnd - tscStart) < tscDelta )
131tscDelta = tscEnd - tscStart;
132}
133/* tscDelta is now the least number of TSC ticks the processor made in
134 * a timespan of 0.03 s (e.g. 30 milliseconds)
135 * Linux thus divides by 30 which gives the answer in kiloHertz because
136 * 1 / ms = kHz. But we're xnu and most of the rest of the code uses
137 * Hz so we need to convert our milliseconds to seconds. Since we're
138 * dividing by the milliseconds, we simply multiply by 1000.
139 */
140
141/* Unlike linux, we're not limited to 32-bit, but we do need to take care
142 * that we're going to multiply by 1000 first so we do need at least some
143 * arithmetic headroom. For now, 32-bit should be enough.
144 * Also unlike Linux, our compiler can do 64-bit integer arithmetic.
145 */
146if (tscDelta > (1ULL<<32))
147retval = 0;
148else
149{
150retval = tscDelta * 1000 / 30;
151}
152disable_PIT2();
153return retval;
154}
155
156/*
157 * Original comment/code:
158 * "DFE: Measures the Max Performance Frequency in Hz (64-bit)"
159 *
160 * Measures the Actual Performance Frequency in Hz (64-bit)
161 * (just a naming change, mperf --> aperf )
162 */
163static uint64_t measure_aperf_frequency(void)
164{
165uint64_t aperfStart;
166uint64_t aperfEnd;
167uint64_t aperfDelta = 0xffffffffffffffffULL;
168unsigned long pollCount;
169uint64_t retval = 0;
170int i;
171
172/* Time how many APERF ticks elapse in 30 msec using the 8254 PIT
173 * counter 2. We run this loop 3 times to make sure the cache
174 * is hot and we take the minimum delta from all of the runs.
175 * That is to say that we're biased towards measuring the minimum
176 * number of APERF ticks that occur while waiting for the timer to
177 * expire.
178 */
179for(i = 0; i < 10; ++i)
180{
181enable_PIT2();
182set_PIT2_mode0(CALIBRATE_LATCH);
183aperfStart = rdmsr64(MSR_AMD_APERF);
184pollCount = poll_PIT2_gate();
185aperfEnd = rdmsr64(MSR_AMD_APERF);
186/* The poll loop must have run at least a few times for accuracy */
187if (pollCount <= 1)
188continue;
189/* The TSC must increment at LEAST once every millisecond.
190 * We should have waited exactly 30 msec so the APERF delta should
191 * be >= 30. Anything less and the processor is way too slow.
192 */
193if ((aperfEnd - aperfStart) <= CALIBRATE_TIME_MSEC)
194continue;
195// tscDelta = MIN(tscDelta, (tscEnd - tscStart))
196if ( (aperfEnd - aperfStart) < aperfDelta )
197aperfDelta = aperfEnd - aperfStart;
198}
199/* mperfDelta is now the least number of MPERF ticks the processor made in
200 * a timespan of 0.03 s (e.g. 30 milliseconds)
201 */
202
203if (aperfDelta > (1ULL<<32))
204retval = 0;
205else
206{
207retval = aperfDelta * 1000 / 30;
208}
209disable_PIT2();
210return retval;
211}
212
213/*
214 * Calculates the FSB and CPU frequencies using specific MSRs for each CPU
215 * - multi. is read from a specific MSR. In the case of Intel, there is:
216 * a max multi. (used to calculate the FSB freq.),
217 * and a current multi. (used to calculate the CPU freq.)
218 * - fsbFrequency = tscFrequency / multi
219 * - cpuFrequency = fsbFrequency * multi
220 */
221void scan_cpu(PlatformInfo_t *p)
222{
223uint64_ttscFrequency, fsbFrequency, cpuFrequency;
224uint64_tmsr, flex_ratio;
225uint8_tmaxcoef, maxdiv, currcoef, bus_ratio_max, currdiv;
226const char*newratio;
227intlen, myfsb;
228uint8_tbus_ratio_min;
229uint32_tmax_ratio, min_ratio;
230
231max_ratio = min_ratio = myfsb = bus_ratio_min = 0;
232maxcoef = maxdiv = bus_ratio_max = currcoef = currdiv = 0;
233
234/* get cpuid values */
235do_cpuid(0x00000000, p->CPU.CPUID[CPUID_0]);
236do_cpuid(0x00000001, p->CPU.CPUID[CPUID_1]);
237do_cpuid(0x00000002, p->CPU.CPUID[CPUID_2]);
238do_cpuid(0x00000003, p->CPU.CPUID[CPUID_3]);
239do_cpuid2(0x00000004, 0, p->CPU.CPUID[CPUID_4]);
240do_cpuid(0x80000000, p->CPU.CPUID[CPUID_80]);
241if ((p->CPU.CPUID[CPUID_80][0] & 0x0000000f) >= 8) {
242do_cpuid(0x80000008, p->CPU.CPUID[CPUID_88]);
243do_cpuid(0x80000001, p->CPU.CPUID[CPUID_81]);
244}
245else if ((p->CPU.CPUID[CPUID_80][0] & 0x0000000f) >= 1) {
246do_cpuid(0x80000001, p->CPU.CPUID[CPUID_81]);
247}
248
249#if DEBUG_CPU
250{
251inti;
252printf("CPUID Raw Values:\n");
253for (i=0; i<CPUID_MAX; i++) {
254printf("%02d: %08x-%08x-%08x-%08x\n", i,
255 p->CPU.CPUID[i][0], p->CPU.CPUID[i][1],
256 p->CPU.CPUID[i][2], p->CPU.CPUID[i][3]);
257}
258}
259#endif
260
261p->CPU.Vendor= p->CPU.CPUID[CPUID_0][1];
262p->CPU.Signature= p->CPU.CPUID[CPUID_1][0];
263p->CPU.Stepping= bitfield(p->CPU.CPUID[CPUID_1][0], 3, 0);
264p->CPU.Model= bitfield(p->CPU.CPUID[CPUID_1][0], 7, 4);
265p->CPU.Family= bitfield(p->CPU.CPUID[CPUID_1][0], 11, 8);
266p->CPU.ExtModel= bitfield(p->CPU.CPUID[CPUID_1][0], 19, 16);
267p->CPU.ExtFamily= bitfield(p->CPU.CPUID[CPUID_1][0], 27, 20);
268
269p->CPU.Model += (p->CPU.ExtModel << 4);
270
271if (p->CPU.Vendor == CPUID_VENDOR_INTEL &&
272p->CPU.Family == 0x06 &&
273p->CPU.Model >= CPUID_MODEL_NEHALEM &&
274p->CPU.Model != CPUID_MODEL_ATOM// MSR is *NOT* available on the Intel Atom CPU
275)
276{
277msr = rdmsr64(MSR_CORE_THREAD_COUNT);// Undocumented MSR in Nehalem and newer CPUs
278p->CPU.NoCores= bitfield((uint32_t)msr, 31, 16);// Using undocumented MSR to get actual values
279p->CPU.NoThreads= bitfield((uint32_t)msr, 15, 0);// Using undocumented MSR to get actual values
280}
281else if (p->CPU.Vendor == CPUID_VENDOR_AMD)
282{
283p->CPU.NoThreads= bitfield(p->CPU.CPUID[CPUID_1][1], 23, 16);
284p->CPU.NoCores= bitfield(p->CPU.CPUID[CPUID_88][2], 7, 0) + 1;
285}
286else
287{
288// Use previous method for Cores and Threads
289p->CPU.NoThreads= bitfield(p->CPU.CPUID[CPUID_1][1], 23, 16);
290p->CPU.NoCores= bitfield(p->CPU.CPUID[CPUID_4][0], 31, 26) + 1;
291}
292
293/* get brand string (if supported) */
294/* Copyright: from Apple's XNU cpuid.c */
295if (p->CPU.CPUID[CPUID_80][0] > 0x80000004) {
296uint32_treg[4];
297charstr[128], *s;
298/*
299 * The brand string 48 bytes (max), guaranteed to
300 * be NULL terminated.
301 */
302do_cpuid(0x80000002, reg);
303bcopy((char *)reg, &str[0], 16);
304do_cpuid(0x80000003, reg);
305bcopy((char *)reg, &str[16], 16);
306do_cpuid(0x80000004, reg);
307bcopy((char *)reg, &str[32], 16);
308for (s = str; *s != '\0'; s++) {
309if (*s != ' ') break;
310}
311
312strlcpy(p->CPU.BrandString, s, sizeof(p->CPU.BrandString));
313
314if (!strncmp(p->CPU.BrandString, CPU_STRING_UNKNOWN, MIN(sizeof(p->CPU.BrandString), strlen(CPU_STRING_UNKNOWN) + 1))) {
315/*
316 * This string means we have a firmware-programmable brand string,
317 * and the firmware couldn't figure out what sort of CPU we have.
318 */
319p->CPU.BrandString[0] = '\0';
320}
321}
322
323/* setup features */
324if ((bit(23) & p->CPU.CPUID[CPUID_1][3]) != 0) {
325p->CPU.Features |= CPU_FEATURE_MMX;
326}
327if ((bit(25) & p->CPU.CPUID[CPUID_1][3]) != 0) {
328p->CPU.Features |= CPU_FEATURE_SSE;
329}
330if ((bit(26) & p->CPU.CPUID[CPUID_1][3]) != 0) {
331p->CPU.Features |= CPU_FEATURE_SSE2;
332}
333if ((bit(0) & p->CPU.CPUID[CPUID_1][2]) != 0) {
334p->CPU.Features |= CPU_FEATURE_SSE3;
335}
336if ((bit(19) & p->CPU.CPUID[CPUID_1][2]) != 0) {
337p->CPU.Features |= CPU_FEATURE_SSE41;
338}
339if ((bit(20) & p->CPU.CPUID[CPUID_1][2]) != 0) {
340p->CPU.Features |= CPU_FEATURE_SSE42;
341}
342if ((bit(29) & p->CPU.CPUID[CPUID_81][3]) != 0) {
343p->CPU.Features |= CPU_FEATURE_EM64T;
344}
345if ((bit(5) & p->CPU.CPUID[CPUID_1][3]) != 0) {
346p->CPU.Features |= CPU_FEATURE_MSR;
347}
348//if ((bit(28) & p->CPU.CPUID[CPUID_1][3]) != 0) {
349if (p->CPU.NoThreads > p->CPU.NoCores) {
350p->CPU.Features |= CPU_FEATURE_HTT;
351}
352
353tscFrequency = measure_tsc_frequency();
354/* if usual method failed */
355if ( tscFrequency < 1000 )
356{
357tscFrequency = timeRDTSC() * 20;
358}
359fsbFrequency = 0;
360cpuFrequency = 0;
361
362if ((p->CPU.Vendor == CPUID_VENDOR_INTEL) && ((p->CPU.Family == 0x06) || (p->CPU.Family == 0x0f))) {
363int intelCPU = p->CPU.Model;
364if ((p->CPU.Family == 0x06 && p->CPU.Model >= 0x0c) || (p->CPU.Family == 0x0f && p->CPU.Model >= 0x03)) {
365/* Nehalem CPU model */
366if (p->CPU.Family == 0x06 && (p->CPU.Model == CPU_MODEL_NEHALEM||
367 p->CPU.Model == CPU_MODEL_FIELDS||
368 p->CPU.Model == CPU_MODEL_DALES||
369 p->CPU.Model == CPU_MODEL_DALES_32NM||
370 p->CPU.Model == CPU_MODEL_WESTMERE||
371 p->CPU.Model == CPU_MODEL_NEHALEM_EX||
372 p->CPU.Model == CPU_MODEL_WESTMERE_EX ||
373 p->CPU.Model == CPU_MODEL_SANDYBRIDGE ||
374 p->CPU.Model == CPU_MODEL_JAKETOWN||
375 p->CPU.Model == CPU_MODEL_IVYBRIDGE)) {
376msr = rdmsr64(MSR_PLATFORM_INFO);
377DBG("msr(%d): platform_info %08x\n", __LINE__, bitfield(msr, 31, 0));
378bus_ratio_max = bitfield(msr, 14, 8);
379bus_ratio_min = bitfield(msr, 46, 40); //valv: not sure about this one (Remarq.1)
380msr = rdmsr64(MSR_FLEX_RATIO);
381DBG("msr(%d): flex_ratio %08x\n", __LINE__, bitfield(msr, 31, 0));
382if (bitfield(msr, 16, 16)) {
383flex_ratio = bitfield(msr, 14, 8);
384/* bcc9: at least on the gigabyte h67ma-ud2h,
385 where the cpu multipler can't be changed to
386 allow overclocking, the flex_ratio msr has unexpected (to OSX)
387 contents.These contents cause mach_kernel to
388 fail to compute the bus ratio correctly, instead
389 causing the system to crash since tscGranularity
390 is inadvertently set to 0.
391 */
392if (flex_ratio == 0) {
393/* Clear bit 16 (evidently the presence bit) */
394wrmsr64(MSR_FLEX_RATIO, (msr & 0xFFFFFFFFFFFEFFFFULL));
395msr = rdmsr64(MSR_FLEX_RATIO);
396verbose("Unusable flex ratio detected. Patched MSR now %08x\n", bitfield(msr, 31, 0));
397} else {
398if (bus_ratio_max > flex_ratio) {
399bus_ratio_max = flex_ratio;
400}
401}
402}
403
404if (bus_ratio_max) {
405fsbFrequency = (tscFrequency / bus_ratio_max);
406}
407//valv: Turbo Ratio Limit
408if ((intelCPU != 0x2e) && (intelCPU != 0x2f)) {
409msr = rdmsr64(MSR_TURBO_RATIO_LIMIT);
410cpuFrequency = bus_ratio_max * fsbFrequency;
411max_ratio = bus_ratio_max * 10;
412} else {
413cpuFrequency = tscFrequency;
414}
415if ((getValueForKey(kbusratio, &newratio, &len, &bootInfo->chameleonConfig)) && (len <= 4)) {
416max_ratio = atoi(newratio);
417max_ratio = (max_ratio * 10);
418if (len >= 3) max_ratio = (max_ratio + 5);
419
420verbose("Bus-Ratio: min=%d, max=%s\n", bus_ratio_min, newratio);
421
422// extreme overclockers may love 320 ;)
423if ((max_ratio >= min_ratio) && (max_ratio <= 320)) {
424cpuFrequency = (fsbFrequency * max_ratio) / 10;
425if (len >= 3) maxdiv = 1;
426else maxdiv = 0;
427} else {
428max_ratio = (bus_ratio_max * 10);
429}
430}
431//valv: to be uncommented if Remarq.1 didn't stick
432/*if (bus_ratio_max > 0) bus_ratio = flex_ratio;*/
433p->CPU.MaxRatio = max_ratio;
434p->CPU.MinRatio = min_ratio;
435
436myfsb = fsbFrequency / 1000000;
437verbose("Sticking with [BCLK: %dMhz, Bus-Ratio: %d]\n", myfsb, max_ratio);
438currcoef = bus_ratio_max;
439} else {
440msr = rdmsr64(MSR_IA32_PERF_STATUS);
441DBG("msr(%d): ia32_perf_stat 0x%08x\n", __LINE__, bitfield(msr, 31, 0));
442currcoef = bitfield(msr, 12, 8);
443/* Non-integer bus ratio for the max-multi*/
444maxdiv = bitfield(msr, 46, 46);
445/* Non-integer bus ratio for the current-multi (undocumented)*/
446currdiv = bitfield(msr, 14, 14);
447
448// This will always be model >= 3
449if ((p->CPU.Family == 0x06 && p->CPU.Model >= 0x0e) || (p->CPU.Family == 0x0f))
450{
451/* On these models, maxcoef defines TSC freq */
452maxcoef = bitfield(msr, 44, 40);
453} else {
454/* On lower models, currcoef defines TSC freq */
455/* XXX */
456maxcoef = currcoef;
457}
458
459if (maxcoef) {
460if (maxdiv) {
461fsbFrequency = ((tscFrequency * 2) / ((maxcoef * 2) + 1));
462} else {
463fsbFrequency = (tscFrequency / maxcoef);
464}
465if (currdiv) {
466cpuFrequency = (fsbFrequency * ((currcoef * 2) + 1) / 2);
467} else {
468cpuFrequency = (fsbFrequency * currcoef);
469}
470DBG("max: %d%s current: %d%s\n", maxcoef, maxdiv ? ".5" : "",currcoef, currdiv ? ".5" : "");
471}
472}
473}
474/* Mobile CPU */
475if (rdmsr64(MSR_IA32_PLATFORM_ID) & (1<<28)) {
476p->CPU.Features |= CPU_FEATURE_MOBILE;
477}
478}
479else if ((p->CPU.Vendor == CPUID_VENDOR_AMD) && (p->CPU.Family == 0x0f))
480{
481switch(p->CPU.ExtFamily)
482{
483case 0x00: /* K8 */
484msr = rdmsr64(K8_FIDVID_STATUS);
485maxcoef = bitfield(msr, 21, 16) / 2 + 4;
486currcoef = bitfield(msr, 5, 0) / 2 + 4;
487break;
488
489case 0x01: /* K10 */
490msr = rdmsr64(K10_COFVID_STATUS);
491do_cpuid2(0x00000006, 0, p->CPU.CPUID[CPUID_6]);
492// EffFreq: effective frequency interface
493if (bitfield(p->CPU.CPUID[CPUID_6][2], 0, 0) == 1)
494{
495//uint64_t mperf = measure_mperf_frequency();
496uint64_t aperf = measure_aperf_frequency();
497cpuFrequency = aperf;
498}
499// NOTE: tsc runs at the maccoeff (non turbo)
500//*not* at the turbo frequency.
501maxcoef = bitfield(msr, 54, 49) / 2 + 4;
502currcoef = bitfield(msr, 5, 0) + 0x10;
503currdiv = 2 << bitfield(msr, 8, 6);
504
505break;
506
507case 0x05: /* K14 */
508msr = rdmsr64(K10_COFVID_STATUS);
509currcoef = (bitfield(msr, 54, 49) + 0x10) << 2;
510currdiv = (bitfield(msr, 8, 4) + 1) << 2;
511currdiv += bitfield(msr, 3, 0);
512
513break;
514
515case 0x02: /* K11 */
516// not implimented
517break;
518}
519
520if (maxcoef)
521{
522if (currdiv)
523{
524if (!currcoef) currcoef = maxcoef;
525if (!cpuFrequency)
526fsbFrequency = ((tscFrequency * currdiv) / currcoef);
527else
528fsbFrequency = ((cpuFrequency * currdiv) / currcoef);
529
530DBG("%d.%d\n", currcoef / currdiv, ((currcoef % currdiv) * 100) / currdiv);
531} else {
532if (!cpuFrequency)
533fsbFrequency = (tscFrequency / maxcoef);
534else
535fsbFrequency = (cpuFrequency / maxcoef);
536DBG("%d\n", currcoef);
537}
538}
539else if (currcoef)
540{
541if (currdiv)
542{
543fsbFrequency = ((tscFrequency * currdiv) / currcoef);
544DBG("%d.%d\n", currcoef / currdiv, ((currcoef % currdiv) * 100) / currdiv);
545} else {
546fsbFrequency = (tscFrequency / currcoef);
547DBG("%d\n", currcoef);
548}
549}
550if (!cpuFrequency) cpuFrequency = tscFrequency;
551}
552
553#if 0
554if (!fsbFrequency) {
555fsbFrequency = (DEFAULT_FSB * 1000);
556cpuFrequency = tscFrequency;
557DBG("0 ! using the default value for FSB !\n");
558}
559#endif
560
561p->CPU.MaxCoef = maxcoef;
562p->CPU.MaxDiv = maxdiv;
563p->CPU.CurrCoef = currcoef;
564p->CPU.CurrDiv = currdiv;
565p->CPU.TSCFrequency = tscFrequency;
566p->CPU.FSBFrequency = fsbFrequency;
567p->CPU.CPUFrequency = cpuFrequency;
568
569// keep formatted with spaces instead of tabs
570DBG("CPU: Brand String: %s\n", p->CPU.BrandString);
571 DBG("CPU: Vendor/Family/ExtFamily: 0x%x/0x%x/0x%x\n", p->CPU.Vendor, p->CPU.Family, p->CPU.ExtFamily);
572 DBG("CPU: Model/ExtModel/Stepping: 0x%x/0x%x/0x%x\n", p->CPU.Model, p->CPU.ExtModel, p->CPU.Stepping);
573 DBG("CPU: MaxCoef/CurrCoef: 0x%x/0x%x\n", p->CPU.MaxCoef, p->CPU.CurrCoef);
574 DBG("CPU: MaxDiv/CurrDiv: 0x%x/0x%x\n", p->CPU.MaxDiv, p->CPU.CurrDiv);
575 DBG("CPU: TSCFreq: %dMHz\n", p->CPU.TSCFrequency / 1000000);
576 DBG("CPU: FSBFreq: %dMHz\n", (p->CPU.FSBFrequency + 500000) / 1000000);
577 DBG("CPU: CPUFreq: %dMHz\n", p->CPU.CPUFrequency / 1000000);
578 DBG("CPU: NoCores/NoThreads: %d/%d\n", p->CPU.NoCores, p->CPU.NoThreads);
579 DBG("CPU: Features: 0x%08x\n", p->CPU.Features);
580#if DEBUG_CPU
581pause();
582#endif
583}
584

Archive Download this file

Revision: 1953