Chameleon

Chameleon Svn Source Tree

Root/trunk/i386/libsaio/smbios_getters.c

1/*
2 * Add (c) here
3 *
4 * Copyright .... All rights reserved.
5 *
6 */
7
8#include "smbios_getters.h"
9#include "bootstruct.h"
10
11#ifndef DEBUG_SMBIOS
12#define DEBUG_SMBIOS 0
13#endif
14
15#if DEBUG_SMBIOS
16#define DBG(x...)printf(x)
17#else
18#define DBG(x...)
19#endif
20
21#define XEON "Xeon"
22#define CORE_M "Core(TM) M"
23#define CORE_I3 "Core(TM) i3"
24#define CORE_I5 "Core(TM) i5"
25#define CORE_I7 "Core(TM) i7"
26
27bool getProcessorInformationExternalClock(returnType *value)
28{
29if (Platform.CPU.Vendor == CPUID_VENDOR_INTEL) // Intel
30{
31switch (Platform.CPU.Family)
32{
33case 0x06:
34switch (Platform.CPU.Model)
35{
36// set external clock to 0 for SANDY
37// removes FSB info from system profiler as on real mac's.
38case CPUID_MODEL_SANDYBRIDGE:
39case CPUID_MODEL_JAKETOWN:
40case CPUID_MODEL_IVYBRIDGE_XEON:
41case CPUID_MODEL_IVYBRIDGE:
42case CPUID_MODEL_HASWELL:
43case CPUID_MODEL_HASWELL_SVR:
44case CPUID_MODEL_HASWELL_ULT:
45case CPUID_MODEL_HASWELL_ULX:
46
47value->word = 0;
48break;
49default:
50value->word = (uint16_t)(Platform.CPU.FSBFrequency/1000000LL);
51break;
52}
53break;
54
55default:
56value->word = (uint16_t)(Platform.CPU.FSBFrequency/1000000LL);
57break;
58}
59}
60else
61{
62value->word = (uint16_t)(Platform.CPU.FSBFrequency/1000000LL);
63}
64
65return true;
66}
67
68bool getProcessorInformationMaximumClock(returnType *value)
69{
70value->word = (uint16_t)(Platform.CPU.CPUFrequency/1000000LL);
71return true;
72}
73
74bool getSMBOemProcessorBusSpeed(returnType *value)
75{
76if (Platform.CPU.Vendor == CPUID_VENDOR_INTEL) // Intel
77{
78switch (Platform.CPU.Family)
79{
80case 0x06:
81switch (Platform.CPU.Model)
82{
83case CPUID_MODEL_PENTIUM_M:
84case CPUID_MODEL_DOTHAN:// Intel Pentium M
85case CPUID_MODEL_YONAH:// Intel Mobile Core Solo, Duo
86case CPUID_MODEL_MEROM:// Intel Mobile Core 2 Solo, Duo, Xeon 30xx, Xeon 51xx, Xeon X53xx, Xeon E53xx, Xeon X32xx
87case CPUID_MODEL_PENRYN:// Intel Core 2 Solo, Duo, Quad, Extreme, Xeon X54xx, Xeon X33xx
88case CPUID_MODEL_ATOM:// Intel Atom (45nm)
89return false;
90
91case 0x19:
92case CPUID_MODEL_NEHALEM:// Intel Core i7, Xeon W35xx, Xeon X55xx, Xeon E55xx LGA1366 (45nm)
93case CPUID_MODEL_FIELDS:// Intel Core i5, i7, Xeon X34xx LGA1156 (45nm)
94case CPUID_MODEL_CLARKDALE:
95case CPUID_MODEL_DALES:// Intel Core i3, i5 LGA1156 (32nm)
96case CPUID_MODEL_WESTMERE:// Intel Core i7, Xeon X56xx, Xeon E56xx, Xeon W36xx LGA1366 (32nm) 6 Core
97case CPUID_MODEL_NEHALEM_EX:// Intel Xeon X75xx, Xeon X65xx, Xeon E75xx, Xeon E65x
98case CPUID_MODEL_WESTMERE_EX:// Intel Xeon E7
99case CPUID_MODEL_SANDYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (32nm)
100case CPUID_MODEL_JAKETOWN:// Intel Core i7, Xeon E5 LGA2011 (32nm)
101case CPUID_MODEL_IVYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (22nm)
102case CPUID_MODEL_IVYBRIDGE_XEON:
103case CPUID_MODEL_HASWELL:
104case CPUID_MODEL_HASWELL_U5:
105{
106// thanks to dgobe for i3/i5/i7 bus speed detection
107int nhm_bus = 0x3F;
108static long possible_nhm_bus[] = {0xFF, 0x7F, 0x3F};
109unsigned long did, vid;
110unsigned int i;
111
112// Nehalem supports Scrubbing
113// First, locate the PCI bus where the MCH is located
114for(i = 0; i < (sizeof(possible_nhm_bus)/sizeof(possible_nhm_bus[0])); i++)
115{
116vid = pci_config_read16(PCIADDR(possible_nhm_bus[i], 3, 4), 0x00);
117did = pci_config_read16(PCIADDR(possible_nhm_bus[i], 3, 4), 0x02);
118vid &= 0xFFFF;
119did &= 0xFF00;
120
121if(vid == 0x8086 && did >= 0x2C00)
122{
123nhm_bus = possible_nhm_bus[i];
124}
125}
126
127unsigned long qpimult, qpibusspeed;
128qpimult = pci_config_read32(PCIADDR(nhm_bus, 2, 1), 0x50);
129qpimult &= 0x7F;
130DBG("qpimult %d\n", qpimult);
131qpibusspeed = (qpimult * 2 * (Platform.CPU.FSBFrequency/1000000LL));
132// Rek: rounding decimals to match original mac profile info
133if (qpibusspeed%100 != 0)
134{
135qpibusspeed = ((qpibusspeed+50)/100)*100;
136}
137DBG("qpibusspeed %d\n", qpibusspeed);
138value->word = qpibusspeed;
139return true;
140}
141break;
142
143default:
144break;
145}
146break;
147
148default:
149break;
150}
151}
152
153return false; //Unsupported CPU type
154}
155
156//bool getSMBOemPlatformFeature(returnType *value)
157//{
158// value->word = (uint64_t)(0x0000000000000001);
159// return true;
160//}
161
162uint16_t simpleGetSMBOemProcessorType(void)
163{
164if (Platform.CPU.NoCores >= 4)
165{
166return 0x402;// 1026 - Quad-Core Xeon
167}
168else if (Platform.CPU.NoCores == 1)
169{
170return 0x201;// 513 - Core Duo
171};
172
173return 0x301;// 769 - Core 2 Duo
174}
175
176bool getSMBOemProcessorType(returnType *value)
177{
178static bool done = false;
179
180value->word = simpleGetSMBOemProcessorType();
181
182if (Platform.CPU.Vendor == CPUID_VENDOR_INTEL) // Intel
183{
184if (!done)
185{
186verbose("CPU is %s, family 0x%x, model 0x%x\n", Platform.CPU.BrandString, (uint32_t)Platform.CPU.Family, (uint32_t)Platform.CPU.Model);
187done = true;
188}
189
190switch (Platform.CPU.Family)
191{
192case 0x0F:
193case 0x06:
194
195switch (Platform.CPU.Model)
196{
197case CPUID_MODEL_PENTIUM_M:
198case CPUID_MODEL_DOTHAN:// 0x0D - Intel Pentium M model D
199case CPUID_MODEL_PRESCOTT:
200case CPUID_MODEL_NOCONA:
201
202if (strstr(Platform.CPU.BrandString, XEON))
203{
204value->word = 0x402;// 1026 - Xeon
205return true;
206}
207
208return true;
209
210case CPUID_MODEL_PRESLER:
211case CPUID_MODEL_CELERON:
212case CPUID_MODEL_YONAH:// 0x0E - Intel Mobile Core Solo, Duo
213value->word = 0x201;// 513
214return true;
215
216case CPUID_MODEL_MEROM:// 0x0F - Intel Mobile Core 2 Solo, Duo, Xeon 30xx, Xeon 51xx, Xeon X53xx, Xeon E53xx, Xeon X32xx
217case CPUID_MODEL_XEON_MP:// 0x1D - Six-Core Xeon 7400, "Dunnington", 45nm
218case CPUID_MODEL_PENRYN:// 0x17 - Intel Core 2 Solo, Duo, Quad, Extreme, Xeon X54xx, Xeon X33xx
219
220if (strstr(Platform.CPU.BrandString, XEON))
221{
222value->word = 0x402;// 1026 - Xeon
223return true;
224}
225
226if (Platform.CPU.NoCores <= 2)
227{
228value->word = 0x301;// 769 - Core 2 Duo
229return true;
230}
231else
232{
233value->word = 0x402;// 1026 - Core 2 Quad as Xeon
234return true;
235}
236
237return true;
238
239case CPUID_MODEL_LINCROFT:// 0x27 - Intel Atom, "Lincroft", 45nm
240case CPUID_MODEL_ATOM:// 0x1C - Intel Atom (45nm)
241
242return true;
243
244case CPUID_MODEL_NEHALEM_EX:// 0x2E - Nehalem-ex, "Beckton", 45nm
245case CPUID_MODEL_NEHALEM:// 0x1A - Intel Core i7, Xeon W35xx, Xeon X55xx, Xeon E55xx LGA1366 (45nm)
246case CPUID_MODEL_FIELDS:// 0x1E - Intel Core i5, i7, Xeon X34xx LGA1156 (45nm)
247case CPUID_MODEL_CLARKDALE:// 0x1F - Intel Core i5, i7 LGA1156 (45nm) (Havendale, Auburndale)
248
249if (strstr(Platform.CPU.BrandString, XEON))
250{
251value->word = 0x501;// 1281 - Lynnfiled Quad-Core Xeon
252return true;
253}
254
255if (strstr(Platform.CPU.BrandString, CORE_I3))
256{
257value->word = 0x901;// 2305 - Core i3
258return true;
259}
260
261if (strstr(Platform.CPU.BrandString, CORE_I5))
262{
263value->word = 0x601;// Core i5
264return true;
265}
266
267if (strstr(Platform.CPU.BrandString, CORE_I7))
268{
269value->word = 0x701;// 1793 - Core i7
270return true;
271}
272
273if (Platform.CPU.NoCores <= 2)
274{
275value->word = 0x901;// - Core i3
276return true;
277}
278
279return true;
280
281case CPUID_MODEL_DALES:// 0x25 - Intel Core i3, i5 LGA1156 (32nm) (Clarkdale, Arrandale)
282case CPUID_MODEL_WESTMERE:// 0x2C - Intel Core i7, Xeon X56xx, Xeon E56xx, Xeon W36xx LGA1366 (32nm) 6 Core
283case CPUID_MODEL_WESTMERE_EX:// 0x2F - Intel Xeon E7
284
285if (strstr(Platform.CPU.BrandString, XEON))
286{
287value->word = 0x501;// 1281 - Xeon
288return true;
289}
290
291if (strstr(Platform.CPU.BrandString, CORE_I3))
292{
293value->word = 0x901;// 2305 - Core i3
294return true;
295}
296
297if (strstr(Platform.CPU.BrandString, CORE_I5))
298{
299value->word = 0x602;// 1538 - Core i5
300return true;
301}
302
303if (strstr(Platform.CPU.BrandString, CORE_I7))
304{
305value->word = 0x702;// 1794 -Core i7
306return true;
307}
308
309if (Platform.CPU.NoCores <= 2)
310{
311value->word = 0x901;// - Core i3
312return true;
313}
314
315return true;
316
317case CPUID_MODEL_JAKETOWN:// 0x2D - Intel Core i7, Xeon E5-xxxx LGA2011 (32nm)
318case CPUID_MODEL_SANDYBRIDGE:// 0x2A - Intel Core i3, i5, i7 LGA1155 (32nm)
319
320if (strstr(Platform.CPU.BrandString, XEON))
321{
322value->word = 0x501;// 1281 - Xeon
323return true;
324}
325
326if (strstr(Platform.CPU.BrandString, CORE_I3))
327{
328value->word = 0x902;// 2306 -Core i3
329return true;
330}
331
332if (strstr(Platform.CPU.BrandString, CORE_I5))
333{
334value->word = 0x603;// 1539 - Core i5
335return true;
336}
337
338if (strstr(Platform.CPU.BrandString, CORE_I7))
339{
340value->word = 0x703;// 1795 - Core i7
341return true;
342}
343
344if (Platform.CPU.NoCores <= 2)
345{
346value->word = 0x902;// - Core i5
347return true;
348}
349
350return true;
351
352case CPUID_MODEL_IVYBRIDGE:// 0x3A - Intel Core i3, i5, i7 LGA1155 (22nm)
353
354if (strstr(Platform.CPU.BrandString, XEON))
355{
356value->word = 0xA01;// 2561 - Xeon
357return true;
358}
359
360if (strstr(Platform.CPU.BrandString, CORE_I3))
361{
362value->word = 0x903;// 2307 - Core i3 - Apple doesn't use it
363return true;
364}
365
366if (strstr(Platform.CPU.BrandString, CORE_I5))
367{
368value->word = 0x604;// 1540 - Core i5
369return true;
370}
371
372if (strstr(Platform.CPU.BrandString, CORE_I7))
373{
374value->word = 0x704;// 1796 - Core i7
375return true;
376}
377
378if (Platform.CPU.NoCores <= 2)
379{
380value->word = 0x903;// - Core i5
381return true;
382}
383
384return true;
385
386case CPUID_MODEL_HASWELL_U5:// 0x3D -
387
388if (strstr(Platform.CPU.BrandString, CORE_M))
389{
390value->word = 0xB06;// 2822
391return true;
392}
393
394if (strstr(Platform.CPU.BrandString, CORE_I3))
395{
396value->word = 0x906;// 2310 - Apple doesn't use it
397return true;
398}
399
400if (strstr(Platform.CPU.BrandString, CORE_I5))
401{
402value->word = 0x606;// 1542
403return true;
404}
405
406if (strstr(Platform.CPU.BrandString, CORE_I7))
407{
408value->word = 0x706;// 1798
409return true;
410}
411
412if (Platform.CPU.NoCores <= 2)
413{
414value->word = 0x606;// 1542
415return true;
416}
417
418//value->word = 0x706;// 1798
419return true;
420
421case CPUID_MODEL_IVYBRIDGE_XEON:// 0x3E - Mac Pro 6,1
422
423value->word = 0xA01;// 2561 - Xeon
424return true;
425
426case CPUID_MODEL_ATOM_3700:// 0x37 -
427case CPUID_MODEL_HASWELL:// 0x3C -
428case CPUID_MODEL_HASWELL_SVR:// 0x3F -
429case CPUID_MODEL_HASWELL_ULT:// 0x45 -
430case CPUID_MODEL_HASWELL_ULX:// 0x46 -
431
432if (strstr(Platform.CPU.BrandString, XEON))
433{
434value->word = 0xA01;// 2561 - Xeon
435return true;
436}
437if (strstr(Platform.CPU.BrandString, CORE_I3))
438{
439value->word = 0x904;// 2308 - Core i3 - Apple doesn't use it - but we yes:-)
440return true;
441}
442
443if (strstr(Platform.CPU.BrandString, CORE_I5))
444{
445value->word = 0x605;// 1541 - Core i5
446return true;
447}
448
449if (strstr(Platform.CPU.BrandString, CORE_I7))
450{
451value->word = 0x705;// 1797 - Core i7
452return true;
453}
454
455if (Platform.CPU.NoCores <= 2)
456{
457value->word = 0x904;// - Core i3
458return true;
459}
460
461return true;
462
463case 0x15:// EP80579 integrated processor
464
465value->word = 0x301;// 769
466return true;
467
468case 0x13:// Core i5, Xeon MP, "Havendale", "Auburndale", 45nm
469case 0x19:// Intel Core i5 650 @3.20 Ghz
470
471value->word = 0x601;// 1537 - Core i5
472return true;
473
474default:
475
476return true;
477break; // Unsupported CPU type
478}
479break;
480
481default:
482break;
483}
484}
485/*
486if (Platform.CPU.Vendor == CPUID_VENDOR_AMD) // AMD
487{
488value->word = simpleGetSMBOemProcessorType();
489return true;
490}
491*/
492return false;
493}
494
495bool getSMBMemoryDeviceMemoryType(returnType *value)
496{
497static int idx = -1;
498intmap;
499
500if (!bootInfo->memDetect)
501{
502return false;
503}
504
505idx++;
506if (idx < MAX_RAM_SLOTS)
507{
508map = Platform.DMI.DIMM[idx];
509if (Platform.RAM.DIMM[map].InUse && Platform.RAM.DIMM[map].Type != 0)
510{
511DBG("RAM Detected Type = %d\n", Platform.RAM.DIMM[map].Type);
512value->byte = Platform.RAM.DIMM[map].Type;
513return true;
514}
515}
516
517value->byte = 2; // means Unknown
518return true;
519//value->byte = SMB_MEM_TYPE_DDR2;
520//return true;
521}
522
523bool getSMBMemoryDeviceMemoryErrorHandle(returnType *value)
524{
525value->word = 0xFFFF;
526return true;
527}
528
529bool getSMBMemoryDeviceMemorySpeed(returnType *value)
530{
531static int idx = -1;
532intmap;
533
534if (!bootInfo->memDetect)
535{
536return false;
537}
538
539idx++;
540if (idx < MAX_RAM_SLOTS)
541{
542map = Platform.DMI.DIMM[idx];
543if (Platform.RAM.DIMM[map].InUse && Platform.RAM.DIMM[map].Frequency != 0)
544{
545DBG("RAM Detected Freq = %d Mhz\n", Platform.RAM.DIMM[map].Frequency);
546value->dword = Platform.RAM.DIMM[map].Frequency;
547return true;
548}
549}
550
551value->dword = 0; // means Unknown
552return true;
553//value->dword = 800;
554//return true;
555}
556
557bool getSMBMemoryDeviceManufacturer(returnType *value)
558{
559static int idx = -1;
560intmap;
561
562if (!bootInfo->memDetect)
563{
564return false;
565}
566
567idx++;
568if (idx < MAX_RAM_SLOTS)
569{
570map = Platform.DMI.DIMM[idx];
571if (Platform.RAM.DIMM[map].InUse && strlen(Platform.RAM.DIMM[map].Vendor) > 0)
572{
573DBG("RAM Detected Vendor[%d]='%s'\n", idx, Platform.RAM.DIMM[map].Vendor);
574value->string = Platform.RAM.DIMM[map].Vendor;
575return true;
576}
577}
578
579value->string = NOT_AVAILABLE;
580return true;
581}
582
583bool getSMBMemoryDeviceSerialNumber(returnType *value)
584{
585static int idx = -1;
586intmap;
587
588if (!bootInfo->memDetect)
589{
590return false;
591}
592
593idx++;
594
595//DBG("getSMBMemoryDeviceSerialNumber index: %d, MAX_RAM_SLOTS: %d\n", idx, MAX_RAM_SLOTS);
596
597if (idx < MAX_RAM_SLOTS)
598{
599map = Platform.DMI.DIMM[idx];
600if (Platform.RAM.DIMM[map].InUse && strlen(Platform.RAM.DIMM[map].SerialNo) > 0)
601{
602DBG("map=%d, RAM Detected SerialNo[%d]='%s'\n", map, idx, Platform.RAM.DIMM[map].SerialNo);
603value->string = Platform.RAM.DIMM[map].SerialNo;
604return true;
605}
606}
607
608value->string = NOT_AVAILABLE;
609return true;
610}
611
612bool getSMBMemoryDevicePartNumber(returnType *value)
613{
614static int idx = -1;
615intmap;
616
617if (!bootInfo->memDetect)
618{
619return false;
620}
621
622idx++;
623if (idx < MAX_RAM_SLOTS)
624{
625map = Platform.DMI.DIMM[idx];
626if (Platform.RAM.DIMM[map].InUse && strlen(Platform.RAM.DIMM[map].PartNo) > 0)
627{
628DBG("map=%d, RAM Detected PartNo[%d]='%s'\n", map, idx, Platform.RAM.DIMM[map].PartNo);
629value->string = Platform.RAM.DIMM[map].PartNo;
630return true;
631}
632}
633
634value->string = NOT_AVAILABLE;
635return true;
636}
637
638
639// getting smbios addr with fast compare ops, late checksum testing ...
640#define COMPARE_DWORD(a,b) ( *((uint32_t *) a) == *((uint32_t *) b) )
641static const char * const SMTAG = "_SM_";
642static const char* const DMITAG = "_DMI_";
643
644SMBEntryPoint *getAddressOfSmbiosTable(void)
645{
646SMBEntryPoint*smbios;
647/*
648 * The logic is to start at 0xf0000 and end at 0xfffff iterating 16 bytes at a time looking
649 * for the SMBIOS entry-point structure anchor (literal ASCII "_SM_").
650 */
651smbios = (SMBEntryPoint*)SMBIOS_RANGE_START;
652while (smbios <= (SMBEntryPoint *)SMBIOS_RANGE_END)
653{
654if (COMPARE_DWORD(smbios->anchor, SMTAG) &&
655COMPARE_DWORD(smbios->dmi.anchor, DMITAG) &&
656smbios->dmi.anchor[4] == DMITAG[4] &&
657checksum8(smbios, sizeof(SMBEntryPoint)) == 0)
658{
659return smbios;
660 }
661smbios = (SMBEntryPoint*)(((char*)smbios) + 16);
662}
663printf("ERROR: Unable to find SMBIOS!\n");
664pause();
665return NULL;
666}
667
668

Archive Download this file

Revision: 2728