Chameleon

Chameleon Svn Source Tree

Root/trunk/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;
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
434// MacMini5,2 Mac-4BC72D62AD45599E
435
436// MacMini5,3
437// Bios: MM51.88Z.0077.B10.1201241549
438// Board: Mac-F65AE981FFA204ED
439// Data: 01/24/2012
440
441// MacMini 6,1
442// Bios: MM61.88Z.0106.B03.1211161202
443// Board: Mac-F65AE981FFA204ED
444// Data: 10/14/2012
445
446// MacMini 6,2
447// Bios: MM61.88Z.0106.B03.1211161202
448// Board: Mac-FC02E91DDD3FA6A4
449// Data: 10/14/2012
450
451//=========== MacBook ===========
452#define kDefaultMacBookFamily"MacBook"
453//#define kDefaultMacBookBoardAssetTagNumber"MacBook-Black"
454
455#define kDefaultMacBook"MacBook4,1"
456#define kDefaultMacBookBIOSVersion" MB41.88Z.00C1.B00.0802091535"
457#define kDefaultMacBookBIOSReleaseDate"02/09/08"
458#define kDefaultMacBookBoardProduct"Mac-F22788A9"
459
460//=========== MacBookAir ===========
461#define kDefaultMacBookAirFamily"MacBook Air"
462
463// MacBookAir4,1 - Mac-C08A6BB70A942AC2
464// MacBookAir4,2 - Mac-742912EFDBEE19B3
465
466// MacBookAir5,2
467#define kDefaultMacBookAir"MacBookAir5,2"
468#define kDefaultMacBookAirBIOSVersion" MBA51.88Z.00EF.B00.1205221442"
469#define kDefaultMacBookAirBIOSReleaseDate"05/10/12"
470#define kDefaultMacBookBoardAirProduct"Mac-2E6FAB96566FE58C"
471
472// MacBookAir6,1
473// Bios: MBA61.88Z.0099.B04.1309271229
474// Board: Mac-35C1E88140C3E6CF
475// Data: 24/06/13
476
477// MacBookAir6,2
478// Bios: MBA62.88Z.00EF.B00.1205221442
479// Board: Mac-7DF21CB3ED6977E5
480// Data: 24/06/13
481
482//=========== MacBookPro ===========
483#define kDefaultMacBookProFamily"MacBook Pro"
484//#define kDefaultMacBookProBoardAssetTagNumber"MacBook-Aluminum"
485
486#define kDefaultMacBookPro"MacBookPro4,1"
487#define kDefaultMacBookProBIOSVersion" MBP41.88Z.00C1.B03.0802271651"
488#define kDefaultMacBookProBIOSReleaseDate"02/27/08"
489#define kDefaultMacBookProBoardProduct"Mac-F42C89C8"
490
491// MacBookPro8,1
492// Bios: MBP81.88Z.0047.B24.1110141131
493// Board: Mac-94245B3640C91C81
494// Data: 10/14/11
495
496// MacBookPro8,2
497// Bios:
498// Board: Mac_94245A3940C91C80
499// Data: 10/14/11
500
501// MacBookPro8,3
502// Bios:
503// Board: Mac-942459F5819B171B
504// Data: 10/31/11
505
506// MacBookPro10,2
507// Bios: MBP102.88Z.0106.B01.1208311637
508// Board: Mac-AFD8A9D944EA4843
509// Data: 10/02/2012
510
511// MacBookPro11,2 - Mac-3CBD00234E554E41 - MBP112.88Z.0138.B03.1310291227
512// MacBookPro11,3 - Mac-2BD1B31983FE1663 - MBP112.88Z.0138.B02.1310181745
513
514//=========== iMac ===========
515#define kDefaultiMacFamily"iMac"
516//#define kDefaultiMacBoardAssetTagNumber"iMac-Aluminum"
517
518#define kDefaultiMac"iMac8,1"
519#define kDefaultiMacBIOSVersion" IM81.88Z.00C1.B00.0903051113"
520#define kDefaultiMacBIOSReleaseDate"02/09/08"
521#define kDefaultiMacBoardProduct"Mac-F227BEC8"
522#define kDefaultMacFamily"Mac" // iMac8,1 family = "Mac" not "iMac"
523
524// iMac10,1
525// iMac11,1 core i3/i5/i7
526#define kDefaultiMacNehalem"iMac11,1"
527#define kDefaultiMacNehalemBIOSVersion" IM111.88Z.0034.B02.1003171314"
528#define kDefaultiMacNehalemBIOSReleaseDate"03/17/10"
529#define kDefaultiMacNehalemBoardProduct"Mac-F2268DAE"
530// iMac11,2
531// iMac11,3
532
533// iMac12,1
534#define kDefaultiMacSandy"iMac12,1"
535#define kDefaultiMacSandyBIOSVersion" IM121.88Z.0047.B00.1102091756"
536#define kDefaultiMacSandyBIOSReleaseDate"04/22/11"
537#define kDefaultiMacSandyBoardProduct"Mac-942B5BF58194151B"
538
539// iMac12,2
540// Bios: IM121.88Z.0047.B1D.1110171110"
541// Data: 10/17/11
542// Board: Mac-942B59F58194171B"
543
544// iMac13,1
545// Bios: IM131.88Z.010A.B05.1211151146
546// Data: 11/15/2012
547// Board: Mac-00BE6ED71E35EB86
548
549// iMac13,2
550// Bios: IM131.88Z.00CE.B00.1203281326
551// Data: 03/28/2012
552// Board: Mac-FC02E91DDD3FA6A4
553
554// iMac14,1
555// iMac14,2
556// iMac14,3
557// iMac14,4
558// Bios: IM144.88Z.0179.B03.1405241029
559// Data: 05/20/2014
560// Board: Mac-81E3E92DD6088272
561
562//=========== MacPro ===========
563#define kDefaultMacProFamily"MacPro" // MacPro's family = "MacPro" not "Mac Pro"
564//#define KDefauktMacProBoardAssetTagNumber"Pro-Enclosure"
565//#define kDefaultMacProBoardType"0xB" // 11
566
567#define kDefaultMacPro"MacPro3,1"
568#define kDefaultMacProBIOSVersion" MP31.88Z.006C.B05.0903051113"
569#define kDefaultMacProBIOSReleaseDate"08/03/2010"
570//#define kDefaultMacProSystemVersion"1.3"
571#define kDefaultMacProBoardProduct"Mac-F42C88C8"
572//#define KDefaultMacProBoardSerialNumber"J593902RA4MFE"
573
574// Mac Pro 4,1 core i7/Xeon
575#define kDefaultMacProNahWestSystemVersion"0.0"
576
577#define kDefaultMacProNehalem"MacPro4,1"
578#define kDefaultMacProNehalemBIOSVersion" MP41.88Z.0081.B07.0910130729"
579#define kDefaultMacProNehalemBIOSReleaseDate"10/13/09"
580//#define kDefaultMacProNehalemSystemVersion"1.4"
581#define kDefaultMacProNehalemBoardProduct"Mac-F221BEC8"
582//#define KDefaultMacProNehalemBoardSerialNumber"J593004RB1LUE"
583//"J591302R61LUC " // 2-cpu board
584//"J591002JV4MFB " // 1-cpu board
585
586// Mac Pro 5,1 core i7/Xeon
587#define kDefaultMacProWestmere"MacPro5,1"
588#define kDefaultMacProWestmereBIOSVersion" MP51.88Z.007F.B03.1010071432"
589#define kDefaultMacProWestmereBIOSReleaseDate"10/07/10"
590//#define kDefaultMacProWestmereSystemVersion"1.2"
591#define kDefaultMacProWestmereBoardProduct"Mac-F221BEC8"
592//#define KDefaultMacProWestmereBoardSerialNumber"J522700H7BH8C"
593//"J503104H1BH8A " // 2-cpu board
594
595// Mac Pro 6,1
596#define kDefaultMacProHaswell"MacPro6,1"
597#define kDefaultMacProHaswellBIOSVersion"MP61.88Z.0116.B04.1312061508"
598#define kDefaultMacProHaswellBIOSReleaseDate"12/06/2013"
599//#define kDefaultMacProHaswellSystemVersion"1.?"
600#define kDefaultMacProHaswellBoardProduct"Mac-F60DEB81FF30ACF6"
601//#define KDefaultMacProHaswellBoardSerialNumber"F5K3474008JFNN215"
602
603//#define KDefaultBoardSerialNumber"C02140302D5DMT31M"
604// "C07019501PLDCVHAD"
605// "C02032101R5DC771H"
606
607// J593902RA4MFE 3,1
608// J5031046RCZJA 5,1
609// J521101A5CZJC 3,1
610// J593004RB1LUE MacPro4,1
611// J513401PZBH8C 5,1
612// J590802LC4ACB 3,1
613// J594900AH1LUE 4,1
614// J512500HZBH8C 5,1
615// J522700H7BH8C MacPro5,1
616
617/* ============================================ */
618
619bool useSMBIOSdefaults = true; // Bungo
620
621SMBByte 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.
622
623/* Rewrite this function */
624void setDefaultSMBData(void) // Bungo: setting data from real Macs
625{
626defaultBIOSInfo.vendor = kDefaultVendorManufacturer;
627defaultBIOSInfo.release = kDefaultBIOSRelease; // Bungo
628
629defaultSystemInfo.manufacturer = kDefaultVendorManufacturer;
630defaultSystemInfo.version = kDefaultSystemVersion;
631defaultSystemInfo.serialNumber = kDefaultSerialNumber;
632defaultSystemInfo.skuNumber = kDefaultSkuNumber; // Bungo
633
634defaultBaseBoard.manufacturer = kDefaultVendorManufacturer;
635defaultBaseBoard.serialNumber = kDefaultSerialNumber;
636defaultBaseBoard.assetTag = kDefaultAssetTag;
637
638defaultChassis.manufacturer = kDefaultVendorManufacturer;
639defaultChassis.serialNumber = kDefaultSerialNumber;
640defaultChassis.assetTag = kDefaultAssetTag;
641defaultChassis.skuNumber = kDefaultSkuNumber;
642
643// if (platformCPUFeature(CPU_FEATURE_MOBILE)) Bungo: doesn't recognise correctly, need fixing
644if (PlatformType == 2) // this works but it's a substitute
645{
646if (Platform.CPU.NoCores > 1)
647{
648defaultSystemInfo.productName = kDefaultMacBookPro;
649defaultBIOSInfo.version = kDefaultMacBookProBIOSVersion;
650defaultBIOSInfo.releaseDate = kDefaultMacBookProBIOSReleaseDate;
651defaultSystemInfo.family = kDefaultMacBookProFamily;
652defaultBaseBoard.product = kDefaultMacBookProBoardProduct;
653defaultBaseBoard.boardType = kSMBBaseBoardMotherboard;
654defaultChassis.chassisType = kSMBchassisUnknown;
655} else {
656defaultSystemInfo.productName = kDefaultMacBook;
657defaultBIOSInfo.version = kDefaultMacBookBIOSVersion;
658defaultBIOSInfo.releaseDate = kDefaultMacBookBIOSReleaseDate;
659defaultSystemInfo.family = kDefaultMacBookFamily;
660defaultBaseBoard.product = kDefaultMacBookBoardProduct;
661defaultBaseBoard.boardType = kSMBBaseBoardMotherboard;
662defaultChassis.chassisType = kSMBchassisUnknown;
663}
664} else {
665switch (Platform.CPU.NoCores)
666{
667case 1:
668defaultBIOSInfo.version = kDefaultMacMiniBIOSVersion;
669defaultBIOSInfo.releaseDate = kDefaultMacMiniBIOSReleaseDate;
670defaultSystemInfo.productName = kDefaultMacMini;
671defaultSystemInfo.family = kDefaultMacMiniFamily;
672defaultBaseBoard.product = kDefaultMacMiniBoardProduct;
673defaultBaseBoard.boardType = kSMBBaseBoardUnknown;
674defaultChassis.chassisType = kSMBchassisLPDesktop;
675break;
676
677case 2:
678defaultBIOSInfo.version = kDefaultiMacBIOSVersion;
679defaultBIOSInfo.releaseDate = kDefaultiMacBIOSReleaseDate;
680defaultSystemInfo.productName = kDefaultiMac;
681defaultSystemInfo.family = kDefaultMacFamily; // iMac8,1 family = Mac
682defaultBaseBoard.product = kDefaultiMacBoardProduct;
683defaultBaseBoard.boardType = kSMBBaseBoardMotherboard;
684defaultChassis.chassisType = kSMBchassisAllInOne;
685break;
686default:
687{
688switch (Platform.CPU.Family)
689{
690case 0x06:
691{
692switch (Platform.CPU.Model)
693{
694case CPU_MODEL_FIELDS:// Intel Core i5, i7, Xeon X34xx LGA1156 (45nm)
695case CPU_MODEL_DALES:
696case CPU_MODEL_DALES_32NM:// Intel Core i3, i5 LGA1156 (32nm)
697defaultBIOSInfo.version= kDefaultiMacNehalemBIOSVersion;
698defaultBIOSInfo.releaseDate= kDefaultiMacNehalemBIOSReleaseDate;
699defaultSystemInfo.productName= kDefaultiMacNehalem;
700defaultSystemInfo.family= kDefaultiMacFamily;
701defaultBaseBoard.product = kDefaultiMacNehalemBoardProduct;
702defaultBaseBoard.boardType = kSMBBaseBoardMotherboard;
703defaultChassis.chassisType = kSMBchassisAllInOne;
704break;
705
706case CPU_MODEL_SANDYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (32nm)
707case CPU_MODEL_IVYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (22nm)
708case CPU_MODEL_IVYBRIDGE_XEON:
709defaultBIOSInfo.version = kDefaultiMacSandyBIOSVersion;
710defaultBIOSInfo.releaseDate = kDefaultiMacSandyBIOSReleaseDate;
711defaultSystemInfo.productName= kDefaultiMacSandy;
712defaultSystemInfo.family = kDefaultiMacFamily;
713defaultBaseBoard.product = kDefaultiMacSandyBoardProduct;
714defaultBaseBoard.boardType = kSMBBaseBoardMotherboard;
715defaultChassis.chassisType = kSMBchassisAllInOne;
716break;
717
718case CPU_MODEL_NEHALEM:// Intel Core i7, Xeon W35xx, Xeon X55xx, Xeon E55xx LGA1366 (45nm)
719case CPU_MODEL_NEHALEM_EX:// Intel Xeon X75xx, Xeon X65xx, Xeon E75xx, Xeon E65x
720defaultBIOSInfo.version= kDefaultMacProNehalemBIOSVersion;
721defaultBIOSInfo.releaseDate= kDefaultMacProNehalemBIOSReleaseDate;
722defaultSystemInfo.productName= kDefaultMacProNehalem;
723defaultSystemInfo.version = kDefaultMacProNahWestSystemVersion;
724defaultSystemInfo.family= kDefaultMacProFamily;
725defaultBaseBoard.product = kDefaultMacProNehalemBoardProduct;
726defaultBaseBoard.boardType = kSMBBaseBoardProcessorMemoryModule;
727defaultChassis.chassisType = kSMBchassisTower;
728break;
729
730case CPU_MODEL_WESTMERE:// Intel Core i7, Xeon X56xx, Xeon E56xx, Xeon W36xx LGA1366 (32nm) 6 Core
731case CPU_MODEL_WESTMERE_EX:// Intel Xeon E7
732case CPU_MODEL_JAKETOWN:// Intel Core i7, Xeon E5 LGA2011 (32nm)
733defaultBIOSInfo.version= kDefaultMacProWestmereBIOSVersion;
734defaultBIOSInfo.releaseDate= kDefaultMacProWestmereBIOSReleaseDate;
735defaultSystemInfo.productName= kDefaultMacProWestmere;
736defaultSystemInfo.version = kDefaultMacProNahWestSystemVersion;
737defaultSystemInfo.family= kDefaultMacProFamily;
738defaultBaseBoard.product = kDefaultMacProWestmereBoardProduct;
739defaultBaseBoard.boardType = kSMBBaseBoardProcessorMemoryModule;
740defaultChassis.chassisType = kSMBchassisTower;
741break;
742
743default:
744defaultBIOSInfo.version= kDefaultMacProBIOSVersion;
745defaultBIOSInfo.releaseDate= kDefaultMacProBIOSReleaseDate;
746defaultSystemInfo.productName= kDefaultMacPro;
747defaultSystemInfo.family= kDefaultMacProFamily;
748defaultBaseBoard.product = kDefaultMacProBoardProduct;
749defaultBaseBoard.boardType = kSMBBaseBoardMotherboard;
750defaultChassis.chassisType = kSMBchassisUnknown;
751break;
752}
753break;
754}
755default:
756defaultBIOSInfo.version= kDefaultMacProBIOSVersion;
757defaultBIOSInfo.releaseDate= kDefaultMacProBIOSReleaseDate;
758defaultSystemInfo.productName= kDefaultMacPro;
759defaultSystemInfo.family= kDefaultMacProFamily;
760defaultBaseBoard.product = kDefaultMacProBoardProduct;
761defaultBaseBoard.boardType = kSMBBaseBoardMotherboard;
762defaultChassis.chassisType = kSMBchassisUnknown;
763break;
764}
765break;
766}
767}
768}
769}
770
771/* Used for SM*n smbios.plist keys */
772bool getSMBValueForKey(SMBStructHeader *structHeader, const char *keyString, const char **string, returnType *value)
773{
774static int idx = -1;
775static int current = -1;
776int len;
777char key[24];
778
779if (current != structHeader->handle) {
780idx++;
781current = structHeader->handle;
782}
783
784sprintf(key, "%s%d", keyString, idx);
785
786if (value) {
787if (getIntForKey(key, (int *)&(value->dword), SMBPlist)) {
788return true;
789}
790} else {
791if (getValueForKey(key, string, &len, SMBPlist)) {
792return true;
793}
794}
795return false;
796}
797
798char *getSMBStringForField(SMBStructHeader *structHeader, uint8_t field)
799{
800uint8_t *stringPtr = (uint8_t *)structHeader + structHeader->length;
801
802if (!field) {
803return NULL;
804}
805
806for (field--; field != 0 && strlen((char *)stringPtr) > 0;
807field--, stringPtr = (uint8_t *)((uint32_t)stringPtr + strlen((char *)stringPtr) + 1));
808
809return (char *)stringPtr;
810}
811
812void setSMBStringForField(SMBStructHeader *structHeader, const char *string, uint8_t *field)
813{
814int strSize;
815
816if (!field) {
817return;
818}
819
820if (!string) {
821*field = 0;
822return;
823}
824
825strSize = strlen(string);
826
827// remove any spaces found at the end but only in MemoryDevice
828if (structHeader->type == kSMBTypeMemoryDevice) {
829while ((strSize != 0) && (string[strSize - 1] == ' ')) {
830strSize--;
831}
832}
833
834if (strSize == 0) {
835*field = 0;
836return;
837}
838
839memcpy((uint8_t *)structHeader + structHeader->length + stringsSize, string, strSize);
840*field = stringIndex;
841
842stringIndex++;
843stringsSize += strSize + 1;
844}
845
846bool setSMBValue(SMBStructPtrs *structPtr, int idx, returnType *value)
847{
848const char *string = 0;
849int len;
850bool parsed;
851int val;
852
853if (numOfSetters <= idx) {
854return false;
855}
856
857switch (SMBSetters[idx].valueType) {
858case kSMBString:
859{
860if (SMBSetters[idx].keyString)
861{
862if (getValueForKey(SMBSetters[idx].keyString, &string, &len, SMBPlist))
863{
864break;
865} else {
866if (structPtr->orig->type == kSMBTypeMemoryDevice)// MemoryDevice only
867{
868if (getSMBValueForKey(structPtr->orig, SMBSetters[idx].keyString, &string, NULL))
869{
870break;
871}
872}
873}
874
875}
876if (SMBSetters[idx].getSMBValue) {
877if (SMBSetters[idx].getSMBValue((returnType *)&string)) {
878break;
879}
880}
881// if ((SMBSetters[idx].defaultValue) && *(SMBSetters[idx].defaultValue)) Bungo
882if (useSMBIOSdefaults && SMBSetters[idx].defaultValue && *(SMBSetters[idx].defaultValue)) {
883string = *(SMBSetters[idx].defaultValue);
884break;
885}
886string = getSMBStringForField(structPtr->orig, *(uint8_t *)value);
887break;
888}
889case kSMBByte:
890case kSMBWord:
891case kSMBDWord:
892case kSMBQWord:
893if (SMBSetters[idx].keyString) {
894parsed = getIntForKey(SMBSetters[idx].keyString, &val, SMBPlist);
895if (!parsed)
896{
897if (structPtr->orig->type == kSMBTypeMemoryDevice) { // MemoryDevice only
898parsed = getSMBValueForKey(structPtr->orig, SMBSetters[idx].keyString, NULL, (returnType *)&val);
899}
900}
901if (parsed) {
902switch (SMBSetters[idx].valueType) {
903case kSMBByte:
904value->byte = (uint8_t)val;
905break;
906case kSMBWord:
907value->word = (uint16_t)val;
908break;
909case kSMBQWord:
910value->qword = (uint64_t)val;
911break;
912case kSMBDWord:
913default:
914value->dword = (uint32_t)val;
915break;
916}
917return true;
918}
919}
920
921if (SMBSetters[idx].getSMBValue) {
922if (SMBSetters[idx].getSMBValue(value)) {
923return true;
924}
925}
926// #if 0 Bungo: enables code below
927// if (*(SMBSetters[idx].defaultValue)) Bungo
928if (useSMBIOSdefaults && SMBSetters[idx].defaultValue && *(SMBSetters[idx].defaultValue)) {
929// value->dword = *(uint32_t *)(SMBSetters[idx].defaultValue); Bungo
930switch (SMBSetters[idx].valueType) {
931case kSMBByte:
932value->byte = *(uint8_t *)(SMBSetters[idx].defaultValue);
933break;
934case kSMBWord:
935value->word = *(uint16_t *)(SMBSetters[idx].defaultValue);
936break;
937case kSMBQWord:
938value->qword = *(uint64_t *)(SMBSetters[idx].defaultValue);
939break;
940case kSMBDWord:
941default:
942value->dword = *(uint32_t *)(SMBSetters[idx].defaultValue);
943break;
944}
945return true;
946}
947// #endif Bungo
948break;
949}
950
951// if (SMBSetters[idx].valueType == kSMBString && string) Bungo: use null string too -> "Not Specified"
952if ((SMBSetters[idx].valueType == kSMBString) && string) {
953setSMBStringForField(structPtr->new, string, &value->byte);
954}
955return true;
956}
957
958//-------------------------------------------------------------------------------------------------------------------------
959// Apple Specific
960//-------------------------------------------------------------------------------------------------------------------------
961
962/* ===========================================
963 Firmware Volume (Apple Specific - Type 128)
964 ============================================= */
965void addSMBFirmwareVolume(SMBStructPtrs *structPtr)
966{
967return;
968}
969
970/* ===========================================
971 Memory SPD Data (Apple Specific - Type 130)
972 ============================================= */
973void addSMBMemorySPD(SMBStructPtrs *structPtr)
974{
975/* SPD data from Platform.RAM.spd */
976return;
977}
978
979/* ============================================
980 OEM Processor Type (Apple Specific - Type 131)
981 ============================================== */
982void addSMBOemProcessorType(SMBStructPtrs *structPtr)
983{
984SMBOemProcessorType *p = (SMBOemProcessorType *)structPtr->new;
985
986p->header.type= kSMBTypeOemProcessorType;
987p->header.length= sizeof(SMBOemProcessorType);
988p->header.handle= handle++;
989
990setSMBValue(structPtr, numOfSetters - 2 , (returnType *)&(p->ProcessorType));
991
992structPtr->new = (SMBStructHeader *)((uint8_t *)structPtr->new + sizeof(SMBOemProcessorType) + 2);
993tableLength += sizeof(SMBOemProcessorType) + 2;
994structureCount++;
995}
996
997/* =================================================
998 OEM Processor Bus Speed (Apple Specific - Type 132)
999 =================================================== */
1000void addSMBOemProcessorBusSpeed(SMBStructPtrs *structPtr)
1001{
1002SMBOemProcessorBusSpeed *p = (SMBOemProcessorBusSpeed *)structPtr->new;
1003
1004switch (Platform.CPU.Family)
1005{
1006case 0x06:
1007{
1008switch (Platform.CPU.Model)
1009{
1010case 0x19:// Intel Core i5 650 @3.20 Ghz
1011case CPU_MODEL_FIELDS:// Intel Core i5, i7, Xeon X34xx LGA1156 (45nm)
1012case CPU_MODEL_DALES:
1013case CPU_MODEL_DALES_32NM:// Intel Core i3, i5 LGA1156 (32nm)
1014case CPU_MODEL_NEHALEM:// Intel Core i7, Xeon W35xx, Xeon X55xx, Xeon E55xx LGA1366 (45nm)
1015case CPU_MODEL_NEHALEM_EX:// Intel Xeon X75xx, Xeon X65xx, Xeon E75xx, Xeon E65x
1016case CPU_MODEL_WESTMERE:// Intel Core i7, Xeon X56xx, Xeon E56xx, Xeon W36xx LGA1366 (32nm) 6 Core
1017case CPU_MODEL_WESTMERE_EX:// Intel Xeon E7
1018case CPU_MODEL_SANDYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (32nm)
1019case CPU_MODEL_IVYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (22nm)
1020case CPU_MODEL_IVYBRIDGE_XEON:
1021case CPU_MODEL_JAKETOWN:// Intel Core i7, Xeon E5 LGA2011 (32nm)
1022case CPU_MODEL_HASWELL:
1023case CPU_MODEL_HASWELL_SVR:
1024case CPU_MODEL_HASWELL_ULT:
1025case CPU_MODEL_CRYSTALWELL:
1026
1027break;
1028
1029default:
1030return;
1031}
1032}
1033}
1034
1035p->header.type= kSMBTypeOemProcessorBusSpeed;
1036p->header.length= sizeof(SMBOemProcessorBusSpeed);
1037p->header.handle= handle++;
1038
1039setSMBValue(structPtr, numOfSetters -1, (returnType *)&(p->ProcessorBusSpeed));
1040
1041structPtr->new = (SMBStructHeader *)((uint8_t *)structPtr->new + sizeof(SMBOemProcessorBusSpeed) + 2);
1042tableLength += sizeof(SMBOemProcessorBusSpeed) + 2;
1043structureCount++;
1044}
1045
1046/* ==============================================
1047 OEM Platform Feature (Apple Specific - Type 133)
1048 ================================================ */
1049 /*void addSMBOemPlatformFeature(SMBStructPtrs *structPtr) { }*/
1050
1051//-------------------------------------------------------------------------------------------------------------------------
1052// EndOfTable
1053//-------------------------------------------------------------------------------------------------------------------------
1054void addSMBEndOfTable(SMBStructPtrs *structPtr)
1055{
1056structPtr->new->type= kSMBTypeEndOfTable;
1057structPtr->new->length= sizeof(SMBStructHeader);
1058structPtr->new->handle= handle++;
1059
1060structPtr->new = (SMBStructHeader *)((uint8_t *)structPtr->new + sizeof(SMBStructHeader) + 2);
1061tableLength += sizeof(SMBStructHeader) + 2;
1062structureCount++;
1063}
1064
1065void setSMBStruct(SMBStructPtrs *structPtr)
1066{
1067bool setterFound = false;
1068
1069uint8_t *ptr;
1070SMBWord structSize;
1071int i;
1072
1073/* Bungo: not needed because of tables lengths fix in next lines
1074// http://forge.voodooprojects.org/p/chameleon/issues/361/
1075bool forceFullMemInfo = false;
1076
1077if (structPtr->orig->type == kSMBTypeMemoryDevice) {
1078getBoolForKey(kMemFullInfo, &forceFullMemInfo, &bootInfo->chameleonConfig);
1079if (forceFullMemInfo) {
1080structPtr->orig->length = 27;
1081}
1082}*/
1083
1084stringIndex = 1;
1085stringsSize = 0;
1086
1087if (handle < structPtr->orig->handle) {
1088handle = structPtr->orig->handle;
1089}
1090// Bungo: fix unsuported tables lengths from original smbios: extend smaller or truncate bigger - we use SMBIOS rev. 2.4 like Apple uses
1091switch (structPtr->orig->type) {
1092case kSMBTypeBIOSInformation:
1093structSize = sizeof(SMBBIOSInformation);
1094break;
1095case kSMBTypeSystemInformation:
1096structSize = sizeof(SMBSystemInformation);
1097break;
1098case kSMBTypeBaseBoard:
1099structSize = sizeof(SMBBaseBoard);
1100break;
1101case kSMBTypeSystemEnclosure:
1102structSize = sizeof(SMBSystemEnclosure);
1103break;
1104case kSMBTypeProcessorInformation:
1105structSize = sizeof(SMBProcessorInformation);
1106break;
1107case kSMBTypeMemoryDevice:
1108structSize = sizeof(SMBMemoryDevice);
1109break;
1110default:
1111structSize = structPtr->orig->length; // doesn't change a length for unpatched
1112break;
1113}
1114
1115// memcpy((void *)structPtr->new, structPtr->orig, structPtr->orig->length);
1116if (structPtr->orig->length <= structSize) {
1117memcpy((void *)structPtr->new, structPtr->orig, structPtr->orig->length);
1118} else {
1119memcpy((void *)structPtr->new, structPtr->orig, structSize);
1120}
1121
1122structPtr->new->length = structSize;
1123
1124for (i = 0; i < numOfSetters; i++) {
1125// Bungo:
1126//if ((structPtr->orig->type == SMBSetters[i].type) && (SMBSetters[i].fieldOffset < structPtr->orig->length)) {
1127if ((structPtr->orig->type == SMBSetters[i].type) && (SMBSetters[i].fieldOffset < structSize)) {
1128setterFound = true;
1129setSMBValue(structPtr, i, (returnType *)((uint8_t *)structPtr->new + SMBSetters[i].fieldOffset));
1130}
1131}
1132
1133if (setterFound) {
1134// Bungo:
1135// ptr = (uint8_t *)structPtr->new + structPtr->orig->length;
1136ptr = (uint8_t *)structPtr->new + structPtr->new->length;
1137for (; ((uint16_t *)ptr)[0] != 0; ptr++);
1138
1139if (((uint16_t *)ptr)[0] == 0) {
1140ptr += 2;
1141}
1142structSize = ptr - (uint8_t *)structPtr->new;
1143} else {
1144ptr = (uint8_t *)structPtr->orig + structPtr->orig->length;
1145for (; ((uint16_t *)ptr)[0] != 0; ptr++);
1146
1147if (((uint16_t *)ptr)[0] == 0) {
1148ptr += 2;
1149}
1150
1151structSize = ptr - (uint8_t *)structPtr->orig;
1152memcpy((void *)structPtr->new, structPtr->orig, structSize);
1153}
1154
1155structPtr->new = (SMBStructHeader *)((uint8_t *)structPtr->new + structSize);
1156
1157tableLength += structSize;
1158
1159if (structSize > maxStructSize) {
1160maxStructSize = structSize;
1161}
1162
1163structureCount++;
1164}
1165
1166void setupNewSMBIOSTable(SMBEntryPoint *eps, SMBStructPtrs *structPtr)
1167{
1168uint8_t *ptr = (uint8_t *)eps->dmi.tableAddress;
1169structPtr->orig = (SMBStructHeader *)ptr;
1170
1171for (;((eps->dmi.tableAddress + eps->dmi.tableLength) > ((uint32_t)(uint8_t *)structPtr->orig + sizeof(SMBStructHeader)));) {
1172switch (structPtr->orig->type) {
1173/* Skip all Apple Specific Structures */
1174case kSMBTypeFirmwareVolume:
1175case kSMBTypeMemorySPD:
1176case kSMBTypeOemProcessorType:
1177case kSMBTypeOemProcessorBusSpeed:
1178/* And this one too, to be added at the end */
1179case kSMBTypeEndOfTable:
1180break;
1181
1182default:
1183{
1184/* Add */
1185setSMBStruct(structPtr);
1186break;
1187}
1188}
1189
1190ptr = (uint8_t *)((uint32_t)structPtr->orig + structPtr->orig->length);
1191for (; ((uint16_t *)ptr)[0] != 0; ptr++);
1192
1193if (((uint16_t *)ptr)[0] == 0) {
1194ptr += 2;
1195}
1196
1197structPtr->orig = (SMBStructHeader *)ptr;
1198}
1199
1200addSMBFirmwareVolume(structPtr);
1201addSMBMemorySPD(structPtr);
1202addSMBOemProcessorType(structPtr);
1203addSMBOemProcessorBusSpeed(structPtr);
1204
1205addSMBEndOfTable(structPtr);
1206}
1207
1208// Bungo: does fix system uuid in SMBIOS (and EFI) instead of in EFI only
1209uint8_t *FixSystemUUID()
1210{
1211uint8_t *ptr = (uint8_t *)neweps->dmi.tableAddress;
1212SMBStructHeader *structHeader = (SMBStructHeader *)ptr;
1213int i, isZero, isOnes;
1214uint8_t FixedUUID[UUID_LEN] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F};
1215const char *sysId = getStringForKey(kSMBSystemInformationUUIDKey, SMBPlist);
1216uint8_t *ret = (uint8_t *)getUUIDFromString(sysId);
1217
1218for (;(structHeader->type != kSMBTypeSystemInformation);) // find System Information Table (Type 1) in patched SMBIOS
1219{
1220ptr = (uint8_t *)((uint32_t)structHeader + structHeader->length);
1221for (; ((uint16_t *)ptr)[0] != 0; ptr++);
1222
1223if (((uint16_t *)ptr)[0] == 0) {
1224ptr += 2;
1225}
1226
1227structHeader = (SMBStructHeader *)ptr;
1228}
1229
1230ptr = ((SMBSystemInformation *)structHeader)->uuid;
1231
1232if (!sysId || !ret) { // no or bad custom UUID,...
1233sysId = 0;
1234ret = Platform.UUID; // ...try bios dmi system uuid extraction
1235}
1236
1237for (i=0, isZero=1, isOnes=1; i<UUID_LEN; i++) // check if empty or setable, means: no uuid present
1238{
1239if (ret[i] != 0x00) {
1240isZero = 0;
1241}
1242
1243if (ret[i] != 0xff) {
1244isOnes = 0;
1245}
1246}
1247
1248if (isZero || isOnes) { // if empty or setable...
1249verbose("No UUID present in SMBIOS System Information Table\n");
1250ret = FixedUUID; // ...set a fixed value for system-id = 000102030405060708090A0B0C0D0E0F
1251}
1252
1253memcpy(ptr, ret, UUID_LEN); // fix uuid in the table
1254return ptr;
1255} // Bungo: end fix
1256
1257void setupSMBIOSTable(void)
1258{
1259SMBStructPtrs *structPtr;
1260uint8_t *buffer;
1261// bool setSMB = true; Bungo: now we use useSMBIOSdefaults
1262
1263if (!origeps) {
1264return;
1265}
1266
1267neweps = origeps;
1268
1269structPtr = (SMBStructPtrs *)malloc(sizeof(SMBStructPtrs));
1270if (!structPtr) {
1271return;
1272}
1273
1274buffer = (uint8_t *)malloc(SMB_ALLOC_SIZE);
1275if (!buffer) {
1276free(structPtr);
1277return;
1278}
1279
1280bzero(buffer, SMB_ALLOC_SIZE);
1281structPtr->new = (SMBStructHeader *)buffer;
1282
1283// getBoolForKey(kSMBIOSdefaults, &setSMB, &bootInfo->chameleonConfig); Bungo
1284getBoolForKey(kSMBIOSdefaults, &useSMBIOSdefaults, &bootInfo->chameleonConfig);
1285// if (setSMB) Bungo
1286setDefaultSMBData();
1287
1288setupNewSMBIOSTable(origeps, structPtr);
1289
1290neweps = (SMBEntryPoint *)AllocateKernelMemory(sizeof(SMBEntryPoint));
1291if (!neweps) {
1292free(buffer);
1293free(structPtr);
1294return;
1295}
1296bzero(neweps, sizeof(SMBEntryPoint));
1297
1298neweps->anchor[0]= '_';
1299neweps->anchor[1]= 'S';
1300neweps->anchor[2]= 'M';
1301neweps->anchor[3]= '_';
1302neweps->entryPointLength= sizeof(SMBEntryPoint);
1303neweps->majorVersion= 2; // Bungo:
1304neweps->minorVersion= 4; // Here we're using 2.4 SMBIOS rev. as real Macs
1305neweps->maxStructureSize= maxStructSize;
1306neweps->entryPointRevision= 0;
1307
1308neweps->dmi.anchor[0]= '_';
1309neweps->dmi.anchor[1]= 'D';
1310neweps->dmi.anchor[2]= 'M';
1311neweps->dmi.anchor[3]= 'I';
1312neweps->dmi.anchor[4]= '_';
1313neweps->dmi.tableLength= tableLength;
1314neweps->dmi.tableAddress= AllocateKernelMemory(tableLength);
1315neweps->dmi.structureCount= structureCount;
1316neweps->dmi.bcdRevision= 0x24; // ... and 2.4 DMI rev. as real Macs
1317
1318if (!neweps->dmi.tableAddress) {
1319free(buffer);
1320free(structPtr);
1321return;
1322}
1323
1324memcpy((void *)neweps->dmi.tableAddress, buffer, tableLength);
1325
1326Platform.UUID = FixSystemUUID(); // Bungo: fix System UUID
1327
1328neweps->dmi.checksum= 0;
1329neweps->dmi.checksum= 0x100 - checksum8(&neweps->dmi, sizeof(DMIEntryPoint));
1330
1331neweps->checksum= 0;
1332neweps->checksum= 0x100 - checksum8(neweps, sizeof(SMBEntryPoint));
1333
1334free(buffer);
1335free(structPtr);
1336
1337decodeSMBIOSTable(neweps);
1338
1339DBG("SMBIOS orig was = %x\n", origeps);
1340DBG("SMBIOS new is = %x\n", neweps);
1341}
1342
1343void *getSmbios(int which)
1344{
1345switch (which) {
1346case SMBIOS_ORIGINAL:
1347if (!origeps) {
1348origeps = getAddressOfSmbiosTable();
1349}
1350return origeps;
1351case SMBIOS_PATCHED:
1352return neweps;
1353}
1354
1355return 0;
1356}
1357
1358/* Collect any information needed later */
1359void readSMBIOSInfo(SMBEntryPoint *eps)
1360{
1361uint8_t *structPtr = (uint8_t *)eps->dmi.tableAddress;
1362SMBStructHeader *structHeader = (SMBStructHeader *)structPtr;
1363
1364int dimmnbr = 0;
1365Platform.DMI.MaxMemorySlots= 0;// number of memory slots polulated by SMBIOS
1366Platform.DMI.CntMemorySlots= 0;// number of memory slots counted
1367Platform.DMI.MemoryModules= 0;
1368
1369for (;((eps->dmi.tableAddress + eps->dmi.tableLength) > ((uint32_t)(uint8_t *)structHeader + sizeof(SMBStructHeader)));)
1370{
1371switch (structHeader->type)
1372{
1373case kSMBTypeSystemInformation:
1374Platform.UUID = ((SMBSystemInformation *)structHeader)->uuid; // get factory system uuid
1375break;
1376
1377case kSMBTypeSystemEnclosure: // Bungo: determine platform type
1378switch (((SMBSystemEnclosure *)structHeader)->chassisType) {
1379case kSMBchassisDesktop:
1380case kSMBchassisLPDesktop:
1381case kSMBchassisAllInOne:
1382case kSMBchassisLunchBox:
1383PlatformType = 1; // desktop (iMac, MacMini)
1384break;
1385case kSMBchassisPortable:
1386case kSMBchassisLaptop:
1387case kSMBchassisNotebook:
1388case kSMBchassisHandHeld:
1389case kSMBchassisSubNotebook:
1390PlatformType = 2; // notebook (Mac Books)
1391 break;
1392default:
1393PlatformType = 3; // workstation (Mac Pro, Xserve)
1394break;
1395}
1396break;
1397//
1398case kSMBTypePhysicalMemoryArray:
1399Platform.DMI.MaxMemorySlots += ((SMBPhysicalMemoryArray *)structHeader)->numMemoryDevices;
1400break;
1401
1402case kSMBTypeMemoryDevice:
1403Platform.DMI.CntMemorySlots++;
1404if (((SMBMemoryDevice *)structHeader)->memorySize != 0){
1405Platform.DMI.MemoryModules++;
1406}
1407if (((SMBMemoryDevice *)structHeader)->memorySpeed > 0){
1408Platform.RAM.DIMM[dimmnbr].Frequency = ((SMBMemoryDevice *)structHeader)->memorySpeed;
1409}
1410dimmnbr++;
1411break;
1412default:
1413break;
1414}
1415
1416structPtr = (uint8_t *)((uint32_t)structHeader + structHeader->length);
1417for (; ((uint16_t *)structPtr)[0] != 0; structPtr++);
1418
1419if (((uint16_t *)structPtr)[0] == 0) {
1420structPtr += 2;
1421}
1422
1423structHeader = (SMBStructHeader *)structPtr;
1424}
1425}
1426

Archive Download this file

Revision: 2390