diff options
| author | Michael Brown | 2014-07-14 17:13:55 +0200 |
|---|---|---|
| committer | Michael Brown | 2014-07-14 17:13:55 +0200 |
| commit | cff0103bd2a55cadff2a9aed6e3f8024baab368c (patch) | |
| tree | d68fcf544a221f4c1bef2c0460aaf51ea092b8a4 /src/include/ipxe/efi/Pi/PiMultiPhase.h | |
| parent | [netdevice] Reset network device index when last device is unregistered (diff) | |
| download | ipxe-cff0103bd2a55cadff2a9aed6e3f8024baab368c.tar.gz ipxe-cff0103bd2a55cadff2a9aed6e3f8024baab368c.tar.xz ipxe-cff0103bd2a55cadff2a9aed6e3f8024baab368c.zip | |
[efi] Update EDK2 headers
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/efi/Pi/PiMultiPhase.h')
| -rw-r--r-- | src/include/ipxe/efi/Pi/PiMultiPhase.h | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/src/include/ipxe/efi/Pi/PiMultiPhase.h b/src/include/ipxe/efi/Pi/PiMultiPhase.h index d5d7aaa42..daf6591f5 100644 --- a/src/include/ipxe/efi/Pi/PiMultiPhase.h +++ b/src/include/ipxe/efi/Pi/PiMultiPhase.h @@ -1,7 +1,7 @@ /** @file Include file matches things in PI for multiple module types. -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR> +Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR> This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License that accompanies this distribution. The full text of the license may be found at @@ -135,4 +135,33 @@ typedef struct { UINT64 RegionState; } EFI_SMRAM_DESCRIPTOR; +typedef enum { + EFI_PCD_TYPE_8, + EFI_PCD_TYPE_16, + EFI_PCD_TYPE_32, + EFI_PCD_TYPE_64, + EFI_PCD_TYPE_BOOL, + EFI_PCD_TYPE_PTR +} EFI_PCD_TYPE; + +typedef struct { + /// + /// The returned information associated with the requested TokenNumber. If + /// TokenNumber is 0, then PcdType is set to EFI_PCD_TYPE_8. + /// + EFI_PCD_TYPE PcdType; + /// + /// The size of the data in bytes associated with the TokenNumber specified. If + /// TokenNumber is 0, then PcdSize is set 0. + /// + UINTN PcdSize; + /// + /// The null-terminated ASCII string associated with a given token. If the + /// TokenNumber specified was 0, then this field corresponds to the null-terminated + /// ASCII string associated with the token's namespace Guid. If NULL, there is no + /// name associated with this request. + /// + CHAR8 *PcdName; +} EFI_PCD_INFO; + #endif |
