Chameleon

Chameleon Svn Source Tree

Root/branches/Chimera/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// removes FSB info from system profiler as on real mac's.
31 // sets external clock to 0
32case CPU_MODEL_SANDYBRIDGE:
33case CPU_MODEL_IVYBRIDGE_XEON:
34case CPU_MODEL_IVYBRIDGE:
35case CPU_MODEL_HASWELL:
36case CPU_MODEL_HASWELL_SVR:
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
87//case CPU_MODEL_SANDYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (32nm) // MacMan removed not valid for this CPU
88//case CPU_MODEL_IVYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (22nm) // MacMan removed not valid for this CPU
89//case CPU_MODEL_IVYBRIDGE_XEON: // MacMan moved
90//case CPU_MODEL_HASWELL: // MacMan removed not valid for this CPU
91//case CPU_MODEL_JAKETOWN:// Intel Core i7, Xeon E5 LGA2011 (32nm)// MacMan moved
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}
125// MacMan the following CPUs have fixed DMI2 speeds
126 case CPU_MODEL_IVYBRIDGE_XEON: // Intel Core i7, Xeon E5 v2 LGA2011 (22nm)
127case CPU_MODEL_JAKETOWN: // Intel Core i7, Xeon E5 LGA2011 (32nm)
128 {
129 unsigned long dmi2speed;
130 dmi2speed = 5000;
131 DBG("dmi2speed %d\n", dmi2speed);
132value->word = dmi2speed;
133return true;
134 }
135default:
136break; //Unsupported CPU type
137}
138}
139default:
140break;
141}
142}
143return false;
144}
145
146uint16_t simpleGetSMBOemProcessorType(void)
147{
148if (Platform.CPU.NoCores >= 4) {
149return 0x501;// 1281 - Quad-Core Xeon
150} else if (Platform.CPU.NoCores == 1) {
151return 0x201;// 513 - Core Solo
152};
153
154return 0x301;// 769 - Core 2 Duo
155}
156
157bool getSMBOemProcessorType(returnType *value)
158{
159static bool done = false;
160
161value->word = simpleGetSMBOemProcessorType();
162
163if (Platform.CPU.Vendor == CPUID_VENDOR_INTEL) { // Intel
164if (!done) {
165verbose("CPU is %s, family 0x%x, model 0x%x\n", Platform.CPU.BrandString, (uint32_t)Platform.CPU.Family, (uint32_t)Platform.CPU.Model);
166done = true;
167}
168// Bungo: fixes Oem Processor Type - better matching IMHO
169 // MacMan changed OEM Processor Type
170switch (Platform.CPU.Family) {
171case 0x06:
172{
173switch (Platform.CPU.Model) {
174
175case CPU_MODEL_DOTHAN:// 0x0D - Intel Pentium M model D
176value->word = 0x101;// 257
177return true;
178
179case CPU_MODEL_YONAH:// 0x0E - Intel Mobile Core Solo, Duo
180case CPU_MODEL_CELERON:
181value->word = 0x201;// 513
182return true;
183
184case CPU_MODEL_XEON_MP:// 0x1D - Six-Core Xeon 7400, "Dunnington", 45nm
185value->word = 0x401;// 1025
186return true;
187
188case CPU_MODEL_MEROM:// 0x0F - Intel Mobile Core 2 Solo, Duo, Xeon 30xx, Xeon 51xx, Xeon X53xx, Xeon E53xx, Xeon X32xx
189case CPU_MODEL_PENRYN:// 0x17 - Intel Core 2 Solo, Duo, Quad, Extreme, Xeon X54xx, Xeon X33xx
190if (strstr(Platform.CPU.BrandString, "Xeon(R)")) {
191value->word = 0x402;// 1026 - Xeon
192}
193case CPU_MODEL_PENTIUM_M:// 0x09 - Banias
194case CPU_MODEL_LINCROFT:// 0x27 - Intel Atom, "Lincroft", 45nm
195case CPU_MODEL_ATOM:// 0x1C - Intel Atom (45nm)
196return true;
197
198case CPU_MODEL_FIELDS:// 0x1E - Intel Core i5, i7, Xeon X34xx LGA1156 (45nm)
199case CPU_MODEL_DALES:// 0x1F - Intel Core i5, i7 LGA1156 (45nm) (Havendale, Auburndale)
200 case CPU_MODEL_DALES_32NM:// 0x25 - Intel Core i3, i5 LGA1156 (32nm) (Clarkdale, Arrandale)
201if (strstr(Platform.CPU.BrandString, "Xeon(R)")) {
202value->word = 0x501;// 1281 - Lynnfiled Quad-Core Xeon
203return true;
204}
205if (strstr(Platform.CPU.BrandString, "Core(TM) i3")) {
206value->word = 0x901;// 2305 - Core i3
207return true;
208}
209if (strstr(Platform.CPU.BrandString, "Core(TM) i5")) {
210value->word = 0x601;// Core i5
211return true;
212}
213if (strstr(Platform.CPU.BrandString, "Core(TM) i7")) {
214value->word = 0x701;// 1793 - Core i7
215return true;
216}
217if (Platform.CPU.NoCores <= 2) {
218value->word = 0x601;// 1537 - Core i5
219}
220return true;
221
222 case CPU_MODEL_NEHALEM:// 0x1A - Intel Core i7, Xeon W35xx, Xeon X55xx, Xeon E55xx LGA1366 (45nm)
223 case CPU_MODEL_NEHALEM_EX:// 0x2E - Intel Xeon X75xx, Xeon X65xx, Xeon E75xx, Xeon E65xx, Xeon L75xx, LGA1567 (45nm)
224 case CPU_MODEL_WESTMERE:// 0x2C - Intel Core i7, Xeon X56xx, Xeon E56xx, Xeon W36xx LGA1366 (32nm) 6 Core
225case CPU_MODEL_WESTMERE_EX:// 0x2F - Intel Xeon E7
226 case CPU_MODEL_JAKETOWN:// 0x2D - Intel Core i7, Xeon E5-xxxx LGA2011 (32nm)
227 case CPU_MODEL_HASWELL_SVR:// 0x3F -
228if (strstr(Platform.CPU.BrandString, "Xeon(R)")) {
229value->word = 0x501;// 1281 - Xeon
230return true;
231}
232if (strstr(Platform.CPU.BrandString, "Core(TM) i7")) {
233value->word = 0x702;// 1794 -Core i7
234return true;
235}
236return true;
237
238case CPU_MODEL_SANDYBRIDGE:// 0x2A - Intel Core i3, i5, i7 LGA1155 (32nm)
239 case CPU_MODEL_IVYBRIDGE:// 0x3A - Intel Core i3, i5, i7 LGA1155 (22nm)
240if (strstr(Platform.CPU.BrandString, "Xeon(R)")) {
241value->word = 0x501;// 1281 - Xeon
242return true;
243}
244if (strstr(Platform.CPU.BrandString, "Core(TM) i3")) {
245value->word = 0x902;// 2306 -Core i3
246return true;
247}
248if (strstr(Platform.CPU.BrandString, "Core(TM) i5")) {
249value->word = 0x603;// 1539 - Core i5
250return true;
251}
252if (strstr(Platform.CPU.BrandString, "Core(TM) i7")) {
253value->word = 0x703;// 1795 - Core i7
254return true;
255}
256if (Platform.CPU.NoCores <= 2) {
257value->word = 0x603;// 1539 - Core i5
258}
259return true;
260
261case CPU_MODEL_IVYBRIDGE_XEON:// 0x3E - Mac Pro 6,1
262value->word = 0xA01;// 2561
263return true;
264
265case CPU_MODEL_HASWELL:// 0x3C -
266case CPU_MODEL_HASWELL_ULT:// 0x45 -
267case CPU_MODEL_CRYSTALWELL:// 0x46
268if (strstr(Platform.CPU.BrandString, "Xeon(R)")) {
269value->word = 0xA01;// 2561 - Xeon
270return true;
271}
272if (strstr(Platform.CPU.BrandString, "Core(TM) i3")) {
273value->word = 0x904;// 2308 - Core i3 - Apple doesn't use it - but we yes:-)
274return true;
275}
276if (strstr(Platform.CPU.BrandString, "Core(TM) i5")) {
277value->word = 0x605;// 1541 - Core i5
278return true;
279}
280if (strstr(Platform.CPU.BrandString, "Core(TM) i7")) {
281value->word = 0x705;// 1797 - Core i7
282return true;
283}
284if (Platform.CPU.NoCores <= 2) {
285value->word = 0x605;// 1541 - Core i5
286}
287return true;
288
289case 0x15:// EP80579 integrated processor
290value->word = 0x301;// 769
291return true;
292
293case 0x13:// Core i5, Xeon MP, "Havendale", "Auburndale", 45nm
294case 0x19:// Intel Core i5 650 @3.20 Ghz
295value->word = 0x601;// 1537 - Core i5
296return true;
297default:
298break; //Unsupported CPU type
299}
300}
301default:
302break;
303}
304}
305
306return false;
307}
308
309bool getSMBMemoryDeviceMemoryType(returnType *value)
310{
311static int idx = -1;
312intmap;
313
314idx++;
315if (idx < MAX_RAM_SLOTS) {
316map = Platform.DMI.DIMM[idx];
317if (Platform.RAM.DIMM[map].InUse && Platform.RAM.DIMM[map].Type != 0) {
318DBG("RAM Detected Type = %d\n", Platform.RAM.DIMM[map].Type);
319value->byte = Platform.RAM.DIMM[map].Type;
320return true;
321}
322}
323
324return false;
325//value->byte = SMB_MEM_TYPE_DDR2;
326//return true;
327}
328
329bool getSMBMemoryDeviceMemoryErrorHandle(returnType *value)
330{
331value->word = 0xFFFF;
332return true;
333}
334
335bool getSMBMemoryDeviceMemorySpeed(returnType *value)
336{
337static int idx = -1;
338intmap;
339
340idx++;
341if (idx < MAX_RAM_SLOTS) {
342map = Platform.DMI.DIMM[idx];
343if (Platform.RAM.DIMM[map].InUse && Platform.RAM.DIMM[map].Frequency != 0) {
344DBG("RAM Detected Freq = %d Mhz\n", Platform.RAM.DIMM[map].Frequency);
345value->dword = Platform.RAM.DIMM[map].Frequency;
346return true;
347}
348}
349
350return false;
351//value->dword = 800;
352//return true;
353}
354
355bool getSMBMemoryDeviceManufacturer(returnType *value)
356{
357static int idx = -1;
358intmap;
359
360idx++;
361if (idx < MAX_RAM_SLOTS) {
362map = Platform.DMI.DIMM[idx];
363if (Platform.RAM.DIMM[map].InUse && strlen(Platform.RAM.DIMM[map].Vendor) > 0) {
364DBG("RAM Detected Vendor[%d]='%s'\n", idx, Platform.RAM.DIMM[map].Vendor);
365value->string = Platform.RAM.DIMM[map].Vendor;
366return true;
367}
368}
369
370if (!bootInfo->memDetect) {
371return false;
372}
373value->string = NOT_AVAILABLE;
374return true;
375}
376
377bool getSMBMemoryDeviceSerialNumber(returnType *value)
378{
379static int idx = -1;
380intmap;
381
382idx++;
383
384DBG("getSMBMemoryDeviceSerialNumber index: %d, MAX_RAM_SLOTS: %d\n",idx,MAX_RAM_SLOTS);
385
386if (idx < MAX_RAM_SLOTS) {
387map = Platform.DMI.DIMM[idx];
388if (Platform.RAM.DIMM[map].InUse && strlen(Platform.RAM.DIMM[map].SerialNo) > 0) {
389DBG("map=%d, RAM Detected SerialNo[%d]='%s'\n", map, idx, Platform.RAM.DIMM[map].SerialNo);
390value->string = Platform.RAM.DIMM[map].SerialNo;
391return true;
392}
393}
394
395if (!bootInfo->memDetect) {
396return false;
397}
398value->string = NOT_AVAILABLE;
399return true;
400}
401
402bool getSMBMemoryDevicePartNumber(returnType *value)
403{
404static int idx = -1;
405intmap;
406
407idx++;
408if (idx < MAX_RAM_SLOTS) {
409map = Platform.DMI.DIMM[idx];
410if (Platform.RAM.DIMM[map].InUse && strlen(Platform.RAM.DIMM[map].PartNo) > 0) {
411DBG("map=%d, RAM Detected PartNo[%d]='%s'\n", map, idx, Platform.RAM.DIMM[map].PartNo);
412value->string = Platform.RAM.DIMM[map].PartNo;
413return true;
414}
415}
416
417if (!bootInfo->memDetect) {
418return false;
419}
420value->string = NOT_AVAILABLE;
421return true;
422}
423
424
425// getting smbios addr with fast compare ops, late checksum testing ...
426#define COMPARE_DWORD(a,b) ( *((uint32_t *) a) == *((uint32_t *) b) )
427static const char * const SMTAG = "_SM_";
428static const char* const DMITAG = "_DMI_";
429
430SMBEntryPoint *getAddressOfSmbiosTable(void)
431{
432SMBEntryPoint*smbios;
433/*
434 * The logic is to start at 0xf0000 and end at 0xfffff iterating 16 bytes at a time looking
435 * for the SMBIOS entry-point structure anchor (literal ASCII "_SM_").
436 */
437smbios = (SMBEntryPoint*)SMBIOS_RANGE_START;
438while (smbios <= (SMBEntryPoint *)SMBIOS_RANGE_END) {
439if (COMPARE_DWORD(smbios->anchor, SMTAG) &&
440COMPARE_DWORD(smbios->dmi.anchor, DMITAG) &&
441smbios->dmi.anchor[4] == DMITAG[4] &&
442checksum8(smbios, sizeof(SMBEntryPoint)) == 0) {
443return smbios;
444 }
445smbios = (SMBEntryPoint*)(((char*)smbios) + 16);
446}
447printf("ERROR: Unable to find SMBIOS!\n");
448pause();
449return NULL;
450}
451
452

Archive Download this file

Revision: 2394