Lines Matching full:the

2   Expose the address(es) of the ACPI RSD PTR table(s) and the SMBIOS entry
3 point(s) in a MB-aligned structure to the hypervisor.
5 The hypervisor locates the MB-aligned structure based on the signature GUID
6 that is at offset 0 in the structure. Once the RSD PTR and SMBIOS anchor
7 address(es) are retrieved, the hypervisor may perform various ACPI and SMBIOS
15 This program and the accompanying materials are licensed and made available
16 under the terms and conditions of the BSD License that accompanies this
17 distribution. The full text of the license may be found at
20 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT
40 // The following structure must be allocated in Boot Services Data type memory,
46 // The signature GUID is written to the MB-aligned structure from
47 // gBiosTablesTestGuid, but with all bits inverted. That's the actual GUID
48 // value that the hypervisor should look for at each MB boundary, looping
49 // over all guest RAM pages with that alignment, until a match is found. The
50 // bit-flipping occurs in order not to store the actual GUID in any UEFI
56 // The Rsdp10 and Rsdp20 fields may be read when the signature GUID matches.
57 // Rsdp10 is the guest-physical address of the ACPI 1.0 specification RSD PTR
58 // table, in 8-byte little endian representation. Rsdp20 is the same, for the
60 // zero (independently of the other) if the UEFI System Table does not
61 // provide the corresponding UEFI Configuration Table.
66 // The Smbios21 and Smbios30 fields may be read when the signature GUID
67 // matches. Smbios21 is the guest-physical address of the SMBIOS 2.1 (32-bit)
68 // Entry Point Structure from the SMBIOS v3.2.0 specification, in 8-byte
69 // little endian representation. Smbios30 is the guest-physical address of
70 // the SMBIOS 3.0 (64-bit) Entry Point Structure from the same specification,
71 // in the same representation. Each of these fields may be zero
72 // (independently of the other) if the UEFI System Table does not provide the