Chameleon

Chameleon Svn Source Tree

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

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

Archive Download this file

Revision: 755