Chameleon

Chameleon Svn Source Tree

Root/branches/azimutz/Chazileon/i386/libsaio/fake_efi.c

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

Archive Download this file

Revision: 296