Chameleon

Chameleon Svn Source Tree

Root/trunk/i386/libsaio/smbios_decode.c

1/*
2 * A very simple SMBIOS Table decoder, part of the Chameleon Boot Loader Project
3 *
4 * Copyright 2010 by Islam M. Ahmed Zaid. All rights reserved.
5 *
6 */
7
8#include "libsaio.h"
9#include "smbios.h"
10// Bungo:
11#include "boot.h"
12#include "bootstruct.h"
13
14#ifndef DEBUG_SMBIOS
15#define DEBUG_SMBIOS 0
16#endif
17
18#if DEBUG_SMBIOS
19#define DBG(x...)printf(x)
20#else
21#define DBG(x...)msglog(x)
22#endif
23
24extern char *getSMBStringForField(SMBStructHeader *structHeader, uint8_t field);
25// Bungo:
26#define NotSpecifiedStr "Not Specified" // no string
27#define OutOfSpecStr "<OUT OF SPEC>" // value out of smbios spec. range
28#define PrivateStr "** PRIVATE **" // masking private data
29#define neverMask false
30
31static bool privateData = true;
32static SMBByte minorVersion; // SMBIOS rev. minor
33static SMBByte majorVersion; // SMBIOS rev. major
34static SMBByte bcdRevisionLo; // DMI rev. minor
35static SMBByte bcdRevisionHi; // DMI rev. major
36
37/*====
38 7.2.2
39 ===*/
40static const char *SMBWakeUpTypes[] = // Bungo: strings for wake-up type (Table Type 1 - System Information)
41{
42"Reserved", /* 00h */
43"Other", /* 01h */
44"Unknown", /* 02h */
45"APM Timer", /* 03h */
46"Modem Ring", /* 04h */
47"LAN Remote", /* 05h */
48"Power Switch", /* 06h */
49"PCI PME#", /* 07h */
50"AC Power Restored" /* 08h */
51};
52
53/*====
54 7.3.2
55 ===*/
56static const char *SMBBaseBoardTypes[] = // Bungo: strings for base board type (Table Type 2 - Base Board Information)
57{
58"Unknown", /* 01h */
59"Other", /* 02h */
60"Server Blade", /* 03h */
61"Connectivity Switch", /* 04h */
62"System Management Module", /* 05h */
63"Processor Module", /* 06h */
64"I/O Module", /* 07h */
65"Memory Module", /* 08h */
66"Daughter Board", /* 09h */
67"Motherboard", /* 0Ah */
68"Processor+Memory Module", /* 0Bh */
69"Processor+I/O Module", /* 0Ch */
70"Interconnect Board" /* 0Dh */
71};
72
73 /*===
74 7.4.1
75 ===*/
76static const char *SMBChassisTypes[] = // Bungo: strings for chassis type (Table Type 3 - Chassis Information)
77{
78"Other", /* 01h */
79"Unknown", /* 02h */
80"Desktop", /* 03h */
81"Low Profile Desktop", /* 04h */
82"Pizza Box", /* 05h */
83"Mini Tower", /* 06h */
84"Tower", /* 07h */
85"Portable", /* 08h */
86"Laptop", /* 09h */
87"Notebook", /* 0Ah */
88"Hand Held", /* 0Bh */
89"Docking Station", /* 0Ch */
90"All in One", /* 0Dh */
91"Sub Notebook", /* 0Eh */
92"Space-saving", /* 0Fh */
93"Lunch Box",/* 10h */
94"Main Server Chassis",/* 11h */
95"Expansion Chassis",/* 12h */
96"SubChassis",/* 13h */
97"Bus Expansion Chassis",/* 14h */
98"Peripheral Chassis",/* 15h */
99"RAID Chassis",/* 16h */
100"Rack Mount Chassis", /* 17h */
101"Sealed-case PC",/* 18h */
102"Multi-system Chassis", /* 19h */
103"Compact PCI",/* 1Ah */
104"Advanced TCA",/* 1Bh */
105"Blade",/* 1Ch */ // An SMBIOS implementation for a Blade would contain a Type 3 Chassis structure
106"Blade Enclosing"/* 1Dh */ // A Blade Enclosure is a specialized chassis that contains a set of Blades.
107};
108
109/*====
110 7.5.1
111 ===*/
112static const char *SMBProcessorTypes[] = // Bungo: strings for processor type (Table Type 4 - Processor Information)
113{
114"Other", /* 01h */
115"Unknown", /* 02h */
116"Central Processor", /* 03h */
117"Math Processor", /* 04h */
118"DSP Processor", /* 05h */
119"Video Processor" /* 06h */
120};
121
122/*====
123 7.5.5
124 ===*/
125static const char *SMBProcessorUpgrades[] = // ErmaC: strings for processor upgrade (Table Type 4 - Processor Information)
126{
127"Other", /* 01h */
128"Unknown", /* 02h */
129"Daughter Board",
130"ZIF Socket",
131"Replaceable Piggy Back",
132"None",
133"LIF Socket",
134"Slot 1",
135"Slot 2",
136"370-pin Socket",
137"Slot A",
138"Slot M",
139"Socket 423",
140"Socket A (Socket 462)",
141"Socket 478",
142"Socket 754",
143"Socket 940",
144"Socket 939",
145"Socket mPGA604",
146"Socket LGA771",
147"Socket LGA775",
148"Socket S1",
149"Socket AM2",
150"Socket F (1207)",
151"Socket LGA1366",
152"Socket G34",
153"Socket AM3",
154"Socket C32",
155"Socket LGA1156",
156"Socket LGA1567",
157"Socket PGA988A",
158"Socket BGA1288",
159"Socket rPGA988B",
160"Socket BGA1023",
161"Socket BGA1224",
162"Socket BGA1155",
163"Socket LGA1356",
164"Socket LGA2011",
165"Socket FS1",
166"Socket FS2",
167"Socket FM1",
168"Socket FM2",
169"Socket LGA2011-3",
170"Socket LGA1356-3" /* 2Ch */
171};
172
173/*=====
174 7.18.2
175 ====*/
176static const char *
177SMBMemoryDeviceTypes[] =
178{
179"RAM", /* 00h Undefined */
180"RAM", /* 01h Other */
181"RAM", /* 02h Unknown */
182"DRAM", /* 03h DRAM */
183"EDRAM", /* 04h EDRAM */
184"VRAM", /* 05h VRAM */
185"SRAM", /* 06h SRAM */
186"RAM", /* 07h RAM */
187"ROM", /* 08h ROM */
188"FLASH", /* 09h FLASH */
189"EEPROM", /* 0Ah EEPROM */
190"FEPROM", /* 0Bh FEPROM */
191"EPROM", /* 0Ch EPROM */
192"CDRAM", /* 0Dh CDRAM */
193"3DRAM", /* 0Eh 3DRAM */
194"SDRAM", /* 0Fh SDRAM */
195"SGRAM", /* 10h SGRAM */
196"RDRAM", /* 11h RDRAM */
197"DDR SDRAM", /* 12h DDR */
198"DDR2 SDRAM", /* 13h DDR2 */
199"DDR2 FB-DIMM", /* 14h DDR2 FB-DIMM */
200"RAM",/* 15h unused */
201"RAM",/* 16h unused */
202"RAM",/* 17h unused */
203"DDR3",/* 18h DDR3, chosen in [5776134] */
204"FBD2"/* 19h FBD2 */
205};
206
207static const int kSMBMemoryDeviceTypeCount = sizeof(SMBMemoryDeviceTypes) /
208 sizeof(SMBMemoryDeviceTypes[0]);
209
210// Bungo: fixes random string readout if null in smbios to "Not Specified" as dmidecode displays
211char *SMBStringForField(SMBStructHeader *structHeader, uint8_t field, const bool mask)
212{
213char *str = NULL;
214str = getSMBStringForField(structHeader, field);
215if (!field) {
216str = NotSpecifiedStr;
217}
218else if (mask) {
219str = PrivateStr;
220}
221
222return str;
223};
224
225void printHeader(SMBStructHeader *structHeader)
226{
227DBG("Handle: 0x%04x, DMI type %d, %d bytes\n", structHeader->handle, structHeader->type, structHeader->length);
228}
229
230//-------------------------------------------------------------------------------------------------------------------------
231// BIOS Information (Type 0)
232//-------------------------------------------------------------------------------------------------------------------------
233void decodeBIOSInformation(SMBStructHeader *structHeader)
234{
235printHeader(structHeader);
236DBG("BIOS Information\n");
237DBG("\tVendor: %s\n", SMBStringForField(structHeader, ((SMBBIOSInformation *)structHeader)->vendor, neverMask));
238DBG("\tVersion: %s\n", SMBStringForField(structHeader, ((SMBBIOSInformation *)structHeader)->version, neverMask));
239DBG("\tRelease Date: %s\n", SMBStringForField(structHeader, ((SMBBIOSInformation *)structHeader)->releaseDate, neverMask));
240// Address:
241// Runtime Size:
242// ROM Size:
243// DBG("\tSupported BIOS functions: (0x%llX) %s\n", ((SMBBIOSInformation *)structHeader)->characteristics, SMBBIOSInfoChar0[((SMBBIOSInformation *)structHeader)->characteristics]);
244DBG("\tBIOS Revision: %d.%d\n", ((SMBBIOSInformation *)structHeader)->releaseMajor, ((SMBBIOSInformation *)structHeader)->releaseMinor);
245// Firmware Major Release
246// Firmware Minor Release
247// SMBByte characteristicsExt1;
248// SMBByte characteristicsExt2;
249DBG("\n");
250}
251
252//-------------------------------------------------------------------------------------------------------------------------
253// System Information (Type 1)
254//-------------------------------------------------------------------------------------------------------------------------
255void decodeSystemInformation(SMBStructHeader *structHeader)
256{
257printHeader(structHeader);
258DBG("System Information\n");
259DBG("\tManufacturer: %s\n", SMBStringForField(structHeader, ((SMBSystemInformation *)structHeader)->manufacturer, neverMask));
260DBG("\tProduct Name: %s\n", SMBStringForField(structHeader, ((SMBSystemInformation *)structHeader)->productName, neverMask));
261DBG("\tVersion: %s\n", SMBStringForField(structHeader, ((SMBSystemInformation *)structHeader)->version, neverMask));
262DBG("\tSerial Number: %s\n", SMBStringForField(structHeader, ((SMBSystemInformation *)structHeader)->serialNumber, privateData));
263uint8_t *uuid = ((SMBSystemInformation *)structHeader)->uuid;
264if (privateData) {
265DBG("\tUUID: %s\n", PrivateStr);
266} else {
267DBG("\tUUID: %02X%02X%02X%02X-%02X%02X-%02X%02X-%02x%02X-%02X%02X%02X%02X%02X%02X\n",
268uuid[0], uuid[1], uuid[2], uuid[3], uuid[4], uuid[5], uuid[6], uuid[7],
269uuid[8], uuid[9], uuid[10], uuid[11], uuid[12], uuid[13], uuid[14], uuid[15]);
270}
271if (((SMBSystemInformation *)structHeader)->wakeupReason > 8) {
272DBG("\tWake-up Type: %s\n", OutOfSpecStr);
273} else {
274DBG("\tWake-up Type: %s\n", SMBWakeUpTypes[((SMBSystemInformation *)structHeader)->wakeupReason]);
275}
276DBG("\tSKU Number: %s\n", SMBStringForField(structHeader, ((SMBSystemInformation *)structHeader)->skuNumber, neverMask)); // System SKU#
277DBG("\tFamily: %s\n", SMBStringForField(structHeader, ((SMBSystemInformation *)structHeader)->family, neverMask));
278DBG("\n");
279}
280
281//-------------------------------------------------------------------------------------------------------------------------
282// Base Board (or Module) Information (Type 2)
283//-------------------------------------------------------------------------------------------------------------------------
284void decodeBaseBoard(SMBStructHeader *structHeader)
285{
286printHeader(structHeader);
287DBG("Base Board Information\n");
288DBG("\tManufacturer: %s\n", SMBStringForField(structHeader, ((SMBBaseBoard *)structHeader)->manufacturer, neverMask));
289DBG("\tProduct Name: %s\n", SMBStringForField(structHeader, ((SMBBaseBoard *)structHeader)->product, neverMask));
290DBG("\tVersion: %s\n", SMBStringForField(structHeader, ((SMBBaseBoard *)structHeader)->version, neverMask));
291DBG("\tSerial Number: %s\n", SMBStringForField(structHeader, ((SMBBaseBoard *)structHeader)->serialNumber, privateData));
292DBG("\tAsset Tag: %s\n", SMBStringForField(structHeader, ((SMBBaseBoard *)structHeader)->assetTag, neverMask));
293// Feature Flags (BYTE)
294DBG("\tLocation In Chassis: %s\n", SMBStringForField(structHeader, ((SMBBaseBoard *)structHeader)->locationInChassis, neverMask)); // Part Component
295// Chassis Handle (WORD)
296if ((((SMBBaseBoard *)structHeader)->boardType < kSMBBaseBoardUnknown) || (((SMBBaseBoard *)structHeader)->boardType > kSMBBaseBoardInterconnect)) {
297DBG("\tType: %s\n", OutOfSpecStr);
298} else {
299DBG("\tType: %s\n", SMBBaseBoardTypes[(((SMBBaseBoard *)structHeader)->boardType - 1)]);
300}
301// Number of Contained Object Handles (n) (BYTE)
302// Contained Object Handles n(WORDs)
303DBG("\n");
304}
305
306//-------------------------------------------------------------------------------------------------------------------------
307// System Enclosure or Chassis (Type 3)
308//-------------------------------------------------------------------------------------------------------------------------
309void decodeSystemEnclosure(SMBStructHeader *structHeader)
310{
311printHeader(structHeader);
312DBG("Chassis Information\n");
313DBG("\tManufacturer: %s\n", SMBStringForField(structHeader, ((SMBSystemEnclosure *)structHeader)->manufacturer, neverMask));
314if ((((SMBSystemEnclosure *)structHeader)->chassisType < kSMBchassisOther) || (((SMBSystemEnclosure *)structHeader)->chassisType > kSMBchassisBladeEnclosing)) {
315DBG("\tType: %s\n", OutOfSpecStr);
316} else {
317DBG("\tType: %s\n", SMBChassisTypes[(((SMBSystemEnclosure *)structHeader)->chassisType - 1)]);
318}
319// Lock:
320DBG("\tVersion: %s\n", SMBStringForField(structHeader, ((SMBSystemEnclosure *)structHeader)->version, neverMask));
321DBG("\tSerial Number: %s\n", SMBStringForField(structHeader, ((SMBSystemEnclosure *)structHeader)->serialNumber, privateData));
322DBG("\tAsset Tag: %s\n", SMBStringForField(structHeader, ((SMBSystemEnclosure *)structHeader)->assetTag, neverMask));
323// Boot-up State:
324// Power Supply State
325// Thermal State
326// Security Status:
327// OEM Information:
328// Height;
329// Number Of Power Cords: Cords;
330// Contained Elements: ElementsCount;
331// SKU Number:
332// ElementLen;
333// Elements[1]; // open array of ElementsCount*ElementLen BYTEs
334DBG("\n");
335}
336
337//-------------------------------------------------------------------------------------------------------------------------
338// Processor Information (Type 4)
339//-------------------------------------------------------------------------------------------------------------------------
340void decodeProcessorInformation(SMBStructHeader *structHeader)
341{
342printHeader(structHeader);
343DBG("Processor Information\n");
344DBG("\tSocket Designation: %s\n", SMBStringForField(structHeader, ((SMBProcessorInformation *)structHeader)->socketDesignation, neverMask));
345if ((((SMBProcessorInformation *)structHeader)->processorType < kSMBprocessorTypeOther) || (((SMBProcessorInformation *)structHeader)->processorType > kSMBprocessorTypeGPU)) {
346DBG("\tType: %s\n", OutOfSpecStr);
347} else {
348DBG("\tType: %s\n", SMBProcessorTypes[((SMBProcessorInformation *)structHeader)->processorType - 1]);
349}
350DBG("\tFamily: 0x%X\n", ((SMBProcessorInformation *)structHeader)->processorFamily);
351DBG("\tManufacturer: %s\n", SMBStringForField(structHeader, ((SMBProcessorInformation *)structHeader)->manufacturer, neverMask));
352DBG("\tID: 0x%llX\n", ((SMBProcessorInformation *)structHeader)->processorID);
353//DBG("\tSignature: Type %u, Family %u, Model %u, Stepping %u\n", (eax >> 12) & 0x3, ((eax >> 20) & 0xFF) + ((eax >> 8) & 0x0F), ((eax >> 12) & 0xF0) + ((eax >> 4) & 0x0F), eax & 0xF);
354// Flags:
355DBG("\tVersion: %s\n", SMBStringForField(structHeader, ((SMBProcessorInformation *)structHeader)->processorVersion, neverMask));
356//DBG("\tVoltage: 0.%xV\n", ((SMBProcessorInformation *)structHeader)->voltage);
357DBG("\tExternal Clock: %d MHz\n", ((SMBProcessorInformation *)structHeader)->externalClock);
358DBG("\tMax Speed: %d MHz\n", ((SMBProcessorInformation *)structHeader)->maximumClock);
359DBG("\tCurrent Speed: %d MHz\n", ((SMBProcessorInformation *)structHeader)->currentClock);
360// Status: Populated/Unpopulated
361if ((((SMBProcessorInformation *)structHeader)->processorUpgrade < 1) || (((SMBProcessorInformation *)structHeader)->processorUpgrade > 0x2C)) {
362DBG("\tUpgrade: %s\n", OutOfSpecStr);
363} else {
364DBG("\tUpgrade: %s\n", SMBProcessorUpgrades[((SMBProcessorInformation *)structHeader)->processorUpgrade - 1]);
365}
366// L1 Cache Handle:
367// L2 Cache Handle:
368// L3 Cache Handle:
369DBG("\tSerial Number: %s\n", SMBStringForField(structHeader, ((SMBProcessorInformation *)structHeader)->serialNumber, privateData));
370DBG("\tAsset Tag: %s\n", SMBStringForField(structHeader, ((SMBProcessorInformation *)structHeader)->assetTag, neverMask));
371DBG("\tPart Number: %s\n", SMBStringForField(structHeader, ((SMBProcessorInformation *)structHeader)->partNumber, neverMask));
372if(((SMBProcessorInformation *)structHeader)->coreCount != 0) {
373DBG("\tCore Count: %d\n", ((SMBProcessorInformation *)structHeader)->coreCount);}
374if(((SMBProcessorInformation *)structHeader)->coreEnabled != 0) {
375DBG("\tCore Enabled: %d\n", ((SMBProcessorInformation *)structHeader)->coreEnabled);}
376if(((SMBProcessorInformation *)structHeader)->threadCount != 0) {
377DBG("\tThread Count: %d\n", ((SMBProcessorInformation *)structHeader)->threadCount);
378}
379// Characteristics:
380//DBG("\tProcessor Family 2: %d\n", ((SMBProcessorInformation *)structHeader)->processorFamily2);
381DBG("\n");
382}
383
384//-------------------------------------------------------------------------------------------------------------------------
385// Memory Module Information (Type 6)
386//-------------------------------------------------------------------------------------------------------------------------
387//void decodeMemoryModule(SMBStructHeader *structHeader)
388//{
389//DBG("Memory Module Information\n");
390//DBG("\tSocket Designation: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->socketDesignation));
391//DBG("\tBank Connections: Type: %d\n", structHeader->bankConnections);
392//DBG("\tCurrent Speed: %X\n", structHeader->currentSpeed);
393//DBG("\tType: %llX\n", structHeader->currentMemoryType);
394//DBG("\tInstalled Size: %d\n", structHeader->installedSize);
395//DBG("\tEnabled Size: %d\n", structHeader->enabledSize);
396//DBG("\tError Status: %x\n", structHeader->errorStatus);
397//DBG("\n");
398//}
399
400//-------------------------------------------------------------------------------------------------------------------------
401// OEM Strings (Type 11)
402//-------------------------------------------------------------------------------------------------------------------------
403void decodeSMBOEMStrings(SMBStructHeader *structHeader)
404{
405char *stringPtr = (char *)structHeader + structHeader->length;
406printHeader(structHeader);
407DBG("OEM Strings\n");
408SMBByte i;
409for (i = 1; i <= ((SMBOEMStrings *)structHeader)->count; i++) {
410DBG("\tString %d: %s\n", i, stringPtr);
411stringPtr = stringPtr + strlen(stringPtr) + 1;
412}
413DBG("\n");
414}
415
416//-------------------------------------------------------------------------------------------------------------------------
417// MemoryDevice (Type 17)
418//-------------------------------------------------------------------------------------------------------------------------
419void decodeMemoryDevice(SMBStructHeader *structHeader)
420{
421printHeader(structHeader);
422DBG("Memory Device\n");
423// Aray Handle
424DBG("\tError Information Handle: 0x%x\n", ((SMBMemoryDevice *)structHeader)->errorHandle);
425// Total Width:
426// Data Width:
427// Size:
428// Form Factor:
429// Set:
430DBG("\tLocator: %s\n", SMBStringForField(structHeader, ((SMBMemoryDevice *)structHeader)->deviceLocator, neverMask));
431DBG("\tBank Locator: %s\n", SMBStringForField(structHeader, ((SMBMemoryDevice *)structHeader)->bankLocator, neverMask));
432if (((SMBMemoryDevice *)structHeader)->memoryType > kSMBMemoryDeviceTypeCount) {
433DBG("\tMemory Type: %s\n", OutOfSpecStr);
434} else {
435DBG("\tMemory Type: %s\n", SMBMemoryDeviceTypes[((SMBMemoryDevice *)structHeader)->memoryType]);
436}
437// Type Detail:
438DBG("\tSpeed: %d MHz\n", ((SMBMemoryDevice *)structHeader)->memorySpeed);
439DBG("\tManufacturer: %s\n", SMBStringForField(structHeader, ((SMBMemoryDevice *)structHeader)->manufacturer, neverMask));
440DBG("\tSerial Number: %s\n", SMBStringForField(structHeader, ((SMBMemoryDevice *)structHeader)->serialNumber, privateData));
441DBG("\tAsset Tag: %s\n", SMBStringForField(structHeader, ((SMBMemoryDevice *)structHeader)->assetTag, neverMask));
442DBG("\tPart Number: %s\n", SMBStringForField(structHeader, ((SMBMemoryDevice *)structHeader)->partNumber, neverMask));
443// Rank:
444// Configured Clock Speed:
445DBG("\n");
446}
447
448//-------------------------------------------------------------------------------------------------------------------------
449// Apple Specific (Type 131)
450//-------------------------------------------------------------------------------------------------------------------------
451void decodeOemProcessorType(SMBStructHeader *structHeader)
452{
453printHeader(structHeader);
454DBG("Apple specific Processor Type\n");
455DBG("\tCpu-type: 0x%x\n", ((SMBOemProcessorType *)structHeader)->ProcessorType);
456DBG("\n");
457}
458
459//-------------------------------------------------------------------------------------------------------------------------
460// Apple Specific (Type 132)
461//-------------------------------------------------------------------------------------------------------------------------
462void decodeOemProcessorBusSpeed(SMBStructHeader *structHeader)
463{
464printHeader(structHeader);
465DBG("Apple specific Processor Interconnect Speed\n");
466DBG("\tQPI = %d MT/s\n", ((SMBOemProcessorBusSpeed *)structHeader)->ProcessorBusSpeed);
467DBG("\n");
468}
469
470// Info for the Table Above: dmi 2.7+ https://wiki.debian.org/InstallingDebianOn/Thinkpad/T42/lenny?action=AttachFile&do=get&target=dmidecode.Lenny_Thinkpad_T42_2373.txt
471//-------------------------------------------------------------------------------------------------------------------------
472// Apple Specific (Type 133)
473//-------------------------------------------------------------------------------------------------------------------------
474//void decodeOemPlatformFeature(SMBStructHeader *structHeader)
475//{
476//printHeader(structHeader);
477//DBG("Apple specific Platform Feature\n");
478//DBG("\t%s\n", ((SMBOemPlatformFeature *)structHeader)->PlatformFeature);
479//DBG("\n");
480//}
481
482//-------------------------------------------------------------------------------------------------------------------------
483// Specific (Type 134)
484//-------------------------------------------------------------------------------------------------------------------------
485//void decodeOem(SMBStructHeader *structHeader)
486//{
487//printHeader(structHeader);
488//DBG("Apple specific Feature\n");
489//DBG("\t%s\n", ((SMBOemPlatformFeature *)structHeader)->Feature);
490//DBG("\n");
491//}
492
493//-------------------------------------------------------------------------------------------------------------------------
494
495
496void decodeSMBIOSTable(SMBEntryPoint *eps)
497{
498uint8_t *ptr = (uint8_t *)eps->dmi.tableAddress;
499SMBStructHeader *structHeader = (SMBStructHeader *)ptr;
500
501minorVersion = eps->minorVersion;
502majorVersion = eps->majorVersion;
503bcdRevisionHi = eps->dmi.bcdRevision >> 4;
504bcdRevisionLo = eps->dmi.bcdRevision & 0x0F;
505
506getBoolForKey(kPrivateData, &privateData, &bootInfo->chameleonConfig); // Bungo: chek if mask some data
507
508DBG("\n");
509DBG("SMBIOS rev.: %d.%d, DMI rev.: %d.%d\n", majorVersion, minorVersion, bcdRevisionHi, bcdRevisionLo);
510DBG("\n");
511for (;((eps->dmi.tableAddress + eps->dmi.tableLength) > ((uint32_t)(uint8_t *)structHeader + sizeof(SMBStructHeader)));)
512{
513switch (structHeader->type)
514{
515case kSMBTypeBIOSInformation: // Type 0
516decodeBIOSInformation(structHeader);
517break;
518
519case kSMBTypeSystemInformation: // Type 1
520decodeSystemInformation(structHeader);
521break;
522
523case kSMBTypeBaseBoard: // Type 2
524decodeBaseBoard(structHeader);
525break;
526
527case kSMBTypeSystemEnclosure: // Type 3
528decodeSystemEnclosure(structHeader);
529break;
530
531case kSMBTypeProcessorInformation: // Type 4
532decodeProcessorInformation(structHeader);
533break;
534
535//case kSMBTypeMemoryModule: // Type 6
536//decodeMemoryModule(structHeader);
537//break;
538
539//case kSMBTypeSystemSlot: // Type 9
540//decodeSMBTypeSystemSlot(structHeader);
541//break;
542
543case kSMBOEMStrings: // Type 11
544decodeSMBOEMStrings(structHeader);
545break;
546
547case kSMBTypeMemoryDevice: // Type 17
548decodeMemoryDevice(structHeader);
549break;
550
551//kSMBTypeMemoryArrayMappedAddress: // Type 19
552//break;
553
554/* Skip all Apple Specific Structures */
555// case kSMBTypeFirmwareVolume: // Type 128
556// case kSMBTypeMemorySPD: // Type 130
557//break;
558
559case kSMBTypeOemProcessorType: // Type 131
560decodeOemProcessorType(structHeader);
561break;
562
563case kSMBTypeOemProcessorBusSpeed: // Type 132
564decodeOemProcessorBusSpeed(structHeader);
565break;
566
567//kSMBTypeOemPlatformFeature: // Type 133
568//decodeOemPlatformFeature(structHeader);
569//break;
570
571case kSMBTypeEndOfTable: // Type 127
572DBG("Handle 0x%04x, DMI type %d, %d bytes\n", structHeader->handle, structHeader->type, structHeader->length);
573DBG("End of Table\n");
574break;
575
576default:
577break;
578}
579
580ptr = (uint8_t *)((uint32_t)structHeader + structHeader->length);
581for (; ((uint16_t *)ptr)[0] != 0; ptr++);
582
583if (((uint16_t *)ptr)[0] == 0) {
584ptr += 2;
585}
586
587structHeader = (SMBStructHeader *)ptr;
588}
589DBG("\n");
590}
591
592

Archive Download this file

Revision: 2361