Chameleon

Chameleon Svn Source Tree

Root/branches/cparm/i386/libsaio/fake_efi.c

1
2/*
3 * Copyright 2007 David F. Elliott. All rights reserved.
4 */
5
6/*
7 * Copyright 2010,2011 Cadet-petit Armel <armelcadetpetit@gmail.com>. All rights reserved.
8 */
9
10#include "libsaio.h"
11#include "boot.h"
12#include "bootstruct.h"
13#include "efi.h"
14#include "acpi.h"
15#include "fake_efi.h"
16#include "efi_tables.h"
17#include "platform.h"
18#include "device_inject.h"
19#include "convert.h"
20#include "pci.h"
21#include "sl.h"
22#include "modules.h"
23#include "vers.h"
24#include "smp-imps.h"
25
26#ifndef DEBUG_EFI
27#define DEBUG_EFI 0
28#endif
29
30#if DEBUG_EFI
31#define DBG(x...)printf(x)
32#else
33#define DBG(x...)
34#endif
35/*
36 * Modern Darwin kernels require some amount of EFI because Apple machines all
37 * have EFI. Modifying the kernel source to not require EFI is of course
38 * possible but would have to be maintained as a separate patch because it is
39 * unlikely that Apple wishes to add legacy support to their kernel.
40 *
41 * As you can see from the Apple-supplied code in bootstruct.c, it seems that
42 * the intention was clearly to modify this booter to provide EFI-like structures
43 * to the kernel rather than modifying the kernel to handle non-EFI stuff. This
44 * makes a lot of sense from an engineering point of view as it means the kernel
45 * for the as yet unreleased EFI-only Macs could still be booted by the non-EFI
46 * DTK systems so long as the kernel checked to ensure the boot tables were
47 * filled in appropriately. Modern xnu requires a system table and a runtime
48 * services table and performs no checks whatsoever to ensure the pointers to
49 * these tables are non-NULL.Therefore, any modern xnu kernel will page fault
50 * early on in the boot process if the system table pointer is zero.
51 *
52 * Even before that happens, the tsc_init function in modern xnu requires the FSB
53 * Frequency to be a property in the /efi/platform node of the device tree or else
54 * it panics the bootstrap process very early on.
55 *
56 * As of this writing, the current implementation found here is good enough
57 * to make the currently available xnu kernel boot without modification on a
58 * system with an appropriate processor. With a minor source modification to
59 * the tsc_init function to remove the explicit check for Core or Core 2
60 * processors the kernel can be made to boot on other processors so long as
61 * the code can be executed by the processor and the machine contains the
62 * necessary hardware.
63 */
64static inline char * mallocStringForGuid(EFI_GUID const *pGuid);
65static VOID EFI_ST_FIX_CRC32(void);
66static EFI_STATUS setupAcpiNoMod();
67static EFI_STATUS setup_acpi (void);
68static EFI_CHAR16* getSmbiosChar16(const char * key, size_t* len);
69static EFI_CHAR8* getSmbiosUUID();
70static EFI_STATUS getSystemID();
71static VOID setupSystemType();
72static VOID setupEfiDeviceTree(void);
73static VOID setup_Smbios();
74static VOID setup_machine_signature();
75static VOID setupEfiConfigurationTable();
76
77/*==========================================================================
78 * Utility function to make a device tree string from an EFI_GUID
79 */
80
81static inline char * mallocStringForGuid(EFI_GUID const *pGuid)
82{
83char *string = malloc(37);
84efi_guid_unparse_upper(pGuid, string);
85return string;
86}
87
88/*==========================================================================
89 * Function to map 32 bit physical address to 64 bit virtual address
90 */
91
92#define ptov64(addr) (uint64_t)((uint64_t)addr | 0xFFFFFF8000000000ULL)
93
94/*==========================================================================
95 * Fake EFI implementation
96 */
97
98static EFI_CHAR16 const FIRMWARE_VENDOR[] = {'A','p','p','l','e', 0};
99
100/* Info About the current Firmware */
101#define FIRMWARE_MAINTENER "cparm, armelcadetpetit@gmail.com"
102static EFI_CHAR16 const FIRMWARE_NAME[] = {'S','a','d','D','a','r','w','i','n', 0}; // hummm, damn, Unfortunately, that day has come, ..... One more thing ???
103static EFI_UINT32 const FIRMWARE_REVISION = 0x00010500; //1.5
104static EFI_UINT32 const DEVICE_SUPPORTED = 0x00000001;
105
106/* Default platform system_id (fix by IntVar) */
107static EFI_CHAR8 const SYSTEM_ID[] = "0123456789ABCDEF"; //random value gen by uuidgen
108
109/* Just a ret instruction */
110static uint8_t const VOIDRET_INSTRUCTIONS[] = {0xc3};
111
112/* movl $0x80000003,%eax; ret */
113static uint8_t const UNSUPPORTEDRET_INSTRUCTIONS[] = {0xb8, 0x03, 0x00, 0x00, 0x80, 0xc3};
114
115EFI_SYSTEM_TABLE_32 *gST32 = NULL;
116EFI_SYSTEM_TABLE_64 *gST64 = NULL;
117Node *gEfiConfigurationTableNode = NULL;
118
119/* From Foundation/Efi/Guid/Smbios/SmBios.h */
120/* Modified to wrap Data4 array init with {} */
121#define EFI_SMBIOS_TABLE_GUID {0xeb9d2d31, 0x2d88, 0x11d3, {0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d}}
122
123#define EFI_ACPI_TABLE_GUID \
124{ \
1250xeb9d2d30, 0x2d88, 0x11d3, { 0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
126}
127
128#define EFI_ACPI_20_TABLE_GUID \
129{ \
1300x8868e871, 0xe4f1, 0x11d3, { 0xbc, 0x22, 0x0, 0x80, 0xc7, 0x3c, 0x88, 0x81 } \
131}
132
133#define EFI_MPS_TABLE_GUID \
134{ \
1350xeb9d2d2f,0x2d88,0x11d3,{0x9a,0x16,0x0,0x90,0x27,0x3f,0xc1,0x4d} \
136}
137/* From Foundation/Efi/Guid/Smbios/SmBios.c */
138EFI_GUID constgEfiSmbiosTableGuid = EFI_SMBIOS_TABLE_GUID;
139
140EFI_GUID gEfiAcpiTableGuid = EFI_ACPI_TABLE_GUID;
141EFI_GUID gEfiAcpi20TableGuid = EFI_ACPI_20_TABLE_GUID;
142EFI_GUID gEfiMpsTableGuid = EFI_MPS_TABLE_GUID;
143
144EFI_UINT32 gNumTables32 = 0;
145EFI_UINT64 gNumTables64 = 0;
146EFI_CONFIGURATION_TABLE_32 gEfiConfigurationTable32[MAX_CONFIGURATION_TABLE_ENTRIES];
147EFI_CONFIGURATION_TABLE_64 gEfiConfigurationTable64[MAX_CONFIGURATION_TABLE_ENTRIES];
148extern EFI_STATUS addConfigurationTable(EFI_GUID const *pGuid, void *table, char const *alias)
149{
150EFI_UINTN i = 0;
151
152 if (pGuid == NULL || table == NULL)
153return EFI_INVALID_PARAMETER;
154
155//Azi: as is, cpu's with em64t will use EFI64 on pre 10.6 systems,
156// wich seems to cause no problem. In case it does, force i386 arch.
157if (archCpuType == CPU_TYPE_I386)
158{
159i = gNumTables32;
160}
161else
162{
163i = (EFI_UINTN)gNumTables64;
164}
165
166// We only do adds, not modifications and deletes like InstallConfigurationTable
167if (i >= MAX_CONFIGURATION_TABLE_ENTRIES)
168{
169
170
171 printf("Ran out of space for configuration tables (max = %d). Please, increase the reserved size in the code.\n", (int)MAX_CONFIGURATION_TABLE_ENTRIES);
172 return EFI_ABORTED;
173 }
174
175
176
177 if (archCpuType == CPU_TYPE_I386)
178{
179
180 gEfiConfigurationTable32[i].VendorGuid = *pGuid;
181 gEfiConfigurationTable32[i].VendorTable = (EFI_PTR32)table;
182
183gNumTables32++;
184}
185else
186{
187 gEfiConfigurationTable64[i].VendorGuid = *pGuid;
188 gEfiConfigurationTable64[i].VendorTable = (EFI_PTR32)table;
189gNumTables64++ ;
190}
191
192
193 Node *tableNode = DT__AddChild(gEfiConfigurationTableNode, mallocStringForGuid(pGuid));
194
195 // Use the pointer to the GUID we just stuffed into the system table
196 DT__AddProperty(tableNode, "guid", sizeof(EFI_GUID), (void*)pGuid);
197
198 // The "table" property is the 32-bit (in our implementation) physical address of the table
199 DT__AddProperty(tableNode, "table", sizeof(void*) * 2, table);
200
201 // Assume the alias pointer is a global or static piece of data
202 if (alias != NULL)
203 DT__AddProperty(tableNode, "alias", strlen(alias)+1, (char*)alias);
204
205 return EFI_SUCCESS;
206
207}
208
209static VOID EFI_ST_FIX_CRC32(void)
210{
211if (archCpuType == CPU_TYPE_I386)
212{
213gST32->Hdr.CRC32 = 0;
214gST32->Hdr.CRC32 = crc32(0L, gST32, gST32->Hdr.HeaderSize);
215}
216else
217{
218gST64->Hdr.CRC32 = 0;
219gST64->Hdr.CRC32 = crc32(0L, gST64, gST64->Hdr.HeaderSize);
220}
221}
222
223void finalizeEFIConfigTable(void )
224{
225
226 if (archCpuType == CPU_TYPE_I386)
227{
228EFI_SYSTEM_TABLE_32 *efiSystemTable = gST32;
229
230 efiSystemTable->NumberOfTableEntries = gNumTables32;
231 efiSystemTable->ConfigurationTable = (EFI_PTR32)gEfiConfigurationTable32;
232
233}
234else
235{
236EFI_SYSTEM_TABLE_64 *efiSystemTable = gST64;
237
238 efiSystemTable->NumberOfTableEntries = gNumTables64;
239 efiSystemTable->ConfigurationTable = ptov64((EFI_PTR32)gEfiConfigurationTable64);
240
241
242}
243 EFI_ST_FIX_CRC32();
244
245#if DEBUG_EFI
246 EFI_UINTN i;
247 EFI_UINTN num = 0;
248 uint32_t table ;
249 EFI_GUID Guid;
250
251 if (archCpuType == CPU_TYPE_I386)
252{
253num = gST32->NumberOfTableEntries;
254
255}
256else
257{
258num = (EFI_UINTN)gST64->NumberOfTableEntries;
259
260}
261 msglog("EFI Configuration table :\n");
262 for (i=0; i<num; i++)
263{
264 if (archCpuType == CPU_TYPE_I386)
265 {
266 table = gEfiConfigurationTable32[i].VendorTable;
267 Guid = gEfiConfigurationTable32[i].VendorGuid;
268
269 }
270 else
271 {
272 table = gEfiConfigurationTable64[i].VendorTable;
273 Guid = gEfiConfigurationTable64[i].VendorGuid;
274
275 }
276 char id[4];
277
278 if (memcmp(&Guid, &gEfiSmbiosTableGuid, sizeof(EFI_GUID)) == 0)
279{
280 sprintf(id, "%s", "_SM_");
281 }
282else if (memcmp(&Guid, &gEfiAcpiTableGuid, sizeof(EFI_GUID)) == 0)
283{
284 sprintf(id, "%s", "RSD1");
285 }
286else if (memcmp(&Guid, &gEfiAcpi20TableGuid, sizeof(EFI_GUID)) == 0)
287{
288 sprintf(id, "%s", "RSD2");
289 }
290else if (memcmp(&Guid, &gEfiMpsTableGuid, sizeof(EFI_GUID)) == 0)
291{
292 sprintf(id, "%s", "_MP_");
293 }
294
295 msglog("table [%d]:%s , 32Bit addr : 0x%x\n",i,id,table);
296
297 }
298 msglog("\n");
299#endif
300
301}
302
303/*
304 * What we do here is simply allocate a fake EFI system table and a fake EFI
305 * runtime services table.
306 *
307 * Because we build against modern headers with kBootArgsRevision 4 we
308 * also take care to set efiMode = 32.
309 */
310
311
312#define pto(mode, addr) (mode == 64) ? ptov64((EFI_PTR32)addr) : (EFI_PTR32)addr
313
314#define setupEfiTables(mode) \
315{ \
316struct fake_efi_pages \
317{\
318/* We use the fake_efi_pages struct so that we only need to do one kernel
319 * memory allocation for all needed EFI data. Otherwise, small allocations
320 * like the FIRMWARE_VENDOR string would take up an entire page.
321 * NOTE WELL: Do NOT assume this struct has any particular layout within itself.
322 * It is absolutely not intended to be publicly exposed anywhere
323 * We say pages (plural) although right now we are well within the 1 page size
324 * and probably will stay that way.
325 */\
326EFI_SYSTEM_TABLE_##mode efiSystemTable;\
327EFI_RUNTIME_SERVICES_##mode efiRuntimeServices;\
328EFI_CONFIGURATION_TABLE_##mode efiConfigurationTable[MAX_CONFIGURATION_TABLE_ENTRIES];\
329EFI_CHAR16 firmwareVendor[sizeof(FIRMWARE_VENDOR)/sizeof(EFI_CHAR16)];\
330uint8_t voidret_instructions[sizeof(VOIDRET_INSTRUCTIONS)/sizeof(uint8_t)];\
331uint8_t unsupportedret_instructions[sizeof(UNSUPPORTEDRET_INSTRUCTIONS)/sizeof(uint8_t)];\
332};\
333struct fake_efi_pages *fakeEfiPages = (struct fake_efi_pages*)AllocateKernelMemory(sizeof(struct fake_efi_pages));\
334/* Zero out all the tables in case fields are added later*/\
335bzero(fakeEfiPages, sizeof(struct fake_efi_pages));\
336/*--------------------------------------------------------------------
337 * Initialize some machine code that will return EFI_UNSUPPORTED for
338 * functions returning int and simply return for void functions.*/\
339memcpy(fakeEfiPages->voidret_instructions, VOIDRET_INSTRUCTIONS, sizeof(VOIDRET_INSTRUCTIONS));\
340memcpy(fakeEfiPages->unsupportedret_instructions, UNSUPPORTEDRET_INSTRUCTIONS, sizeof(UNSUPPORTEDRET_INSTRUCTIONS));\
341/*--------------------------------------------------------------------
342 * System table*/\
343EFI_SYSTEM_TABLE_##mode *efiSystemTable = gST##mode = &fakeEfiPages->efiSystemTable;\
344efiSystemTable->Hdr.Signature = EFI_SYSTEM_TABLE_SIGNATURE;\
345efiSystemTable->Hdr.Revision = EFI_SYSTEM_TABLE_REVISION;\
346efiSystemTable->Hdr.HeaderSize = sizeof(EFI_SYSTEM_TABLE_##mode);\
347efiSystemTable->Hdr.CRC32 = 0;/*Initialize to zero and then do CRC32*/ \
348efiSystemTable->Hdr.Reserved = 0;\
349efiSystemTable->FirmwareVendor = pto(mode, &fakeEfiPages->firmwareVendor);\
350memcpy(fakeEfiPages->firmwareVendor, FIRMWARE_VENDOR, sizeof(FIRMWARE_VENDOR));\
351efiSystemTable->FirmwareRevision = FIRMWARE_REVISION;\
352/* XXX: We may need to have basic implementations of ConIn/ConOut/StdErr
353 * The EFI spec states that all handles are invalid after boot services have been
354 * exited so we can probably get by with leaving the handles as zero.
355 */\
356efiSystemTable->ConsoleInHandle = 0;\
357efiSystemTable->ConIn = 0;\
358efiSystemTable->ConsoleOutHandle = 0;\
359efiSystemTable->ConOut = 0;\
360efiSystemTable->StandardErrorHandle = 0;\
361efiSystemTable->StdErr = 0;\
362efiSystemTable->RuntimeServices = pto(mode,&fakeEfiPages->efiRuntimeServices) ;\
363/* According to the EFI spec, BootServices aren't valid after the
364 * boot process is exited so we can probably do without it.
365 * Apple didn't provide a definition for it in pexpert/i386/efi.h
366 * so I'm guessing they don't use it.
367 */\
368efiSystemTable->BootServices = 0;\
369efiSystemTable->NumberOfTableEntries = 0;\
370efiSystemTable->ConfigurationTable = pto(mode,fakeEfiPages->efiConfigurationTable);\
371/* We're done. Now CRC32 the thing so the kernel will accept it.
372 * Must be initialized to zero before CRC32, done above.
373 */\
374gST##mode->Hdr.CRC32 = crc32(0L, gST##mode, gST##mode->Hdr.HeaderSize);\
375/*--------------------------------------------------------------------
376 * Runtime services*/\
377EFI_RUNTIME_SERVICES_##mode *efiRuntimeServices = &fakeEfiPages->efiRuntimeServices;\
378efiRuntimeServices->Hdr.Signature = EFI_RUNTIME_SERVICES_SIGNATURE;\
379efiRuntimeServices->Hdr.Revision = EFI_RUNTIME_SERVICES_REVISION;\
380efiRuntimeServices->Hdr.HeaderSize = sizeof(EFI_RUNTIME_SERVICES_##mode);\
381efiRuntimeServices->Hdr.CRC32 = 0;\
382efiRuntimeServices->Hdr.Reserved = 0;\
383/* There are a number of function pointers in the efiRuntimeServices table.
384 * These are the Foundation (e.g. core) services and are expected to be present on
385 * all EFI-compliant machines.Some kernel extensions (notably AppleEFIRuntime)
386 * will call these without checking to see if they are null.
387 *
388 * We don't really feel like doing an EFI implementation in the bootloader
389 * but it is nice if we can at least prevent a complete crash by
390 * at least providing some sort of implementation until one can be provided
391 * nicely in a kext.
392 */\
393void (*voidret_fp)() = (void*)fakeEfiPages->voidret_instructions;\
394void (*unsupportedret_fp)() = (void*)fakeEfiPages->unsupportedret_instructions;\
395efiRuntimeServices->GetTime = pto(mode,unsupportedret_fp);\
396efiRuntimeServices->SetTime = pto(mode,unsupportedret_fp);\
397efiRuntimeServices->GetWakeupTime = pto(mode,unsupportedret_fp);\
398efiRuntimeServices->SetWakeupTime = pto(mode,unsupportedret_fp);\
399efiRuntimeServices->SetVirtualAddressMap = pto(mode,unsupportedret_fp);\
400efiRuntimeServices->ConvertPointer = pto(mode,unsupportedret_fp);\
401efiRuntimeServices->GetVariable = pto(mode,unsupportedret_fp);\
402efiRuntimeServices->GetNextVariableName = pto(mode,unsupportedret_fp);\
403efiRuntimeServices->SetVariable = pto(mode,unsupportedret_fp);\
404efiRuntimeServices->GetNextHighMonotonicCount = pto(mode,unsupportedret_fp);\
405efiRuntimeServices->ResetSystem = pto(mode,voidret_fp);\
406/*We're done.Now CRC32 the thing so the kernel will accept it*/\
407efiRuntimeServices->Hdr.CRC32 = crc32(0L, efiRuntimeServices, efiRuntimeServices->Hdr.HeaderSize);\
408/*--------------------------------------------------------------------
409 * Finish filling in the rest of the boot args that we need.*/\
410bootArgs->efiSystemTable = (uint32_t)efiSystemTable;\
411bootArgs->efiMode = kBootArgsEfiMode##mode;\
412/* The bootArgs structure as a whole is bzero'd so we don't need to fill in
413 * things like efiRuntimeServices* and what not.
414 *
415 * In fact, the only code that seems to use that is the hibernate code so it
416 * knows not to save the pages. It even checks to make sure its nonzero.
417*/\
418}
419
420/*
421 * In addition to the EFI tables there is also the EFI device tree node.
422 * In particular, we need /efi/platform to have an FSBFrequency key. Without it,
423 * the tsc_init function will panic very early on in kernel startup, before
424 * the console is available.
425 */
426
427/*==========================================================================
428 * FSB Frequency detection
429 */
430
431/* These should be const but DT__AddProperty takes char* */
432#if UNUSED
433static const char const TSC_Frequency_prop[] = "TSCFrequency";
434static const char const CPU_Frequency_prop[] = "CPUFrequency";
435#endif
436static const char const FSB_Frequency_prop[] = "FSBFrequency";
437
438/*==========================================================================
439 * SMBIOS
440 */
441
442uint64_t smbios_p;
443
444/*==========================================================================
445 * ACPI
446 */
447
448static uint64_t local_rsd_p;
449static ACPI_TABLES acpi_tables;
450
451/* Setup ACPI without any patch. */
452static EFI_STATUS setupAcpiNoMod()
453{
454
455EFI_STATUS ret = EFI_UNSUPPORTED;
456
457 ACPI_TABLE_RSDP* rsdp = (ACPI_TABLE_RSDP*)((uint32_t)local_rsd_p);
458 if(rsdp->Revision > 0 && (GetChecksum(rsdp, sizeof(ACPI_TABLE_RSDP)) == 0))
459{
460ret = addConfigurationTable(&gEfiAcpi20TableGuid, &local_rsd_p, "ACPI_20");
461}
462else
463{
464ret = addConfigurationTable(&gEfiAcpiTableGuid, &local_rsd_p, "ACPI");
465}
466
467return ret;
468}
469
470static EFI_STATUS setup_acpi (void)
471{
472EFI_STATUS ret = EFI_UNSUPPORTED;
473
474execute_hook("setupAcpiEfi", &ret, NULL, NULL, NULL, NULL, NULL);
475
476if (ret != EFI_SUCCESS)
477{
478 if (!FindAcpiTables(&acpi_tables))
479{
480printf("Failed to detect ACPI tables.\n");
481return EFI_NOT_FOUND;
482 }
483
484 local_rsd_p = ((uint64_t)((uint32_t)acpi_tables.RsdPointer));
485
486{
487ACPI_TABLE_FADT *FacpPointer = (acpi_tables.FacpPointer64 != (void*)0ul) ? (ACPI_TABLE_FADT *)acpi_tables.FacpPointer64 : (ACPI_TABLE_FADT *)acpi_tables.FacpPointer;
488
489uint8_t type = FacpPointer->PreferredProfile;
490if (type <= MaxSupportedPMProfile)
491Platform->Type = type;
492}
493
494 ret = setupAcpiNoMod();
495}
496
497return ret;
498
499}
500
501/*==========================================================================
502 * Fake EFI implementation
503 */
504
505/* These should be const but DT__AddProperty takes char* */
506static const char const FIRMWARE_REVISION_PROP[] = "firmware-revision";
507static const char const FIRMWARE_ABI_PROP[] = "firmware-abi";
508static const char const FIRMWARE_VENDOR_PROP[] = "firmware-vendor";
509static const char const FIRMWARE_NAME_PROP[] = "firmware-name";
510static const char const FIRMWARE_DATE_PROP[] = "firmware-date";
511static const char const FIRMWARE_DEV_PROP[] = "firmware-maintener";
512static const char const FIRMWARE_PUBLISH_PROP[] = "firmware-publisher";
513
514static const char const FIRMWARE_ABI_32_PROP_VALUE[] = "EFI32";
515static const char const FIRMWARE_ABI_64_PROP_VALUE[] = "EFI64";
516static const char const SYSTEM_ID_PROP[] = "system-id";
517static const char const SYSTEM_SERIAL_PROP[] = "SystemSerialNumber";
518static const char const SYSTEM_TYPE_PROP[] = "system-type";
519static const char const MODEL_PROP[] = "Model";
520
521
522/*
523 * Get an smbios option string option to convert to EFI_CHAR16 string
524 */
525
526static EFI_CHAR16* getSmbiosChar16(const char * key, size_t* len)
527{
528if (!gPlatformName && strcmp(key, "SMproductname") == 0)
529readSMBIOS(thePlatformName);
530
531const char*src = (strcmp(key, "SMproductname") == 0) ? gPlatformName : getStringForKey(key, &bootInfo->smbiosConfig);
532
533EFI_CHAR16* dst = 0;
534
535if (!key || !(*key) || !src) return 0;
536
537*len = strlen(src);
538dst = (EFI_CHAR16*) malloc( ((*len)+1) * 2 );
539{
540size_t i = 0;
541for (; i < (*len); i++) dst[i] = src[i];
542}
543dst[(*len)] = '\0';
544*len = ((*len)+1)*2; // return the CHAR16 bufsize in cluding zero terminated CHAR16
545return dst;
546}
547
548/*
549 * Get the SystemID from the bios dmi info
550 */
551
552static EFI_CHAR8* getSmbiosUUID()
553{
554static EFI_CHAR8 uuid[UUID_LEN];
555int i, isZero, isOnes;
556SMBByte*p;
557
558 p = (SMBByte*)Platform->UUID;
559
560 if ( p == NULL )
561{
562 DBG("No patched UUID found, fallback to original UUID (if exist) \n");
563
564 readSMBIOS(theUUID);
565 p = (SMBByte*)Platform->UUID;
566
567 }
568
569for (i=0, isZero=1, isOnes=1; i<UUID_LEN; i++)
570{
571if (p[i] != 0x00) isZero = 0;
572if (p[i] != 0xff) isOnes = 0;
573}
574
575if (isZero || isOnes) // empty or setable means: no uuid present
576{
577verbose("No UUID present in SMBIOS System Information Table\n");
578return 0;
579}
580#if DEBUG_EFI
581else
582verbose("Found UUID in SMBIOS System Information Table\n");
583#endif
584
585memcpy(uuid, p, UUID_LEN);
586return uuid;
587}
588
589/*
590 * return a binary UUID value from the overriden SystemID and SMUUID if found,
591 * or from the bios if not, or from a fixed value if no bios value is found
592 */
593
594static EFI_STATUS getSystemID()
595{
596// unable to determine UUID for host. Error: 35 fix
597// Rek: new SMsystemid option conforming to smbios notation standards, this option should
598// belong to smbios config only ...
599EFI_STATUS status = EFI_NOT_FOUND;
600EFI_CHAR8*ret = getUUIDFromString(getStringForKey(kSystemID, &bootInfo->bootConfig));
601
602if (!ret) // try bios dmi info UUID extraction
603ret = getSmbiosUUID();
604
605
606if (!ret)
607{
608// no bios dmi UUID available, set a fixed value for system-id
609ret=getUUIDFromString((const char*) SYSTEM_ID);
610verbose("Customizing SystemID with : %s\n", getStringFromUUID(ret)); // apply a nice formatting to the displayed output
611}
612else
613{
614const char *mac = getStringFromUUID(ret);
615verbose("MAC address : %c%c:%c%c:%c%c:%c%c:%c%c:%c%c\n",mac[24],mac[25],mac[26],mac[27],mac[28],mac[29]
616,mac[30],mac[31],mac[32],mac[33],mac[34],mac[35]);
617
618}
619
620if (ret)
621{
622memcpy(Platform->sysid, ret, UUID_LEN);
623status = EFI_SUCCESS;
624}
625
626return status;
627}
628
629/*
630 * Must be called AFTER setup Acpi because we need to take care of correct
631 * facp content to reflect in ioregs
632 */
633
634static VOID setupSystemType()
635{
636Node *node = DT__FindNode("/", false);
637if (node == 0) stop("Couldn't get root node");
638// we need to write this property after facp parsing
639// Export system-type only if it has been overrriden by the SystemType option
640DT__AddProperty(node, SYSTEM_TYPE_PROP, sizeof(Platform->Type), &Platform->Type);
641}
642
643struct boot_progress_element {
644unsigned intwidth;
645unsigned intheight;
646intyOffset;
647unsigned intres[5];
648unsigned chardata[0];
649};
650typedef struct boot_progress_element boot_progress_element;
651
652static VOID setupEfiDeviceTree(void)
653{
654Node*node;
655
656node = DT__FindNode("/", false);
657
658if (node == 0) stop("Couldn't get root node");
659
660{
661long size;
662{
663#include "appleClut8.h"
664size = sizeof(appleClut8);
665long clut = AllocateKernelMemory(size);
666bcopy(&appleClut8, (void*)clut, size);
667#if UNUSED
668AllocateMemoryRange( "BootCLUT", clut, size,-1);
669
670#else
671AllocateMemoryRange( "BootCLUT", clut, size);
672
673#endif
674}
675
676{
677#include "failedboot.h"
678size = 32 + kFailedBootWidth * kFailedBootHeight;
679long bootPict = AllocateKernelMemory(size);
680#if UNUSED
681AllocateMemoryRange( "Pict-FailedBoot", bootPict, size,-1);
682#else
683AllocateMemoryRange( "Pict-FailedBoot", bootPict, size);
684#endif
685((boot_progress_element *)bootPict)->width = kFailedBootWidth;
686((boot_progress_element *)bootPict)->height = kFailedBootHeight;
687((boot_progress_element *)bootPict)->yOffset = kFailedBootOffset;
688bcopy((char *)gFailedBootPict, (char *)(bootPict + 32), size - 32);
689}
690}
691
692//Fix an error with the Lion's (DP2+) installer
693if (execute_hook("getboardproductPatched", NULL, NULL, NULL, NULL, NULL, NULL) != EFI_SUCCESS)
694{
695
696gboardproduct = (char *)getStringForKey("SMboardproduct", &bootInfo->smbiosConfig);
697
698if (!gboardproduct) readSMBIOS(theProducBoard);
699
700}
701if (gboardproduct)
702{
703DT__AddProperty(node, "board-id", strlen(gboardproduct)+1, gboardproduct);
704}
705
706{
707Node *chosenNode = DT__FindNode("/chosen", true);
708if (chosenNode)
709{
710
711DT__AddProperty(chosenNode, "boot-args", strlen(bootArgs->CommandLine)+1, (EFI_CHAR16*)bootArgs->CommandLine);
712
713// "boot-uuid" MAIN GOAL IS SYMPLY TO BOOT FROM THE UUID SET IN THE DT AND DECREASE BOOT TIME, SEE IOKitBSDInit.cpp
714// additionally this value can be used by third-party apps or osx components (ex: pre-10.7 kextcache, ...)
715if (bootInfo->uuidStr[0])
716DT__AddProperty(chosenNode, kBootUUIDKey, strlen(bootInfo->uuidStr)+1, bootInfo->uuidStr);
717#if 0
718if (gRootPath[0])
719 {
720
721 DT__AddProperty(chosenNode, "rootpath" or try "root-matching", strlen(gRootPath)+1, gRootPath);
722
723 }
724 else
725#endif
726 if (gRootDevice)
727 {
728
729 DT__AddProperty(chosenNode, "boot-device-path", strlen(gRootDevice)+1, gRootDevice);
730
731 }
732
733
734// "boot-file" is not used by kextcache if there is no "boot-device-path" or if there is a valid "rootpath" ,
735// but i let it by default since it may be used by another service
736DT__AddProperty(chosenNode, "boot-file", strlen(bootInfo->bootFile)+1, (EFI_CHAR16*)bootInfo->bootFile);
737
738
739if (bootInfo->adler32)
740DT__AddProperty(chosenNode, "boot-kernelcache-adler32", sizeof(unsigned long), &bootInfo->adler32);
741
742}
743}
744
745// We could also just do DT__FindNode("/efi/platform", true)
746// But I think eventually we want to fill stuff in the efi node
747// too so we might as well create it so we have a pointer for it too.
748Node *efiNode = DT__AddChild(node, "efi");
749
750{
751extern char gMacOSVersion[];
752
753// Set up the /efi/runtime-services table node similar to the way a child node of configuration-table
754// is set up. That is, name and table properties
755Node *runtimeServicesNode = DT__AddChild(efiNode, "runtime-services");
756Node *kernelCompatibilityNode = 0; // ??? not sure that it should be used like that (because it's maybe the kernel capability and not the cpu capability)
757
758if (gMacOSVersion[3] == '7')
759{
760kernelCompatibilityNode = DT__AddChild(efiNode, "kernel-compatibility");
761DT__AddProperty(kernelCompatibilityNode, "i386", sizeof(uint32_t), (EFI_UINT32*)&DEVICE_SUPPORTED);
762}
763
764if (archCpuType == CPU_TYPE_I386)
765{
766// The value of the table property is the 32-bit physical address for the RuntimeServices table.
767// Since the EFI system table already has a pointer to it, we simply use the address of that pointer
768// for the pointer to the property data. Warning.. DT finalization calls free on that but we're not
769// the only thing to use a non-malloc'd pointer for something in the DT
770
771DT__AddProperty(runtimeServicesNode, "table", sizeof(uint64_t), &gST32->RuntimeServices);
772DT__AddProperty(efiNode, FIRMWARE_ABI_PROP, sizeof(FIRMWARE_ABI_32_PROP_VALUE), (char*)FIRMWARE_ABI_32_PROP_VALUE);
773}
774else
775{
776if (kernelCompatibilityNode)
777DT__AddProperty(kernelCompatibilityNode, "x86_64", sizeof(uint32_t), (EFI_UINT32*)&DEVICE_SUPPORTED);
778
779DT__AddProperty(runtimeServicesNode, "table", sizeof(uint64_t), &gST64->RuntimeServices);
780DT__AddProperty(efiNode, FIRMWARE_ABI_PROP, sizeof(FIRMWARE_ABI_64_PROP_VALUE), (char*)FIRMWARE_ABI_64_PROP_VALUE);
781}
782}
783
784DT__AddProperty(efiNode, FIRMWARE_REVISION_PROP, sizeof(FIRMWARE_REVISION), (EFI_UINT32*)&FIRMWARE_REVISION);
785DT__AddProperty(efiNode, FIRMWARE_VENDOR_PROP, sizeof(FIRMWARE_VENDOR), (EFI_CHAR16*)FIRMWARE_VENDOR);
786DT__AddProperty(efiNode, FIRMWARE_NAME_PROP, sizeof(FIRMWARE_NAME), (EFI_CHAR16*)FIRMWARE_NAME);
787DT__AddProperty(efiNode, FIRMWARE_DATE_PROP, strlen(I386BOOT_BUILDDATE)+1, I386BOOT_BUILDDATE);
788DT__AddProperty(efiNode, FIRMWARE_DEV_PROP, strlen(FIRMWARE_MAINTENER)+1, FIRMWARE_MAINTENER);
789DT__AddProperty(efiNode, FIRMWARE_PUBLISH_PROP, strlen(FIRMWARE_PUBLISHER)+1, FIRMWARE_PUBLISHER);
790
791// Set up the /efi/configuration-table node which will eventually have several child nodes for
792// all of the configuration tables needed by various kernel extensions.
793gEfiConfigurationTableNode = DT__AddChild(efiNode, "configuration-table");
794
795{
796EFI_CHAR16 *serial = 0, *productname = 0;
797size_t len = 0;
798
799// Now fill in the /efi/platform Node
800Node *efiPlatformNode = DT__AddChild(efiNode, "platform");
801
802DT__AddProperty(efiPlatformNode, "DevicePathsSupported", sizeof(uint32_t), (EFI_UINT32*)&DEVICE_SUPPORTED);
803
804// NOTE WELL: If you do add FSB Frequency detection, make sure to store
805// the value in the fsbFrequency global and not an malloc'd pointer
806// because the DT_AddProperty function does not copy its args.
807
808if (Platform->CPU.FSBFrequency != 0)
809DT__AddProperty(efiPlatformNode, FSB_Frequency_prop, sizeof(uint64_t), &Platform->CPU.FSBFrequency);
810
811
812#if UNUSED
813// Export TSC and CPU frequencies for use by the kernel or KEXTs
814if (Platform->CPU.TSCFrequency != 0)
815DT__AddProperty(efiPlatformNode, TSC_Frequency_prop, sizeof(uint64_t), &Platform->CPU.TSCFrequency);
816
817if (Platform->CPU.CPUFrequency != 0)
818DT__AddProperty(efiPlatformNode, CPU_Frequency_prop, sizeof(uint64_t), &Platform->CPU.CPUFrequency);
819#endif
820
821// Export system-id. Can be disabled with SystemId=No in com.apple.Boot.plist
822
823if (getSystemID() == EFI_SUCCESS)
824DT__AddProperty(efiPlatformNode, SYSTEM_ID_PROP, UUID_LEN, (EFI_UINT32*) Platform->sysid);
825
826// Export SystemSerialNumber if present
827if ((serial=getSmbiosChar16("SMserial", &len)))
828DT__AddProperty(efiPlatformNode, SYSTEM_SERIAL_PROP, len, serial);
829
830// Export Model if present
831if ((productname=getSmbiosChar16("SMproductname", &len)))
832DT__AddProperty(efiPlatformNode, MODEL_PROP, len, productname);
833}
834
835// Fill /efi/device-properties node.
836setupDeviceProperties(efiNode);
837}
838
839/*
840 * Load the smbios.plist override config file if any
841 */
842
843void setupSmbiosConfigFile(const char *filename)
844{
845static bool readSmbConfigFile = true;
846
847if (readSmbConfigFile == true)
848{
849
850chardirSpecSMBIOS[128] = "";
851const char *override_pathname = NULL;
852intlen = 0, err = 0;
853
854// Take in account user overriding
855if (getValueForKey("SMBIOS", &override_pathname, &len, &bootInfo->bootConfig) && len > 0)
856{
857// Specify a path to a file, e.g. SMBIOS=/Extra/macProXY.plist
858sprintf(dirSpecSMBIOS, override_pathname);
859err = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig);
860}
861else
862{
863// Check selected volume's Extra.
864sprintf(dirSpecSMBIOS, "/Extra/%s", filename);
865if ((err = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig)))
866{
867// Check booter volume/rdbt Extra.
868sprintf(dirSpecSMBIOS, "bt(0,0)/Extra/%s", filename);
869err = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig);
870}
871}
872
873if (err)
874{
875verbose("No SMBIOS config file found.\n");
876}
877readSmbConfigFile = false;
878}
879}
880
881static VOID setup_Smbios()
882{
883if (execute_hook("getSmbiosPatched",NULL, NULL, NULL, NULL, NULL, NULL) != EFI_SUCCESS)
884{
885DBG("Using the original SMBIOS !!\n");
886 struct SMBEntryPoint *smbios_o = getSmbiosOriginal();
887 smbios_p = ((uint64_t)((uint32_t)smbios_o));
888}
889}
890
891static VOID setup_machine_signature()
892{
893Node *chosenNode = DT__FindNode("/chosen", false);
894if (chosenNode)
895{
896if (Platform->hardware_signature == 0xFFFFFFFF)
897{
898 if (!local_rsd_p)
899 {
900
901 if (!FindAcpiTables(&acpi_tables)){
902printf("Failed to detect ACPI tables.\n");
903goto out;
904}
905
906 local_rsd_p = ((uint64_t)((uint32_t)acpi_tables.RsdPointer));
907 }
908
909ACPI_TABLE_FACS *FacsPointer = (acpi_tables.FacsPointer64 != (void*)0ul) ? (ACPI_TABLE_FACS *)acpi_tables.FacsPointer64:(ACPI_TABLE_FACS *)acpi_tables.FacsPointer;
910
911
912 Platform->hardware_signature = FacsPointer->HardwareSignature;
913
914}
915out:
916// Verify that we have a valid hardware signature
917if (Platform->hardware_signature == 0xFFFFFFFF)
918{
919verbose("Warning: hardware_signature is invalid, defaulting to 0 \n");
920 Platform->hardware_signature = 0;
921}
922
923DT__AddProperty(chosenNode, "machine-signature", sizeof(uint32_t), &Platform->hardware_signature);
924}
925
926}
927
928/*
929 * Installs all the needed configuration table entries
930 */
931
932static VOID setupEfiConfigurationTable()
933{
934 if (smbios_p)
935 addConfigurationTable(&gEfiSmbiosTableGuid, &smbios_p, NULL);
936
937if (Platform->CPU.Vendor == 0x756E6547 /* Intel */)
938{
939int num_cpus;
940
941void *mps_p = imps_probe(&num_cpus);
942
943if (mps_p)
944{
945uint64_t mps = ((uint64_t)((uint32_t)mps_p));
946
947addConfigurationTable(&gEfiMpsTableGuid, &mps, NULL);
948}
949
950#if DEBUG_EFI
951 if (num_cpus != Platform->CPU.NoCores)
952 {
953 printf("Warning: SMP nb of core (%d) mismatch with the value found in cpu.c (%d) \n",num_cpus,Platform->CPU.NoCores);
954 }
955#endif
956}
957
958// PM_Model
959if (Platform->CPU.isServer == true)
960 {
961Platform->Type = Workstation;
962}
963else if (Platform->CPU.isMobile == true)//Slice
964{
965Platform->Type = Mobile;
966}
967else
968{
969Platform->Type = Desktop;
970}
971
972// Invalidate the platform hardware signature (this needs to be verified with acpica, but i guess that 0xFFFFFFFF is an invalid signature)
973Platform->hardware_signature = 0xFFFFFFFF;
974
975// Setup ACPI (mackerintel's patch)
976setup_acpi();
977
978setup_machine_signature();
979
980// We now have to write the system-type in ioregs: we cannot do it before in setupDeviceTree()
981// because we need to take care of facp original content, if it is correct.
982setupSystemType();
983
984// We've obviously changed the count.. so fix up the CRC32
985 EFI_ST_FIX_CRC32();
986}
987
988/*
989 * Entrypoint from boot.c
990 */
991
992void setupFakeEfi(void)
993{
994// Collect PCI info &| Generate device prop string
995setup_pci_devs(root_pci_dev);
996
997// load smbios.plist file if any
998setupSmbiosConfigFile("SMBIOS.plist");
999setup_Smbios();
1000
1001// Initialize the base table
1002if (archCpuType == CPU_TYPE_I386)
1003{
1004setupEfiTables(32);
1005}
1006else
1007{
1008setupEfiTables(64);
1009}
1010
1011// Initialize the device tree
1012setupEfiDeviceTree();
1013
1014// Add configuration table entries to both the services table and the device tree
1015setupEfiConfigurationTable();
1016
1017}
1018
1019

Archive Download this file

Revision: 1525