mirror of https://github.com/ipxe/ipxe.git
[efi] Update to current EDK2 headers
Signed-off-by: Michael Brown <mcb30@ipxe.org>pull/51/head
parent
0d29cf2a4d
commit
24415a3eee
|
@ -6,7 +6,7 @@
|
||||||
environment. There are a set of base libraries in the Mde Package that can
|
environment. There are a set of base libraries in the Mde Package that can
|
||||||
be used to implement base modules.
|
be used to implement base modules.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||||
Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
|
Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
|
@ -942,6 +942,11 @@ typedef UINTN RETURN_STATUS;
|
||||||
///
|
///
|
||||||
#define RETURN_COMPROMISED_DATA ENCODE_ERROR (33)
|
#define RETURN_COMPROMISED_DATA ENCODE_ERROR (33)
|
||||||
|
|
||||||
|
///
|
||||||
|
/// A HTTP error occurred during the network operation.
|
||||||
|
///
|
||||||
|
#define RETURN_HTTP_ERROR ENCODE_ERROR (35)
|
||||||
|
|
||||||
///
|
///
|
||||||
/// The string contained one or more characters that
|
/// The string contained one or more characters that
|
||||||
/// the device could not render and were skipped.
|
/// the device could not render and were skipped.
|
||||||
|
@ -971,6 +976,12 @@ typedef UINTN RETURN_STATUS;
|
||||||
///
|
///
|
||||||
#define RETURN_WARN_STALE_DATA ENCODE_WARNING (5)
|
#define RETURN_WARN_STALE_DATA ENCODE_WARNING (5)
|
||||||
|
|
||||||
|
///
|
||||||
|
/// The resulting buffer contains UEFI-compliant file system.
|
||||||
|
///
|
||||||
|
#define RETURN_WARN_FILE_SYSTEM ENCODE_WARNING (6)
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns a 16-bit signature built from 2 ASCII characters.
|
Returns a 16-bit signature built from 2 ASCII characters.
|
||||||
|
|
||||||
|
@ -1024,7 +1035,7 @@ typedef UINTN RETURN_STATUS;
|
||||||
#define SIGNATURE_64(A, B, C, D, E, F, G, H) \
|
#define SIGNATURE_64(A, B, C, D, E, F, G, H) \
|
||||||
(SIGNATURE_32 (A, B, C, D) | ((UINT64) (SIGNATURE_32 (E, F, G, H)) << 32))
|
(SIGNATURE_32 (A, B, C, D) | ((UINT64) (SIGNATURE_32 (E, F, G, H)) << 32))
|
||||||
|
|
||||||
#if defined(_MSC_EXTENSIONS) && !defined (MDE_CPU_EBC)
|
#if defined(_MSC_EXTENSIONS) && !defined (__INTEL_COMPILER) && !defined (MDE_CPU_EBC)
|
||||||
#pragma intrinsic(_ReturnAddress)
|
#pragma intrinsic(_ReturnAddress)
|
||||||
/**
|
/**
|
||||||
Get the return address of the calling funcation.
|
Get the return address of the calling funcation.
|
||||||
|
|
|
@ -95,7 +95,7 @@ FILE_LICENCE ( BSD3 );
|
||||||
//
|
//
|
||||||
#pragma warning ( disable : 4206 )
|
#pragma warning ( disable : 4206 )
|
||||||
|
|
||||||
#if _MSC_VER == 1800
|
#if _MSC_VER == 1800 || _MSC_VER == 1900
|
||||||
|
|
||||||
//
|
//
|
||||||
// Disable these warnings for VS2013.
|
// Disable these warnings for VS2013.
|
||||||
|
@ -103,13 +103,13 @@ FILE_LICENCE ( BSD3 );
|
||||||
|
|
||||||
//
|
//
|
||||||
// This warning is for potentially uninitialized local variable, and it may cause false
|
// This warning is for potentially uninitialized local variable, and it may cause false
|
||||||
// positive issues in VS2013 build
|
// positive issues in VS2013 and VS2015 build
|
||||||
//
|
//
|
||||||
#pragma warning ( disable : 4701 )
|
#pragma warning ( disable : 4701 )
|
||||||
|
|
||||||
//
|
//
|
||||||
// This warning is for potentially uninitialized local pointer variable, and it may cause
|
// This warning is for potentially uninitialized local pointer variable, and it may cause
|
||||||
// false positive issues in VS2013 build
|
// false positive issues in VS2013 and VS2015 build
|
||||||
//
|
//
|
||||||
#pragma warning ( disable : 4703 )
|
#pragma warning ( disable : 4703 )
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
Copyright (c) 2014 Hewlett-Packard Development Company, L.P.<BR>
|
Copyright (c) 2014 Hewlett-Packard Development Company, L.P.<BR>
|
||||||
Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
|
||||||
|
(C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -531,9 +532,18 @@ typedef struct {
|
||||||
UINT32 GicId;
|
UINT32 GicId;
|
||||||
UINT64 PhysicalBaseAddress;
|
UINT64 PhysicalBaseAddress;
|
||||||
UINT32 SystemVectorBase;
|
UINT32 SystemVectorBase;
|
||||||
UINT32 Reserved2;
|
UINT8 GicVersion;
|
||||||
|
UINT8 Reserved2[3];
|
||||||
} EFI_ACPI_5_1_GIC_DISTRIBUTOR_STRUCTURE;
|
} EFI_ACPI_5_1_GIC_DISTRIBUTOR_STRUCTURE;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// GIC Version
|
||||||
|
///
|
||||||
|
#define EFI_ACPI_5_1_GIC_V2 0x01
|
||||||
|
#define EFI_ACPI_5_1_GIC_V2m 0x02
|
||||||
|
#define EFI_ACPI_5_1_GIC_V3 0x03
|
||||||
|
#define EFI_ACPI_5_1_GIC_V4 0x04
|
||||||
|
|
||||||
///
|
///
|
||||||
/// GIC MSI Frame Structure
|
/// GIC MSI Frame Structure
|
||||||
///
|
///
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
/** @file
|
/** @file
|
||||||
ACPI 6.0 definitions from the ACPI Specification Revision 6.0 April, 2015.
|
ACPI 6.0 definitions from the ACPI Specification Revision 6.0 April, 2015.
|
||||||
|
|
||||||
Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||||
|
(C) Copyright 2015-2016 Hewlett Packard Enterprise Development LP<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -534,9 +535,18 @@ typedef struct {
|
||||||
UINT32 GicId;
|
UINT32 GicId;
|
||||||
UINT64 PhysicalBaseAddress;
|
UINT64 PhysicalBaseAddress;
|
||||||
UINT32 SystemVectorBase;
|
UINT32 SystemVectorBase;
|
||||||
UINT32 Reserved2;
|
UINT8 GicVersion;
|
||||||
|
UINT8 Reserved2[3];
|
||||||
} EFI_ACPI_6_0_GIC_DISTRIBUTOR_STRUCTURE;
|
} EFI_ACPI_6_0_GIC_DISTRIBUTOR_STRUCTURE;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// GIC Version
|
||||||
|
///
|
||||||
|
#define EFI_ACPI_6_0_GIC_V1 0x01
|
||||||
|
#define EFI_ACPI_6_0_GIC_V2 0x02
|
||||||
|
#define EFI_ACPI_6_0_GIC_V3 0x03
|
||||||
|
#define EFI_ACPI_6_0_GIC_V4 0x04
|
||||||
|
|
||||||
///
|
///
|
||||||
/// GIC MSI Frame Structure
|
/// GIC MSI Frame Structure
|
||||||
///
|
///
|
||||||
|
@ -1385,14 +1395,14 @@ typedef struct {
|
||||||
//
|
//
|
||||||
#define EFI_ACPI_6_0_NFIT_SYSTEM_PHYSICAL_ADDRESS_RANGE_FLAGS_CONTROL_REGION_FOR_MANAGEMENT BIT0
|
#define EFI_ACPI_6_0_NFIT_SYSTEM_PHYSICAL_ADDRESS_RANGE_FLAGS_CONTROL_REGION_FOR_MANAGEMENT BIT0
|
||||||
#define EFI_ACPI_6_0_NFIT_SYSTEM_PHYSICAL_ADDRESS_RANGE_FLAGS_PROXIMITY_DOMAIN_VALID BIT1
|
#define EFI_ACPI_6_0_NFIT_SYSTEM_PHYSICAL_ADDRESS_RANGE_FLAGS_PROXIMITY_DOMAIN_VALID BIT1
|
||||||
#define EFI_ACPI_6_0_NFIT_GUID_VOLATILE_MEMORY_REGION { 0x7305944F, 0xFDDA, 0x44E3, 0xB1, 0x6C, 0x3F, 0x22, 0xD2, 0x52, 0xE5, 0xD0 }
|
#define EFI_ACPI_6_0_NFIT_GUID_VOLATILE_MEMORY_REGION { 0x7305944F, 0xFDDA, 0x44E3, { 0xB1, 0x6C, 0x3F, 0x22, 0xD2, 0x52, 0xE5, 0xD0 }}
|
||||||
#define EFI_ACPI_6_0_NFIT_GUID_BYTE_ADDRESSABLE_PERSISTENT_MEMORY_REGION { 0x66F0D379, 0xB4F3, 0x4074, 0xAC, 0x43, 0x0D, 0x33, 0x18, 0xB7, 0x8C, 0xDB }
|
#define EFI_ACPI_6_0_NFIT_GUID_BYTE_ADDRESSABLE_PERSISTENT_MEMORY_REGION { 0x66F0D379, 0xB4F3, 0x4074, { 0xAC, 0x43, 0x0D, 0x33, 0x18, 0xB7, 0x8C, 0xDB }}
|
||||||
#define EFI_ACPI_6_0_NFIT_GUID_NVDIMM_CONTROL_REGION { 0x92F701F6, 0x13B4, 0x405D, 0x91, 0x0B, 0x29, 0x93, 0x67, 0xE8, 0x23, 0x4C }
|
#define EFI_ACPI_6_0_NFIT_GUID_NVDIMM_CONTROL_REGION { 0x92F701F6, 0x13B4, 0x405D, { 0x91, 0x0B, 0x29, 0x93, 0x67, 0xE8, 0x23, 0x4C }}
|
||||||
#define EFI_ACPI_6_0_NFIT_GUID_NVDIMM_BLOCK_DATA_WINDOW_REGION { 0x91AF0530, 0x5D86, 0x470E, 0xA6, 0xB0, 0x0A, 0x2D, 0xB9, 0x40, 0x82, 0x49 }
|
#define EFI_ACPI_6_0_NFIT_GUID_NVDIMM_BLOCK_DATA_WINDOW_REGION { 0x91AF0530, 0x5D86, 0x470E, { 0xA6, 0xB0, 0x0A, 0x2D, 0xB9, 0x40, 0x82, 0x49 }}
|
||||||
#define EFI_ACPI_6_0_NFIT_GUID_RAM_DISK_SUPPORTING_VIRTUAL_DISK_REGION_VOLATILE { 0x77AB535A, 0x45FC, 0x624B, 0x55, 0x60, 0xF7, 0xB2, 0x81, 0xD1, 0xF9, 0x6E }
|
#define EFI_ACPI_6_0_NFIT_GUID_RAM_DISK_SUPPORTING_VIRTUAL_DISK_REGION_VOLATILE { 0x77AB535A, 0x45FC, 0x624B, { 0x55, 0x60, 0xF7, 0xB2, 0x81, 0xD1, 0xF9, 0x6E }}
|
||||||
#define EFI_ACPI_6_0_NFIT_GUID_RAM_DISK_SUPPORTING_VIRTUAL_CD_REGION_VOLATILE { 0x3D5ABD30, 0x4175, 0x87CE, 0x6D, 0x64, 0xD2, 0xAD, 0xE5, 0x23, 0xC4, 0xBB }
|
#define EFI_ACPI_6_0_NFIT_GUID_RAM_DISK_SUPPORTING_VIRTUAL_CD_REGION_VOLATILE { 0x3D5ABD30, 0x4175, 0x87CE, { 0x6D, 0x64, 0xD2, 0xAD, 0xE5, 0x23, 0xC4, 0xBB }}
|
||||||
#define EFI_ACPI_6_0_NFIT_GUID_RAM_DISK_SUPPORTING_VIRTUAL_DISK_REGION_PERSISTENT { 0x5CEA02C9, 0x4D07, 0x69D3, 0x26, 0x9F ,0x44, 0x96, 0xFB, 0xE0, 0x96, 0xF9 }
|
#define EFI_ACPI_6_0_NFIT_GUID_RAM_DISK_SUPPORTING_VIRTUAL_DISK_REGION_PERSISTENT { 0x5CEA02C9, 0x4D07, 0x69D3, { 0x26, 0x9F ,0x44, 0x96, 0xFB, 0xE0, 0x96, 0xF9 }}
|
||||||
#define EFI_ACPI_6_0_NFIT_GUID_RAM_DISK_SUPPORTING_VIRTUAL_CD_REGION_PERSISTENT { 0x08018188, 0x42CD, 0xBB48, 0x10, 0x0F, 0x53, 0x87, 0xD5, 0x3D, 0xED, 0x3D }
|
#define EFI_ACPI_6_0_NFIT_GUID_RAM_DISK_SUPPORTING_VIRTUAL_CD_REGION_PERSISTENT { 0x08018188, 0x42CD, 0xBB48, { 0x10, 0x0F, 0x53, 0x87, 0xD5, 0x3D, 0xED, 0x3D }}
|
||||||
typedef struct {
|
typedef struct {
|
||||||
UINT16 Type;
|
UINT16 Type;
|
||||||
UINT16 Length;
|
UINT16 Length;
|
||||||
|
@ -1658,6 +1668,9 @@ typedef struct {
|
||||||
#define EFI_ACPI_6_0_HARDWARE_ERROR_NOTIFICATION_LOCAL_INTERRUPT 0x02
|
#define EFI_ACPI_6_0_HARDWARE_ERROR_NOTIFICATION_LOCAL_INTERRUPT 0x02
|
||||||
#define EFI_ACPI_6_0_HARDWARE_ERROR_NOTIFICATION_SCI 0x03
|
#define EFI_ACPI_6_0_HARDWARE_ERROR_NOTIFICATION_SCI 0x03
|
||||||
#define EFI_ACPI_6_0_HARDWARE_ERROR_NOTIFICATION_NMI 0x04
|
#define EFI_ACPI_6_0_HARDWARE_ERROR_NOTIFICATION_NMI 0x04
|
||||||
|
#define EFI_ACPI_6_0_HARDWARE_ERROR_NOTIFICATION_CMCI 0x05
|
||||||
|
#define EFI_ACPI_6_0_HARDWARE_ERROR_NOTIFICATION_MCE 0x06
|
||||||
|
#define EFI_ACPI_6_0_HARDWARE_ERROR_NOTIFICATION_GPIO_SIGNAL 0x07
|
||||||
|
|
||||||
///
|
///
|
||||||
/// Hardware Error Notification Configuration Write Enable Structure Definition
|
/// Hardware Error Notification Configuration Write Enable Structure Definition
|
||||||
|
|
|
@ -677,7 +677,10 @@ typedef UINT32 TPM_RH;
|
||||||
#define TPM_RH_LOCKOUT (TPM_RH)(0x4000000A)
|
#define TPM_RH_LOCKOUT (TPM_RH)(0x4000000A)
|
||||||
#define TPM_RH_ENDORSEMENT (TPM_RH)(0x4000000B)
|
#define TPM_RH_ENDORSEMENT (TPM_RH)(0x4000000B)
|
||||||
#define TPM_RH_PLATFORM (TPM_RH)(0x4000000C)
|
#define TPM_RH_PLATFORM (TPM_RH)(0x4000000C)
|
||||||
#define TPM_RH_LAST (TPM_RH)(0x4000000C)
|
#define TPM_RH_PLATFORM_NV (TPM_RH)(0x4000000D)
|
||||||
|
#define TPM_RH_AUTH_00 (TPM_RH)(0x40000010)
|
||||||
|
#define TPM_RH_AUTH_FF (TPM_RH)(0x4000010F)
|
||||||
|
#define TPM_RH_LAST (TPM_RH)(0x4000010F)
|
||||||
|
|
||||||
// Table 28 - TPM_HC Constants
|
// Table 28 - TPM_HC Constants
|
||||||
typedef TPM_HANDLE TPM_HC;
|
typedef TPM_HANDLE TPM_HC;
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
This protocol is published by drivers providing and requesting
|
This protocol is published by drivers providing and requesting
|
||||||
configuration data from HII. It may only be invoked by HII.
|
configuration data from HII. It may only be invoked by HII.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials are licensed and made available under
|
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 terms and conditions of the BSD License that accompanies this distribution.
|
||||||
The full text of the license may be found at
|
The full text of the license may be found at
|
||||||
|
@ -36,6 +36,7 @@ typedef UINTN EFI_BROWSER_ACTION;
|
||||||
#define EFI_BROWSER_ACTION_RETRIEVE 2
|
#define EFI_BROWSER_ACTION_RETRIEVE 2
|
||||||
#define EFI_BROWSER_ACTION_FORM_OPEN 3
|
#define EFI_BROWSER_ACTION_FORM_OPEN 3
|
||||||
#define EFI_BROWSER_ACTION_FORM_CLOSE 4
|
#define EFI_BROWSER_ACTION_FORM_CLOSE 4
|
||||||
|
#define EFI_BROWSER_ACTION_SUBMITTED 5
|
||||||
#define EFI_BROWSER_ACTION_DEFAULT_STANDARD 0x1000
|
#define EFI_BROWSER_ACTION_DEFAULT_STANDARD 0x1000
|
||||||
#define EFI_BROWSER_ACTION_DEFAULT_MANUFACTURING 0x1001
|
#define EFI_BROWSER_ACTION_DEFAULT_MANUFACTURING 0x1001
|
||||||
#define EFI_BROWSER_ACTION_DEFAULT_SAFE 0x1002
|
#define EFI_BROWSER_ACTION_DEFAULT_SAFE 0x1002
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
UEFI 2.0 can boot from any device that produces a LoadFile protocol.
|
UEFI 2.0 can boot from any device that produces a LoadFile protocol.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials are licensed and made available under
|
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 terms and conditions of the BSD License that accompanies this distribution.
|
||||||
The full text of the license may be found at
|
The full text of the license may be found at
|
||||||
|
@ -66,7 +66,7 @@ typedef EFI_LOAD_FILE_PROTOCOL EFI_LOAD_FILE_INTERFACE;
|
||||||
@retval EFI_NO_RESPONSE The remote system did not respond.
|
@retval EFI_NO_RESPONSE The remote system did not respond.
|
||||||
@retval EFI_NOT_FOUND The file was not found.
|
@retval EFI_NOT_FOUND The file was not found.
|
||||||
@retval EFI_ABORTED The file load process was manually cancelled.
|
@retval EFI_ABORTED The file load process was manually cancelled.
|
||||||
|
@retval EFI_WARN_FILE_SYSTEM The resulting Buffer contains UEFI-compliant file system.
|
||||||
**/
|
**/
|
||||||
typedef
|
typedef
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
Abstraction of a basic serial device. Targeted at 16550 UART, but
|
Abstraction of a basic serial device. Targeted at 16550 UART, but
|
||||||
could be much more generic.
|
could be much more generic.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -107,7 +107,7 @@ EFI_STATUS
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Sets the baud rate, receive FIFO depth, transmit/receice time out, parity,
|
Sets the baud rate, receive FIFO depth, transmit/receice time out, parity,
|
||||||
data buts, and stop bits on a serial device.
|
data bits, and stop bits on a serial device.
|
||||||
|
|
||||||
@param This Protocol instance pointer.
|
@param This Protocol instance pointer.
|
||||||
@param BaudRate The requested baud rate. A BaudRate value of 0 will use the
|
@param BaudRate The requested baud rate. A BaudRate value of 0 will use the
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
MCast - MultiCast
|
MCast - MultiCast
|
||||||
...
|
...
|
||||||
|
|
||||||
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials are licensed and made available under
|
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 terms and conditions of the BSD License that accompanies this distribution.
|
||||||
The full text of the license may be found at
|
The full text of the license may be found at
|
||||||
|
@ -123,6 +123,25 @@ typedef struct {
|
||||||
///
|
///
|
||||||
UINT64 UnsupportedProtocol;
|
UINT64 UnsupportedProtocol;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Number of valid frames received that were duplicated.
|
||||||
|
///
|
||||||
|
UINT64 RxDuplicatedFrames;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Number of encrypted frames received that failed to decrypt.
|
||||||
|
///
|
||||||
|
UINT64 RxDecryptErrorFrames;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Number of frames that failed to transmit after exceeding the retry limit.
|
||||||
|
///
|
||||||
|
UINT64 TxErrorFrames;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Number of frames transmitted successfully after more than one attempt.
|
||||||
|
///
|
||||||
|
UINT64 TxRetryFrames;
|
||||||
} EFI_NETWORK_STATISTICS;
|
} EFI_NETWORK_STATISTICS;
|
||||||
|
|
||||||
///
|
///
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/** @file
|
/** @file
|
||||||
Defines data types and constants introduced in UEFI.
|
Defines data types and constants introduced in UEFI.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||||
Portions copyright (c) 2011 - 2013, ARM Ltd. All rights reserved.<BR>
|
Portions copyright (c) 2011 - 2016, ARM Ltd. All rights reserved.<BR>
|
||||||
|
|
||||||
This program and the accompanying materials are licensed and made available under
|
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 terms and conditions of the BSD License that accompanies this distribution.
|
||||||
|
@ -153,12 +153,14 @@ typedef union {
|
||||||
#define EFI_END_OF_FILE RETURN_END_OF_FILE
|
#define EFI_END_OF_FILE RETURN_END_OF_FILE
|
||||||
#define EFI_INVALID_LANGUAGE RETURN_INVALID_LANGUAGE
|
#define EFI_INVALID_LANGUAGE RETURN_INVALID_LANGUAGE
|
||||||
#define EFI_COMPROMISED_DATA RETURN_COMPROMISED_DATA
|
#define EFI_COMPROMISED_DATA RETURN_COMPROMISED_DATA
|
||||||
|
#define EFI_HTTP_ERROR RETURN_HTTP_ERROR
|
||||||
|
|
||||||
#define EFI_WARN_UNKNOWN_GLYPH RETURN_WARN_UNKNOWN_GLYPH
|
#define EFI_WARN_UNKNOWN_GLYPH RETURN_WARN_UNKNOWN_GLYPH
|
||||||
#define EFI_WARN_DELETE_FAILURE RETURN_WARN_DELETE_FAILURE
|
#define EFI_WARN_DELETE_FAILURE RETURN_WARN_DELETE_FAILURE
|
||||||
#define EFI_WARN_WRITE_FAILURE RETURN_WARN_WRITE_FAILURE
|
#define EFI_WARN_WRITE_FAILURE RETURN_WARN_WRITE_FAILURE
|
||||||
#define EFI_WARN_BUFFER_TOO_SMALL RETURN_WARN_BUFFER_TOO_SMALL
|
#define EFI_WARN_BUFFER_TOO_SMALL RETURN_WARN_BUFFER_TOO_SMALL
|
||||||
#define EFI_WARN_STALE_DATA RETURN_WARN_STALE_DATA
|
#define EFI_WARN_STALE_DATA RETURN_WARN_STALE_DATA
|
||||||
|
#define EFI_WARN_FILE_SYSTEM RETURN_WARN_FILE_SYSTEM
|
||||||
///@}
|
///@}
|
||||||
|
|
||||||
///
|
///
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
structure prototypes, global variables and constants that
|
structure prototypes, global variables and constants that
|
||||||
are needed for porting PXE to EFI.
|
are needed for porting PXE to EFI.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials are licensed and made available under
|
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 terms and conditions of the BSD License that accompanies this distribution.
|
||||||
The full text of the license may be found at
|
The full text of the license may be found at
|
||||||
|
@ -1460,6 +1460,26 @@ typedef struct s_pxe_db_statistics {
|
||||||
///
|
///
|
||||||
#define PXE_STATISTICS_UNSUPPORTED_PROTOCOL 0x15
|
#define PXE_STATISTICS_UNSUPPORTED_PROTOCOL 0x15
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Number of valid frames received that were duplicated.
|
||||||
|
///
|
||||||
|
#define PXE_STATISTICS_RX_DUPLICATED_FRAMES 0x16
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Number of encrypted frames received that failed to decrypt.
|
||||||
|
///
|
||||||
|
#define PXE_STATISTICS_RX_DECRYPT_ERROR_FRAMES 0x17
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Number of frames that failed to transmit after exceeding the retry limit.
|
||||||
|
///
|
||||||
|
#define PXE_STATISTICS_TX_ERROR_FRAMES 0x18
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Number of frames transmitted successfully after more than one attempt.
|
||||||
|
///
|
||||||
|
#define PXE_STATISTICS_TX_RETRY_FRAMES 0x19
|
||||||
|
|
||||||
typedef struct s_pxe_cpb_mcast_ip_to_mac {
|
typedef struct s_pxe_cpb_mcast_ip_to_mac {
|
||||||
///
|
///
|
||||||
/// Multicast IP address to be converted to multicast MAC address.
|
/// Multicast IP address to be converted to multicast MAC address.
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
/** @file
|
/** @file
|
||||||
Include file that supports UEFI.
|
Include file that supports UEFI.
|
||||||
|
|
||||||
This include file must contain things defined in the UEFI 2.5 specification.
|
This include file must contain things defined in the UEFI 2.6 specification.
|
||||||
If a code construct is defined in the UEFI 2.5 specification it must be included
|
If a code construct is defined in the UEFI 2.6 specification it must be included
|
||||||
by this include file.
|
by this include file.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials are licensed and made available under
|
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 terms and conditions of the BSD License that accompanies this distribution.
|
||||||
The full text of the license may be found at
|
The full text of the license may be found at
|
||||||
|
@ -138,8 +138,7 @@ typedef struct {
|
||||||
MemoryType values in the range 0x70000000..0x7FFFFFFF
|
MemoryType values in the range 0x70000000..0x7FFFFFFF
|
||||||
are reserved for OEM use. MemoryType values in the range
|
are reserved for OEM use. MemoryType values in the range
|
||||||
0x80000000..0xFFFFFFFF are reserved for use by UEFI OS loaders
|
0x80000000..0xFFFFFFFF are reserved for use by UEFI OS loaders
|
||||||
that are provided by operating system vendors. The only illegal
|
that are provided by operating system vendors.
|
||||||
memory type values are those in the range EfiMaxMemoryType..0x6FFFFFFF.
|
|
||||||
@param[in] Pages The number of contiguous 4 KB pages to allocate.
|
@param[in] Pages The number of contiguous 4 KB pages to allocate.
|
||||||
@param[in, out] Memory The pointer to a physical address. On input, the way in which the address is
|
@param[in, out] Memory The pointer to a physical address. On input, the way in which the address is
|
||||||
used depends on the value of Type.
|
used depends on the value of Type.
|
||||||
|
@ -150,7 +149,7 @@ typedef struct {
|
||||||
2) MemoryType is in the range
|
2) MemoryType is in the range
|
||||||
EfiMaxMemoryType..0x6FFFFFFF.
|
EfiMaxMemoryType..0x6FFFFFFF.
|
||||||
3) Memory is NULL.
|
3) Memory is NULL.
|
||||||
4) MemoryType was EfiPersistentMemory.
|
4) MemoryType is EfiPersistentMemory.
|
||||||
@retval EFI_OUT_OF_RESOURCES The pages could not be allocated.
|
@retval EFI_OUT_OF_RESOURCES The pages could not be allocated.
|
||||||
@retval EFI_NOT_FOUND The requested pages could not be found.
|
@retval EFI_NOT_FOUND The requested pages could not be found.
|
||||||
|
|
||||||
|
@ -225,16 +224,16 @@ EFI_STATUS
|
||||||
MemoryType values in the range 0x70000000..0x7FFFFFFF
|
MemoryType values in the range 0x70000000..0x7FFFFFFF
|
||||||
are reserved for OEM use. MemoryType values in the range
|
are reserved for OEM use. MemoryType values in the range
|
||||||
0x80000000..0xFFFFFFFF are reserved for use by UEFI OS loaders
|
0x80000000..0xFFFFFFFF are reserved for use by UEFI OS loaders
|
||||||
that are provided by operating system vendors. The only illegal
|
that are provided by operating system vendors.
|
||||||
memory type values are those in the range EfiMaxMemoryType..0x6FFFFFFF.
|
|
||||||
@param[in] Size The number of bytes to allocate from the pool.
|
@param[in] Size The number of bytes to allocate from the pool.
|
||||||
@param[out] Buffer A pointer to a pointer to the allocated buffer if the call succeeds;
|
@param[out] Buffer A pointer to a pointer to the allocated buffer if the call succeeds;
|
||||||
undefined otherwise.
|
undefined otherwise.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The requested number of bytes was allocated.
|
@retval EFI_SUCCESS The requested number of bytes was allocated.
|
||||||
@retval EFI_OUT_OF_RESOURCES The pool requested could not be allocated.
|
@retval EFI_OUT_OF_RESOURCES The pool requested could not be allocated.
|
||||||
@retval EFI_INVALID_PARAMETER PoolType was invalid or Buffer is NULL.
|
@retval EFI_INVALID_PARAMETER Buffer is NULL.
|
||||||
PoolType was EfiPersistentMemory.
|
PoolType is in the range EfiMaxMemoryType..0x6FFFFFFF.
|
||||||
|
PoolType is EfiPersistentMemory.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
typedef
|
typedef
|
||||||
|
@ -630,7 +629,8 @@ VOID
|
||||||
attributes bitmask for the variable.
|
attributes bitmask for the variable.
|
||||||
@param[in, out] DataSize On input, the size in bytes of the return Data buffer.
|
@param[in, out] DataSize On input, the size in bytes of the return Data buffer.
|
||||||
On output the size of data returned in Data.
|
On output the size of data returned in Data.
|
||||||
@param[out] Data The buffer to return the contents of the variable.
|
@param[out] Data The buffer to return the contents of the variable. May be NULL
|
||||||
|
with a zero DataSize in order to determine the size buffer needed.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The function completed successfully.
|
@retval EFI_SUCCESS The function completed successfully.
|
||||||
@retval EFI_NOT_FOUND The variable was not found.
|
@retval EFI_NOT_FOUND The variable was not found.
|
||||||
|
@ -650,7 +650,7 @@ EFI_STATUS
|
||||||
IN EFI_GUID *VendorGuid,
|
IN EFI_GUID *VendorGuid,
|
||||||
OUT UINT32 *Attributes, OPTIONAL
|
OUT UINT32 *Attributes, OPTIONAL
|
||||||
IN OUT UINTN *DataSize,
|
IN OUT UINTN *DataSize,
|
||||||
OUT VOID *Data
|
OUT VOID *Data OPTIONAL
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1752,11 +1752,13 @@ EFI_STATUS
|
||||||
#define EFI_OS_INDICATIONS_FILE_CAPSULE_DELIVERY_SUPPORTED 0x0000000000000004
|
#define EFI_OS_INDICATIONS_FILE_CAPSULE_DELIVERY_SUPPORTED 0x0000000000000004
|
||||||
#define EFI_OS_INDICATIONS_FMP_CAPSULE_SUPPORTED 0x0000000000000008
|
#define EFI_OS_INDICATIONS_FMP_CAPSULE_SUPPORTED 0x0000000000000008
|
||||||
#define EFI_OS_INDICATIONS_CAPSULE_RESULT_VAR_SUPPORTED 0x0000000000000010
|
#define EFI_OS_INDICATIONS_CAPSULE_RESULT_VAR_SUPPORTED 0x0000000000000010
|
||||||
|
#define EFI_OS_INDICATIONS_START_PLATFORM_RECOVERY 0x0000000000000040
|
||||||
|
|
||||||
//
|
//
|
||||||
// EFI Runtime Services Table
|
// EFI Runtime Services Table
|
||||||
//
|
//
|
||||||
#define EFI_SYSTEM_TABLE_SIGNATURE SIGNATURE_64 ('I','B','I',' ','S','Y','S','T')
|
#define EFI_SYSTEM_TABLE_SIGNATURE SIGNATURE_64 ('I','B','I',' ','S','Y','S','T')
|
||||||
|
#define EFI_2_60_SYSTEM_TABLE_REVISION ((2 << 16) | (60))
|
||||||
#define EFI_2_50_SYSTEM_TABLE_REVISION ((2 << 16) | (50))
|
#define EFI_2_50_SYSTEM_TABLE_REVISION ((2 << 16) | (50))
|
||||||
#define EFI_2_40_SYSTEM_TABLE_REVISION ((2 << 16) | (40))
|
#define EFI_2_40_SYSTEM_TABLE_REVISION ((2 << 16) | (40))
|
||||||
#define EFI_2_31_SYSTEM_TABLE_REVISION ((2 << 16) | (31))
|
#define EFI_2_31_SYSTEM_TABLE_REVISION ((2 << 16) | (31))
|
||||||
|
@ -1766,7 +1768,7 @@ EFI_STATUS
|
||||||
#define EFI_2_00_SYSTEM_TABLE_REVISION ((2 << 16) | (00))
|
#define EFI_2_00_SYSTEM_TABLE_REVISION ((2 << 16) | (00))
|
||||||
#define EFI_1_10_SYSTEM_TABLE_REVISION ((1 << 16) | (10))
|
#define EFI_1_10_SYSTEM_TABLE_REVISION ((1 << 16) | (10))
|
||||||
#define EFI_1_02_SYSTEM_TABLE_REVISION ((1 << 16) | (02))
|
#define EFI_1_02_SYSTEM_TABLE_REVISION ((1 << 16) | (02))
|
||||||
#define EFI_SYSTEM_TABLE_REVISION EFI_2_50_SYSTEM_TABLE_REVISION
|
#define EFI_SYSTEM_TABLE_REVISION EFI_2_60_SYSTEM_TABLE_REVISION
|
||||||
#define EFI_SPECIFICATION_VERSION EFI_SYSTEM_TABLE_REVISION
|
#define EFI_SPECIFICATION_VERSION EFI_SYSTEM_TABLE_REVISION
|
||||||
|
|
||||||
#define EFI_RUNTIME_SERVICES_SIGNATURE SIGNATURE_64 ('R','U','N','T','S','E','R','V')
|
#define EFI_RUNTIME_SERVICES_SIGNATURE SIGNATURE_64 ('R','U','N','T','S','E','R','V')
|
||||||
|
|
|
@ -96,7 +96,7 @@ FILE_LICENCE ( BSD3 );
|
||||||
//
|
//
|
||||||
#pragma warning ( disable : 4206 )
|
#pragma warning ( disable : 4206 )
|
||||||
|
|
||||||
#if _MSC_VER == 1800
|
#if _MSC_VER == 1800 || _MSC_VER == 1900
|
||||||
|
|
||||||
//
|
//
|
||||||
// Disable these warnings for VS2013.
|
// Disable these warnings for VS2013.
|
||||||
|
@ -104,13 +104,13 @@ FILE_LICENCE ( BSD3 );
|
||||||
|
|
||||||
//
|
//
|
||||||
// This warning is for potentially uninitialized local variable, and it may cause false
|
// This warning is for potentially uninitialized local variable, and it may cause false
|
||||||
// positive issues in VS2013 build
|
// positive issues in VS2013 and VS2015 build
|
||||||
//
|
//
|
||||||
#pragma warning ( disable : 4701 )
|
#pragma warning ( disable : 4701 )
|
||||||
|
|
||||||
//
|
//
|
||||||
// This warning is for potentially uninitialized local pointer variable, and it may cause
|
// This warning is for potentially uninitialized local pointer variable, and it may cause
|
||||||
// false positive issues in VS2013 build
|
// false positive issues in VS2013 and VS2015 build
|
||||||
//
|
//
|
||||||
#pragma warning ( disable : 4703 )
|
#pragma warning ( disable : 4703 )
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue