Chameleon

Chameleon Svn Source Tree

Root/branches/ErmaC/Enoch/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
22bool getProcessorInformationExternalClock(returnType *value)
23{
24if (Platform.CPU.Vendor == CPUID_VENDOR_INTEL) { // Intel
25switch (Platform.CPU.Family) {
26case 0x06:
27{
28switch (Platform.CPU.Model)
29{
30// set external clock to 0 for SANDY
31// removes FSB info from system profiler as on real mac's.
32case CPU_MODEL_SANDYBRIDGE:
33case CPU_MODEL_IVYBRIDGE_XEON:
34case CPU_MODEL_IVYBRIDGE:
35case CPU_MODEL_HASWELL:
36case CPU_MODEL_HASWELL_MB:
37case CPU_MODEL_HASWELL_ULT:
38case CPU_MODEL_CRYSTALWELL:
39
40value->word = 0;
41break;
42default:
43value->word = (uint16_t)(Platform.CPU.FSBFrequency/1000000LL);
44}
45}
46break;
47
48default:
49value->word = (uint16_t)(Platform.CPU.FSBFrequency/1000000LL);
50}
51} else {
52value->word = (uint16_t)(Platform.CPU.FSBFrequency/1000000LL);
53}
54
55return true;
56}
57
58bool getProcessorInformationMaximumClock(returnType *value)
59{
60value->word = (uint16_t)(Platform.CPU.CPUFrequency/1000000LL);
61return true;
62}
63
64bool getSMBOemProcessorBusSpeed(returnType *value)
65{
66if (Platform.CPU.Vendor == CPUID_VENDOR_INTEL) { // Intel
67switch (Platform.CPU.Family) {
68case 0x06:
69{
70switch (Platform.CPU.Model) {
71case CPU_MODEL_PENTIUM_M:
72case CPU_MODEL_DOTHAN:// Intel Pentium M
73case CPU_MODEL_YONAH:// Intel Mobile Core Solo, Duo
74case CPU_MODEL_MEROM:// Intel Mobile Core 2 Solo, Duo, Xeon 30xx, Xeon 51xx, Xeon X53xx, Xeon E53xx, Xeon X32xx
75case CPU_MODEL_PENRYN:// Intel Core 2 Solo, Duo, Quad, Extreme, Xeon X54xx, Xeon X33xx
76case CPU_MODEL_ATOM:// Intel Atom (45nm)
77return false;
78
79case 0x19:
80case CPU_MODEL_NEHALEM:// Intel Core i7, Xeon W35xx, Xeon X55xx, Xeon E55xx LGA1366 (45nm)
81case CPU_MODEL_FIELDS:// Intel Core i5, i7, Xeon X34xx LGA1156 (45nm)
82case CPU_MODEL_DALES:
83case CPU_MODEL_DALES_32NM:// Intel Core i3, i5 LGA1156 (32nm)
84case CPU_MODEL_WESTMERE:// Intel Core i7, Xeon X56xx, Xeon E56xx, Xeon W36xx LGA1366 (32nm) 6 Core
85case CPU_MODEL_NEHALEM_EX:// Intel Xeon X75xx, Xeon X65xx, Xeon E75xx, Xeon E65x
86case CPU_MODEL_WESTMERE_EX:// Intel Xeon E7
87case CPU_MODEL_SANDYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (32nm)
88case CPU_MODEL_IVYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (22nm)
89case CPU_MODEL_IVYBRIDGE_XEON:
90case CPU_MODEL_HASWELL:
91case CPU_MODEL_JAKETOWN:// Intel Core i7, Xeon E5 LGA2011 (32nm)
92{
93// thanks to dgobe for i3/i5/i7 bus speed detection
94int nhm_bus = 0x3F;
95static long possible_nhm_bus[] = {0xFF, 0x7F, 0x3F};
96unsigned long did, vid;
97unsigned int i;
98
99// Nehalem supports Scrubbing
100// First, locate the PCI bus where the MCH is located
101for(i = 0; i < (sizeof(possible_nhm_bus)/sizeof(possible_nhm_bus[0])); i++) {
102vid = pci_config_read16(PCIADDR(possible_nhm_bus[i], 3, 4), 0x00);
103did = pci_config_read16(PCIADDR(possible_nhm_bus[i], 3, 4), 0x02);
104vid &= 0xFFFF;
105did &= 0xFF00;
106
107if(vid == 0x8086 && did >= 0x2C00) {
108nhm_bus = possible_nhm_bus[i];
109}
110}
111
112unsigned long qpimult, qpibusspeed;
113qpimult = pci_config_read32(PCIADDR(nhm_bus, 2, 1), 0x50);
114qpimult &= 0x7F;
115DBG("qpimult %d\n", qpimult);
116qpibusspeed = (qpimult * 2 * (Platform.CPU.FSBFrequency/1000000LL));
117// Rek: rounding decimals to match original mac profile info
118if (qpibusspeed%100 != 0) {
119qpibusspeed = ((qpibusspeed+50)/100)*100;
120}
121DBG("qpibusspeed %d\n", qpibusspeed);
122value->word = qpibusspeed;
123return true;
124}
125default:
126break; //Unsupported CPU type
127}
128}
129default:
130break;
131}
132}
133return false;
134}
135
136uint16_t simpleGetSMBOemProcessorType(void)
137{
138if (Platform.CPU.NoCores >= 4) {
139return 0x0501;// Quad-Core Xeon
140} else if (Platform.CPU.NoCores == 1) {
141return 0x0201;// Core Solo
142};
143
144return 0x0301;// Core 2 Duo
145}
146
147bool getSMBOemProcessorType(returnType *value)
148{
149static bool done = false;
150
151value->word = simpleGetSMBOemProcessorType();
152
153if (Platform.CPU.Vendor == CPUID_VENDOR_INTEL) { // Intel
154if (!done) {
155verbose("CPU is %s, family 0x%x, model 0x%x\n", Platform.CPU.BrandString, (uint32_t)Platform.CPU.Family, (uint32_t)Platform.CPU.Model);
156done = true;
157}
158// Bungo: fixes Oem Processor Type - better matching IMHO
159switch (Platform.CPU.Family) {
160case 0x06:
161{
162switch (Platform.CPU.Model) {
163
164case CPU_MODEL_DOTHAN:// 0x0D - Intel Pentium M model D
165value->word = 0x101;
166return true;
167
168case CPU_MODEL_YONAH:// 0x0E - Intel Mobile Core Solo, Duo
169case CPU_MODEL_CELERON:
170value->word = 0x201;
171return true;
172
173case CPU_MODEL_XEON_MP:// 0x1D - Six-Core Xeon 7400, "Dunnington", 45nm
174value->word = 0x401;
175return true;
176
177case CPU_MODEL_MEROM:// 0x0F - Intel Mobile Core 2 Solo, Duo, Xeon 30xx, Xeon 51xx, Xeon X53xx, Xeon E53xx, Xeon X32xx
178case CPU_MODEL_PENRYN:// 0x17 - Intel Core 2 Solo, Duo, Quad, Extreme, Xeon X54xx, Xeon X33xx
179if (strstr(Platform.CPU.BrandString, "Xeon(R)")) {
180value->word = 0x402;// Xeon
181}
182case CPU_MODEL_PENTIUM_M:// 0x09 - Banias
183case CPU_MODEL_LINCROFT:// 0x27 - Intel Atom, "Lincroft", 45nm
184case CPU_MODEL_ATOM:// 0x1C - Intel Atom (45nm)
185return true;
186
187case CPU_MODEL_NEHALEM_EX:// 0x2E - Nehalem-ex, "Beckton", 45nm
188case CPU_MODEL_NEHALEM:// 0x1A - Intel Core i7, Xeon W35xx, Xeon X55xx, Xeon E55xx LGA1366 (45nm)
189if (strstr(Platform.CPU.BrandString, "Xeon(R)")) {
190value->word = 0x501;// Xeon
191}
192if (strstr(Platform.CPU.BrandString, "Core(TM) i7")) {
193value->word = 0x701;// Core i7
194}
195return true;
196
197case CPU_MODEL_FIELDS:// 0x1E - Intel Core i5, i7, Xeon X34xx LGA1156 (45nm)
198if (strstr(Platform.CPU.BrandString, "Xeon(R)")) {
199value->word = 0x501;// Lynnfiled Quad-Core Xeon
200}
201if (strstr(Platform.CPU.BrandString, "Core(TM) i7")) {
202value->word = 0x701;// Core i7
203}
204if (strstr(Platform.CPU.BrandString, "Core(TM) i5")) {
205value->word = 0x601;// Core i5
206}
207return true;
208
209case CPU_MODEL_DALES:// 0x1F - Intel Core i5, i7 LGA1156 (45nm) (Havendale, Auburndale)
210if (strstr(Platform.CPU.BrandString, "Core(TM) i3")) {
211value->word = 0x901;// Core i3
212}
213if (strstr(Platform.CPU.BrandString, "Core(TM) i5")) {
214value->word = 0x602;// Core i5
215}
216if (strstr(Platform.CPU.BrandString, "Core(TM) i7")) {
217value->word = 0x702;// Core i7
218}
219if (Platform.CPU.NoCores <= 2) {
220value->word = 0x602;// Core i5
221}
222return true;
223
224case CPU_MODEL_DALES_32NM:// 0x25 - Intel Core i3, i5 LGA1156 (32nm) (Clarkdale, Arrandale)
225if (strstr(Platform.CPU.BrandString, "Core(TM) i3")) {
226value->word = 0x901;// Core i3
227}
228if (strstr(Platform.CPU.BrandString, "Core(TM) i5")) {
229value->word = 0x601;// Core i5
230}
231if(strstr(Platform.CPU.BrandString, "Core(TM) i5 CPU M 540")) {
232value->word = 0x602;// Core i5
233}
234if (strstr(Platform.CPU.BrandString, "Core(TM) i7")) {
235value->word = 0x701;// Core i7
236}
237if (Platform.CPU.NoCores <= 2) {
238value->word = 0x602;// Core i5
239}
240return true;
241
242case CPU_MODEL_WESTMERE:// 0x2C - Intel Core i7, Xeon X56xx, Xeon E56xx, Xeon W36xx LGA1366 (32nm) 6 Core
243case CPU_MODEL_WESTMERE_EX:// 0x2F - Intel Xeon E7
244if (strstr(Platform.CPU.BrandString, "Xeon(R)")) {
245value->word = 0x501;// Xeon
246}
247if (strstr(Platform.CPU.BrandString, "Core(TM) i7")) {
248value->word = 0x701;// Core i7
249}
250return true;
251
252case CPU_MODEL_JAKETOWN:// 0x2D - Intel Core i7, Xeon E5-xxxx LGA2011 (32nm)
253case CPU_MODEL_SANDYBRIDGE:// 0x2A - Intel Core i3, i5, i7 LGA1155 (32nm)
254if (strstr(Platform.CPU.BrandString, "Xeon(R)")) {
255value->word = 0x501;// Xeon
256}
257if (strstr(Platform.CPU.BrandString, "Core(TM) i3")) {
258value->word = 0x903;// Core i3
259}
260if (strstr(Platform.CPU.BrandString, "Core(TM) i5")) {
261value->word = 0x603;// Core i5
262}
263if (strstr(Platform.CPU.BrandString, "Core(TM) i7")) {
264value->word = 0x703;// Core i7
265}
266if (Platform.CPU.NoCores <= 2) {
267value->word = 0x603;// Core i5
268}
269return true;
270
271case CPU_MODEL_IVYBRIDGE:// 0x3A - Intel Core i3, i5, i7 LGA1155 (22nm)
272if (strstr(Platform.CPU.BrandString, "Core(TM) i3")) {
273value->word = 0x903;// Core i3 - Apple doesn't use it
274}
275if (strstr(Platform.CPU.BrandString, "Core(TM) i5")) {
276value->word = 0x604;// Core i5
277}
278if (strstr(Platform.CPU.BrandString, "Core(TM) i7")) {
279value->word = 0x704;// Core i7
280}
281if (Platform.CPU.NoCores <= 2) {
282value->word = 0x604;// Core i5
283}
284return true;
285
286case CPU_MODEL_IVYBRIDGE_XEON:// 0x3E - Mac Pro 6,1 - shouldn't be Sandy Bridge EP refering to intel spec.?
287value->word = 0xA01;
288return true;
289
290case CPU_MODEL_HASWELL:// 0x3C -
291case CPU_MODEL_HASWELL_MB:// 0x3F -
292case CPU_MODEL_HASWELL_ULT:// 0x45 -
293case CPU_MODEL_CRYSTALWELL:// 0x46
294if (strstr(Platform.CPU.BrandString, "Core(TM) i3")) {
295value->word = 0x905;// Core i3 - Apple doesn't use it
296}
297if (strstr(Platform.CPU.BrandString, "Core(TM) i5")) {
298value->word = 0x605;// Core i5
299}
300if (strstr(Platform.CPU.BrandString, "Core(TM) i7")) {
301value->word = 0x705;// Core i7
302}
303if (Platform.CPU.NoCores <= 2) {
304value->word = 0x605;// Core i5
305}
306return true;
307
308case 0x15:// EP80579 integrated processor
309value->word = 0x301;//
310return true;
311
312case 0x13:// Core i5, Xeon MP, "Havendale", "Auburndale", 45nm
313case 0x19:// Intel Core i5 650 @3.20 Ghz
314value->word = 0x601;// Core i5
315return true;
316default:
317break; //Unsupported CPU type
318}
319}
320default:
321break;
322}
323}
324
325return false;
326}
327
328bool getSMBMemoryDeviceMemoryType(returnType *value)
329{
330static int idx = -1;
331intmap;
332
333idx++;
334if (idx < MAX_RAM_SLOTS) {
335map = Platform.DMI.DIMM[idx];
336if (Platform.RAM.DIMM[map].InUse && Platform.RAM.DIMM[map].Type != 0) {
337DBG("RAM Detected Type = %d\n", Platform.RAM.DIMM[map].Type);
338value->byte = Platform.RAM.DIMM[map].Type;
339return true;
340}
341}
342
343return false;
344//value->byte = SMB_MEM_TYPE_DDR2;
345//return true;
346}
347
348bool getSMBMemoryDeviceMemoryErrorHandle(returnType *value)
349{
350value->word = 0xFFFF;
351return true;
352}
353
354bool getSMBMemoryDeviceMemorySpeed(returnType *value)
355{
356static int idx = -1;
357intmap;
358
359idx++;
360if (idx < MAX_RAM_SLOTS) {
361map = Platform.DMI.DIMM[idx];
362if (Platform.RAM.DIMM[map].InUse && Platform.RAM.DIMM[map].Frequency != 0) {
363DBG("RAM Detected Freq = %d Mhz\n", Platform.RAM.DIMM[map].Frequency);
364value->dword = Platform.RAM.DIMM[map].Frequency;
365return true;
366}
367}
368
369return false;
370//value->dword = 800;
371//return true;
372}
373
374bool getSMBMemoryDeviceManufacturer(returnType *value)
375{
376static int idx = -1;
377intmap;
378
379idx++;
380if (idx < MAX_RAM_SLOTS) {
381map = Platform.DMI.DIMM[idx];
382if (Platform.RAM.DIMM[map].InUse && strlen(Platform.RAM.DIMM[map].Vendor) > 0) {
383DBG("RAM Detected Vendor[%d]='%s'\n", idx, Platform.RAM.DIMM[map].Vendor);
384value->string = Platform.RAM.DIMM[map].Vendor;
385return true;
386}
387}
388
389if (!bootInfo->memDetect) {
390return false;
391}
392value->string = NOT_AVAILABLE;
393return true;
394}
395
396bool getSMBMemoryDeviceSerialNumber(returnType *value)
397{
398static int idx = -1;
399intmap;
400
401idx++;
402
403DBG("getSMBMemoryDeviceSerialNumber index: %d, MAX_RAM_SLOTS: %d\n",idx,MAX_RAM_SLOTS);
404
405if (idx < MAX_RAM_SLOTS) {
406map = Platform.DMI.DIMM[idx];
407if (Platform.RAM.DIMM[map].InUse && strlen(Platform.RAM.DIMM[map].SerialNo) > 0) {
408DBG("map=%d, RAM Detected SerialNo[%d]='%s'\n", map, idx, Platform.RAM.DIMM[map].SerialNo);
409value->string = Platform.RAM.DIMM[map].SerialNo;
410return true;
411}
412}
413
414if (!bootInfo->memDetect) {
415return false;
416}
417value->string = NOT_AVAILABLE;
418return true;
419}
420
421bool getSMBMemoryDevicePartNumber(returnType *value)
422{
423static int idx = -1;
424intmap;
425
426idx++;
427if (idx < MAX_RAM_SLOTS) {
428map = Platform.DMI.DIMM[idx];
429if (Platform.RAM.DIMM[map].InUse && strlen(Platform.RAM.DIMM[map].PartNo) > 0) {
430DBG("map=%d, RAM Detected PartNo[%d]='%s'\n", map, idx, Platform.RAM.DIMM[map].PartNo);
431value->string = Platform.RAM.DIMM[map].PartNo;
432return true;
433}
434}
435
436if (!bootInfo->memDetect) {
437return false;
438}
439value->string = NOT_AVAILABLE;
440return true;
441}
442
443
444// getting smbios addr with fast compare ops, late checksum testing ...
445#define COMPARE_DWORD(a,b) ( *((uint32_t *) a) == *((uint32_t *) b) )
446static const char * const SMTAG = "_SM_";
447static const char* const DMITAG = "_DMI_";
448
449SMBEntryPoint *getAddressOfSmbiosTable(void)
450{
451SMBEntryPoint*smbios;
452/*
453 * The logic is to start at 0xf0000 and end at 0xfffff iterating 16 bytes at a time looking
454 * for the SMBIOS entry-point structure anchor (literal ASCII "_SM_").
455 */
456smbios = (SMBEntryPoint*)SMBIOS_RANGE_START;
457while (smbios <= (SMBEntryPoint *)SMBIOS_RANGE_END) {
458if (COMPARE_DWORD(smbios->anchor, SMTAG) &&
459COMPARE_DWORD(smbios->dmi.anchor, DMITAG) &&
460smbios->dmi.anchor[4] == DMITAG[4] &&
461checksum8(smbios, sizeof(SMBEntryPoint)) == 0) {
462return smbios;
463 }
464smbios = (SMBEntryPoint*)(((char*)smbios) + 16);
465}
466printf("ERROR: Unable to find SMBIOS!\n");
467pause();
468return NULL;
469}
470
471

Archive Download this file

Revision: 2347