Chameleon

Chameleon Svn Source Tree

Root/branches/zenith432/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_CONROE:
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 -
387case CPUID_MODEL_SKYLAKE_S:// 0x5E
388
389if (strstr(Platform.CPU.BrandString, CORE_M))
390{
391value->word = 0xB06;// 2822
392return true;
393}
394
395if (strstr(Platform.CPU.BrandString, CORE_I3))
396{
397value->word = 0x906;// 2310 - Apple doesn't use it
398return true;
399}
400
401if (strstr(Platform.CPU.BrandString, CORE_I5))
402{
403value->word = 0x606;// 1542
404return true;
405}
406
407if (strstr(Platform.CPU.BrandString, CORE_I7))
408{
409value->word = 0x706;// 1798
410return true;
411}
412
413if (Platform.CPU.NoCores <= 2)
414{
415value->word = 0x606;// 1542
416return true;
417}
418
419//value->word = 0x706;// 1798
420return true;
421
422case CPUID_MODEL_IVYBRIDGE_XEON:// 0x3E - Mac Pro 6,1
423
424value->word = 0xA01;// 2561 - Xeon
425return true;
426
427case CPUID_MODEL_ATOM_3700:// 0x37 -
428case CPUID_MODEL_HASWELL:// 0x3C -
429case CPUID_MODEL_HASWELL_SVR:// 0x3F -
430case CPUID_MODEL_HASWELL_ULT:// 0x45 -
431case CPUID_MODEL_HASWELL_ULX:// 0x46 -
432case CPUID_MODEL_BROADWELL_HQ:// 0x47
433case CPUID_MODEL_SKYLAKE:
434case CPUID_MODEL_SKYLAKE_AVX:
435
436if (strstr(Platform.CPU.BrandString, XEON))
437{
438value->word = 0xA01;// 2561 - Xeon
439return true;
440}
441if (strstr(Platform.CPU.BrandString, CORE_I3))
442{
443value->word = 0x904;// 2308 - Core i3 - Apple doesn't use it - but we yes:-)
444return true;
445}
446
447if (strstr(Platform.CPU.BrandString, CORE_I5))
448{
449value->word = 0x605;// 1541 - Core i5
450return true;
451}
452
453if (strstr(Platform.CPU.BrandString, CORE_I7))
454{
455value->word = 0x705;// 1797 - Core i7
456return true;
457}
458
459if (Platform.CPU.NoCores <= 2)
460{
461value->word = 0x904;// - Core i3
462return true;
463}
464
465return true;
466
467case 0x15:// EP80579 integrated processor
468
469value->word = 0x301;// 769
470return true;
471
472case 0x13:// Core i5, Xeon MP, "Havendale", "Auburndale", 45nm
473case 0x19:// Intel Core i5 650 @3.20 Ghz
474
475value->word = 0x601;// 1537 - Core i5
476return true;
477
478default:
479
480return true;
481break; // Unsupported CPU type
482}
483break;
484
485default:
486break;
487}
488}
489/*
490if (Platform.CPU.Vendor == CPUID_VENDOR_AMD) // AMD
491{
492value->word = simpleGetSMBOemProcessorType();
493return true;
494}
495*/
496return false;
497}
498
499bool getSMBMemoryDeviceMemoryType(returnType *value)
500{
501static int idx = -1;
502intmap;
503
504idx++;
505if (idx < MAX_RAM_SLOTS)
506{
507map = Platform.DMI.DIMM[idx];
508if (Platform.RAM.DIMM[map].InUse && Platform.RAM.DIMM[map].Type != 0)
509{
510DBG("RAM Detected Type = %d\n", Platform.RAM.DIMM[map].Type);
511value->byte = Platform.RAM.DIMM[map].Type;
512return true;
513}
514}
515
516return false;
517//value->byte = SMB_MEM_TYPE_DDR2;
518//return true;
519}
520
521bool getSMBMemoryDeviceMemoryErrorHandle(returnType *value)
522{
523value->word = 0xFFFF;
524return true;
525}
526
527bool getSMBMemoryDeviceMemorySpeed(returnType *value)
528{
529static int idx = -1;
530intmap;
531
532idx++;
533if (idx < MAX_RAM_SLOTS)
534{
535map = Platform.DMI.DIMM[idx];
536if (Platform.RAM.DIMM[map].InUse && Platform.RAM.DIMM[map].Frequency != 0)
537{
538DBG("RAM Detected Freq = %d Mhz\n", Platform.RAM.DIMM[map].Frequency);
539value->dword = Platform.RAM.DIMM[map].Frequency;
540return true;
541}
542}
543
544return false;
545//value->dword = 800;
546//return true;
547}
548
549bool getSMBMemoryDeviceManufacturer(returnType *value)
550{
551static int idx = -1;
552intmap;
553
554idx++;
555if (idx < MAX_RAM_SLOTS)
556{
557map = Platform.DMI.DIMM[idx];
558if (Platform.RAM.DIMM[map].InUse && strlen(Platform.RAM.DIMM[map].Vendor) > 0)
559{
560DBG("RAM Detected Vendor[%d]='%s'\n", idx, Platform.RAM.DIMM[map].Vendor);
561value->string = Platform.RAM.DIMM[map].Vendor;
562return true;
563}
564}
565
566if (!bootInfo->memDetect)
567{
568return false;
569}
570value->string = NOT_AVAILABLE;
571return true;
572}
573
574bool getSMBMemoryDeviceSerialNumber(returnType *value)
575{
576static int idx = -1;
577intmap;
578
579idx++;
580
581//DBG("getSMBMemoryDeviceSerialNumber index: %d, MAX_RAM_SLOTS: %d\n", idx, MAX_RAM_SLOTS);
582
583if (idx < MAX_RAM_SLOTS)
584{
585map = Platform.DMI.DIMM[idx];
586if (Platform.RAM.DIMM[map].InUse && strlen(Platform.RAM.DIMM[map].SerialNo) > 0)
587{
588DBG("map=%d, RAM Detected SerialNo[%d]='%s'\n", map, idx, Platform.RAM.DIMM[map].SerialNo);
589value->string = Platform.RAM.DIMM[map].SerialNo;
590return true;
591}
592}
593
594if (!bootInfo->memDetect)
595{
596return false;
597}
598value->string = NOT_AVAILABLE;
599return true;
600}
601
602bool getSMBMemoryDevicePartNumber(returnType *value)
603{
604static int idx = -1;
605intmap;
606
607idx++;
608if (idx < MAX_RAM_SLOTS)
609{
610map = Platform.DMI.DIMM[idx];
611if (Platform.RAM.DIMM[map].InUse && strlen(Platform.RAM.DIMM[map].PartNo) > 0)
612{
613DBG("map=%d, RAM Detected PartNo[%d]='%s'\n", map, idx, Platform.RAM.DIMM[map].PartNo);
614value->string = Platform.RAM.DIMM[map].PartNo;
615return true;
616}
617}
618
619if (!bootInfo->memDetect)
620{
621return false;
622}
623value->string = NOT_AVAILABLE;
624return true;
625}
626
627
628// getting smbios addr with fast compare ops, late checksum testing ...
629#define COMPARE_DWORD(a,b) ( *((uint32_t *) a) == *((uint32_t *) b) )
630static const char * const SMTAG = "_SM_";
631static const char* const DMITAG = "_DMI_";
632
633SMBEntryPoint *getAddressOfSmbiosTable(void)
634{
635SMBEntryPoint*smbios;
636/*
637 * The logic is to start at 0xf0000 and end at 0xfffff iterating 16 bytes at a time looking
638 * for the SMBIOS entry-point structure anchor (literal ASCII "_SM_").
639 */
640smbios = (SMBEntryPoint*)SMBIOS_RANGE_START;
641while (smbios <= (SMBEntryPoint *)SMBIOS_RANGE_END)
642{
643if (COMPARE_DWORD(smbios->anchor, SMTAG) &&
644COMPARE_DWORD(smbios->dmi.anchor, DMITAG) &&
645smbios->dmi.anchor[4] == DMITAG[4] &&
646checksum8(smbios, sizeof(SMBEntryPoint)) == 0)
647{
648return smbios;
649 }
650smbios = (SMBEntryPoint*)(((char*)smbios) + 16);
651}
652printf("ERROR: Unable to find SMBIOS!\n");
653pause();
654return NULL;
655}
656
657

Archive Download this file

Revision: 2805