Chameleon

Chameleon Svn Source Tree

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

1
2/*
3 * Copyright 2007 David F. Elliott. All rights reserved.
4 */
5
6#include "saio_types.h"
7#include "libsaio.h"
8#include "boot.h"
9#include "bootstruct.h"
10#include "efi.h"
11#include "acpi.h"
12#include "fake_efi.h"
13#include "efi_tables.h"
14#include "platform.h"
15#include "acpi_patcher.h"
16#include "smbios.h"
17#include "device_inject.h"
18#include "convert.h"
19#include "pci.h"
20#include "sl.h"
21
22extern void setup_pci_devs(pci_dt_t *pci_dt);
23
24/*
25 * Modern Darwin kernels require some amount of EFI because Apple machines all
26 * have EFI. Modifying the kernel source to not require EFI is of course
27 * possible but would have to be maintained as a separate patch because it is
28 * unlikely that Apple wishes to add legacy support to their kernel.
29 *
30 * As you can see from the Apple-supplied code in bootstruct.c, it seems that
31 * the intention was clearly to modify this booter to provide EFI-like structures
32 * to the kernel rather than modifying the kernel to handle non-EFI stuff. This
33 * makes a lot of sense from an engineering point of view as it means the kernel
34 * for the as yet unreleased EFI-only Macs could still be booted by the non-EFI
35 * DTK systems so long as the kernel checked to ensure the boot tables were
36 * filled in appropriately.Modern xnu requires a system table and a runtime
37 * services table and performs no checks whatsoever to ensure the pointers to
38 * these tables are non-NULL. Therefore, any modern xnu kernel will page fault
39 * early on in the boot process if the system table pointer is zero.
40 *
41 * Even before that happens, the tsc_init function in modern xnu requires the FSB
42 * Frequency to be a property in the /efi/platform node of the device tree or else
43 * it panics the bootstrap process very early on.
44 *
45 * As of this writing, the current implementation found here is good enough
46 * to make the currently available xnu kernel boot without modification on a
47 * system with an appropriate processor. With a minor source modification to
48 * the tsc_init function to remove the explicit check for Core or Core 2
49 * processors the kernel can be made to boot on other processors so long as
50 * the code can be executed by the processor and the machine contains the
51 * necessary hardware.
52 */
53
54/*==========================================================================
55 * Utility function to make a device tree string from an EFI_GUID
56 */
57static inline char * mallocStringForGuid(EFI_GUID const *pGuid)
58{
59char *string = malloc(37);
60efi_guid_unparse_upper(pGuid, string);
61return string;
62}
63
64/*==========================================================================
65 * Function to map 32 bit physical address to 64 bit virtual address
66 */
67static uint64_t ptov64(uint32_t addr)
68{
69return ((uint64_t)addr | 0xFFFFFF8000000000ULL);
70}
71
72/*==========================================================================
73 * Fake EFI implementation
74 */
75
76/* Identify ourselves as the EFI firmware vendor */
77static EFI_CHAR16 const FIRMWARE_VENDOR[] = {'C','h','a','m','e','l','e','o','n','_','2','.','2', 0};
78static EFI_UINT32 const FIRMWARE_REVISION = 132; /* FIXME: Find a constant for this. */
79
80/* Default platform system_id (fix by IntVar) */
81static EFI_CHAR8 const SYSTEM_ID[] = "0123456789ABCDEF"; //random value gen by uuidgen
82
83/* Just a ret instruction */
84static uint8_t const VOIDRET_INSTRUCTIONS[] = {0xc3};
85
86/* movl $0x80000003,%eax; ret */
87static uint8_t const UNSUPPORTEDRET_INSTRUCTIONS_32[] = {0xb8, 0x03, 0x00, 0x00, 0x80, 0xc3};
88static uint8_t const UNSUPPORTEDRET_INSTRUCTIONS_64[] = {0x48, 0xb8, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xc3};
89
90EFI_SYSTEM_TABLE_32 *gST32 = NULL;
91EFI_SYSTEM_TABLE_64 *gST64 = NULL;
92Node *gEfiConfigurationTableNode = NULL;
93
94extern EFI_STATUS addConfigurationTable(EFI_GUID const *pGuid, void *table, char const *alias)
95{
96EFI_UINTN i = 0;
97
98//Azi: as is, cpu's with em64t will use EFI64 on pre 10.6 systems,
99// wich seems to cause no problem. In case it does, force i386 arch.
100if (archCpuType == CPU_TYPE_I386)
101{
102i = gST32->NumberOfTableEntries;
103}
104else
105{
106i = gST64->NumberOfTableEntries;
107}
108
109// We only do adds, not modifications and deletes like InstallConfigurationTable
110if (i >= MAX_CONFIGURATION_TABLE_ENTRIES)
111stop("Ran out of space for configuration tables. Increase the reserved size in the code.\n");
112
113if (pGuid == NULL)
114return EFI_INVALID_PARAMETER;
115
116if (table != NULL)
117{
118// FIXME
119//((EFI_CONFIGURATION_TABLE_64 *)gST->ConfigurationTable)[i].VendorGuid = *pGuid;
120//((EFI_CONFIGURATION_TABLE_64 *)gST->ConfigurationTable)[i].VendorTable = (EFI_PTR64)table;
121
122//++gST->NumberOfTableEntries;
123
124Node *tableNode = DT__AddChild(gEfiConfigurationTableNode, mallocStringForGuid(pGuid));
125
126// Use the pointer to the GUID we just stuffed into the system table
127DT__AddProperty(tableNode, "guid", sizeof(EFI_GUID), (void*)pGuid);
128
129// The "table" property is the 32-bit (in our implementation) physical address of the table
130DT__AddProperty(tableNode, "table", sizeof(void*) * 2, table);
131
132// Assume the alias pointer is a global or static piece of data
133if (alias != NULL)
134DT__AddProperty(tableNode, "alias", strlen(alias)+1, (char*)alias);
135
136return EFI_SUCCESS;
137}
138return EFI_UNSUPPORTED;
139}
140
141//Azi: crc32 done in place, on the cases were it wasn't.
142/*static inline void fixupEfiSystemTableCRC32(EFI_SYSTEM_TABLE_64 *efiSystemTable)
143{
144efiSystemTable->Hdr.CRC32 = 0;
145efiSystemTable->Hdr.CRC32 = crc32(0L, efiSystemTable, efiSystemTable->Hdr.HeaderSize);
146}*/
147
148/*
149 * What we do here is simply allocate a fake EFI system table and a fake EFI
150 * runtime services table.
151 *
152 * Because we build against modern headers with kBootArgsRevision 4 we
153 * also take care to set efiMode = 32.
154 */
155void setupEfiTables32(void)
156{
157// We use the fake_efi_pages struct so that we only need to do one kernel
158// memory allocation for all needed EFI data. Otherwise, small allocations
159// like the FIRMWARE_VENDOR string would take up an entire page.
160// NOTE WELL: Do NOT assume this struct has any particular layout within itself.
161// It is absolutely not intended to be publicly exposed anywhere
162// We say pages (plural) although right now we are well within the 1 page size
163// and probably will stay that way.
164struct fake_efi_pages
165{
166EFI_SYSTEM_TABLE_32 efiSystemTable;
167EFI_RUNTIME_SERVICES_32 efiRuntimeServices;
168EFI_CONFIGURATION_TABLE_32 efiConfigurationTable[MAX_CONFIGURATION_TABLE_ENTRIES];
169EFI_CHAR16 firmwareVendor[sizeof(FIRMWARE_VENDOR)/sizeof(EFI_CHAR16)];
170uint8_t voidret_instructions[sizeof(VOIDRET_INSTRUCTIONS)/sizeof(uint8_t)];
171uint8_t unsupportedret_instructions[sizeof(UNSUPPORTEDRET_INSTRUCTIONS_32)/sizeof(uint8_t)];
172};
173
174struct fake_efi_pages *fakeEfiPages = (struct fake_efi_pages*)AllocateKernelMemory(sizeof(struct fake_efi_pages));
175
176// Zero out all the tables in case fields are added later
177//bzero(fakeEfiPages, sizeof(struct fake_efi_pages));
178
179// --------------------------------------------------------------------
180// Initialize some machine code that will return EFI_UNSUPPORTED for
181// functions returning int and simply return for void functions.
182memcpy(fakeEfiPages->voidret_instructions, VOIDRET_INSTRUCTIONS, sizeof(VOIDRET_INSTRUCTIONS));
183memcpy(fakeEfiPages->unsupportedret_instructions, UNSUPPORTEDRET_INSTRUCTIONS_32, sizeof(UNSUPPORTEDRET_INSTRUCTIONS_32));
184
185// --------------------------------------------------------------------
186// System table
187EFI_SYSTEM_TABLE_32 *efiSystemTable = gST32 = &fakeEfiPages->efiSystemTable;
188efiSystemTable->Hdr.Signature = EFI_SYSTEM_TABLE_SIGNATURE;
189efiSystemTable->Hdr.Revision = EFI_SYSTEM_TABLE_REVISION;
190efiSystemTable->Hdr.HeaderSize = sizeof(EFI_SYSTEM_TABLE_32);
191efiSystemTable->Hdr.CRC32 = 0; // Initialize to zero and then do CRC32
192efiSystemTable->Hdr.Reserved = 0;
193
194efiSystemTable->FirmwareVendor = (EFI_PTR32)&fakeEfiPages->firmwareVendor;
195memcpy(fakeEfiPages->firmwareVendor, FIRMWARE_VENDOR, sizeof(FIRMWARE_VENDOR));
196efiSystemTable->FirmwareRevision = FIRMWARE_REVISION;
197
198// XXX: We may need to have basic implementations of ConIn/ConOut/StdErr
199// The EFI spec states that all handles are invalid after boot services have been
200// exited so we can probably get by with leaving the handles as zero.
201efiSystemTable->ConsoleInHandle = 0;
202efiSystemTable->ConIn = 0;
203
204efiSystemTable->ConsoleOutHandle = 0;
205efiSystemTable->ConOut = 0;
206
207efiSystemTable->StandardErrorHandle = 0;
208efiSystemTable->StdErr = 0;
209
210efiSystemTable->RuntimeServices = (EFI_PTR32)&fakeEfiPages->efiRuntimeServices;
211
212// According to the EFI spec, BootServices aren't valid after the
213// boot process is exited so we can probably do without it.
214// Apple didn't provide a definition for it in pexpert/i386/efi.h
215// so I'm guessing they don't use it.
216efiSystemTable->BootServices = 0;
217
218efiSystemTable->NumberOfTableEntries = 0;
219efiSystemTable->ConfigurationTable = (EFI_PTR32)fakeEfiPages->efiConfigurationTable;
220
221// We're done. Now CRC32 the thing so the kernel will accept it.
222// Must be initialized to zero before CRC32, done above.
223gST32->Hdr.CRC32 = crc32(0L, gST32, gST32->Hdr.HeaderSize);
224
225// --------------------------------------------------------------------
226// Runtime services
227EFI_RUNTIME_SERVICES_32 *efiRuntimeServices = &fakeEfiPages->efiRuntimeServices;
228efiRuntimeServices->Hdr.Signature = EFI_RUNTIME_SERVICES_SIGNATURE;
229efiRuntimeServices->Hdr.Revision = EFI_RUNTIME_SERVICES_REVISION;
230efiRuntimeServices->Hdr.HeaderSize = sizeof(EFI_RUNTIME_SERVICES_32);
231efiRuntimeServices->Hdr.CRC32 = 0;
232efiRuntimeServices->Hdr.Reserved = 0;
233
234// There are a number of function pointers in the efiRuntimeServices table.
235// These are the Foundation (e.g. core) services and are expected to be present on
236// all EFI-compliant machines.Some kernel extensions (notably AppleEFIRuntime)
237// will call these without checking to see if they are null.
238//
239// We don't really feel like doing an EFI implementation in the bootloader
240// but it is nice if we can at least prevent a complete crash by
241// at least providing some sort of implementation until one can be provided
242// nicely in a kext.
243void (*voidret_fp)() = (void*)fakeEfiPages->voidret_instructions;
244void (*unsupportedret_fp)() = (void*)fakeEfiPages->unsupportedret_instructions;
245efiRuntimeServices->GetTime = (EFI_PTR32)unsupportedret_fp;
246efiRuntimeServices->SetTime = (EFI_PTR32)unsupportedret_fp;
247efiRuntimeServices->GetWakeupTime = (EFI_PTR32)unsupportedret_fp;
248efiRuntimeServices->SetWakeupTime = (EFI_PTR32)unsupportedret_fp;
249efiRuntimeServices->SetVirtualAddressMap = (EFI_PTR32)unsupportedret_fp;
250efiRuntimeServices->ConvertPointer = (EFI_PTR32)unsupportedret_fp;
251efiRuntimeServices->GetVariable = (EFI_PTR32)unsupportedret_fp;
252efiRuntimeServices->GetNextVariableName = (EFI_PTR32)unsupportedret_fp;
253efiRuntimeServices->SetVariable = (EFI_PTR32)unsupportedret_fp;
254efiRuntimeServices->GetNextHighMonotonicCount = (EFI_PTR32)unsupportedret_fp;
255efiRuntimeServices->ResetSystem = (EFI_PTR32)voidret_fp;
256
257// We're done.Now CRC32 the thing so the kernel will accept it
258efiRuntimeServices->Hdr.CRC32 = crc32(0L, efiRuntimeServices, efiRuntimeServices->Hdr.HeaderSize);
259
260// --------------------------------------------------------------------
261// Finish filling in the rest of the boot args that we need.
262bootArgs->efiSystemTable = (uint32_t)efiSystemTable;
263bootArgs->efiMode = kBootArgsEfiMode32;
264
265// The bootArgs structure as a whole is bzero'd so we don't need to fill in
266// things like efiRuntimeServices* and what not.
267//
268// In fact, the only code that seems to use that is the hibernate code so it
269// knows not to save the pages. It even checks to make sure its nonzero.
270}
271
272void setupEfiTables64(void)
273{
274struct fake_efi_pages
275{
276EFI_SYSTEM_TABLE_64 efiSystemTable;
277EFI_RUNTIME_SERVICES_64 efiRuntimeServices;
278EFI_CONFIGURATION_TABLE_64 efiConfigurationTable[MAX_CONFIGURATION_TABLE_ENTRIES];
279EFI_CHAR16 firmwareVendor[sizeof(FIRMWARE_VENDOR)/sizeof(EFI_CHAR16)];
280uint8_t voidret_instructions[sizeof(VOIDRET_INSTRUCTIONS)/sizeof(uint8_t)];
281uint8_t unsupportedret_instructions[sizeof(UNSUPPORTEDRET_INSTRUCTIONS_64)/sizeof(uint8_t)];
282};
283
284struct fake_efi_pages *fakeEfiPages = (struct fake_efi_pages*)AllocateKernelMemory(sizeof(struct fake_efi_pages));
285
286// Zero out all the tables in case fields are added later
287//bzero(fakeEfiPages, sizeof(struct fake_efi_pages));
288
289// --------------------------------------------------------------------
290// Initialize some machine code that will return EFI_UNSUPPORTED for
291// functions returning int and simply return for void functions.
292memcpy(fakeEfiPages->voidret_instructions, VOIDRET_INSTRUCTIONS, sizeof(VOIDRET_INSTRUCTIONS));
293memcpy(fakeEfiPages->unsupportedret_instructions, UNSUPPORTEDRET_INSTRUCTIONS_64, sizeof(UNSUPPORTEDRET_INSTRUCTIONS_64));
294
295// --------------------------------------------------------------------
296// System table
297EFI_SYSTEM_TABLE_64 *efiSystemTable = gST64 = &fakeEfiPages->efiSystemTable;
298efiSystemTable->Hdr.Signature = EFI_SYSTEM_TABLE_SIGNATURE;
299efiSystemTable->Hdr.Revision = EFI_SYSTEM_TABLE_REVISION;
300efiSystemTable->Hdr.HeaderSize = sizeof(EFI_SYSTEM_TABLE_64);
301efiSystemTable->Hdr.CRC32 = 0; // Initialize to zero and then do CRC32
302efiSystemTable->Hdr.Reserved = 0;
303
304efiSystemTable->FirmwareVendor = ptov64((EFI_PTR32)&fakeEfiPages->firmwareVendor);
305memcpy(fakeEfiPages->firmwareVendor, FIRMWARE_VENDOR, sizeof(FIRMWARE_VENDOR));
306efiSystemTable->FirmwareRevision = FIRMWARE_REVISION;
307
308// XXX: We may need to have basic implementations of ConIn/ConOut/StdErr
309// The EFI spec states that all handles are invalid after boot services have been
310// exited so we can probably get by with leaving the handles as zero.
311efiSystemTable->ConsoleInHandle = 0;
312efiSystemTable->ConIn = 0;
313
314efiSystemTable->ConsoleOutHandle = 0;
315efiSystemTable->ConOut = 0;
316
317efiSystemTable->StandardErrorHandle = 0;
318efiSystemTable->StdErr = 0;
319
320efiSystemTable->RuntimeServices = ptov64((EFI_PTR32)&fakeEfiPages->efiRuntimeServices);
321// According to the EFI spec, BootServices aren't valid after the
322// boot process is exited so we can probably do without it.
323// Apple didn't provide a definition for it in pexpert/i386/efi.h
324// so I'm guessing they don't use it.
325efiSystemTable->BootServices = 0;
326
327efiSystemTable->NumberOfTableEntries = 0;
328efiSystemTable->ConfigurationTable = ptov64((EFI_PTR32)fakeEfiPages->efiConfigurationTable);
329
330// We're done.Now CRC32 the thing so the kernel will accept it
331gST64->Hdr.CRC32 = crc32(0L, gST64, gST64->Hdr.HeaderSize);
332
333// --------------------------------------------------------------------
334// Runtime services
335EFI_RUNTIME_SERVICES_64 *efiRuntimeServices = &fakeEfiPages->efiRuntimeServices;
336efiRuntimeServices->Hdr.Signature = EFI_RUNTIME_SERVICES_SIGNATURE;
337efiRuntimeServices->Hdr.Revision = EFI_RUNTIME_SERVICES_REVISION;
338efiRuntimeServices->Hdr.HeaderSize = sizeof(EFI_RUNTIME_SERVICES_64);
339efiRuntimeServices->Hdr.CRC32 = 0;
340efiRuntimeServices->Hdr.Reserved = 0;
341
342// There are a number of function pointers in the efiRuntimeServices table.
343// These are the Foundation (e.g. core) services and are expected to be present on
344// all EFI-compliant machines.Some kernel extensions (notably AppleEFIRuntime)
345// will call these without checking to see if they are null.
346//
347// We don't really feel like doing an EFI implementation in the bootloader
348// but it is nice if we can at least prevent a complete crash by
349// at least providing some sort of implementation until one can be provided
350// nicely in a kext.
351
352void (*voidret_fp)() = (void*)fakeEfiPages->voidret_instructions;
353void (*unsupportedret_fp)() = (void*)fakeEfiPages->unsupportedret_instructions;
354efiRuntimeServices->GetTime = ptov64((EFI_PTR32)unsupportedret_fp);
355efiRuntimeServices->SetTime = ptov64((EFI_PTR32)unsupportedret_fp);
356efiRuntimeServices->GetWakeupTime = ptov64((EFI_PTR32)unsupportedret_fp);
357efiRuntimeServices->SetWakeupTime = ptov64((EFI_PTR32)unsupportedret_fp);
358efiRuntimeServices->SetVirtualAddressMap = ptov64((EFI_PTR32)unsupportedret_fp);
359efiRuntimeServices->ConvertPointer = ptov64((EFI_PTR32)unsupportedret_fp);
360efiRuntimeServices->GetVariable = ptov64((EFI_PTR32)unsupportedret_fp);
361efiRuntimeServices->GetNextVariableName = ptov64((EFI_PTR32)unsupportedret_fp);
362efiRuntimeServices->SetVariable = ptov64((EFI_PTR32)unsupportedret_fp);
363efiRuntimeServices->GetNextHighMonotonicCount = ptov64((EFI_PTR32)unsupportedret_fp);
364efiRuntimeServices->ResetSystem = ptov64((EFI_PTR32)voidret_fp);
365
366// We're done.Now CRC32 the thing so the kernel will accept it
367efiRuntimeServices->Hdr.CRC32 = crc32(0L, efiRuntimeServices, efiRuntimeServices->Hdr.HeaderSize);
368
369// --------------------------------------------------------------------
370// Finish filling in the rest of the boot args that we need.
371bootArgs->efiSystemTable = (uint32_t)efiSystemTable;
372bootArgs->efiMode = kBootArgsEfiMode64;
373
374// The bootArgs structure as a whole is bzero'd so we don't need to fill in
375// things like efiRuntimeServices* and what not.
376//
377// In fact, the only code that seems to use that is the hibernate code so it
378// knows not to save the pages. It even checks to make sure its nonzero.
379}
380
381/*
382 * In addition to the EFI tables there is also the EFI device tree node.
383 * In particular, we need /efi/platform to have an FSBFrequency key. Without it,
384 * the tsc_init function will panic very early on in kernel startup, before
385 * the console is available.
386 */
387
388/*==========================================================================
389 * FSB Frequency detection
390 */
391
392/* These should be const but DT__AddProperty takes char* */
393static const char TSC_Frequency_prop[] = "TSCFrequency";
394static const char FSB_Frequency_prop[] = "FSBFrequency";
395static const char CPU_Frequency_prop[] = "CPUFrequency";
396
397/*==========================================================================
398 * SMBIOS
399 */
400
401/* From Foundation/Efi/Guid/Smbios/SmBios.c */
402EFI_GUID constgEfiSmbiosTableGuid = EFI_SMBIOS_TABLE_GUID;
403
404#define SMBIOS_RANGE_START0x000F0000
405#define SMBIOS_RANGE_END0x000FFFFF
406
407/* '_SM_' in little endian: */
408#define SMBIOS_ANCHOR_UINT32_LE 0x5f4d535f
409
410#define EFI_ACPI_TABLE_GUID \
411{ \
4120xeb9d2d30, 0x2d88, 0x11d3, { 0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
413}
414
415#define EFI_ACPI_20_TABLE_GUID \
416{ \
4170x8868e871, 0xe4f1, 0x11d3, { 0xbc, 0x22, 0x0, 0x80, 0xc7, 0x3c, 0x88, 0x81 } \
418}
419
420EFI_GUID gEfiAcpiTableGuid = EFI_ACPI_TABLE_GUID;
421EFI_GUID gEfiAcpi20TableGuid = EFI_ACPI_20_TABLE_GUID;
422
423
424/*==========================================================================
425 * Fake EFI implementation
426 */
427
428/* These should be const but DT__AddProperty takes char* */
429static const char FIRMWARE_REVISION_PROP[] = "firmware-revision";
430static const char FIRMWARE_ABI_PROP[] = "firmware-abi";
431static const char FIRMWARE_VENDOR_PROP[] = "firmware-vendor";
432static const char FIRMWARE_ABI_32_PROP_VALUE[] = "EFI32";
433static const char FIRMWARE_ABI_64_PROP_VALUE[] = "EFI64";
434static const char SYSTEM_ID_PROP[] = "system-id";
435static const char SYSTEM_SERIAL_PROP[] = "SystemSerialNumber";
436static const char SYSTEM_TYPE_PROP[] = "system-type";
437static const char MODEL_PROP[] = "Model";
438static const char BOARDID_PROP[] = "board-id";
439
440/*
441 * Get an smbios option string option to convert to EFI_CHAR16 string
442 */
443static EFI_CHAR16* getSmbiosChar16(const char * key, size_t* len)
444{
445const char*src = getStringForKey(key, &bootInfo->smbiosConfig);
446EFI_CHAR16* dst = 0;
447size_t i = 0;
448
449if (!key || !(*key) || !len || !src) return 0;
450
451*len = strlen(src);
452dst = (EFI_CHAR16*) malloc( ((*len)+1) * 2 );
453for (; i < (*len); i++) dst[i] = src[i];
454dst[(*len)] = '\0';
455*len = ((*len)+1)*2; // return the CHAR16 bufsize in cluding zero terminated CHAR16
456return dst;
457}
458
459/*
460 * Get the SystemID from the bios dmi info
461 */
462staticEFI_CHAR8* getSmbiosUUID()
463{
464static EFI_CHAR8 uuid[UUID_LEN];
465int i, isZero, isOnes;
466SMBByte*p;
467
468p = (SMBByte*)Platform.UUID;
469
470for (i=0, isZero=1, isOnes=1; i<UUID_LEN; i++)
471{
472if (p[i] != 0x00) isZero = 0;
473if (p[i] != 0xff) isOnes = 0;
474}
475
476if (isZero || isOnes) // empty or setable means: no uuid present
477{
478verbose("No UUID present in SMBIOS System Information Table\n");
479return 0;
480}
481
482memcpy(uuid, p, UUID_LEN);
483return uuid;
484}
485
486/*
487 * return a binary UUID value from the overriden SystemID and SMUUID if found,
488 * or from the bios if not, or from a fixed value if no bios value is found
489 */
490static EFI_CHAR8* getSystemID()
491{
492// unable to determine UUID for host. Error: 35 fix
493// Rek: new SMsystemid option conforming to smbios notation standards, this option should
494// belong to smbios config only ...
495const char *sysId = getStringForKey(kSystemID, &bootInfo->chameleonConfig);
496EFI_CHAR8*ret = getUUIDFromString(sysId);
497
498if (!sysId || !ret) // try bios dmi info UUID extraction
499{
500ret = getSmbiosUUID();
501sysId = 0;
502}
503
504if (!ret) // no bios dmi UUID available, set a fixed value for system-id
505ret=getUUIDFromString((sysId = (const char*) SYSTEM_ID));
506
507verbose("Customizing SystemID with : %s\n", getStringFromUUID(ret)); // apply a nice formatting to the displayed output
508return ret;
509}
510
511/*
512 * Must be called AFTER setup Acpi because we need to take care of correct
513 * facp content to reflect in ioregs
514 */
515void setupSystemType()
516{
517Node *node = DT__FindNode("/", false);
518if (node == 0) stop("Couldn't get root node");
519// we need to write this property after facp parsing
520// Export system-type only if it has been overrriden by the SystemType option
521DT__AddProperty(node, SYSTEM_TYPE_PROP, sizeof(Platform.Type), &Platform.Type);
522}
523
524void setupEfiDeviceTree(void)
525{
526EFI_CHAR8* ret = 0;
527EFI_CHAR16* ret16 = 0;
528size_t len = 0;
529Node*node;
530
531node = DT__FindNode("/", false);
532
533if (node == 0) stop("Couldn't get root node");
534
535// We could also just do DT__FindNode("/efi/platform", true)
536// But I think eventually we want to fill stuff in the efi node
537// too so we might as well create it so we have a pointer for it too.
538node = DT__AddChild(node, "efi");
539
540if (archCpuType == CPU_TYPE_I386)
541{
542DT__AddProperty(node, FIRMWARE_ABI_PROP, sizeof(FIRMWARE_ABI_32_PROP_VALUE), (char*)FIRMWARE_ABI_32_PROP_VALUE);
543}
544else
545{
546DT__AddProperty(node, FIRMWARE_ABI_PROP, sizeof(FIRMWARE_ABI_64_PROP_VALUE), (char*)FIRMWARE_ABI_64_PROP_VALUE);
547}
548
549DT__AddProperty(node, FIRMWARE_REVISION_PROP, sizeof(FIRMWARE_REVISION), (EFI_UINT32*)&FIRMWARE_REVISION);
550DT__AddProperty(node, FIRMWARE_VENDOR_PROP, sizeof(FIRMWARE_VENDOR), (EFI_CHAR16*)FIRMWARE_VENDOR);
551
552// TODO: Fill in other efi properties if necessary
553
554// Set up the /efi/runtime-services table node similar to the way a child node of configuration-table
555// is set up. That is, name and table properties
556Node *runtimeServicesNode = DT__AddChild(node, "runtime-services");
557
558if (archCpuType == CPU_TYPE_I386)
559{
560// The value of the table property is the 32-bit physical address for the RuntimeServices table.
561// Since the EFI system table already has a pointer to it, we simply use the address of that pointer
562// for the pointer to the property data. Warning.. DT finalization calls free on that but we're not
563// the only thing to use a non-malloc'd pointer for something in the DT
564
565DT__AddProperty(runtimeServicesNode, "table", sizeof(uint64_t), &gST32->RuntimeServices);
566}
567else
568{
569DT__AddProperty(runtimeServicesNode, "table", sizeof(uint64_t), &gST64->RuntimeServices);
570}
571
572// Set up the /efi/configuration-table node which will eventually have several child nodes for
573// all of the configuration tables needed by various kernel extensions.
574gEfiConfigurationTableNode = DT__AddChild(node, "configuration-table");
575
576// Now fill in the /efi/platform Node
577Node *efiPlatformNode = DT__AddChild(node, "platform");
578
579// NOTE WELL: If you do add FSB Frequency detection, make sure to store
580// the value in the fsbFrequency global and not an malloc'd pointer
581// because the DT_AddProperty function does not copy its args.
582
583if (Platform.CPU.FSBFrequency != 0)
584DT__AddProperty(efiPlatformNode, FSB_Frequency_prop, sizeof(uint64_t), &Platform.CPU.FSBFrequency);
585
586// Export TSC and CPU frequencies for use by the kernel or KEXTs
587if (Platform.CPU.TSCFrequency != 0)
588DT__AddProperty(efiPlatformNode, TSC_Frequency_prop, sizeof(uint64_t), &Platform.CPU.TSCFrequency);
589
590if (Platform.CPU.CPUFrequency != 0)
591DT__AddProperty(efiPlatformNode, CPU_Frequency_prop, sizeof(uint64_t), &Platform.CPU.CPUFrequency);
592
593// Export system-id. Can be disabled with SystemId=No in com.apple.Boot.plist
594if ((ret=getSystemID()))
595DT__AddProperty(efiPlatformNode, SYSTEM_ID_PROP, UUID_LEN, (EFI_UINT32*) ret);
596
597// Export SystemSerialNumber if present
598if ((ret16=getSmbiosChar16("SMserial", &len)))
599DT__AddProperty(efiPlatformNode, SYSTEM_SERIAL_PROP, len, ret16);
600
601// Export Model if present
602if ((ret16=getSmbiosChar16("SMproductname", &len)))
603DT__AddProperty(efiPlatformNode, MODEL_PROP, len, ret16);
604
605// Fill /efi/device-properties node.
606setupDeviceProperties(node);
607}
608
609/*
610 * Must be called AFTER getSmbios
611 */
612void setupBoardId()
613{
614Node *node;
615node = DT__FindNode("/", false);
616if (node == 0) {
617stop("Couldn't get root node");
618}
619const char *boardid = getStringForKey("SMboardproduct", &bootInfo->smbiosConfig);
620if (boardid)
621DT__AddProperty(node, BOARDID_PROP, strlen(boardid)+1, (EFI_CHAR16*)boardid);
622}
623
624/*
625 * Populate the chosen node
626 */
627void setupChosenNode()
628{
629Node *chosenNode;
630chosenNode = DT__FindNode("/chosen", false);
631if (chosenNode == 0)
632stop("Couldn't get chosen node");
633
634int bootUUIDLength = strlen(gBootUUIDString);
635if (bootUUIDLength)
636DT__AddProperty(chosenNode, "boot-uuid", bootUUIDLength + 1, gBootUUIDString);
637}
638
639/*
640 * Load the smbios.plist override config file if any
641 */
642static void setupSmbiosConfigFile(const char *filename)
643{
644chardirSpecSMBIOS[128];
645const char *override_pathname = NULL;
646intlen = 0, err = 0;
647extern void scan_mem();
648
649// Take in account user overriding
650if (getValueForKey(kSMBIOSKey, &override_pathname, &len, &bootInfo->chameleonConfig) && len > 0)
651{
652// Specify a path to a file, e.g. SMBIOS=/Extra/macProXY.plist
653sprintf(dirSpecSMBIOS, override_pathname);
654err = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig);
655}
656else
657{
658// Check selected volume's Extra.
659sprintf(dirSpecSMBIOS, "/Extra/%s", filename);
660if ( (err = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig)) )
661{
662// Check booter volume/rdbt Extra.
663sprintf(dirSpecSMBIOS, "bt(0,0)/Extra/%s", filename);
664err = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig);
665}
666}
667
668if (err)
669{
670verbose("No SMBIOS replacement found.\n");
671}
672
673// get a chance to scan mem dynamically if user asks for it while having the config options
674// loaded as well, as opposed to when it was in scan_platform(); also load the orig. smbios
675// so that we can access dmi info, without patching the smbios yet.
676scan_mem();
677}
678
679/*
680 * Installs all the needed configuration table entries
681 */
682static void setupEfiConfigurationTable()
683{
684smbios_p = (EFI_PTR32)getSmbios(SMBIOS_PATCHED);
685addConfigurationTable(&gEfiSmbiosTableGuid, &smbios_p, NULL);
686
687setupBoardId(); //need to be called after getSmbios
688
689// Setup ACPI with DSDT overrides (mackerintel's patch)
690setupAcpi();
691
692// We've obviously changed the count.. so fix up the CRC32
693if (archCpuType == CPU_TYPE_I386)
694{
695gST32->Hdr.CRC32 = 0;
696gST32->Hdr.CRC32 = crc32(0L, gST32, gST32->Hdr.HeaderSize);
697}
698else
699{
700gST64->Hdr.CRC32 = 0;
701gST64->Hdr.CRC32 = crc32(0L, gST64, gST64->Hdr.HeaderSize);
702}
703
704// Setup the chosen node
705setupChosenNode();
706}
707
708void saveOriginalSMBIOS(void)
709{
710Node *node;
711SMBEntryPoint *origeps;
712void *tableAddress;
713
714node = DT__FindNode("/efi/platform", false);
715if (!node)
716{
717verbose("/efi/platform node not found\n");
718return;
719}
720
721origeps = getSmbios(SMBIOS_ORIGINAL);
722if (!origeps)
723{
724return;
725}
726
727tableAddress = (void *)AllocateKernelMemory(origeps->dmi.tableLength);
728if (!tableAddress)
729{
730return;
731}
732
733memcpy(tableAddress, (void *)origeps->dmi.tableAddress, origeps->dmi.tableLength);
734DT__AddProperty(node, "SMBIOS", origeps->dmi.tableLength, tableAddress);
735}
736
737/*
738 * Entrypoint from boot.c
739 */
740void setupFakeEfi(void)
741{
742// Generate efi device strings
743setup_pci_devs(root_pci_dev);
744
745readSMBIOSInfo(getSmbios(SMBIOS_ORIGINAL));
746
747// load smbios.plist file if any
748setupSmbiosConfigFile("smbios.plist");
749
750setupSMBIOSTable();
751
752// Initialize the base table
753if (archCpuType == CPU_TYPE_I386)
754{
755setupEfiTables32();
756}
757else
758{
759setupEfiTables64();
760}
761
762// Initialize the device tree
763setupEfiDeviceTree();
764
765saveOriginalSMBIOS();
766
767// Add configuration table entries to both the services table and the device tree
768setupEfiConfigurationTable();
769}
770

Archive Download this file

Revision: 2256