Chameleon

Chameleon Svn Source Tree

Root/branches/ErmaC/Enoch/i386/libsaio/smbios.c

1/*
2 * SMBIOS Table Patcher, part of the Chameleon Boot Loader Project
3 *
4 * Copyright 2010 by Islam M. Ahmed Zaid. All rights reserved.
5 *
6 */
7
8
9#include "boot.h"
10#include "bootstruct.h"
11#include "smbios_getters.h"
12// Bungo
13#include "convert.h"
14
15#ifndef DEBUG_SMBIOS
16#define DEBUG_SMBIOS 0
17#endif
18
19#if DEBUG_SMBIOS
20#define DBG(x...)printf(x)
21#else
22#define DBG(x...)msglog(x)
23#endif
24
25#define SMBPlist&bootInfo->smbiosConfig
26/* ASSUMPTION: 16KB should be enough for the whole thing */
27#define SMB_ALLOC_SIZE16384
28
29
30//-------------------------------------------------------------------------------------------------------------------------
31// SMBIOS Plist Keys
32//-------------------------------------------------------------------------------------------------------------------------
33
34/* =======================
35 BIOS Information (Type 0)
36 ========================= */
37#define kSMBBIOSInformationVendorKey "SMbiosvendor" // Apple Inc.
38#define kSMBBIOSInformationVersionKey "SMbiosversion" // MP31.88Z.006C.B05.0802291410
39#define kSMBBIOSInformationReleaseDateKey "SMbiosdate" // 02/29/08
40// Bungo
41#define kSMBBIOSInformationReleaseKey "SMbiosrelease" // BIOS Revision
42// example: BIOS Revision: 1.23 --> 2 bytes: Major=0x01, Minor=0x17 --> after swap: 0x1701hex = 5889dec (SMBIOS_spec_DSP0134_2.7.1)
43
44/* =========================
45 System Information (Type 1)
46 =========================== */
47#define kSMBSystemInformationManufacturerKey "SMmanufacturer" // Apple Inc.
48#define kSMBSystemInformationProductNameKey "SMproductname" // MacPro3,1
49#define kSMBSystemInformationVersionKey "SMsystemversion" // 1.0
50#define kSMBSystemInformationSerialNumberKey "SMserial" // Serial number
51//Bungo
52#define kSMBSystemInformationUUIDKey "SMsystemuuid" // ioreg -rd1 -c IOPlatformExpertDevice | awk '/IOPlatformUUID/ { split($0, line, "\""); printf("%s\n", line[4]); }'
53#define kSMBSystemInformationSKUNumberKey "SMskunumber" // System SKU#
54
55#define kSMBSystemInformationFamilyKey "SMfamily" // MacPro
56
57/* =========================================
58 Base Board (or Module) Information (Type 2)
59 =========================================== */
60#define kSMBBaseBoardManufacturerKey "SMboardmanufacturer" // Apple Inc.
61#define kSMBBaseBoardProductKey "SMboardproduct" // Mac-F2268DC8
62// Bungo
63#define kSMBBaseBoardVersionKey "SMboardversion" // MacPro3,1
64#define kSMBBaseBoardSerialNumberKey "SMboardserial" // C02140302D5DMT31M
65#define kSMBBaseBoardAssetTagKey "SMboardassettag" // Base Board Asset Tag# Bungo: renamed folowing convention
66#define kSMBBaseBoardLocationInChassisKey "SMboardlocation" // Part Component
67
68// ErmaC BoardType 0x0a(10) or 0x0b(11) MacPro Family
69#define kSMBBaseBoardTypeKey "SMboardtype" // 10 (Motherboard) all model, 11 (Processor+Memory Module) MacPro
70
71// Bungo
72/* =======================
73 System Enclosure (Type 3)
74 ========================= */
75#define kSMBSystemEnclosureManufacturerKey "SMchassismanufacturer" // Apple Inc.
76#define kSMBSystemEnclosureTypeKey "SMchassistype" // 7 Desktop
77#define kSMBSystemEnclosureVersionKey "SMchassisversion" // Mac-F42C88C8
78#define kSMBSystemEnclosureSerialNumberKey "SMchassisserial" // Serial number
79#define kSMBSystemEnclosureAssetTagKey "SMchassisassettag" // Pro-Enclosure Bungo: renamed folowing convention
80
81/* ============================
82 Processor Information (Type 4)
83 ============================== */
84// Bungo
85#define kSMBProcessorInformationSocketKey "SMcpusocket"
86#define kSMBProcessorInformationManufacturerKey "SMcpumanufacturer"
87#define kSMBProcessorInformationVersionKey "SMcpuversion"
88//
89#define kSMBProcessorInformationExternalClockKey"SMexternalclock"
90#define kSMBProcessorInformationMaximumClockKey"SMmaximalclock"
91// Bungo
92#define kSMBProcessorInformationCurrentClockKey "SMcurrentclock"
93#define kSMBProcessorInformationUpgradeKey "SMcpuupgrade"
94#define kSMBProcessorInformationSerialNumberKey "SMcpuserial"
95#define kSMBProcessorInformationAssetTagKey "SMcpuassettag" // Bungo: renamed folowing convention
96#define kSMBProcessorInformationPartNumberKey "SMcpupartnumber"
97
98/* =====================
99 Memory Device (Type 17)
100 ======================= */
101#define kSMBMemoryDeviceDeviceLocatorKey "SMmemdevloc" //
102#define kSMBMemoryDeviceBankLocatorKey "SMmembankloc" //
103#define kSMBMemoryDeviceMemoryTypeKey "SMmemtype" //
104#define kSMBMemoryDeviceMemorySpeedKey "SMmemspeed" //
105#define kSMBMemoryDeviceManufacturerKey "SMmemmanufacturer" //
106#define kSMBMemoryDeviceSerialNumberKey "SMmemserial" //
107#define kSMBMemoryDevicePartNumberKey "SMmempart" //
108// Bungo:
109#define kSMBMemoryDeviceAssetTagKey "SMmemassettag" //
110
111/* ===========================================
112 Memory SPD Data (Apple Specific - Type 130)
113 ============================================= */
114
115/* ============================================
116 OEM Processor Type (Apple Specific - Type 131)
117 ============================================== */
118#define kSMBOemProcessorTypeKey "SMoemcputype" // Bungo: renamed from SMcputype
119
120/* =================================================
121 OEM Processor Bus Speed (Apple Specific - Type 132)
122 =================================================== */
123#define kSMBOemProcessorBusSpeedKey "SMoemcpubusspeed" // Bungo: renamed from SMbusspeed
124
125/* ==============================================
126 OEM Platform Feature (Apple Specific - Type 133)
127 ================================================ */
128//#define kSMBOemPlatformFeatureKey "SMoemplatformfeature"
129
130/* ==================================================*/
131#define getFieldOffset(struct, field)((uint8_t)(uint32_t)&(((struct *)0)->field))
132
133typedef struct
134{
135SMBStructHeader *orig;
136SMBStructHeader *new;
137} SMBStructPtrs;
138
139/* =======================
140 BIOS Information (Type 0)
141 ========================= */
142typedef struct
143{
144char *vendor;
145char *version;
146char *releaseDate;
147uint16_t release; // Bungo
148} defaultBIOSInfo_t;
149
150defaultBIOSInfo_t defaultBIOSInfo;
151
152/* =========================
153 System Information (Type 1)
154 =========================== */
155typedef struct
156{
157char *manufacturer;
158char *productName;
159char *version;
160char *serialNumber;
161char *skuNumber;// ErmaC
162char *family;
163} defaultSystemInfo_t;
164
165defaultSystemInfo_t defaultSystemInfo;
166
167/* =========================================
168 Base Board (or Module) Information (Type 2)
169 =========================================== */
170typedef struct
171{
172char *manufacturer;
173char *product;
174char *version;// Bungo
175char *serialNumber;// ErmaC
176char *assetTag;// ErmaC Bungo: renamed folowing convention
177char *locationInChassis;// ErmaC
178uint8_t boardType;// ErmaC
179} defaultBaseBoard_t;
180
181defaultBaseBoard_t defaultBaseBoard;
182
183// Bungo
184typedef struct {
185char*manufacturer;
186uint8_tchassisType;
187char*version;
188char*serialNumber;
189char*assetTag; // Bungo: renamed folowing convention
190char*skuNumber;
191} defaultChassis_t;
192
193defaultChassis_t defaultChassis;
194
195typedef struct
196{
197uint8_ttype;
198SMBValueTypevalueType;
199uint8_tfieldOffset;
200char*keyString;
201bool(*getSMBValue)(returnType *);
202char**defaultValue;
203} SMBValueSetter;
204
205SMBValueSetter SMBSetters[] =
206{
207/* =======================
208 BIOS Information (Type 0)
209 ========================= */
210{ kSMBTypeBIOSInformation, kSMBString, getFieldOffset(SMBBIOSInformation, vendor),
211kSMBBIOSInformationVendorKey, NULL, &defaultBIOSInfo.vendor }, // SMbiosvendor - Apple Inc.
212
213{ kSMBTypeBIOSInformation, kSMBString, getFieldOffset(SMBBIOSInformation, version),
214kSMBBIOSInformationVersionKey, NULL, &defaultBIOSInfo.version }, // SMbiosversion - MP31.88Z.006C.B05.0802291410
215
216{ kSMBTypeBIOSInformation, kSMBString, getFieldOffset(SMBBIOSInformation, releaseDate),
217kSMBBIOSInformationReleaseDateKey, NULL, &defaultBIOSInfo.releaseDate }, // SMbiosdate - 02/29/08
218
219// Bungo
220{ kSMBTypeBIOSInformation, kSMBWord, getFieldOffset(SMBBIOSInformation, releaseMajor),
221kSMBBIOSInformationReleaseKey, NULL,(char **)&defaultBIOSInfo.release }, // SMbiosrelease - 0.1 (256)
222
223/* =========================
224 System Information (Type 1)
225 =========================== */
226{kSMBTypeSystemInformation,kSMBString,getFieldOffset(SMBSystemInformation, manufacturer),
227kSMBSystemInformationManufacturerKey, NULL,&defaultSystemInfo.manufacturer}, // SMmanufacturer - Apple Inc.
228
229{kSMBTypeSystemInformation,kSMBString,getFieldOffset(SMBSystemInformation, productName),
230kSMBSystemInformationProductNameKey, NULL, &defaultSystemInfo.productName }, // SMproductname - MacPro3,1
231
232{kSMBTypeSystemInformation,kSMBString,getFieldOffset(SMBSystemInformation, version),
233kSMBSystemInformationVersionKey, NULL, &defaultSystemInfo.version }, // SMsystemversion - 1.0
234
235{kSMBTypeSystemInformation,kSMBString,getFieldOffset(SMBSystemInformation, serialNumber),
236kSMBSystemInformationSerialNumberKey, NULL, &defaultSystemInfo.serialNumber }, // SMserial - Serial number
237/* Bungo:
238{kSMBTypeSystemInformation,kSMBByte,getFieldOffset(SMBSystemInformation, uuid),
239kSMBSystemInformationUUIDKey, NULL, NULL}, // SMsystemuuid
240
241{kSMBTypeSystemInformation,kSMBByte,getFieldOffset(SMBSystemInformation, wakeupReason),
242NULL, NULL, NULL}, // reason for system wakeup
243*/
244
245// Bungo
246{kSMBTypeSystemInformation,kSMBString,getFieldOffset(SMBSystemInformation, skuNumber),
247kSMBSystemInformationSKUNumberKey, NULL, &defaultSystemInfo.skuNumber}, // SMskunumber - System SKU#
248
249{kSMBTypeSystemInformation,kSMBString,getFieldOffset(SMBSystemInformation, family),
250kSMBSystemInformationFamilyKey,NULL,&defaultSystemInfo.family}, // SMfamily - MacPro
251
252
253/* =========================================
254 Base Board (or Module) Information (Type 2)
255 =========================================== */
256{kSMBTypeBaseBoard,kSMBString,getFieldOffset(SMBBaseBoard, manufacturer),
257kSMBBaseBoardManufacturerKey, NULL, &defaultBaseBoard.manufacturer }, // SMboardmanufacturer - Apple Inc.
258
259{kSMBTypeBaseBoard,kSMBString,getFieldOffset(SMBBaseBoard, product),
260kSMBBaseBoardProductKey, NULL, &defaultBaseBoard.product }, // SMboardproduct - Mac-F2268DC8
261
262// Bungo
263{kSMBTypeBaseBoard,kSMBString,getFieldOffset(SMBBaseBoard, version),
264kSMBBaseBoardVersionKey, NULL, &defaultBaseBoard.version }, // SMboardversion - MacPro3,1
265
266{kSMBTypeBaseBoard,kSMBString,getFieldOffset(SMBBaseBoard, serialNumber),
267kSMBBaseBoardSerialNumberKey, NULL, &defaultBaseBoard.serialNumber }, // SMboardserial - C02140302D5DMT31M
268
269{kSMBTypeBaseBoard,kSMBString,getFieldOffset(SMBBaseBoard, assetTag),
270kSMBBaseBoardAssetTagKey, NULL, &defaultBaseBoard.assetTag }, // SMboardassetag - Base Board Asset Tag#
271
272{kSMBTypeBaseBoard,kSMBString,getFieldOffset(SMBBaseBoard, locationInChassis),
273kSMBBaseBoardLocationInChassisKey, NULL, &defaultBaseBoard.locationInChassis }, // SMboardlocation - Part Component
274
275{kSMBTypeBaseBoard,kSMBByte,getFieldOffset(SMBBaseBoard, boardType),
276kSMBBaseBoardTypeKey,NULL, (char **)&defaultBaseBoard.boardType }, // SMboardtype - 10 (Motherboard) all model, 11 (Processor+Memory Module) MacPro
277
278/*{kSMBTypeBaseBoard,kSMBByte, getFieldOffset(SMBBaseBoard, numberOfContainedHandles),
279NULL , NULL, NULL }, // numberOfContainedHandles = 0
280*/
281//
282
283// Bungo
284/* =======================
285 System Enclosure (Type 3)
286 ========================= */
287{kSMBTypeSystemEnclosure,kSMBString,getFieldOffset(SMBSystemEnclosure, manufacturer),
288kSMBSystemEnclosureManufacturerKey, NULL,&defaultChassis.manufacturer }, // SMchassismanufacturer - Apple Inc.
289
290{kSMBTypeSystemEnclosure, kSMBByte,getFieldOffset(SMBSystemEnclosure, chassisType),
291kSMBSystemEnclosureTypeKey, NULL, (char **)&defaultChassis.chassisType}, // SMchassistype - 7
292
293{kSMBTypeSystemEnclosure, kSMBString, getFieldOffset(SMBSystemEnclosure, version),
294kSMBSystemEnclosureVersionKey, NULL, &defaultChassis.version }, // SMchassisversion - Mac-F42C88C8
295
296{kSMBTypeSystemEnclosure, kSMBString, getFieldOffset(SMBSystemEnclosure, serialNumber),
297kSMBSystemEnclosureSerialNumberKey, NULL, &defaultChassis.serialNumber }, // SMchassisserial
298
299{kSMBTypeSystemEnclosure, kSMBString, getFieldOffset(SMBSystemEnclosure, assetTag),
300kSMBSystemEnclosureAssetTagKey, NULL, &defaultChassis.assetTag }, // SMchassisassettag - Pro Enclosure
301
302/*
303{kSMBTypeSystemEnclosure, kSMBString, getFieldOffset(SMBSystemEnclosure, skuNumber),
304NULL, NULL, &defaultChassis.skuNumber },
305*/
306
307/* ============================
308 Processor Information (Type 4)
309 ============================== */
310{kSMBTypeProcessorInformation,kSMBString,getFieldOffset(SMBProcessorInformation, socketDesignation),
311kSMBProcessorInformationSocketKey, NULL, NULL}, // SMcpusocket -
312
313{kSMBTypeProcessorInformation,kSMBString,getFieldOffset(SMBProcessorInformation, manufacturer),
314kSMBProcessorInformationManufacturerKey, NULL, NULL}, // SMcpumanufacturer - Intel(R) Corporation
315
316{kSMBTypeProcessorInformation,kSMBString,getFieldOffset(SMBProcessorInformation, processorVersion),
317kSMBProcessorInformationVersionKey, NULL, NULL}, // SMcpuversion
318
319{kSMBTypeProcessorInformation,kSMBWord, getFieldOffset(SMBProcessorInformation, externalClock),
320kSMBProcessorInformationExternalClockKey, getProcessorInformationExternalClock,NULL}, // SMcpuexternalclock
321
322{kSMBTypeProcessorInformation,kSMBWord, getFieldOffset(SMBProcessorInformation, maximumClock),
323kSMBProcessorInformationMaximumClockKey, getProcessorInformationMaximumClock,NULL}, // SMcpumaximumclock
324// Bungo
325{kSMBTypeProcessorInformation,kSMBWord,getFieldOffset(SMBProcessorInformation, currentClock),
326kSMBProcessorInformationCurrentClockKey, NULL, NULL}, // SMcpucurrentclock
327
328{kSMBTypeProcessorInformation,kSMBByte,getFieldOffset(SMBProcessorInformation, processorUpgrade),
329kSMBProcessorInformationUpgradeKey, NULL, NULL}, // SMcpuupgrade
330//
331{kSMBTypeProcessorInformation,kSMBString,getFieldOffset(SMBProcessorInformation, serialNumber),
332kSMBProcessorInformationSerialNumberKey, NULL, NULL},
333
334// Bungo
335{kSMBTypeProcessorInformation,kSMBString,getFieldOffset(SMBProcessorInformation, assetTag),
336kSMBProcessorInformationAssetTagKey, NULL, NULL}, // SMcpuassettag
337//
338{kSMBTypeProcessorInformation,kSMBString,getFieldOffset(SMBProcessorInformation, partNumber),
339kSMBProcessorInformationPartNumberKey, NULL, NULL},
340
341/* =====================
342 Memory Device (Type 17)
343 ======================= */
344{kSMBTypeMemoryDevice,kSMBString,getFieldOffset(SMBMemoryDevice, deviceLocator),
345kSMBMemoryDeviceDeviceLocatorKey, NULL, NULL},
346
347{kSMBTypeMemoryDevice,kSMBString,getFieldOffset(SMBMemoryDevice, bankLocator),
348kSMBMemoryDeviceBankLocatorKey, NULL, NULL},
349
350{kSMBTypeMemoryDevice,kSMBByte,getFieldOffset(SMBMemoryDevice, memoryType),
351kSMBMemoryDeviceMemoryTypeKey, getSMBMemoryDeviceMemoryType,NULL},
352
353{kSMBTypeMemoryDevice,kSMBWord,getFieldOffset(SMBMemoryDevice, memorySpeed),
354kSMBMemoryDeviceMemorySpeedKey, getSMBMemoryDeviceMemorySpeed,NULL},
355
356{kSMBTypeMemoryDevice,kSMBString,getFieldOffset(SMBMemoryDevice, manufacturer),
357kSMBMemoryDeviceManufacturerKey, getSMBMemoryDeviceManufacturer, NULL},
358
359{kSMBTypeMemoryDevice,kSMBString,getFieldOffset(SMBMemoryDevice, serialNumber),
360kSMBMemoryDeviceSerialNumberKey, getSMBMemoryDeviceSerialNumber, NULL},
361
362{kSMBTypeMemoryDevice,kSMBString,getFieldOffset(SMBMemoryDevice, assetTag),
363kSMBMemoryDeviceAssetTagKey, NULL, NULL},
364
365{kSMBTypeMemoryDevice,kSMBWord,getFieldOffset(SMBMemoryDevice, errorHandle),
366NULL, getSMBMemoryDeviceMemoryErrorHandle, NULL},
367
368{kSMBTypeMemoryDevice,kSMBString,getFieldOffset(SMBMemoryDevice, partNumber),
369kSMBMemoryDevicePartNumberKey, getSMBMemoryDevicePartNumber, NULL},
370
371//-------------------------------------------------------------------------------------------------------------------------
372// Apple Specific
373//-------------------------------------------------------------------------------------------------------------------------
374// OEM Processor Type (Apple Specific - Type 131)
375{kSMBTypeOemProcessorType,kSMBWord,getFieldOffset(SMBOemProcessorType, ProcessorType),kSMBOemProcessorTypeKey,
376getSMBOemProcessorType,NULL},
377
378// OEM Processor Bus Speed (Apple Specific - Type 132)
379{kSMBTypeOemProcessorBusSpeed,kSMBWord,getFieldOffset(SMBOemProcessorBusSpeed, ProcessorBusSpeed),kSMBOemProcessorBusSpeedKey,
380getSMBOemProcessorBusSpeed,NULL}
381
382// OEM Platform Feature (Apple Specific - Type 133)
383/*
384{kSMBTypeOemPlatformFeature,kSMBWord,getFieldOffset(SMBOemPlatformFeature, PlatformFeature),kSMBOemPlatformFeatureKey,
385getSMBOemPlatformFeature,NULL}
386*/
387};
388
389int numOfSetters = sizeof(SMBSetters) / sizeof(SMBValueSetter);
390
391
392SMBEntryPoint *origeps= 0;
393SMBEntryPoint *neweps= 0;
394
395static uint8_t stringIndex;// increament when a string is added and set the field value accordingly
396static uint8_t stringsSize;// add string size
397
398static SMBWord tableLength= 0;
399static SMBWord handle= 0;
400static SMBWord maxStructSize= 0;
401static SMBWord structureCount= 0;
402
403//-------------------------------------------------------------------------------------------------------------------------
404// Default SMBIOS Data
405//-------------------------------------------------------------------------------------------------------------------------
406/* Rewrite: use a struct */
407
408// Bungo: suggest to not mixing data from different Mac models, use real Mac SMBIOS dumps
409
410#define kDefaultVendorManufacturer"Apple Inc."
411//#define kDefaultBIOSReleaseDate"11/06/2009"
412#define kDefaultSerialNumber"SOMESRLNMBR"
413//Bungo
414#define kDefaultSkuNumber"Default SKU#"
415#define kDefaultAssetTag"Default Asset Tag#"
416//#define kDefaultBoardType"10" // 0xA
417//#define kDefaultBoardProcessorType"11" // 0xB
418#define kDefaultSystemVersion"1.0"
419#define kDefaultBIOSRelease256 // 256 = 0x0100 -> swap bytes: 0x0001 -> Release: 0.1 (see SMBIOS spec. table Type 0)
420//#define kDefaultLocatioInChassis"Part Component"
421//#define KDefaultBoardSerialNumber"C02140302D5DMT31M" // new C07019501PLDCVHAD - C02032101R5DC771H
422
423//=========== Mac mini ===========
424#define kDefaultMacMiniFamily"Napa Mac" // Macmini2,1 family = "Napa Mac" not "Mac mini"
425//#define kDefaultMacMiniBoardAssetTagNumber"Mini-Aluminum"
426
427#define kDefaultMacMini"Macmini2,1"
428#define kDefaultMacMiniBIOSVersion" MM21.88Z.009A.B00.0706281359"
429#define kDefaultMacMiniBIOSReleaseDate"06/28/07"
430#define kDefaultMacMiniBoardProduct"Mac-F4208EAA"
431
432// MacMini5,1 Mac-8ED6AF5B48C039E1 - MM51.88Z.0077.B0F.1110201309
433// MacMini5,2 Mac-4BC72D62AD45599E
434// MacMini5,3
435//#define kDefaultMacMini"Macmini5,3"
436//#define kDefaultMacMiniBIOSVersion" MM51.88Z.0077.B10.1201241549"
437//#define kDefaultMacMiniBoardProduct"Mac-F65AE981FFA204ED"
438//#define kDefaultMacMiniBIOSReleaseDate"01/24/2012"
439
440// MacMini 6,1 - Mac-F65AE981FFA204ED
441// MacMini 6,2
442//#define kDefaultMacMini62"Macmini6,2"
443//#define kDefaultMacMini62BIOSVersion" MM61.88Z.0106.B00.1208091121"
444//#define kDefaultMacMini62BoardProduct"Mac-F65AE981FFA204ED"
445//#define kDefaultMacMini62BIOSReleaseDate"10/14/2012"
446
447//=========== MacBook ===========
448#define kDefaultMacBookFamily"MacBook"
449//#define kDefaultMacBookBoardAssetTagNumber"MacBook-Black"
450
451#define kDefaultMacBook"MacBook4,1"
452#define kDefaultMacBookBIOSVersion" MB41.88Z.00C1.B00.0802091535"
453#define kDefaultMacBookBIOSReleaseDate"02/09/08"
454#define kDefaultMacBookBoardProduct"Mac-F22788A9"
455
456//=========== MacBookAir ===========
457#define kDefaultMacBookAirFamily"MacBook Air"
458
459// MacBookAir4,1 - Mac-C08A6BB70A942AC2
460// MacBookAir4,2 - Mac-742912EFDBEE19B3
461#define kDefaultMacBookAir"MacBookAir5,2"
462#define kDefaultMacBookAirBIOSVersion" MBA51.88Z.00EF.B00.1205221442"
463#define kDefaultMacBookAirBIOSReleaseDate"05/10/12"
464#define kDefaultMacBookBoardAirProduct"Mac-2E6FAB96566FE58C"
465
466// MacBookAir6,1 - Mac-35C1E88140C3E6CF - MBA61.88Z.0099.B04.1309271229
467// MacBookAir6,2 - Mac-7DF21CB3ED6977E5 - MBA62.88Z.00EF.B00.1205221442
468
469//=========== MacBookPro ===========
470#define kDefaultMacBookProFamily"MacBook Pro"
471//#define kDefaultMacBookProBoardAssetTagNumber"MacBook-Aluminum"
472
473#define kDefaultMacBookPro"MacBookPro4,1"
474#define kDefaultMacBookProBIOSVersion" MBP41.88Z.00C1.B03.0802271651"
475#define kDefaultMacBookProBIOSReleaseDate"02/27/08"
476#define kDefaultMacBookProBoardProduct"Mac-F42C89C8"
477
478//#define kDefaultMacBookPro"MacBookPro8,1"
479//#define kDefaultMacBookProBIOSVersion" MBP81.88Z.0047.B24.1110141131"
480//#define kDefaultMacBookProBoardProduct"Mac-94245B3640C91C81"
481//#define kDefaultMacBookProBIOSReleaseDate"10/14/11"
482
483// MacBookPro8,2 - Mac_94245A3940C91C80
484// MacBookPro8,3 - Mac-942459F5819B171B
485
486// MacBookPro10,2
487//#define kDefaultMacBookProIvy"MacBookPro10,2"
488//#define kDefaultMacBookProIvyBIOSVersion" MBP102.88Z.0106.B01.1208311637"
489//#define kDefaultMacBookProIvyBoardProduct"Mac-AFD8A9D944EA4843"
490//#define kDefaultMacBookProIvyBIOSReleaseDate"10/02/2012"
491
492// MacBookPro11,2 - Mac-3CBD00234E554E41 - MBP112.88Z.0138.B03.1310291227
493// MacBookPro11,3 - Mac-2BD1B31983FE1663 - MBP112.88Z.0138.B02.1310181745
494
495//=========== iMac ===========
496#define kDefaultiMacFamily"iMac"
497//#define kDefaultiMacBoardAssetTagNumber"iMac-Aluminum"
498
499#define kDefaultiMac"iMac8,1"
500#define kDefaultiMacBIOSVersion" IM81.88Z.00C1.B00.0903051113"
501#define kDefaultiMacBIOSReleaseDate"02/09/08"
502#define kDefaultiMacBoardProduct"Mac-F227BEC8"
503#define kDefaultMacFamily"Mac" // iMac8,1 family = "Mac" not "iMac"
504
505// iMac10,1
506// iMac11,1 core i3/i5/i7
507#define kDefaultiMacNehalem"iMac11,1"
508#define kDefaultiMacNehalemBIOSVersion" IM111.88Z.0034.B02.1003171314"
509#define kDefaultiMacNehalemBIOSReleaseDate"03/30/10"
510#define kDefaultiMacNehalemBoardProduct"Mac-F2268DAE"
511// iMac11,2
512// iMac11,3
513
514// iMac12,1
515#define kDefaultiMacSandy"iMac12,1"
516#define kDefaultiMacSandyBIOSVersion" IM121.88Z.0047.B00.1102091756"
517#define kDefaultiMacSandyBIOSReleaseDate"01/02/08"
518#define kDefaultiMacSandyBoardProduct"Mac-942B5BF58194151B"
519
520// iMac12,2 Mac-942B59F58194171B
521//#define kDefaultiMacSandy"iMac12,2"
522//#define kDefaultiMacSandyBIOSVersion" IM121.88Z.0047.B1D.1110171110"
523//#define kDefaultiMacSandyBIOSReleaseDate"10/17/11"
524//#define kDefaultiMacSandyBoardProduct"Mac-942B59F58194171B"
525
526// iMac13,1
527// Bios: IM131.88Z.010A.B05.1211151146
528// Data: 11/15/2012
529// Board: Mac-00BE6ED71E35EB86
530
531// iMac13,2
532//#define kDefaultiMacIvy"iMac13,2"
533//#define kDefaultiMacIvyBIOSVersion" IM131.88Z.00CE.B00.1203281326"
534//#define kDefaultiMacIvyBIOSReleaseDate"03/28/2012"
535//#define kDefaultiMacIvyBoardProduct"Mac-FC02E91DDD3FA6A4"
536
537//=========== MacPro ===========
538#define kDefaultMacProFamily"MacPro" // MacPro's family = "MacPro" not "Mac Pro"
539//#define KDefauktMacProBoardAssetTagNumber"Pro-Enclosure"
540//#define kDefaultMacProBoardType"0xB" // 11
541
542#define kDefaultMacPro"MacPro3,1"
543#define kDefaultMacProBIOSVersion" MP31.88Z.006C.B05.0903051113"
544#define kDefaultMacProBIOSReleaseDate"08/03/2010"
545//#define kDefaultMacProSystemVersion"1.3"
546#define kDefaultMacProBoardProduct"Mac-F42C88C8"
547//#define KDefaultMacProBoardSerialNumber"J593902RA4MFE"
548
549// Mac Pro 4,1 core i7/Xeon
550#define kDefaultMacProNahWestSystemVersion"0.0"
551
552#define kDefaultMacProNehalem"MacPro4,1"
553#define kDefaultMacProNehalemBIOSVersion" MP41.88Z.0081.B07.0910130729"
554#define kDefaultMacProNehalemBIOSReleaseDate"10/13/09"
555//#define kDefaultMacProNehalemSystemVersion"1.4"
556#define kDefaultMacProNehalemBoardProduct"Mac-F221BEC8"
557//#define KDefaultMacProNehalemBoardSerialNumber"J593004RB1LUE"
558//"J591302R61LUC " // 2-cpu board
559//"J591002JV4MFB " // 1-cpu board
560
561// Mac Pro 5,1 core i7/Xeon
562#define kDefaultMacProWestmere"MacPro5,1"
563#define kDefaultMacProWestmereBIOSVersion" MP51.88Z.007F.B03.1010071432"
564#define kDefaultMacProWestmereBIOSReleaseDate"10/07/10"
565//#define kDefaultMacProWestmereSystemVersion"1.2"
566#define kDefaultMacProWestmereBoardProduct"Mac-F221BEC8"
567//#define KDefaultMacProWestmereBoardSerialNumber"J522700H7BH8C"
568//"J503104H1BH8A " // 2-cpu board
569
570// Mac Pro 6,1
571#define kDefaultMacProHaswell"MacPro6,1"
572#define kDefaultMacProHaswellBIOSVersion"MP61.88Z.0116.B04.1312061508"
573#define kDefaultMacProHaswellBIOSReleaseDate"12/06/2013"
574//#define kDefaultMacProHaswellSystemVersion"1.?"
575#define kDefaultMacProHaswellBoardProduct"Mac-F60DEB81FF30ACF6"
576//#define KDefaultMacProHaswellBoardSerialNumber"F5K3474008JFNN215"
577
578//#define KDefaultBoardSerialNumber"C02140302D5DMT31M" // new C07019501PLDCVHAD - C02032101R5DC771H
579// J593902RA4MFE 3,1
580// J5031046RCZJA 5,1
581// J521101A5CZJC 3,1
582// J593004RB1LUE MacPro4,1
583// J513401PZBH8C 5,1
584// J590802LC4ACB 3,1
585// J594900AH1LUE 4,1
586// J512500HZBH8C 5,1
587// J522700H7BH8C MacPro5,1
588
589/* ============================================ */
590
591bool useSMBIOSdefaults = true; // Bungo
592
593SMBByte PlatformType= 1; // Bungo: same as Platfom.Type in platform.h. Because can't get from ACPI FADT PM profile and platformCPUFeature(CPU_FEATURE_MOBILE)) doesn't work as expect, FIXING NEEDED.
594
595/* Rewrite this function */
596void setDefaultSMBData(void) // Bungo: setting data from real Macs
597{
598defaultBIOSInfo.vendor = kDefaultVendorManufacturer;
599defaultBIOSInfo.release = kDefaultBIOSRelease; // Bungo
600
601defaultSystemInfo.manufacturer = kDefaultVendorManufacturer;
602defaultSystemInfo.version = kDefaultSystemVersion;
603defaultSystemInfo.serialNumber = kDefaultSerialNumber;
604defaultSystemInfo.skuNumber = kDefaultSkuNumber; // Bungo
605
606defaultBaseBoard.manufacturer = kDefaultVendorManufacturer;
607defaultBaseBoard.serialNumber = kDefaultSerialNumber;
608defaultBaseBoard.assetTag = kDefaultAssetTag;
609
610defaultChassis.manufacturer = kDefaultVendorManufacturer;
611defaultChassis.serialNumber = kDefaultSerialNumber;
612defaultChassis.assetTag = kDefaultAssetTag;
613defaultChassis.skuNumber = kDefaultSkuNumber;
614
615// if (platformCPUFeature(CPU_FEATURE_MOBILE)) Bungo: doesn't recognise correctly, need fixing
616if (PlatformType == 2) // this works but it's a substitute
617{
618if (Platform.CPU.NoCores > 1) {
619defaultSystemInfo.productName = kDefaultMacBookPro;
620defaultBIOSInfo.version = kDefaultMacBookProBIOSVersion;
621defaultBIOSInfo.releaseDate = kDefaultMacBookProBIOSReleaseDate;
622defaultSystemInfo.family = kDefaultMacBookProFamily;
623defaultBaseBoard.product = kDefaultMacBookProBoardProduct;
624defaultBaseBoard.boardType = kSMBBaseBoardMotherboard;
625defaultChassis.chassisType = kSMBchassisUnknown;
626} else {
627defaultSystemInfo.productName = kDefaultMacBook;
628defaultBIOSInfo.version = kDefaultMacBookBIOSVersion;
629defaultBIOSInfo.releaseDate = kDefaultMacBookBIOSReleaseDate;
630defaultSystemInfo.family = kDefaultMacBookFamily;
631defaultBaseBoard.product = kDefaultMacBookBoardProduct;
632defaultBaseBoard.boardType = kSMBBaseBoardMotherboard;
633defaultChassis.chassisType = kSMBchassisUnknown;
634}
635} else {
636switch (Platform.CPU.NoCores)
637{
638case 1:
639defaultBIOSInfo.version = kDefaultMacMiniBIOSVersion;
640defaultBIOSInfo.releaseDate = kDefaultMacMiniBIOSReleaseDate;
641defaultSystemInfo.productName = kDefaultMacMini;
642defaultSystemInfo.family = kDefaultMacMiniFamily;
643defaultBaseBoard.product = kDefaultMacMiniBoardProduct;
644defaultBaseBoard.boardType = kSMBBaseBoardUnknown;
645defaultChassis.chassisType = kSMBchassisLPDesktop;
646break;
647
648case 2:
649defaultBIOSInfo.version = kDefaultiMacBIOSVersion;
650defaultBIOSInfo.releaseDate = kDefaultiMacBIOSReleaseDate;
651defaultSystemInfo.productName = kDefaultiMac;
652defaultSystemInfo.family = kDefaultMacFamily; // iMac8,1 family = Mac
653defaultBaseBoard.product = kDefaultiMacBoardProduct;
654defaultBaseBoard.boardType = kSMBBaseBoardMotherboard;
655defaultChassis.chassisType = kSMBchassisAllInOne;
656break;
657default:
658{
659switch (Platform.CPU.Family)
660{
661case 0x06:
662{
663switch (Platform.CPU.Model)
664{
665case CPU_MODEL_FIELDS:// Intel Core i5, i7, Xeon X34xx LGA1156 (45nm)
666case CPU_MODEL_DALES:
667case CPU_MODEL_DALES_32NM:// Intel Core i3, i5 LGA1156 (32nm)
668defaultBIOSInfo.version= kDefaultiMacNehalemBIOSVersion;
669defaultBIOSInfo.releaseDate= kDefaultiMacNehalemBIOSReleaseDate;
670defaultSystemInfo.productName= kDefaultiMacNehalem;
671defaultSystemInfo.family= kDefaultiMacFamily;
672defaultBaseBoard.product = kDefaultiMacNehalemBoardProduct;
673defaultBaseBoard.boardType = kSMBBaseBoardMotherboard;
674defaultChassis.chassisType = kSMBchassisAllInOne;
675break;
676
677case CPU_MODEL_SANDYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (32nm)
678case CPU_MODEL_IVYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (22nm)
679case CPU_MODEL_IVYBRIDGE_XEON:
680defaultBIOSInfo.version = kDefaultiMacSandyBIOSVersion;
681defaultBIOSInfo.releaseDate = kDefaultiMacSandyBIOSReleaseDate;
682defaultSystemInfo.productName= kDefaultiMacSandy;
683defaultSystemInfo.family = kDefaultiMacFamily;
684defaultBaseBoard.product = kDefaultiMacSandyBoardProduct;
685defaultBaseBoard.boardType = kSMBBaseBoardMotherboard;
686defaultChassis.chassisType = kSMBchassisAllInOne;
687break;
688
689case CPU_MODEL_NEHALEM:// Intel Core i7, Xeon W35xx, Xeon X55xx, Xeon E55xx LGA1366 (45nm)
690case CPU_MODEL_NEHALEM_EX:// Intel Xeon X75xx, Xeon X65xx, Xeon E75xx, Xeon E65x
691defaultBIOSInfo.version= kDefaultMacProNehalemBIOSVersion;
692defaultBIOSInfo.releaseDate= kDefaultMacProNehalemBIOSReleaseDate;
693defaultSystemInfo.productName= kDefaultMacProNehalem;
694defaultSystemInfo.version = kDefaultMacProNahWestSystemVersion;
695defaultSystemInfo.family= kDefaultMacProFamily;
696defaultBaseBoard.product = kDefaultMacProNehalemBoardProduct;
697defaultBaseBoard.boardType = kSMBBaseBoardProcessorMemoryModule;
698defaultChassis.chassisType = kSMBchassisTower;
699break;
700
701case CPU_MODEL_WESTMERE:// Intel Core i7, Xeon X56xx, Xeon E56xx, Xeon W36xx LGA1366 (32nm) 6 Core
702case CPU_MODEL_WESTMERE_EX:// Intel Xeon E7
703case CPU_MODEL_JAKETOWN:// Intel Core i7, Xeon E5 LGA2011 (32nm)
704defaultBIOSInfo.version= kDefaultMacProWestmereBIOSVersion;
705defaultBIOSInfo.releaseDate= kDefaultMacProWestmereBIOSReleaseDate;
706defaultSystemInfo.productName= kDefaultMacProWestmere;
707defaultSystemInfo.version = kDefaultMacProNahWestSystemVersion;
708defaultSystemInfo.family= kDefaultMacProFamily;
709defaultBaseBoard.product = kDefaultMacProWestmereBoardProduct;
710defaultBaseBoard.boardType = kSMBBaseBoardProcessorMemoryModule;
711defaultChassis.chassisType = kSMBchassisTower;
712break;
713
714default:
715defaultBIOSInfo.version= kDefaultMacProBIOSVersion;
716defaultBIOSInfo.releaseDate= kDefaultMacProBIOSReleaseDate;
717defaultSystemInfo.productName= kDefaultMacPro;
718defaultSystemInfo.family= kDefaultMacProFamily;
719defaultBaseBoard.product = kDefaultMacProBoardProduct;
720defaultBaseBoard.boardType = kSMBBaseBoardMotherboard;
721defaultChassis.chassisType = kSMBchassisUnknown;
722break;
723}
724break;
725}
726default:
727defaultBIOSInfo.version= kDefaultMacProBIOSVersion;
728defaultBIOSInfo.releaseDate= kDefaultMacProBIOSReleaseDate;
729defaultSystemInfo.productName= kDefaultMacPro;
730defaultSystemInfo.family= kDefaultMacProFamily;
731defaultBaseBoard.product = kDefaultMacProBoardProduct;
732defaultBaseBoard.boardType = kSMBBaseBoardMotherboard;
733defaultChassis.chassisType = kSMBchassisUnknown;
734break;
735}
736break;
737}
738}
739}
740}
741
742/* Used for SM*n smbios.plist keys */
743bool getSMBValueForKey(SMBStructHeader *structHeader, const char *keyString, const char **string, returnType *value)
744{
745static int idx = -1;
746static int current = -1;
747int len;
748char key[24];
749
750if (current != structHeader->handle) {
751idx++;
752current = structHeader->handle;
753}
754
755sprintf(key, "%s%d", keyString, idx);
756
757if (value) {
758if (getIntForKey(key, (int *)&(value->dword), SMBPlist)) {
759return true;
760}
761} else {
762if (getValueForKey(key, string, &len, SMBPlist)) {
763return true;
764}
765}
766return false;
767}
768
769char *getSMBStringForField(SMBStructHeader *structHeader, uint8_t field)
770{
771uint8_t *stringPtr = (uint8_t *)structHeader + structHeader->length;
772
773if (!field) {
774return NULL;
775}
776
777for (field--; field != 0 && strlen((char *)stringPtr) > 0;
778field--, stringPtr = (uint8_t *)((uint32_t)stringPtr + strlen((char *)stringPtr) + 1));
779
780return (char *)stringPtr;
781}
782
783void setSMBStringForField(SMBStructHeader *structHeader, const char *string, uint8_t *field)
784{
785int strSize;
786
787if (!field) {
788return;
789}
790
791if (!string) {
792*field = 0;
793return;
794}
795
796strSize = strlen(string);
797
798// remove any spaces found at the end but only in MemoryDevice
799if (structHeader->type == kSMBTypeMemoryDevice) {
800while ((strSize != 0) && (string[strSize - 1] == ' ')) {
801strSize--;
802}
803}
804
805if (strSize == 0) {
806*field = 0;
807return;
808}
809
810memcpy((uint8_t *)structHeader + structHeader->length + stringsSize, string, strSize);
811*field = stringIndex;
812
813stringIndex++;
814stringsSize += strSize + 1;
815}
816
817bool setSMBValue(SMBStructPtrs *structPtr, int idx, returnType *value)
818{
819const char *string = 0;
820int len;
821bool parsed;
822int val;
823
824if (numOfSetters <= idx) {
825return false;
826}
827
828switch (SMBSetters[idx].valueType) {
829case kSMBString:
830{
831if (SMBSetters[idx].keyString)
832{
833if (getValueForKey(SMBSetters[idx].keyString, &string, &len, SMBPlist))
834{
835break;
836} else {
837if (structPtr->orig->type == kSMBTypeMemoryDevice) {// MemoryDevice only
838if (getSMBValueForKey(structPtr->orig, SMBSetters[idx].keyString, &string, NULL)) {
839break;
840}
841}
842}
843
844}
845if (SMBSetters[idx].getSMBValue) {
846if (SMBSetters[idx].getSMBValue((returnType *)&string)) {
847break;
848}
849}
850// if ((SMBSetters[idx].defaultValue) && *(SMBSetters[idx].defaultValue)) Bungo
851if (useSMBIOSdefaults && SMBSetters[idx].defaultValue && *(SMBSetters[idx].defaultValue)) {
852string = *(SMBSetters[idx].defaultValue);
853break;
854}
855string = getSMBStringForField(structPtr->orig, *(uint8_t *)value);
856break;
857}
858case kSMBByte:
859case kSMBWord:
860case kSMBDWord:
861case kSMBQWord:
862if (SMBSetters[idx].keyString) {
863parsed = getIntForKey(SMBSetters[idx].keyString, &val, SMBPlist);
864if (!parsed)
865{
866if (structPtr->orig->type == kSMBTypeMemoryDevice) { // MemoryDevice only
867parsed = getSMBValueForKey(structPtr->orig, SMBSetters[idx].keyString, NULL, (returnType *)&val);
868}
869}
870if (parsed) {
871switch (SMBSetters[idx].valueType) {
872case kSMBByte:
873value->byte = (uint8_t)val;
874break;
875case kSMBWord:
876value->word = (uint16_t)val;
877break;
878case kSMBQWord:
879value->qword = (uint64_t)val;
880break;
881case kSMBDWord:
882default:
883value->dword = (uint32_t)val;
884break;
885}
886return true;
887}
888}
889
890if (SMBSetters[idx].getSMBValue) {
891if (SMBSetters[idx].getSMBValue(value)) {
892return true;
893}
894}
895// #if 0 Bungo: enables code below
896// if (*(SMBSetters[idx].defaultValue)) Bungo
897if (useSMBIOSdefaults && SMBSetters[idx].defaultValue && *(SMBSetters[idx].defaultValue)) {
898// value->dword = *(uint32_t *)(SMBSetters[idx].defaultValue); Bungo
899switch (SMBSetters[idx].valueType) {
900case kSMBByte:
901value->byte = *(uint8_t *)(SMBSetters[idx].defaultValue);
902break;
903case kSMBWord:
904value->word = *(uint16_t *)(SMBSetters[idx].defaultValue);
905break;
906case kSMBQWord:
907value->qword = *(uint64_t *)(SMBSetters[idx].defaultValue);
908break;
909case kSMBDWord:
910default:
911value->dword = *(uint32_t *)(SMBSetters[idx].defaultValue);
912break;
913}
914return true;
915}
916// #endif Bungo
917break;
918}
919
920// if (SMBSetters[idx].valueType == kSMBString && string) Bungo: use null string too -> "Not Specified"
921if ((SMBSetters[idx].valueType == kSMBString) && string) {
922setSMBStringForField(structPtr->new, string, &value->byte);
923}
924return true;
925}
926
927//-------------------------------------------------------------------------------------------------------------------------
928// Apple Specific
929//-------------------------------------------------------------------------------------------------------------------------
930
931/* ===========================================
932 Firmware Volume (Apple Specific - Type 128)
933 ============================================= */
934void addSMBFirmwareVolume(SMBStructPtrs *structPtr)
935{
936return;
937}
938
939/* ===========================================
940 Memory SPD Data (Apple Specific - Type 130)
941 ============================================= */
942void addSMBMemorySPD(SMBStructPtrs *structPtr)
943{
944/* SPD data from Platform.RAM.spd */
945return;
946}
947
948/* ============================================
949 OEM Processor Type (Apple Specific - Type 131)
950 ============================================== */
951void addSMBOemProcessorType(SMBStructPtrs *structPtr)
952{
953SMBOemProcessorType *p = (SMBOemProcessorType *)structPtr->new;
954
955p->header.type= kSMBTypeOemProcessorType;
956p->header.length= sizeof(SMBOemProcessorType);
957p->header.handle= handle++;
958
959setSMBValue(structPtr, numOfSetters - 2 , (returnType *)&(p->ProcessorType));
960
961structPtr->new = (SMBStructHeader *)((uint8_t *)structPtr->new + sizeof(SMBOemProcessorType) + 2);
962tableLength += sizeof(SMBOemProcessorType) + 2;
963structureCount++;
964}
965
966/* =================================================
967 OEM Processor Bus Speed (Apple Specific - Type 132)
968 =================================================== */
969void addSMBOemProcessorBusSpeed(SMBStructPtrs *structPtr)
970{
971SMBOemProcessorBusSpeed *p = (SMBOemProcessorBusSpeed *)structPtr->new;
972
973switch (Platform.CPU.Family)
974{
975case 0x06:
976{
977switch (Platform.CPU.Model)
978{
979case 0x19:// Intel Core i5 650 @3.20 Ghz
980case CPU_MODEL_FIELDS:// Intel Core i5, i7, Xeon X34xx LGA1156 (45nm)
981case CPU_MODEL_DALES:
982case CPU_MODEL_DALES_32NM:// Intel Core i3, i5 LGA1156 (32nm)
983case CPU_MODEL_NEHALEM:// Intel Core i7, Xeon W35xx, Xeon X55xx, Xeon E55xx LGA1366 (45nm)
984case CPU_MODEL_NEHALEM_EX:// Intel Xeon X75xx, Xeon X65xx, Xeon E75xx, Xeon E65x
985case CPU_MODEL_WESTMERE:// Intel Core i7, Xeon X56xx, Xeon E56xx, Xeon W36xx LGA1366 (32nm) 6 Core
986case CPU_MODEL_WESTMERE_EX:// Intel Xeon E7
987case CPU_MODEL_SANDYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (32nm)
988case CPU_MODEL_IVYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (22nm)
989case CPU_MODEL_IVYBRIDGE_XEON:
990case CPU_MODEL_JAKETOWN:// Intel Core i7, Xeon E5 LGA2011 (32nm)
991case CPU_MODEL_HASWELL:
992case CPU_MODEL_HASWELL_SVR:
993case CPU_MODEL_HASWELL_ULT:
994case CPU_MODEL_CRYSTALWELL:
995
996break;
997
998default:
999return;
1000}
1001}
1002}
1003
1004p->header.type= kSMBTypeOemProcessorBusSpeed;
1005p->header.length= sizeof(SMBOemProcessorBusSpeed);
1006p->header.handle= handle++;
1007
1008setSMBValue(structPtr, numOfSetters -1, (returnType *)&(p->ProcessorBusSpeed));
1009
1010structPtr->new = (SMBStructHeader *)((uint8_t *)structPtr->new + sizeof(SMBOemProcessorBusSpeed) + 2);
1011tableLength += sizeof(SMBOemProcessorBusSpeed) + 2;
1012structureCount++;
1013}
1014
1015/* ==============================================
1016 OEM Platform Feature (Apple Specific - Type 133)
1017 ================================================ */
1018 /*void addSMBOemPlatformFeature(SMBStructPtrs *structPtr) { }*/
1019
1020//-------------------------------------------------------------------------------------------------------------------------
1021// EndOfTable
1022//-------------------------------------------------------------------------------------------------------------------------
1023void addSMBEndOfTable(SMBStructPtrs *structPtr)
1024{
1025structPtr->new->type= kSMBTypeEndOfTable;
1026structPtr->new->length= sizeof(SMBStructHeader);
1027structPtr->new->handle= handle++;
1028
1029structPtr->new = (SMBStructHeader *)((uint8_t *)structPtr->new + sizeof(SMBStructHeader) + 2);
1030tableLength += sizeof(SMBStructHeader) + 2;
1031structureCount++;
1032}
1033
1034void setSMBStruct(SMBStructPtrs *structPtr)
1035{
1036bool setterFound = false;
1037
1038uint8_t *ptr;
1039SMBWord structSize;
1040int i;
1041
1042/* Bungo: not needed because of tables lengths fix in next lines
1043// http://forge.voodooprojects.org/p/chameleon/issues/361/
1044bool forceFullMemInfo = false;
1045
1046if (structPtr->orig->type == kSMBTypeMemoryDevice) {
1047getBoolForKey(kMemFullInfo, &forceFullMemInfo, &bootInfo->chameleonConfig);
1048if (forceFullMemInfo) {
1049structPtr->orig->length = 27;
1050}
1051}*/
1052
1053stringIndex = 1;
1054stringsSize = 0;
1055
1056if (handle < structPtr->orig->handle) {
1057handle = structPtr->orig->handle;
1058}
1059// Bungo: fix unsuported tables lengths from original smbios: extend smaller or truncate bigger - we use SMBIOS rev. 2.4 like Apple uses
1060switch (structPtr->orig->type) {
1061case kSMBTypeBIOSInformation:
1062structSize = sizeof(SMBBIOSInformation);
1063break;
1064case kSMBTypeSystemInformation:
1065structSize = sizeof(SMBSystemInformation);
1066break;
1067case kSMBTypeBaseBoard:
1068structSize = sizeof(SMBBaseBoard);
1069break;
1070case kSMBTypeSystemEnclosure:
1071structSize = sizeof(SMBSystemEnclosure);
1072break;
1073case kSMBTypeProcessorInformation:
1074structSize = sizeof(SMBProcessorInformation);
1075break;
1076case kSMBTypeMemoryDevice:
1077structSize = sizeof(SMBMemoryDevice);
1078break;
1079default:
1080structSize = structPtr->orig->length; // doesn't change a length for unpatched
1081break;
1082}
1083
1084// memcpy((void *)structPtr->new, structPtr->orig, structPtr->orig->length);
1085if (structPtr->orig->length <= structSize) {
1086memcpy((void *)structPtr->new, structPtr->orig, structPtr->orig->length);
1087} else {
1088memcpy((void *)structPtr->new, structPtr->orig, structSize);
1089}
1090
1091structPtr->new->length = structSize;
1092
1093for (i = 0; i < numOfSetters; i++) {
1094// Bungo:
1095//if ((structPtr->orig->type == SMBSetters[i].type) && (SMBSetters[i].fieldOffset < structPtr->orig->length)) {
1096if ((structPtr->orig->type == SMBSetters[i].type) && (SMBSetters[i].fieldOffset < structSize)) {
1097setterFound = true;
1098setSMBValue(structPtr, i, (returnType *)((uint8_t *)structPtr->new + SMBSetters[i].fieldOffset));
1099}
1100}
1101
1102if (setterFound) {
1103// Bungo:
1104// ptr = (uint8_t *)structPtr->new + structPtr->orig->length;
1105ptr = (uint8_t *)structPtr->new + structPtr->new->length;
1106for (; ((uint16_t *)ptr)[0] != 0; ptr++);
1107
1108if (((uint16_t *)ptr)[0] == 0) {
1109ptr += 2;
1110}
1111structSize = ptr - (uint8_t *)structPtr->new;
1112} else {
1113ptr = (uint8_t *)structPtr->orig + structPtr->orig->length;
1114for (; ((uint16_t *)ptr)[0] != 0; ptr++);
1115
1116if (((uint16_t *)ptr)[0] == 0) {
1117ptr += 2;
1118}
1119
1120structSize = ptr - (uint8_t *)structPtr->orig;
1121memcpy((void *)structPtr->new, structPtr->orig, structSize);
1122}
1123
1124structPtr->new = (SMBStructHeader *)((uint8_t *)structPtr->new + structSize);
1125
1126tableLength += structSize;
1127
1128if (structSize > maxStructSize) {
1129maxStructSize = structSize;
1130}
1131
1132structureCount++;
1133}
1134
1135void setupNewSMBIOSTable(SMBEntryPoint *eps, SMBStructPtrs *structPtr)
1136{
1137uint8_t *ptr = (uint8_t *)eps->dmi.tableAddress;
1138structPtr->orig = (SMBStructHeader *)ptr;
1139
1140for (;((eps->dmi.tableAddress + eps->dmi.tableLength) > ((uint32_t)(uint8_t *)structPtr->orig + sizeof(SMBStructHeader)));) {
1141switch (structPtr->orig->type) {
1142/* Skip all Apple Specific Structures */
1143case kSMBTypeFirmwareVolume:
1144case kSMBTypeMemorySPD:
1145case kSMBTypeOemProcessorType:
1146case kSMBTypeOemProcessorBusSpeed:
1147/* And this one too, to be added at the end */
1148case kSMBTypeEndOfTable:
1149break;
1150
1151default:
1152{
1153/* Add */
1154setSMBStruct(structPtr);
1155break;
1156}
1157}
1158
1159ptr = (uint8_t *)((uint32_t)structPtr->orig + structPtr->orig->length);
1160for (; ((uint16_t *)ptr)[0] != 0; ptr++);
1161
1162if (((uint16_t *)ptr)[0] == 0) {
1163ptr += 2;
1164}
1165
1166structPtr->orig = (SMBStructHeader *)ptr;
1167}
1168
1169addSMBFirmwareVolume(structPtr);
1170addSMBMemorySPD(structPtr);
1171addSMBOemProcessorType(structPtr);
1172addSMBOemProcessorBusSpeed(structPtr);
1173
1174addSMBEndOfTable(structPtr);
1175}
1176
1177// Bungo: does fix system uuid in SMBIOS (and EFI) instead of in EFI only
1178uint8_t *FixSystemUUID()
1179{
1180uint8_t *ptr = (uint8_t *)neweps->dmi.tableAddress;
1181SMBStructHeader *structHeader = (SMBStructHeader *)ptr;
1182int i, isZero, isOnes;
1183uint8_t FixedUUID[UUID_LEN] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F};
1184const char *sysId = getStringForKey(kSMBSystemInformationUUIDKey, SMBPlist);
1185uint8_t *ret = (uint8_t *)getUUIDFromString(sysId);
1186
1187for (;(structHeader->type != kSMBTypeSystemInformation);) // find System Information Table (Type 1) in patched SMBIOS
1188{
1189ptr = (uint8_t *)((uint32_t)structHeader + structHeader->length);
1190for (; ((uint16_t *)ptr)[0] != 0; ptr++);
1191
1192if (((uint16_t *)ptr)[0] == 0) {
1193ptr += 2;
1194}
1195
1196structHeader = (SMBStructHeader *)ptr;
1197}
1198
1199ptr = ((SMBSystemInformation *)structHeader)->uuid;
1200
1201if (!sysId || !ret) { // no or bad custom UUID,...
1202sysId = 0;
1203ret = Platform.UUID; // ...try bios dmi system uuid extraction
1204}
1205
1206for (i=0, isZero=1, isOnes=1; i<UUID_LEN; i++) // check if empty or setable, means: no uuid present
1207{
1208if (ret[i] != 0x00) {
1209isZero = 0;
1210}
1211
1212if (ret[i] != 0xff) {
1213isOnes = 0;
1214}
1215}
1216
1217if (isZero || isOnes) { // if empty or setable...
1218verbose("No UUID present in SMBIOS System Information Table\n");
1219ret = FixedUUID; // ...set a fixed value for system-id = 000102030405060708090A0B0C0D0E0F
1220}
1221
1222memcpy(ptr, ret, UUID_LEN); // fix uuid in the table
1223return ptr;
1224} // Bungo: end fix
1225
1226void setupSMBIOSTable(void)
1227{
1228SMBStructPtrs *structPtr;
1229uint8_t *buffer;
1230// bool setSMB = true; Bungo: now we use useSMBIOSdefaults
1231
1232if (!origeps) {
1233return;
1234}
1235
1236neweps = origeps;
1237
1238structPtr = (SMBStructPtrs *)malloc(sizeof(SMBStructPtrs));
1239if (!structPtr) {
1240return;
1241}
1242
1243buffer = (uint8_t *)malloc(SMB_ALLOC_SIZE);
1244if (!buffer) {
1245free(structPtr);
1246return;
1247}
1248
1249bzero(buffer, SMB_ALLOC_SIZE);
1250structPtr->new = (SMBStructHeader *)buffer;
1251
1252// getBoolForKey(kSMBIOSdefaults, &setSMB, &bootInfo->chameleonConfig); Bungo
1253getBoolForKey(kSMBIOSdefaults, &useSMBIOSdefaults, &bootInfo->chameleonConfig);
1254// if (setSMB) Bungo
1255setDefaultSMBData();
1256
1257setupNewSMBIOSTable(origeps, structPtr);
1258
1259neweps = (SMBEntryPoint *)AllocateKernelMemory(sizeof(SMBEntryPoint));
1260if (!neweps) {
1261free(buffer);
1262free(structPtr);
1263return;
1264}
1265bzero(neweps, sizeof(SMBEntryPoint));
1266
1267neweps->anchor[0]= '_';
1268neweps->anchor[1]= 'S';
1269neweps->anchor[2]= 'M';
1270neweps->anchor[3]= '_';
1271neweps->entryPointLength= sizeof(SMBEntryPoint);
1272neweps->majorVersion= 2; // Bungo:
1273neweps->minorVersion= 4; // Here we're using 2.4 SMBIOS rev. as real Macs
1274neweps->maxStructureSize= maxStructSize;
1275neweps->entryPointRevision= 0;
1276
1277neweps->dmi.anchor[0]= '_';
1278neweps->dmi.anchor[1]= 'D';
1279neweps->dmi.anchor[2]= 'M';
1280neweps->dmi.anchor[3]= 'I';
1281neweps->dmi.anchor[4]= '_';
1282neweps->dmi.tableLength= tableLength;
1283neweps->dmi.tableAddress= AllocateKernelMemory(tableLength);
1284neweps->dmi.structureCount= structureCount;
1285neweps->dmi.bcdRevision= 0x24; // ... and 2.4 DMI rev. as real Macs
1286
1287if (!neweps->dmi.tableAddress) {
1288free(buffer);
1289free(structPtr);
1290return;
1291}
1292
1293memcpy((void *)neweps->dmi.tableAddress, buffer, tableLength);
1294
1295Platform.UUID = FixSystemUUID(); // Bungo: fix System UUID
1296
1297neweps->dmi.checksum= 0;
1298neweps->dmi.checksum= 0x100 - checksum8(&neweps->dmi, sizeof(DMIEntryPoint));
1299
1300neweps->checksum= 0;
1301neweps->checksum= 0x100 - checksum8(neweps, sizeof(SMBEntryPoint));
1302
1303free(buffer);
1304free(structPtr);
1305
1306decodeSMBIOSTable(neweps);
1307
1308DBG("SMBIOS orig was = %x\n", origeps);
1309DBG("SMBIOS new is = %x\n", neweps);
1310}
1311
1312void *getSmbios(int which)
1313{
1314switch (which) {
1315case SMBIOS_ORIGINAL:
1316if (!origeps) {
1317origeps = getAddressOfSmbiosTable();
1318}
1319return origeps;
1320case SMBIOS_PATCHED:
1321return neweps;
1322}
1323
1324return 0;
1325}
1326
1327/* Collect any information needed later */
1328void readSMBIOSInfo(SMBEntryPoint *eps)
1329{
1330uint8_t *structPtr = (uint8_t *)eps->dmi.tableAddress;
1331SMBStructHeader *structHeader = (SMBStructHeader *)structPtr;
1332
1333int dimmnbr = 0;
1334Platform.DMI.MaxMemorySlots= 0;// number of memory slots polulated by SMBIOS
1335Platform.DMI.CntMemorySlots= 0;// number of memory slots counted
1336Platform.DMI.MemoryModules= 0;
1337
1338for (;((eps->dmi.tableAddress + eps->dmi.tableLength) > ((uint32_t)(uint8_t *)structHeader + sizeof(SMBStructHeader)));)
1339{
1340switch (structHeader->type)
1341{
1342case kSMBTypeSystemInformation:
1343Platform.UUID = ((SMBSystemInformation *)structHeader)->uuid; // get factory system uuid
1344break;
1345
1346case kSMBTypeSystemEnclosure: // Bungo: determine platform type
1347switch (((SMBSystemEnclosure *)structHeader)->chassisType) {
1348case kSMBchassisDesktop:
1349case kSMBchassisLPDesktop:
1350case kSMBchassisAllInOne:
1351case kSMBchassisLunchBox:
1352PlatformType = 1; // desktop (iMac, MacMini)
1353break;
1354case kSMBchassisPortable:
1355case kSMBchassisLaptop:
1356case kSMBchassisNotebook:
1357case kSMBchassisHandHeld:
1358case kSMBchassisSubNotebook:
1359PlatformType = 2; // notebook (Mac Books)
1360 break;
1361default:
1362PlatformType = 3; // workstation (Mac Pro, Xserve)
1363break;
1364}
1365break;
1366//
1367case kSMBTypePhysicalMemoryArray:
1368Platform.DMI.MaxMemorySlots += ((SMBPhysicalMemoryArray *)structHeader)->numMemoryDevices;
1369break;
1370
1371case kSMBTypeMemoryDevice:
1372Platform.DMI.CntMemorySlots++;
1373if (((SMBMemoryDevice *)structHeader)->memorySize != 0){
1374Platform.DMI.MemoryModules++;
1375}
1376if (((SMBMemoryDevice *)structHeader)->memorySpeed > 0){
1377Platform.RAM.DIMM[dimmnbr].Frequency = ((SMBMemoryDevice *)structHeader)->memorySpeed;
1378}
1379dimmnbr++;
1380break;
1381default:
1382break;
1383}
1384
1385structPtr = (uint8_t *)((uint32_t)structHeader + structHeader->length);
1386for (; ((uint16_t *)structPtr)[0] != 0; structPtr++);
1387
1388if (((uint16_t *)structPtr)[0] == 0) {
1389structPtr += 2;
1390}
1391
1392structHeader = (SMBStructHeader *)structPtr;
1393}
1394}
1395

Archive Download this file

Revision: 2366