Last change
on this file since 108794 was 108794, checked in by vboxsync, 2 weeks ago |
Devices/EFI/FirmwareNew: Merge edk2-stable202502 from the vendor branch and make it build for the important platforms, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
771 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | Universal Payload general definitions.
|
---|
3 |
|
---|
4 | Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
|
---|
5 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 |
|
---|
7 | **/
|
---|
8 |
|
---|
9 | #ifndef UNIVERSAL_PAYLOAD_BASE_H_
|
---|
10 | #define UNIVERSAL_PAYLOAD_BASE_H_
|
---|
11 |
|
---|
12 | extern GUID gUniversalPayloadBaseGuid;
|
---|
13 |
|
---|
14 | typedef struct {
|
---|
15 | UNIVERSAL_PAYLOAD_GENERIC_HEADER Header;
|
---|
16 | EFI_PHYSICAL_ADDRESS Entry;
|
---|
17 | } UNIVERSAL_PAYLOAD_BASE;
|
---|
18 |
|
---|
19 | #define UNIVERSAL_PAYLOAD_BASE_REVISION 1
|
---|
20 |
|
---|
21 | #define N_NON_RELOCATABLE BIT31
|
---|
22 | #define P_PREFETCHABLE BIT30
|
---|
23 | #define SS_CONFIGURATION_SPACE 0
|
---|
24 | #define SS_IO_SPACE BIT24
|
---|
25 | #define SS_32BIT_MEMORY_SPACE BIT25
|
---|
26 | #define SS_64BIT_MEMORY_SPACE BIT24+BIT25
|
---|
27 | #define DWORDS_TO_NEXT_ADDR_TYPE 7
|
---|
28 |
|
---|
29 | #endif // UNIVERSAL_PAYLOAD_BASE_H_
|
---|
Note:
See
TracBrowser
for help on using the repository browser.