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
22bool getProcessorInformationExternalClock(returnType *value)
23{
24if (Platform.CPU.Vendor == CPUID_VENDOR_INTEL) // Intel
25{
26switch (Platform.CPU.Family)
27{
28case 0x06:
29{
30switch (Platform.CPU.Model)
31{
32// set external clock to 0 for SANDY
33// removes FSB info from system profiler as on real mac's.
34case CPU_MODEL_SANDYBRIDGE:
35case CPU_MODEL_IVYBRIDGE_XEON:
36case CPU_MODEL_IVYBRIDGE:
37value->word = 0;
38break;
39default:
40value->word = Platform.CPU.FSBFrequency/1000000;
41}
42}
43break;
44
45default:
46value->word = Platform.CPU.FSBFrequency/1000000;
47}
48}
49else
50{
51value->word = Platform.CPU.FSBFrequency/1000000;
52}
53
54return true;
55}
56
57bool getProcessorInformationMaximumClock(returnType *value)
58{
59value->word = Platform.CPU.CPUFrequency/1000000;
60return true;
61}
62
63bool getSMBOemProcessorBusSpeed(returnType *value)
64{
65if (Platform.CPU.Vendor == CPUID_VENDOR_INTEL) // Intel
66{
67switch (Platform.CPU.Family)
68{
69case 0x06:
70{
71switch (Platform.CPU.Model)
72{
73case CPU_MODEL_DOTHAN:// Intel Pentium M
74case CPU_MODEL_YONAH:// Intel Mobile Core Solo, Duo
75case CPU_MODEL_MEROM:// Intel Mobile Core 2 Solo, Duo, Xeon 30xx, Xeon 51xx, Xeon X53xx, Xeon E53xx, Xeon X32xx
76case CPU_MODEL_PENRYN:// Intel Core 2 Solo, Duo, Quad, Extreme, Xeon X54xx, Xeon X33xx
77case CPU_MODEL_ATOM:// Intel Atom (45nm)
78return false;
79
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_CLARKDALE:// 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{
88// thanks to dgobe for i3/i5/i7 bus speed detection
89int nhm_bus = 0x3F;
90static long possible_nhm_bus[] = {0xFF, 0x7F, 0x3F};
91unsigned long did, vid;
92int i;
93
94// Nehalem supports Scrubbing
95// First, locate the PCI bus where the MCH is located
96for(i = 0; i < sizeof(possible_nhm_bus); i++)
97{
98vid = pci_config_read16(PCIADDR(possible_nhm_bus[i], 3, 4), 0x00);
99did = pci_config_read16(PCIADDR(possible_nhm_bus[i], 3, 4), 0x02);
100vid &= 0xFFFF;
101did &= 0xFF00;
102
103if(vid == 0x8086 && did >= 0x2C00)
104nhm_bus = possible_nhm_bus[i];
105}
106
107unsigned long qpimult, qpibusspeed;
108qpimult = pci_config_read32(PCIADDR(nhm_bus, 2, 1), 0x50);
109qpimult &= 0x7F;
110DBG("qpimult %d\n", qpimult);
111qpibusspeed = (qpimult * 2 * (Platform.CPU.FSBFrequency/1000000));
112// Rek: rounding decimals to match original mac profile info
113if (qpibusspeed%100 != 0)qpibusspeed = ((qpibusspeed+50)/100)*100;
114DBG("qpibusspeed %d\n", qpibusspeed);
115value->word = qpibusspeed;
116return true;
117}
118}
119}
120}
121}
122return false;
123}
124
125uint16_t simpleGetSMBOemProcessorType(void)
126{
127if (Platform.CPU.NoCores >= 4)
128{
129return 0x0501;// Quad-Core Xeon
130}
131else if (Platform.CPU.NoCores == 1)
132{
133return 0x0201;// Core Solo
134};
135
136return 0x0301;// Core 2 Duo
137}
138
139bool getSMBOemProcessorType(returnType *value)
140{
141static bool done = false;
142
143value->word = simpleGetSMBOemProcessorType();
144
145if (Platform.CPU.Vendor == CPUID_VENDOR_INTEL) // Intel
146{
147if (!done)
148{
149verbose("CPU is %s, family 0x%x, model 0x%x\n", Platform.CPU.BrandString, Platform.CPU.Family, Platform.CPU.Model);
150done = true;
151}
152
153switch (Platform.CPU.Family)
154{
155case 0x06:
156{
157switch (Platform.CPU.Model)
158{
159case CPU_MODEL_DOTHAN:// Intel Pentium M
160case CPU_MODEL_YONAH:// Intel Mobile Core Solo, Duo
161case CPU_MODEL_MEROM:// Intel Mobile Core 2 Solo, Duo, Xeon 30xx, Xeon 51xx, Xeon X53xx, Xeon E53xx, Xeon X32xx
162case CPU_MODEL_PENRYN:// Intel Core 2 Solo, Duo, Quad, Extreme, Xeon X54xx, Xeon X33xx
163case CPU_MODEL_ATOM:// Intel Atom (45nm)
164return true;
165
166case CPU_MODEL_NEHALEM:// Intel Core i7, Xeon W35xx, Xeon X55xx, Xeon E55xx LGA1366 (45nm)
167case CPU_MODEL_WESTMERE:// Intel Core i7, Xeon X56xx, Xeon E56xx, Xeon W36xx LGA1366 (32nm) 6 Core
168case CPU_MODEL_WESTMERE_EX:// Intel Xeon E7
169case CPU_MODEL_SANDYBRIDGE_XEON:// Intel Core i7, Xeon E5-xxxx LGA2011 (32nm)
170if (strstr(Platform.CPU.BrandString, "Xeon(R)"))
171value->word = 0x0501;// Xeon
172else
173value->word = 0x0701;// Core i7
174return true;
175
176case CPU_MODEL_FIELDS:// Intel Core i5, i7, Xeon X34xx LGA1156 (45nm)
177if (strstr(Platform.CPU.BrandString, "Xeon(R)"))
178value->word = 0x0501;// Xeon
179else
180if (strstr(Platform.CPU.BrandString, "Core(TM) i5"))
181value->word = 0x0601;// Core i5
182else
183value->word = 0x0701;// Core i7
184return true;
185
186case CPU_MODEL_DALES:
187if (strstr(Platform.CPU.BrandString, "Core(TM) i5"))
188value->word = 0x0601;// Core i5
189else
190value->word = 0x0701;// Core i7
191return true;
192
193case CPU_MODEL_SANDYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (32nm)
194case CPU_MODEL_IVYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (22nm)
195case CPU_MODEL_CLARKDALE:// Intel Core i3, i5 LGA1156 (32nm)
196if (strstr(Platform.CPU.BrandString, "Core(TM) i3"))
197value->word = 0x0901;// Core i3
198else
199if (strstr(Platform.CPU.BrandString, "Core(TM) i5"))
200value->word = 0x0601;// Core i5
201else
202value->word = 0x0701;// Core i7
203return true;
204}
205}
206}
207}
208
209return false;
210}
211
212bool getSMBMemoryDeviceMemoryType(returnType *value)
213{
214static int idx = -1;
215intmap;
216
217idx++;
218if (idx < MAX_RAM_SLOTS)
219{
220map = Platform.DMI.DIMM[idx];
221if (Platform.RAM.DIMM[map].InUse && Platform.RAM.DIMM[map].Type != 0)
222{
223DBG("RAM Detected Type = %d\n", Platform.RAM.DIMM[map].Type);
224value->byte = Platform.RAM.DIMM[map].Type;
225return true;
226}
227}
228
229return false;
230//value->byte = SMB_MEM_TYPE_DDR2;
231//return true;
232}
233
234bool getSMBMemoryDeviceMemorySpeed(returnType *value)
235{
236static int idx = -1;
237intmap;
238
239idx++;
240if (idx < MAX_RAM_SLOTS)
241{
242map = Platform.DMI.DIMM[idx];
243if (Platform.RAM.DIMM[map].InUse && Platform.RAM.DIMM[map].Frequency != 0)
244{
245DBG("RAM Detected Freq = %d Mhz\n", Platform.RAM.DIMM[map].Frequency);
246value->dword = Platform.RAM.DIMM[map].Frequency;
247return true;
248}
249}
250
251return false;
252//value->dword = 800;
253//return true;
254}
255
256bool getSMBMemoryDeviceManufacturer(returnType *value)
257{
258static int idx = -1;
259intmap;
260
261idx++;
262if (idx < MAX_RAM_SLOTS)
263{
264map = Platform.DMI.DIMM[idx];
265if (Platform.RAM.DIMM[map].InUse && strlen(Platform.RAM.DIMM[map].Vendor) > 0)
266{
267DBG("RAM Detected Vendor[%d]='%s'\n", idx, Platform.RAM.DIMM[map].Vendor);
268value->string = Platform.RAM.DIMM[map].Vendor;
269return true;
270}
271}
272
273if (!bootInfo->memDetect)
274return false;
275value->string = NOT_AVAILABLE;
276return true;
277}
278
279bool getSMBMemoryDeviceSerialNumber(returnType *value)
280{
281static int idx = -1;
282intmap;
283
284idx++;
285
286 DBG("getSMBMemoryDeviceSerialNumber index: %d, MAX_RAM_SLOTS: %d\n",idx,MAX_RAM_SLOTS);
287
288if (idx < MAX_RAM_SLOTS)
289{
290map = Platform.DMI.DIMM[idx];
291if (Platform.RAM.DIMM[map].InUse && strlen(Platform.RAM.DIMM[map].SerialNo) > 0)
292{
293DBG("map=%d, RAM Detected SerialNo[%d]='%s'\n", map, idx, Platform.RAM.DIMM[map].SerialNo);
294value->string = Platform.RAM.DIMM[map].SerialNo;
295return true;
296}
297}
298
299if (!bootInfo->memDetect)
300return false;
301value->string = NOT_AVAILABLE;
302return true;
303}
304
305bool getSMBMemoryDevicePartNumber(returnType *value)
306{
307static int idx = -1;
308intmap;
309
310idx++;
311if (idx < MAX_RAM_SLOTS)
312{
313map = Platform.DMI.DIMM[idx];
314if (Platform.RAM.DIMM[map].InUse && strlen(Platform.RAM.DIMM[map].PartNo) > 0)
315{
316DBG("map=%d, RAM Detected PartNo[%d]='%s'\n", map, idx, Platform.RAM.DIMM[map].PartNo);
317value->string = Platform.RAM.DIMM[map].PartNo;
318return true;
319}
320}
321
322if (!bootInfo->memDetect)
323return false;
324value->string = NOT_AVAILABLE;
325return true;
326}
327
328
329// getting smbios addr with fast compare ops, late checksum testing ...
330#define COMPARE_DWORD(a,b) ( *((uint32_t *) a) == *((uint32_t *) b) )
331static const char * const SMTAG = "_SM_";
332static const char* const DMITAG = "_DMI_";
333
334SMBEntryPoint *getAddressOfSmbiosTable(void)
335{
336SMBEntryPoint*smbios;
337/*
338 * The logic is to start at 0xf0000 and end at 0xfffff iterating 16 bytes at a time looking
339 * for the SMBIOS entry-point structure anchor (literal ASCII "_SM_").
340 */
341smbios = (SMBEntryPoint*)SMBIOS_RANGE_START;
342while (smbios <= (SMBEntryPoint *)SMBIOS_RANGE_END) {
343if (COMPARE_DWORD(smbios->anchor, SMTAG) &&
344COMPARE_DWORD(smbios->dmi.anchor, DMITAG) &&
345smbios->dmi.anchor[4] == DMITAG[4] &&
346checksum8(smbios, sizeof(SMBEntryPoint)) == 0)
347 {
348return smbios;
349 }
350smbios = (SMBEntryPoint*)(((char*)smbios) + 16);
351}
352printf("ERROR: Unable to find SMBIOS!\n");
353pause();
354return NULL;
355}
356
357

Archive Download this file

Revision: 2248