Chameleon

Chameleon Svn Source Tree

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

Archive Download this file

Revision: 1171