Last change
on this file since 107044 was 99404, checked in by vboxsync, 22 months ago |
Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
834 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | Define the structure for the Universal Payload SmBios.
|
---|
3 |
|
---|
4 | Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
|
---|
5 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 |
|
---|
7 | @par Revision Reference:
|
---|
8 | - Universal Payload Specification 0.75 (https://universalpayload.github.io/documentation/)
|
---|
9 | **/
|
---|
10 |
|
---|
11 | #ifndef UNIVERSAL_PAYLOAD_SMBIOS_TABLE_H_
|
---|
12 | #define UNIVERSAL_PAYLOAD_SMBIOS_TABLE_H_
|
---|
13 |
|
---|
14 | #include <Uefi.h>
|
---|
15 | #include <UniversalPayload/UniversalPayload.h>
|
---|
16 |
|
---|
17 | #pragma pack (1)
|
---|
18 |
|
---|
19 | typedef struct {
|
---|
20 | UNIVERSAL_PAYLOAD_GENERIC_HEADER Header;
|
---|
21 | EFI_PHYSICAL_ADDRESS SmBiosEntryPoint;
|
---|
22 | } UNIVERSAL_PAYLOAD_SMBIOS_TABLE;
|
---|
23 |
|
---|
24 | #pragma pack()
|
---|
25 |
|
---|
26 | #define UNIVERSAL_PAYLOAD_SMBIOS_TABLE_REVISION 1
|
---|
27 |
|
---|
28 | extern GUID gUniversalPayloadSmbios3TableGuid;
|
---|
29 | extern GUID gUniversalPayloadSmbiosTableGuid;
|
---|
30 | #endif // UNIVERSAL_PAYLOAD_SMBIOS_TABLE_H_
|
---|
Note:
See
TracBrowser
for help on using the repository browser.