mirror of
https://github.com/tianocore/edk2
synced 2026-08-27 00:23:19 -04:00
MdePkg: Fix Spelling Errors in Comments
This fixes all non-breaking spelling errors in MdePkg. Signed-off-by: Oliver Smith-Denny <osde@microsoft.com>
This commit is contained in:
parent
27f83abf1b
commit
6f73fbea97
188 changed files with 342 additions and 342 deletions
|
|
@ -1,6 +1,6 @@
|
|||
/** @file
|
||||
GUID used as an FV filename for A Priori file. The A Priori file contains a
|
||||
list of FV filenames that the DXE dispatcher will schedule reguardless of
|
||||
list of FV filenames that the DXE dispatcher will schedule regardless of
|
||||
the dependency grammar.
|
||||
|
||||
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
|
|
|
|||
|
|
@ -240,7 +240,7 @@ typedef struct {
|
|||
|
||||
///
|
||||
/// The validation bit mask indicates whether or not each of the following fields are
|
||||
/// valid in Proessor Generic Error section.
|
||||
/// valid in Processor Generic Error section.
|
||||
///@{
|
||||
#define EFI_GENERIC_ERROR_PROC_TYPE_VALID BIT0
|
||||
#define EFI_GENERIC_ERROR_PROC_ISA_VALID BIT1
|
||||
|
|
@ -258,7 +258,7 @@ typedef struct {
|
|||
///@}
|
||||
|
||||
///
|
||||
/// The type of the processor architecture in Proessor Generic Error section.
|
||||
/// The type of the processor architecture in Processor Generic Error section.
|
||||
///@{
|
||||
#define EFI_GENERIC_ERROR_PROC_TYPE_IA32_X64 0x00
|
||||
#define EFI_GENERIC_ERROR_PROC_TYPE_IA64 0x01
|
||||
|
|
@ -266,7 +266,7 @@ typedef struct {
|
|||
///@}
|
||||
|
||||
///
|
||||
/// The type of the instruction set executing when the error occurred in Proessor
|
||||
/// The type of the instruction set executing when the error occurred in Processor
|
||||
/// Generic Error section.
|
||||
///@{
|
||||
#define EFI_GENERIC_ERROR_PROC_ISA_IA32 0x00
|
||||
|
|
@ -276,7 +276,7 @@ typedef struct {
|
|||
///@}
|
||||
|
||||
///
|
||||
/// The type of error that occurred in Proessor Generic Error section.
|
||||
/// The type of error that occurred in Processor Generic Error section.
|
||||
///@{
|
||||
#define EFI_GENERIC_ERROR_PROC_ERROR_TYPE_UNKNOWN 0x00
|
||||
#define EFI_GENERIC_ERROR_PROC_ERROR_TYPE_CACHE 0x01
|
||||
|
|
@ -286,7 +286,7 @@ typedef struct {
|
|||
///@}
|
||||
|
||||
///
|
||||
/// The type of operation in Proessor Generic Error section.
|
||||
/// The type of operation in Processor Generic Error section.
|
||||
///@{
|
||||
#define EFI_GENERIC_ERROR_PROC_OPERATION_GENERIC 0x00
|
||||
#define EFI_GENERIC_ERROR_PROC_OPERATION_DATA_READ 0x01
|
||||
|
|
@ -295,7 +295,7 @@ typedef struct {
|
|||
///@}
|
||||
|
||||
///
|
||||
/// Flags bit mask indicates additional information about the error in Proessor Generic
|
||||
/// Flags bit mask indicates additional information about the error in Processor Generic
|
||||
/// Error section
|
||||
///@{
|
||||
#define EFI_GENERIC_ERROR_PROC_FLAGS_RESTARTABLE BIT0
|
||||
|
|
@ -1004,7 +1004,7 @@ typedef struct {
|
|||
} EFI_ARM_BUS_ERROR_INFO;
|
||||
|
||||
///
|
||||
/// ARM Error Indormation field.
|
||||
/// ARM Error Information field.
|
||||
///
|
||||
typedef union {
|
||||
EFI_ARM_CACHE_ERROR_INFO CacheErrorInfo;
|
||||
|
|
@ -1024,7 +1024,7 @@ typedef union {
|
|||
///@}
|
||||
|
||||
///
|
||||
/// The type of error that occurred in ARM Proessor Error section.
|
||||
/// The type of error that occurred in ARM Processor Error section.
|
||||
///@{
|
||||
#define EFI_ARM_PROC_ERROR_INFO_TYPE_CACHE 0x00
|
||||
#define EFI_ARM_PROC_ERROR_INFO_TYPE_TLB 0x01
|
||||
|
|
@ -1347,7 +1347,7 @@ typedef struct {
|
|||
UINT64 ValidFields;
|
||||
EFI_GENERIC_ERROR_STATUS ErrorStatus;
|
||||
UINT64 PhysicalAddress; // Error physical address
|
||||
UINT64 PhysicalAddressMask; // Grnaularity
|
||||
UINT64 PhysicalAddressMask; // Granularity
|
||||
UINT16 Node; // Node #
|
||||
UINT16 Card;
|
||||
UINT16 ModuleRank; // Module or Rank#
|
||||
|
|
@ -1423,7 +1423,7 @@ typedef struct {
|
|||
UINT64 ValidFields;
|
||||
EFI_GENERIC_ERROR_STATUS ErrorStatus;
|
||||
UINT64 PhysicalAddress; // Error physical address
|
||||
UINT64 PhysicalAddressMask; // Grnaularity
|
||||
UINT64 PhysicalAddressMask; // Granularity
|
||||
UINT16 Node; // Node #
|
||||
UINT16 Card;
|
||||
UINT16 Module; // Module or Rank#
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/** @file
|
||||
GUID is the name of events used with CreateEventEx in order to be notified
|
||||
when the EFI boot manager is about to boot a legacy boot option.
|
||||
Events of this type are notificated just before Int19h is invoked.
|
||||
Events of this type are notified just before Int19h is invoked.
|
||||
|
||||
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ typedef struct {
|
|||
/// Whenever code needs to know the size of the EFI_FILE_INFO data structure, it needs to
|
||||
/// be the size of the data structure without the FileName field. The following macro
|
||||
/// computes this size correctly no matter how big the FileName array is declared.
|
||||
/// This is required to make the EFI_FILE_INFO data structure ANSI compilant.
|
||||
/// This is required to make the EFI_FILE_INFO data structure ANSI compliant.
|
||||
///
|
||||
#define SIZE_OF_EFI_FILE_INFO OFFSET_OF (EFI_FILE_INFO, FileName)
|
||||
|
||||
|
|
|
|||
|
|
@ -45,9 +45,9 @@ typedef struct {
|
|||
///
|
||||
/// The VolumeLabel field of the EFI_FILE_SYSTEM_INFO data structure is variable length.
|
||||
/// Whenever code needs to know the size of the EFI_FILE_SYSTEM_INFO data structure, it needs
|
||||
/// to be the size of the data structure without the VolumeLable field. The following macro
|
||||
/// computes this size correctly no matter how big the VolumeLable array is declared.
|
||||
/// This is required to make the EFI_FILE_SYSTEM_INFO data structure ANSI compilant.
|
||||
/// to be the size of the data structure without the VolumeLabel field. The following macro
|
||||
/// computes this size correctly no matter how big the VolumeLabel array is declared.
|
||||
/// This is required to make the EFI_FILE_SYSTEM_INFO data structure ANSI compliant.
|
||||
///
|
||||
#define SIZE_OF_EFI_FILE_SYSTEM_INFO OFFSET_OF (EFI_FILE_SYSTEM_INFO, VolumeLabel)
|
||||
|
||||
|
|
|
|||
|
|
@ -19,12 +19,12 @@
|
|||
}
|
||||
|
||||
///
|
||||
/// Varialbe name with guid EFI_IMAGE_SECURITY_DATABASE_GUID
|
||||
/// Variable name with guid EFI_IMAGE_SECURITY_DATABASE_GUID
|
||||
/// for the authorized signature database.
|
||||
///
|
||||
#define EFI_IMAGE_SECURITY_DATABASE L"db"
|
||||
///
|
||||
/// Varialbe name with guid EFI_IMAGE_SECURITY_DATABASE_GUID
|
||||
/// Variable name with guid EFI_IMAGE_SECURITY_DATABASE_GUID
|
||||
/// for the forbidden signature database.
|
||||
///
|
||||
#define EFI_IMAGE_SECURITY_DATABASE1 L"dbx"
|
||||
|
|
|
|||
|
|
@ -449,7 +449,7 @@ typedef struct {
|
|||
#define EFI_ACPI_2_0_SIMPLE_BOOT_FLAG_TABLE_SIGNATURE SIGNATURE_32('B', 'O', 'O', 'T')
|
||||
|
||||
///
|
||||
/// "DBGP" MS Bebug Port Spec
|
||||
/// "DBGP" MS Debug Port Spec
|
||||
///
|
||||
#define EFI_ACPI_2_0_DEBUG_PORT_TABLE_SIGNATURE SIGNATURE_32('D', 'B', 'G', 'P')
|
||||
|
||||
|
|
|
|||
|
|
@ -1652,13 +1652,13 @@ typedef struct {
|
|||
#define EFI_ACPI_6_3_SECURE_DEVICES_TABLE_REVISION 0x01
|
||||
|
||||
///
|
||||
/// Secure Devcice types
|
||||
/// Secure Device types
|
||||
///
|
||||
#define EFI_ACPI_6_3_SDEV_TYPE_PCIE_ENDPOINT_DEVICE 0x01
|
||||
#define EFI_ACPI_6_3_SDEV_TYPE_ACPI_NAMESPACE_DEVICE 0x00
|
||||
|
||||
///
|
||||
/// Secure Devcice flags
|
||||
/// Secure Device flags
|
||||
///
|
||||
#define EFI_ACPI_6_3_SDEV_FLAG_ALLOW_HANDOFF BIT0
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ typedef struct {
|
|||
/// Signaling Mode bits [1:0]
|
||||
/// 0x0 - SDEI based signaling mode
|
||||
/// 0x1 - Interrupt based signaling mode
|
||||
/// 0x2 - Both SDEI and Interuppt based signaling mode
|
||||
/// 0x2 - Both SDEI and Interrupt based signaling mode
|
||||
/// Rest of the bits [7:2] are reserved
|
||||
UINT8 Flags;
|
||||
|
||||
|
|
|
|||
|
|
@ -331,7 +331,7 @@ typedef struct {
|
|||
/// Type of GIC interface that is associated with this error node.
|
||||
/// 0x0 - GIC CPU (GICC)
|
||||
/// 0x1 - GIC Distributor (GICD)
|
||||
/// 0x2 - GIC Resistributor (GICR)
|
||||
/// 0x2 - GIC Redistributor (GICR)
|
||||
/// 0x3 - GIC ITS (GITS)
|
||||
UINT32 InterfaceType;
|
||||
|
||||
|
|
|
|||
|
|
@ -249,7 +249,7 @@ typedef struct {
|
|||
} ATAPI_IDENTIFY_DATA;
|
||||
|
||||
///
|
||||
/// Standard Quiry Data format, defined in SFF-8070i(ATAPI Removable Rewritable Specification).
|
||||
/// Standard Inquiry Data format, defined in SFF-8070i(ATAPI Removable Rewritable Specification).
|
||||
///
|
||||
typedef struct {
|
||||
UINT8 peripheral_type;
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
/// Coherent Device Attribute Table 1.01 Specification.
|
||||
///
|
||||
typedef struct {
|
||||
UINT32 Length; // Length of the enture table in bytes.
|
||||
UINT32 Length; // Length of the entire table in bytes.
|
||||
UINT8 Revision; // Must be 1.
|
||||
UINT8 Checksum; // Checksum value that results in sum of 0.
|
||||
UINT8 Reserved[6];
|
||||
|
|
|
|||
|
|
@ -125,7 +125,7 @@ typedef union {
|
|||
/// Section Header Entry
|
||||
///
|
||||
struct {
|
||||
UINT8 Indicator; ///< 90 - Header, more header follw, 91 - Final Header
|
||||
UINT8 Indicator; ///< 90 - Header, more header follow, 91 - Final Header
|
||||
UINT8 PlatformId;
|
||||
UINT16 SectionEntries; ///< Number of section entries following this header
|
||||
CHAR8 Id[28];
|
||||
|
|
|
|||
|
|
@ -524,7 +524,7 @@ typedef struct {
|
|||
//
|
||||
|
||||
//
|
||||
// Definitions for Set Session Privelege Level command
|
||||
// Definitions for Set Session Privilege Level command
|
||||
//
|
||||
#define IPMI_APP_SET_SESSION_PRIVILEGE_LEVEL 0x3B
|
||||
// This misspelling is kept temporarily for backwards compatibility and will
|
||||
|
|
@ -532,7 +532,7 @@ typedef struct {
|
|||
#define IPMI_APP_SET_SESSION_PRIVELEGE_LEVEL IPMI_APP_SET_SESSION_PRIVILEGE_LEVEL
|
||||
|
||||
//
|
||||
// Constants and Structure definitions for "Set Session Privelege Level" command to follow here
|
||||
// Constants and Structure definitions for "Set Session Privilege Level" command to follow here
|
||||
//
|
||||
|
||||
//
|
||||
|
|
|
|||
|
|
@ -96,7 +96,7 @@ typedef struct {
|
|||
// Characteristics
|
||||
//
|
||||
#define EFI_IMAGE_FILE_RELOCS_STRIPPED BIT0 ///< 0x0001 Relocation info stripped from file.
|
||||
#define EFI_IMAGE_FILE_EXECUTABLE_IMAGE BIT1 ///< 0x0002 File is executable (i.e. no unresolved externel references).
|
||||
#define EFI_IMAGE_FILE_EXECUTABLE_IMAGE BIT1 ///< 0x0002 File is executable (i.e. no unresolved external references).
|
||||
#define EFI_IMAGE_FILE_LINE_NUMS_STRIPPED BIT2 ///< 0x0004 Line numbers stripped from file.
|
||||
#define EFI_IMAGE_FILE_LOCAL_SYMS_STRIPPED BIT3 ///< 0x0008 Local symbols stripped from file.
|
||||
#define EFI_IMAGE_FILE_LARGE_ADDRESS_AWARE BIT5 ///< 0x0020 Supports addresses > 2-GB
|
||||
|
|
|
|||
|
|
@ -2813,7 +2813,7 @@ typedef struct {
|
|||
/// 00h - 3Fh: MCTP Host Interfaces
|
||||
///
|
||||
typedef enum {
|
||||
// MCTP Host Interface type indentifiers as defined in DSP0239
|
||||
// MCTP Host Interface type identifiers as defined in DSP0239
|
||||
MCHostInterfaceTypeKCS = 0x02,
|
||||
MCHostInterfaceType8250_UARTRegisterCompatible = 0x03,
|
||||
MCHostInterfaceType16450_UARTRegisterCompatible = 0x04,
|
||||
|
|
|
|||
|
|
@ -300,10 +300,10 @@ typedef struct {
|
|||
///
|
||||
typedef struct _SFDP_SECTOR_REGION {
|
||||
// DWORD 1
|
||||
UINT32 EraseType1 : 1; ///< Earse type 1 is supported.
|
||||
UINT32 EraseType2 : 1; ///< Earse type 2 is supported.
|
||||
UINT32 EraseType3 : 1; ///< Earse type 3 is supported.
|
||||
UINT32 EraseType4 : 1; ///< Earse type 4 is supported.
|
||||
UINT32 EraseType1 : 1; ///< Erase type 1 is supported.
|
||||
UINT32 EraseType2 : 1; ///< Erase type 2 is supported.
|
||||
UINT32 EraseType3 : 1; ///< Erase type 3 is supported.
|
||||
UINT32 EraseType4 : 1; ///< Erase type 4 is supported.
|
||||
UINT32 Reserve1 : 4; ///< Bit [7:4] is reserved.
|
||||
UINT32 RegionSize : 24; ///< Region size in 256 Byte unit.
|
||||
} SFDP_SECTOR_REGION;
|
||||
|
|
|
|||
|
|
@ -314,7 +314,7 @@ typedef UINT32 TPM_FAMILY_OPERATION;
|
|||
#define TPM_ET_OPERATOR ((UINT16) 0x000C) ///< The entity is the operator
|
||||
#define TPM_ET_RESERVED_HANDLE ((UINT16) 0x0040) ///< Reserved. This value avoids collisions with the handle MSB setting.
|
||||
//
|
||||
// TPM_ENTITY_TYPE MSB Values: The MSB is used to indicate the ADIP encryption sheme when applicable
|
||||
// TPM_ENTITY_TYPE MSB Values: The MSB is used to indicate the ADIP encryption scheme when applicable
|
||||
//
|
||||
#define TPM_ET_XOR ((UINT16) 0x0000) ///< ADIP encryption scheme: XOR
|
||||
#define TPM_ET_AES128 ((UINT16) 0x0006) ///< ADIP encryption scheme: AES 128 bits
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@
|
|||
#define USB_DEV_SYNCH_FRAME_REQ_TYPE 0x82
|
||||
|
||||
//
|
||||
// USB standard descriptors and reqeust
|
||||
// USB standard descriptors and request
|
||||
//
|
||||
#pragma pack(1)
|
||||
|
||||
|
|
|
|||
|
|
@ -677,7 +677,7 @@ ArmHasCcidx (
|
|||
Checks whether the CPU implements the Virtualization Host Extensions.
|
||||
|
||||
@retval TRUE FEAT_VHE is implemented.
|
||||
@retval FALSE FEAT_VHE is not mplemented.
|
||||
@retval FALSE FEAT_VHE is not implemented.
|
||||
**/
|
||||
BOOLEAN
|
||||
EFIAPI
|
||||
|
|
@ -689,7 +689,7 @@ ArmHasVhe (
|
|||
Checks whether the CPU implements the Trace Buffer Extension.
|
||||
|
||||
@retval TRUE FEAT_TRBE is implemented.
|
||||
@retval FALSE FEAT_TRBE is not mplemented.
|
||||
@retval FALSE FEAT_TRBE is not implemented.
|
||||
**/
|
||||
BOOLEAN
|
||||
EFIAPI
|
||||
|
|
@ -701,7 +701,7 @@ ArmHasTrbe (
|
|||
Checks whether the CPU implements the Embedded Trace Extension.
|
||||
|
||||
@retval TRUE FEAT_ETE is implemented.
|
||||
@retval FALSE FEAT_ETE is not mplemented.
|
||||
@retval FALSE FEAT_ETE is not implemented.
|
||||
**/
|
||||
BOOLEAN
|
||||
EFIAPI
|
||||
|
|
|
|||
|
|
@ -356,7 +356,7 @@ typedef struct {
|
|||
/*
|
||||
* Set the exception base address for LoongArch.
|
||||
*
|
||||
* @param ExceptionBaseAddress The exception base address, must be aligned greater than or qeual to 4K .
|
||||
* @param ExceptionBaseAddress The exception base address, must be aligned greater than or equal to 4K .
|
||||
*/
|
||||
VOID
|
||||
SetExceptionBaseAddress (
|
||||
|
|
@ -366,7 +366,7 @@ SetExceptionBaseAddress (
|
|||
/*
|
||||
* Set the TlbRebase address for LoongArch.
|
||||
*
|
||||
* @param TlbRebaseAddress The TlbRebase address, must be aligned greater than or qeual to 4K .
|
||||
* @param TlbRebaseAddress The TlbRebase address, must be aligned greater than or equal to 4K .
|
||||
*/
|
||||
VOID
|
||||
SetTlbRebaseAddress (
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
|
|||
#include <ConfidentialComputingGuestAttr.h>
|
||||
|
||||
/**
|
||||
Probe the ConfidentialComputing Guest type. See defition of
|
||||
Probe the ConfidentialComputing Guest type. See definition of
|
||||
CC_GUEST_TYPE in <ConfidentialComputingGuestAttr.h>.
|
||||
|
||||
@return The guest type
|
||||
|
|
|
|||
|
|
@ -332,7 +332,7 @@ AppendDevicePathNode (
|
|||
path.
|
||||
|
||||
This function creates a new device path by appending a copy of the device path instance specified
|
||||
by DevicePathInstance to a copy of the device path secified by DevicePath in a allocated buffer.
|
||||
by DevicePathInstance to a copy of the device path specified by DevicePath in a allocated buffer.
|
||||
The end-of-device-path device node is moved after the end of the appended device path instance
|
||||
and a new end-of-device-path-instance node is inserted between.
|
||||
If DevicePath is NULL, then a copy if DevicePathInstance is returned.
|
||||
|
|
|
|||
|
|
@ -865,7 +865,7 @@ FdtPathOffset (
|
|||
Returns the name of a given node.
|
||||
|
||||
@param[in] Fdt The pointer to FDT blob.
|
||||
@param[in] NodeOffse Offset of node to check.
|
||||
@param[in] NodeOffset Offset of node to check.
|
||||
@param[in] Length The pointer to an integer variable (will be overwritten) or NULL.
|
||||
|
||||
@return The pointer to the node's name.
|
||||
|
|
|
|||
|
|
@ -1391,7 +1391,7 @@ LibPcdCallbackOnSet (
|
|||
);
|
||||
|
||||
/**
|
||||
Disable a notification function that was established with LibPcdCallbackonSet().
|
||||
Disable a notification function that was established with LibPcdCallbackOnSet().
|
||||
|
||||
Disable a notification function that was previously established with LibPcdCallbackOnSet().
|
||||
If NotificationFunction is NULL, then ASSERT().
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ extern CONST UINT32 _gPeimRevision;
|
|||
|
||||
This function is the entry point for a PEIM. This function must call ProcessLibraryConstructorList()
|
||||
and ProcessModuleEntryPointList(). The return value from ProcessModuleEntryPointList() is returned.
|
||||
If _gPeimRevision is not zero and PeiServices->Hdr.Revision is less than _gPeimRevison, then ASSERT().
|
||||
If _gPeimRevision is not zero and PeiServices->Hdr.Revision is less than _gPeimRevision, then ASSERT().
|
||||
|
||||
@param FileHandle Handle of the file being invoked.
|
||||
@param PeiServices Describes the list of possible PEI Services.
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ FilterAfterIoRead (
|
|||
);
|
||||
|
||||
/**
|
||||
Filter IO Write operation before wirte IO port.
|
||||
Filter IO Write operation before write IO port.
|
||||
It is used to filter IO operation.
|
||||
|
||||
It will return the flag to decide whether require read write IO port.
|
||||
|
|
@ -80,7 +80,7 @@ FilterBeforeIoWrite (
|
|||
);
|
||||
|
||||
/**
|
||||
Trace IO Write operation after wirte IO port.
|
||||
Trace IO Write operation after write IO port.
|
||||
It is used to trace IO operation.
|
||||
|
||||
@param[in] Width Signifies the width of the I/O operation.
|
||||
|
|
@ -137,7 +137,7 @@ FilterAfterMmIoRead (
|
|||
/**
|
||||
Filter memory IO before write operation
|
||||
|
||||
It will return the flag to decide whether require wirte real MMIO.
|
||||
It will return the flag to decide whether require write real MMIO.
|
||||
It can be used for emulation environment.
|
||||
|
||||
@param[in] Width Signifies the width of the memory I/O operation.
|
||||
|
|
|
|||
|
|
@ -518,7 +518,7 @@ S3BootScriptExecute (
|
|||
Move the last boot script entry to the position
|
||||
|
||||
@param BeforeOrAfter Specifies whether the opcode is stored before
|
||||
(TRUE) or after (FALSE) the positionin the boot
|
||||
(TRUE) or after (FALSE) the position in the boot
|
||||
script table specified by Position. If Position
|
||||
is NULL or points to NULL then the new opcode is
|
||||
inserted at the beginning of the table (if TRUE)
|
||||
|
|
@ -553,7 +553,7 @@ S3BootScriptMoveLastOpcode (
|
|||
@param Position On entry, specifies the position in the boot script
|
||||
table where the opcode will be inserted, either
|
||||
before or after, depending on BeforeOrAfter. On exit,
|
||||
specifies the positionof the inserted opcode in
|
||||
specifies the position of the inserted opcode in
|
||||
the boot script table.
|
||||
@param Label Points to the label which will be inserted in the
|
||||
boot script table.
|
||||
|
|
@ -584,8 +584,8 @@ S3BootScriptLabel (
|
|||
@retval EFI_SUCCESS The operation succeeded. A record was added into the
|
||||
specified script table.
|
||||
@retval EFI_INVALID_PARAMETER The parameter is illegal or the given boot script
|
||||
is not supported. If the opcode is unknow or not s
|
||||
upported because of the PCD Feature Flags.
|
||||
is not supported. If the opcode is unknown or not
|
||||
supported because of the PCD Feature Flags.
|
||||
@retval EFI_OUT_OF_RESOURCES There is insufficient memory to store the boot script.
|
||||
@note The FRAMEWORK version implementation does not support this API
|
||||
**/
|
||||
|
|
|
|||
|
|
@ -984,7 +984,7 @@ S3PciBitFieldAndThenOr32 (
|
|||
Size into the buffer specified by Buffer. This function only allows the PCI
|
||||
configuration registers from a single PCI function to be read. Size is
|
||||
returned. When possible 32-bit PCI configuration read cycles are used to read
|
||||
from StartAdress to StartAddress + Size. Due to alignment restrictions, 8-bit
|
||||
from StartAddress to StartAddress + Size. Due to alignment restrictions, 8-bit
|
||||
and 16-bit PCI configuration read cycles may be used at the beginning and the
|
||||
end of the range.
|
||||
|
||||
|
|
@ -1017,7 +1017,7 @@ S3PciReadBuffer (
|
|||
Size from the buffer specified by Buffer. This function only allows the PCI
|
||||
configuration registers from a single PCI function to be written. Size is
|
||||
returned. When possible 32-bit PCI configuration write cycles are used to
|
||||
write from StartAdress to StartAddress + Size. Due to alignment restrictions,
|
||||
write from StartAddress to StartAddress + Size. Due to alignment restrictions,
|
||||
8-bit and 16-bit PCI configuration write cycles may be used at the beginning
|
||||
and the end of the range.
|
||||
|
||||
|
|
|
|||
|
|
@ -969,7 +969,7 @@ S3PciSegmentBitFieldAndThenOr32 (
|
|||
Size into the buffer specified by Buffer. This function only allows the PCI
|
||||
configuration registers from a single PCI function to be read. Size is
|
||||
returned. When possible 32-bit PCI configuration read cycles are used to read
|
||||
from StartAdress to StartAddress + Size. Due to alignment restrictions, 8-bit
|
||||
from StartAddress to StartAddress + Size. Due to alignment restrictions, 8-bit
|
||||
and 16-bit PCI configuration read cycles may be used at the beginning and the
|
||||
end of the range.
|
||||
|
||||
|
|
@ -1002,7 +1002,7 @@ S3PciSegmentReadBuffer (
|
|||
Size from the buffer specified by Buffer. This function only allows the PCI
|
||||
configuration registers from a single PCI function to be written. Size is
|
||||
returned. When possible 32-bit PCI configuration write cycles are used to
|
||||
write from StartAdress to StartAddress + Size. Due to alignment restrictions,
|
||||
write from StartAddress to StartAddress + Size. Due to alignment restrictions,
|
||||
8-bit and 16-bit PCI configuration write cycles may be used at the beginning
|
||||
and the end of the range.
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ SerialPortWrite (
|
|||
);
|
||||
|
||||
/**
|
||||
Read data from serial device and save the datas in buffer.
|
||||
Read data from serial device and save the data in buffer.
|
||||
|
||||
Reads NumberOfBytes data bytes from a serial device into the buffer
|
||||
specified by Buffer. The number of bytes actually read is returned.
|
||||
|
|
@ -126,13 +126,13 @@ SerialPortGetControl (
|
|||
);
|
||||
|
||||
/**
|
||||
Sets the baud rate, receive FIFO depth, transmit/receice time out, parity,
|
||||
Sets the baud rate, receive FIFO depth, transmit/receive time out, parity,
|
||||
data bits, and stop bits on a serial device.
|
||||
|
||||
@param BaudRate The requested baud rate. A BaudRate value of 0 will use the
|
||||
device's default interface speed.
|
||||
On output, the value actually set.
|
||||
@param ReveiveFifoDepth The requested depth of the FIFO on the receive side of the
|
||||
@param ReceiveFifoDepth The requested depth of the FIFO on the receive side of the
|
||||
serial interface. A ReceiveFifoDepth value of 0 will use
|
||||
the device's default FIFO depth.
|
||||
On output, the value actually set.
|
||||
|
|
@ -145,7 +145,7 @@ SerialPortGetControl (
|
|||
DefaultParity will use the device's default parity value.
|
||||
On output, the value actually set.
|
||||
@param DataBits The number of data bits to use on the serial device. A DataBits
|
||||
vaule of 0 will use the device's default data bit setting.
|
||||
value of 0 will use the device's default data bit setting.
|
||||
On output, the value actually set.
|
||||
@param StopBits The number of stop bits to use on this serial device. A StopBits
|
||||
value of DefaultStopBits will use the device's default number of
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ extern CONST UINT32 _gUefiDriverRevision;
|
|||
This function is the entry point for a UEFI Application. This function must call
|
||||
ProcessLibraryConstructorList(), ProcessModuleEntryPointList(), and ProcessLibraryDestructorList().
|
||||
The return value from ProcessModuleEntryPointList() is returned.
|
||||
If _gUefiDriverRevision is not zero and SystemTable->Hdr.Revision is less than _gUefiDriverRevison,
|
||||
If _gUefiDriverRevision is not zero and SystemTable->Hdr.Revision is less than _gUefiDriverRevision,
|
||||
then return EFI_INCOMPATIBLE_VERSION.
|
||||
|
||||
@param ImageHandle The image handle of the UEFI Application.
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ extern CONST UINT8 _gDriverUnloadImageCount;
|
|||
from ProcessModuleEntryPointList() is returned. If _gDriverUnloadImageCount is greater
|
||||
than zero, then an unload handler must be registered for this image and the unload handler
|
||||
must invoke ProcessModuleUnloadList().
|
||||
If _gUefiDriverRevision is not zero and SystemTable->Hdr.Revision is less than _gUefiDriverRevison,
|
||||
If _gUefiDriverRevision is not zero and SystemTable->Hdr.Revision is less than _gUefiDriverRevision,
|
||||
then return EFI_INCOMPATIBLE_VERSION.
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -175,7 +175,7 @@ EfiCreateProtocolNotifyEvent (
|
|||
/**
|
||||
Creates a named event that can be signaled with EfiNamedEventSignal().
|
||||
|
||||
This function creates an event using NotifyTpl, NoifyFunction, and NotifyContext.
|
||||
This function creates an event using NotifyTpl, NotifyFunction, and NotifyContext.
|
||||
This event is signaled with EfiNamedEventSignal(). This provides the ability for one or more
|
||||
listeners on the same event named by the GUID specified by Name.
|
||||
If Name is NULL, then ASSERT().
|
||||
|
|
@ -620,7 +620,7 @@ AddUnicodeString (
|
|||
the RFC 4646 language code for the Unicode string to add.
|
||||
If Iso639Language is TRUE, then this ASCII string is not
|
||||
assumed to be Null-terminated, and only the first three
|
||||
chacters are used. If Iso639Language is FALSE, then this
|
||||
characters are used. If Iso639Language is FALSE, then this
|
||||
ASCII string must be Null-terminated.
|
||||
@param SupportedLanguages A pointer to a Null-terminated ASCII string that contains
|
||||
a set of ISO 639-2 or RFC 4646 language codes that the Unicode
|
||||
|
|
|
|||
|
|
@ -228,7 +228,7 @@ EfiGetVariable (
|
|||
As output, returns the name of variable. The name
|
||||
string is Null-Terminated Unicode string.
|
||||
@param VendorGuid As input, supplies the last VendorGuid that was returned by
|
||||
GetNextVriableName().
|
||||
GetNextVariableName().
|
||||
As output, returns the VendorGuid of the current variable.
|
||||
|
||||
@retval EFI_SUCCESS The function completed successfully.
|
||||
|
|
@ -395,7 +395,7 @@ EfiConvertPointer (
|
|||
ConvertPointer(). See the UEFI Specification for details.
|
||||
For IPF, this function interprets Address as a pointer to an EFI_PLABEL structure
|
||||
and both the EntryPoint and GP fields of an EFI_PLABEL are converted from physical
|
||||
to virtiual addressing. Since IPF allows the GP to point to an address outside
|
||||
to virtual addressing. Since IPF allows the GP to point to an address outside
|
||||
a PE/COFF image, the physical to virtual offset for the EntryPoint field is used
|
||||
to adjust the GP field. The UEFI Runtime Service ConvertPointer() is used to convert
|
||||
EntryPoint and the status code for this conversion is always returned. If the convertion
|
||||
|
|
@ -491,7 +491,7 @@ EfiConvertList (
|
|||
ScatterGatherList. The CapsuleHeaderArray must
|
||||
have the capsules in the same order as the ScatterGatherList.
|
||||
@param CapsuleCount Number of pointers to EFI_CAPSULE_HEADER in
|
||||
CaspuleHeaderArray.
|
||||
CapsuleHeaderArray.
|
||||
@param ScatterGatherList Physical pointer to a set of
|
||||
EFI_CAPSULE_BLOCK_DESCRIPTOR that describes the
|
||||
location in physical memory of a set of capsules. See Related
|
||||
|
|
@ -542,7 +542,7 @@ EfiUpdateCapsule (
|
|||
being passed into update capsule. The capsules are assumed to
|
||||
stored in contiguous virtual memory.
|
||||
@param CapsuleCount Number of pointers to EFI_CAPSULE_HEADER in
|
||||
CaspuleHeaderArray.
|
||||
CapsuleHeaderArray.
|
||||
@param MaximumCapsuleSize On output the maximum size that UpdateCapsule() can
|
||||
support as an argument to UpdateCapsule() via
|
||||
CapsuleHeaderArray and ScatterGatherList.
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
and the standard requests defined in USB 1.1 spec.
|
||||
|
||||
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2024, American Megatrends Intenational LLC. All rights reserved.<BR>
|
||||
Copyright (c) 2024, American Megatrends International LLC. All rights reserved.<BR>
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
||||
**/
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
|
|||
#include <Pi/PiMultiPhase.h>
|
||||
|
||||
///
|
||||
/// Global Coherencey Domain types - Memory type.
|
||||
/// Global Coherency Domain types - Memory type.
|
||||
///
|
||||
typedef enum {
|
||||
///
|
||||
|
|
@ -64,7 +64,7 @@ typedef enum {
|
|||
} EFI_GCD_MEMORY_TYPE;
|
||||
|
||||
///
|
||||
/// Global Coherencey Domain types - IO type.
|
||||
/// Global Coherency Domain types - IO type.
|
||||
///
|
||||
typedef enum {
|
||||
///
|
||||
|
|
|
|||
|
|
@ -254,7 +254,7 @@ VOID
|
|||
|
||||
@param[in] ProcedureArgument The pointer to private data buffer.
|
||||
|
||||
@retval EFI_SUCCESS Excutive the procedure successfully
|
||||
@retval EFI_SUCCESS Excecuted the procedure successfully
|
||||
|
||||
**/
|
||||
typedef
|
||||
|
|
|
|||
|
|
@ -313,7 +313,7 @@ EFI_STATUS
|
|||
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
||||
@param Instance This instance of the firmware volume to find.
|
||||
The value 0 is the Boot Firmware Volume (BFV).
|
||||
@param VolumeHandle On exit, points to the next volumn handle or NULL if it does not exist.
|
||||
@param VolumeHandle On exit, points to the next volume handle or NULL if it does not exist.
|
||||
|
||||
@retval EFI_SUCCESS The volume was found.
|
||||
@retval EFI_NOT_FOUND The volume was not found.
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ EFI_STATUS
|
|||
);
|
||||
|
||||
/**
|
||||
Activate all of the application proessors.
|
||||
Activate all of the application processors.
|
||||
|
||||
@param[in] This A pointer to the EFI_PEI_MP_SERVICES2_PPI instance.
|
||||
@param[in] Procedure A pointer to the function to be run on enabled APs of
|
||||
|
|
@ -237,7 +237,7 @@ EFI_STATUS
|
|||
);
|
||||
|
||||
/**
|
||||
Activate all of the application proessors.
|
||||
Activate all of the application processors.
|
||||
|
||||
@param[in] This A pointer to the EFI_PEI_MP_SERVICES2_PPI instance.
|
||||
@param[in] Procedure A pointer to the function to be run on enabled APs of
|
||||
|
|
|
|||
|
|
@ -165,9 +165,9 @@ typedef struct {
|
|||
|
||||
@param[in] This A pointer to the EFI_ADAPTER_INFORMATION_PROTOCOL instance.
|
||||
@param[in] InformationType A pointer to an EFI_GUID that defines the contents of InformationBlock.
|
||||
@param[out] InforamtionBlock The service returns a pointer to the buffer with the InformationBlock
|
||||
@param[out] InformationBlock The service returns a pointer to the buffer with the InformationBlock
|
||||
structure which contains details about the data specific to InformationType.
|
||||
@param[out] InforamtionBlockSize The driver returns the size of the InformationBlock in bytes.
|
||||
@param[out] InformationBlockSize The driver returns the size of the InformationBlock in bytes.
|
||||
|
||||
@retval EFI_SUCCESS The InformationType information was retrieved.
|
||||
@retval EFI_UNSUPPORTED The InformationType is not known.
|
||||
|
|
@ -197,9 +197,9 @@ EFI_STATUS
|
|||
|
||||
@param[in] This A pointer to the EFI_ADAPTER_INFORMATION_PROTOCOL instance.
|
||||
@param[in] InformationType A pointer to an EFI_GUID that defines the contents of InformationBlock.
|
||||
@param[in] InforamtionBlock A pointer to the InformationBlock structure which contains details
|
||||
@param[in] InformationBlock A pointer to the InformationBlock structure which contains details
|
||||
about the data specific to InformationType.
|
||||
@param[in] InforamtionBlockSize The size of the InformationBlock in bytes.
|
||||
@param[in] InformationBlockSize The size of the InformationBlock in bytes.
|
||||
|
||||
@retval EFI_SUCCESS The information was received and interpreted successfully.
|
||||
@retval EFI_UNSUPPORTED The InformationType is not known.
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@ EFI_STATUS
|
|||
@retval EFI_WRITE_PROTECTED The device can not be written to.
|
||||
@retval EFI_DEVICE_ERROR The device reported an error while performing the write.
|
||||
@retval EFI_NO_MEDIA There is no media in the device.
|
||||
@retval EFI_MEDIA_CHNAGED The MediaId does not matched the current device.
|
||||
@retval EFI_MEDIA_CHANGED The MediaId does not matched the current device.
|
||||
@retval EFI_BAD_BUFFER_SIZE The Buffer was not a multiple of the block size of the device.
|
||||
@retval EFI_INVALID_PARAMETER The write request contains LBAs that are not valid,
|
||||
or the buffer is not on proper alignment.
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ typedef struct {
|
|||
|
||||
@param[in] This Indicates a pointer to the calling context.
|
||||
@param[in] ExtendedVerification Indicates that the driver may perform a more
|
||||
exhausive verification operation of the device
|
||||
exhaustive verification operation of the device
|
||||
during reset.
|
||||
|
||||
@retval EFI_SUCCESS The device was reset.
|
||||
|
|
@ -124,7 +124,7 @@ EFI_STATUS
|
|||
the Event is NULL.
|
||||
@retval EFI_WRITE_PROTECTED The device can not be written to.
|
||||
@retval EFI_NO_MEDIA There is no media in the device.
|
||||
@retval EFI_MEDIA_CHNAGED The MediaId does not matched the current device.
|
||||
@retval EFI_MEDIA_CHANGED The MediaId does not matched the current device.
|
||||
@retval EFI_DEVICE_ERROR The device reported an error while performing the write.
|
||||
@retval EFI_BAD_BUFFER_SIZE The Buffer was not a multiple of the block size of the device.
|
||||
@retval EFI_INVALID_PARAMETER The write request contains LBAs that are not valid,
|
||||
|
|
|
|||
|
|
@ -167,7 +167,7 @@ typedef struct {
|
|||
up to the platform firmware or driver to implement.
|
||||
|
||||
@param[in] This Pointer to the EFI_BLOCK_IO_CRYPTO_PROTOCOL instance.
|
||||
@param[in] ExtendedVerification Indicates that the driver may perform a more exhausive
|
||||
@param[in] ExtendedVerification Indicates that the driver may perform a more exhaustive
|
||||
verification operation of the device during reset.
|
||||
|
||||
@retval EFI_SUCCESS The block device was reset.
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ typedef struct {
|
|||
///
|
||||
BLUETOOTH_ADDRESS BDAddr;
|
||||
///
|
||||
/// State of the remote deive
|
||||
/// State of the remote device
|
||||
///
|
||||
UINT8 RemoteDeviceState;
|
||||
///
|
||||
|
|
|
|||
|
|
@ -686,7 +686,7 @@ typedef struct {
|
|||
/// register offset 16 bits, width 6 bits.
|
||||
///
|
||||
/// If you want to register an exception hook, you can
|
||||
/// shfit the number left by 16 bits, and the exception
|
||||
/// shift the number left by 16 bits, and the exception
|
||||
/// handler will know the types.
|
||||
///
|
||||
/// For example:
|
||||
|
|
|
|||
|
|
@ -458,7 +458,7 @@ EFI_STATUS
|
|||
Otherwise, the state was left unchanged.
|
||||
@retval EFI_ACCESS_DENIED This instance of the EFI DHCPv4 Protocol driver was not in the
|
||||
Dhcp4Stopped, Dhcp4Init, Dhcp4InitReboot, or Dhcp4Bound state;
|
||||
Or onother instance of this EFI DHCPv4 Protocol driver is already
|
||||
Or another instance of this EFI DHCPv4 Protocol driver is already
|
||||
in a valid configured state.
|
||||
@retval EFI_INVALID_PARAMETER One or more following conditions are TRUE:
|
||||
This is NULL.
|
||||
|
|
|
|||
|
|
@ -203,11 +203,11 @@ typedef struct {
|
|||
|
||||
typedef struct {
|
||||
///
|
||||
/// Length of DUID in octects.
|
||||
/// Length of DUID in octets.
|
||||
///
|
||||
UINT16 Length;
|
||||
///
|
||||
/// Array of DUID octects.
|
||||
/// Array of DUID octets.
|
||||
///
|
||||
UINT8 Duid[1];
|
||||
} EFI_DHCP6_DUID;
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ typedef EFI_DISK_IO_PROTOCOL EFI_DISK_IO;
|
|||
@retval EFI_SUCCESS The data was read correctly from the device.
|
||||
@retval EFI_DEVICE_ERROR The device reported an error while performing the read.
|
||||
@retval EFI_NO_MEDIA There is no media in the device.
|
||||
@retval EFI_MEDIA_CHNAGED The MediaId does not matched the current device.
|
||||
@retval EFI_MEDIA_CHANGED The MediaId does not matched the current device.
|
||||
@retval EFI_INVALID_PARAMETER The read request contains device addresses that are not
|
||||
valid for the device.
|
||||
|
||||
|
|
@ -69,7 +69,7 @@ EFI_STATUS
|
|||
@retval EFI_WRITE_PROTECTED The device can not be written to.
|
||||
@retval EFI_DEVICE_ERROR The device reported an error while performing the write.
|
||||
@retval EFI_NO_MEDIA There is no media in the device.
|
||||
@retval EFI_MEDIA_CHNAGED The MediaId does not matched the current device.
|
||||
@retval EFI_MEDIA_CHANGED The MediaId does not matched the current device.
|
||||
@retval EFI_INVALID_PARAMETER The write request contains device addresses that are not
|
||||
valid for the device.
|
||||
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ EFI_STATUS
|
|||
Event will be signaled upon completion.
|
||||
@retval EFI_DEVICE_ERROR The device reported an error while performing the write.
|
||||
@retval EFI_NO_MEDIA There is no medium in the device.
|
||||
@retval EFI_MEDIA_CHNAGED The MediaId is not for the current medium.
|
||||
@retval EFI_MEDIA_CHANGED The MediaId is not for the current medium.
|
||||
@retval EFI_INVALID_PARAMETER The read request contains device addresses that are not valid for the device.
|
||||
@retval EFI_OUT_OF_RESOURCES The request could not be completed due to a lack of resources.
|
||||
|
||||
|
|
@ -102,7 +102,7 @@ EFI_STATUS
|
|||
@retval EFI_WRITE_PROTECTED The device cannot be written to.
|
||||
@retval EFI_DEVICE_ERROR The device reported an error while performing the write operation.
|
||||
@retval EFI_NO_MEDIA There is no medium in the device.
|
||||
@retval EFI_MEDIA_CHNAGED The MediaId is not for the current medium.
|
||||
@retval EFI_MEDIA_CHANGED The MediaId is not for the current medium.
|
||||
@retval EFI_INVALID_PARAMETER The write request contains device addresses that are not valid for the device.
|
||||
@retval EFI_OUT_OF_RESOURCES The request could not be completed due to a lack of resources.
|
||||
|
||||
|
|
@ -132,7 +132,7 @@ EFI_STATUS
|
|||
@retval EFI_WRITE_PROTECTED The device cannot be written to.
|
||||
@retval EFI_DEVICE_ERROR The device reported an error while performing the write operation.
|
||||
@retval EFI_NO_MEDIA There is no medium in the device.
|
||||
@retval EFI_MEDIA_CHNAGED The MediaId is not for the current medium.
|
||||
@retval EFI_MEDIA_CHANGED The MediaId is not for the current medium.
|
||||
@retval EFI_OUT_OF_RESOURCES The request could not be completed due to a lack of resources.
|
||||
**/
|
||||
typedef
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ typedef struct {
|
|||
UINTN DnsServerListCount;
|
||||
///
|
||||
/// Pointer to DNS server list containing DnsServerListCount entries or NULL
|
||||
/// if DnsServerListCountis 0. For Configure(), this will be NULL when there are
|
||||
/// if DnsServerListCount is 0. For Configure(), this will be NULL when there are
|
||||
/// no caller supplied server addresses, and, the DNS instance will retrieve
|
||||
/// DNS server from DHCP Server. The provided DNS server list is
|
||||
/// recommended to be filled up in the sequence of preference. When
|
||||
|
|
@ -428,8 +428,8 @@ EFI_STATUS
|
|||
|
||||
@param[in] This Pointer to EFI_DNS4_PROTOCOL instance.
|
||||
@param[in] DeleteFlag If FALSE, this function is to add one entry to the
|
||||
DNS Cahce. If TRUE, this function will delete
|
||||
matching DNS Cache entry.
|
||||
DNS cache. If TRUE, this function will delete
|
||||
matching DNS cache entry.
|
||||
@param[in] Override If TRUE, the maching DNS cache entry will be
|
||||
overwritten with the supplied parameter. If FALSE,
|
||||
EFI_ACCESS_DENIED will be returned if the entry to
|
||||
|
|
|
|||
|
|
@ -421,8 +421,8 @@ EFI_STATUS
|
|||
|
||||
@param[in] This Pointer to EFI_DNS6_PROTOCOL instance.
|
||||
@param[in] DeleteFlag If FALSE, this function is to add one entry to the
|
||||
DNS Cahce. If TRUE, this function will delete
|
||||
matching DNS Cache entry.
|
||||
DNS cache. If TRUE, this function will delete
|
||||
matching DNS cache entry.
|
||||
@param[in] Override If TRUE, the maching DNS cache entry will be
|
||||
overwritten with the supplied parameter. If FALSE,
|
||||
EFI_ACCESS_DENIED will be returned if the entry to
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ typedef VOID *EFI_PORT_HANDLE;
|
|||
///@}
|
||||
|
||||
//
|
||||
// EAP_TYPE MD5, OTP and TOEKN_CARD has been removed from UEFI2.3.1B.
|
||||
// EAP_TYPE MD5, OTP and TOKEN_CARD has been removed from UEFI2.3.1B.
|
||||
// Definitions are kept for backward compatibility.
|
||||
//
|
||||
#define EFI_EAP_TYPE_MD5 4
|
||||
|
|
|
|||
|
|
@ -112,7 +112,7 @@ typedef struct _EFI_EAPOL_SUPPLICANT_PAE_CONFIGURATION {
|
|||
///
|
||||
typedef struct _EFI_EAPOL_SUPPLICANT_PAE_STATISTICS {
|
||||
///
|
||||
/// The number of EAPOL frames of any type that have been received by this Supplican.
|
||||
/// The number of EAPOL frames of any type that have been received by this Supplicant.
|
||||
///
|
||||
UINTN EapolFramesReceived;
|
||||
///
|
||||
|
|
|
|||
|
|
@ -254,7 +254,7 @@ EFI_STATUS
|
|||
the processor instruction cache following creation of thunks.
|
||||
|
||||
@param This A pointer to the EFI_EBC_PROTOCOL instance.
|
||||
@param Flush Pointer to a function of type EBC_ICACH_FLUSH.
|
||||
@param Flush Pointer to a function of type EBC_ICACHE_FLUSH.
|
||||
|
||||
@retval EFI_SUCCESS The function completed successfully.
|
||||
|
||||
|
|
|
|||
|
|
@ -164,7 +164,7 @@ EFI_STATUS
|
|||
is set to 1 on input, but the
|
||||
device does not support enabling
|
||||
writes
|
||||
(FvAttributes:EFI_FV_WRITE_ENABL
|
||||
(FvAttributes:EFI_FV_WRITE_ENABLE_CAP
|
||||
is clear on return from
|
||||
GetVolumeAttributes()). Actual
|
||||
volume attributes are unchanged.
|
||||
|
|
|
|||
|
|
@ -128,7 +128,7 @@ typedef struct {
|
|||
///
|
||||
UINT8 FileStruct;
|
||||
///
|
||||
/// Defines the transifer mode used in FTP. 0x00 = stream, 0x01 = Block, 0x02 = Compressed.
|
||||
/// Defines the transfer mode used in FTP. 0x00 = stream, 0x01 = Block, 0x02 = Compressed.
|
||||
///
|
||||
UINT8 TransMode;
|
||||
} EFI_FTP4_CONFIG_DATA;
|
||||
|
|
@ -142,7 +142,7 @@ typedef struct _EFI_FTP4_COMMAND_TOKEN EFI_FTP4_COMMAND_TOKEN;
|
|||
is called when data buffer is full. Then, old data in the data buffer should be
|
||||
flushed and new data is stored from the beginning of data buffer.
|
||||
If it is a transmit function that lead to outbound data and the size of
|
||||
Data in daata buffer has been transmitted, this callback function is called to
|
||||
Data in data buffer has been transmitted, this callback function is called to
|
||||
supply additional data to be transmitted.
|
||||
|
||||
@param[in] This Pointer to the EFI_FTP4_PROTOCOL instance.
|
||||
|
|
@ -259,7 +259,7 @@ EFI_STATUS
|
|||
|
||||
The Connect() function will initiate a connection request to the remote FTP server
|
||||
with the corresponding connection token. If this function returns EFI_SUCCESS, the
|
||||
connection sequence is initiated successfully. If the connection succeeds or faild
|
||||
connection sequence is initiated successfully. If the connection succeeds or failed
|
||||
due to any error, the Token->Event will be signaled and Token->Status will be updated
|
||||
accordingly.
|
||||
|
||||
|
|
|
|||
|
|
@ -167,7 +167,7 @@ EFI_STATUS
|
|||
|
||||
@param This Points to the EFI_HII_CONFIG_ROUTING_PROTOCOL instance.
|
||||
|
||||
@param Configuration A null-terminated string in <MulltiConfigResp> format.
|
||||
@param Configuration A null-terminated string in <MultiConfigResp> format.
|
||||
|
||||
@param Progress A pointer to a string filled in with the
|
||||
offset of the most recent '&' before the
|
||||
|
|
|
|||
|
|
@ -353,7 +353,7 @@ EFI_STATUS
|
|||
@param NotificationHandle The handle of the notification
|
||||
function being unregistered.
|
||||
|
||||
@retval EFI_SUCCESS Successsfully unregistered the notification.
|
||||
@retval EFI_SUCCESS Successfully unregistered the notification.
|
||||
|
||||
@retval EFI_NOT_FOUND The incoming notification handle does not exist
|
||||
in the current hii database.
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ EFI_STATUS
|
|||
@retval EFI_NOT_FOUND The image specified by ImageId is not
|
||||
available. Or The specified PackageList is not in the database.
|
||||
|
||||
@retval EFI_INVALID_PARAMETER The Image or Langugae was NULL.
|
||||
@retval EFI_INVALID_PARAMETER The Image or Language was NULL.
|
||||
@retval EFI_OUT_OF_RESOURCES The bitmap could not be retrieved because there was not
|
||||
enough memory.
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ typedef enum {
|
|||
///
|
||||
HttpBootHttpRequest,
|
||||
///
|
||||
/// Data points to an EFI_HTTP_MESSAGE structure, which contians a received HTTP
|
||||
/// Data points to an EFI_HTTP_MESSAGE structure, which contains a received HTTP
|
||||
/// response message.
|
||||
///
|
||||
HttpBootHttpResponse,
|
||||
|
|
|
|||
|
|
@ -122,7 +122,7 @@ typedef struct _EFI_I2C_BUS_CONFIGURATION_MANAGEMENT_PROTOCOL EFI_I2C_BUS_CONFIG
|
|||
@param[in] Event Event to signal when the transaction is complete
|
||||
@param[out] I2cStatus Buffer to receive the transaction status.
|
||||
|
||||
@return When Event is NULL, EnableI2cBusConfiguration operates synchrouously
|
||||
@return When Event is NULL, EnableI2cBusConfiguration operates synchronously
|
||||
and returns the I2C completion status as its return value. In this case it is
|
||||
recommended to use NULL for I2cStatus. The values returned from
|
||||
EnableI2cBusConfiguration are:
|
||||
|
|
|
|||
|
|
@ -450,7 +450,7 @@ EFI_STATUS
|
|||
@retval EFI_NOT_STARTED This instance has not been started.
|
||||
@retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP,
|
||||
RARP, etc.) is not finished yet.
|
||||
@retval EFI_INVALID_PARAMETER One or more pameters are invalid.
|
||||
@retval EFI_INVALID_PARAMETER One or more parameters are invalid.
|
||||
@retval EFI_ACCESS_DENIED The transmit completion token with the same Token.Event
|
||||
was already in the transmit queue.
|
||||
@retval EFI_NOT_READY The completion token could not be queued because the transmit
|
||||
|
|
|
|||
|
|
@ -178,7 +178,7 @@ typedef struct {
|
|||
@param[in] This Pointer to the EFI_IP4_CONFIG2_PROTOCOL instance.
|
||||
@param[in] DataType The type of data to set.
|
||||
@param[in] DataSize Size of the buffer pointed to by Data in bytes.
|
||||
@param[in] Data The data buffer to set. The type ofthe data buffer is associated
|
||||
@param[in] Data The data buffer to set. The type of the data buffer is associated
|
||||
with the DataType.
|
||||
|
||||
@retval EFI_SUCCESS The specified configuration data for the EFI IPv4 network stack is set
|
||||
|
|
|
|||
|
|
@ -614,7 +614,7 @@ EFI_STATUS
|
|||
@retval EFI_DEVICE_ERROR An unexpected system or network error occurred. The EFI IPv6
|
||||
Protocol driver instance is not opened.
|
||||
@retval EFI_UNSUPPORTED Default protocol specified through
|
||||
Ip6ConfigData.DefaulProtocol isn't supported.
|
||||
Ip6ConfigData.DefaultProtocol isn't supported.
|
||||
|
||||
**/
|
||||
typedef
|
||||
|
|
@ -671,7 +671,7 @@ EFI_STATUS
|
|||
the destination IPv6 address arithmetically. The gateway address must be on the same subnet as the
|
||||
configured station address.
|
||||
|
||||
The default route is added with Destination and PrefixLegth both set to all zeros. The
|
||||
The default route is added with Destination and Prefixlength both set to all zeros. The
|
||||
default route matches all destination IPv6 addresses that do not match any other routes.
|
||||
|
||||
All EFI IPv6 Protocol instances share a routing table.
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ typedef enum {
|
|||
///
|
||||
Ip6ConfigDataTypeDnsServer,
|
||||
///
|
||||
/// The number of this enumeration memebers.
|
||||
/// The number of this enumeration members.
|
||||
///
|
||||
Ip6ConfigDataTypeMaximum
|
||||
} EFI_IP6_CONFIG_DATA_TYPE;
|
||||
|
|
|
|||
|
|
@ -919,7 +919,7 @@ EFI_STATUS
|
|||
@retval EFI_INVALID_PARAMETER This is NULL, ClientId is required but it is NULL,
|
||||
KeyAttributesCount is NULL, or KeyAttributes
|
||||
is NULL, or KeyIdentifierSize is NULL, or
|
||||
KeyIdentifer is NULL.
|
||||
KeyIdentifier is NULL.
|
||||
@retval EFI_NOT_FOUND The KeyIdentifier could not be found. On return the
|
||||
KeyAttributesCount contains the number of attributes
|
||||
processed. Individual structures will reflect the status of the
|
||||
|
|
@ -1001,7 +1001,7 @@ EFI_STATUS
|
|||
@retval EFI_INVALID_PARAMETER This is NULL, ClientId is required but it is NULL,
|
||||
KeyAttributesCount is NULL, or
|
||||
KeyAttributes is NULL, or KeyIdentifierSize
|
||||
is NULL, or KeyIdentifer is NULL.
|
||||
is NULL, or KeyIdentifier is NULL.
|
||||
@retval EFI_NOT_FOUND The KeyIdentifier could not be found or the attribute
|
||||
could not be found. On return the KeyAttributesCount
|
||||
contains the number of attributes processed. Individual
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/** @file
|
||||
This file defines the Legacy SPI SMM Controler Protocol.
|
||||
This file defines the Legacy SPI SMM Controller Protocol.
|
||||
|
||||
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ typedef enum {
|
|||
} EFI_MM_IO_WIDTH;
|
||||
|
||||
/**
|
||||
Provides the basic memory and I/O interfaces used toabstract accesses to devices.
|
||||
Provides the basic memory and I/O interfaces used to abstract accesses to devices.
|
||||
|
||||
The I/O operations are carried out exactly as requested. The caller is
|
||||
responsible for any alignment and I/O width issues that the bus, device,
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
This protocol is a mandatory protocol published by MM Foundation code.
|
||||
This protocol is an MM counterpart of the End of DXE Event.
|
||||
This protocol prorogates End of DXE notification into MM environment.
|
||||
This protocol propagates End of DXE notification into MM environment.
|
||||
This protocol is installed prior to installation of the MM Ready to Lock Protocol.
|
||||
|
||||
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
code when the system is preparing to lock certain resources and interfaces
|
||||
in anticipation of the invocation of 3rd party extensible modules.
|
||||
This protocol is an MM counterpart of the DXE MM Ready to Lock Protocol.
|
||||
This protocol prorogates resource locking notification into MM environment.
|
||||
This protocol propagates resource locking notification into MM environment.
|
||||
This protocol is installed after installation of the MM End of DXE Protocol.
|
||||
|
||||
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ typedef struct _EFI_MP_SERVICES_PROTOCOL EFI_MP_SERVICES_PROTOCOL;
|
|||
#define PROCESSOR_HEALTH_STATUS_BIT 0x00000004
|
||||
|
||||
///
|
||||
/// Structure that describes the pyhiscal location of a logical CPU.
|
||||
/// Structure that describes the physical location of a logical CPU.
|
||||
///
|
||||
typedef struct {
|
||||
///
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ typedef struct _EFI_MTFTP4_TOKEN EFI_MTFTP4_TOKEN;
|
|||
#define EFI_MTFTP4_ERRORCODE_REQUEST_DENIED 8
|
||||
|
||||
//
|
||||
// MTFTP4 pacekt definitions
|
||||
// MTFTP4 packet definitions
|
||||
//
|
||||
#pragma pack(1)
|
||||
|
||||
|
|
@ -198,7 +198,7 @@ EFI_STATUS
|
|||
IN EFI_MTFTP4_PROTOCOL *This,
|
||||
IN EFI_MTFTP4_TOKEN *Token,
|
||||
IN UINT16 PacketLen,
|
||||
IN EFI_MTFTP4_PACKET *Paket
|
||||
IN EFI_MTFTP4_PACKET *Packet
|
||||
);
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -496,10 +496,10 @@ EFI_STATUS
|
|||
- This is NULL.
|
||||
- MtftpConfigData.StationIp is neither zero nor one
|
||||
of the configured IP addresses in the underlying IPv6 driver.
|
||||
- MtftpCofigData.ServerIp is not a valid IPv6 unicast address.
|
||||
- MtftpConfigData.ServerIp is not a valid IPv6 unicast address.
|
||||
@retval EFI_ACCESS_DENIED - The configuration could not be changed at this time because there
|
||||
is some MTFTP background operation in progress.
|
||||
- MtftpCofigData.LocalPort is already in use.
|
||||
- MtftpConfigData.LocalPort is already in use.
|
||||
@retval EFI_NO_MAPPING The underlying IPv6 driver was responsible for choosing a source
|
||||
address for this instance, but no source address was available for use.
|
||||
@retval EFI_OUT_OF_RESOURCES The EFI MTFTPv6 Protocol driver instance data could not be
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
|
|||
}
|
||||
|
||||
//
|
||||
// GUID intruduced in UEFI Specification 2.1b
|
||||
// GUID introduced in UEFI Specification 2.1b
|
||||
//
|
||||
#define EFI_NETWORK_INTERFACE_IDENTIFIER_PROTOCOL_GUID_31 \
|
||||
{ \
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ typedef UINT64 EFI_RESOURCE_ALLOCATION_STATUS;
|
|||
#define EFI_RESOURCE_NOT_SATISFIED 0xFFFFFFFFFFFFFFFFULL
|
||||
|
||||
///
|
||||
/// This enum is used to specify the phase of the PCI enumaeration process.
|
||||
/// This enum is used to specify the phase of the PCI enumeration process.
|
||||
///
|
||||
typedef enum {
|
||||
///
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PCI Root Bridge I/O protocol is used by PCI Bus Driver to perform PCI Memory, PCI I/O,
|
||||
and PCI Configuration cycles on a PCI Root Bridge. It also provides services to perform
|
||||
defferent types of bus mastering DMA.
|
||||
different types of bus mastering DMA.
|
||||
|
||||
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
|
@ -362,7 +362,7 @@ EFI_STATUS
|
|||
@retval EFI_SUCCESS The set of attributes specified by Attributes for the resource
|
||||
range specified by ResourceBase and ResourceLength
|
||||
were set on the PCI root bridge, and the actual resource range is
|
||||
returned in ResuourceBase and ResourceLength.
|
||||
returned in ResourceBase and ResourceLength.
|
||||
@retval EFI_UNSUPPORTED A bit is set in Attributes that is not supported by the PCI Root
|
||||
Bridge.
|
||||
@retval EFI_OUT_OF_RESOURCES There are not enough resources to set the attributes on the
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ typedef struct _EFI_PKCS7_VERIFY_PROTOCOL EFI_PKCS7_VERIFY_PROTOCOL;
|
|||
|
||||
/**
|
||||
Processes a buffer containing binary DER-encoded PKCS7 signature.
|
||||
The signed data content may be embedded within the buffer or separated. Funtion
|
||||
The signed data content may be embedded within the buffer or separated. Function
|
||||
verifies the signature of the content is valid and signing certificate was not
|
||||
revoked and is contained within a list of trusted signers.
|
||||
|
||||
|
|
|
|||
|
|
@ -204,7 +204,7 @@ typedef enum {
|
|||
information returned by the platform, and calls Response passing
|
||||
in the arguments returned from Query. The UEFI driver must
|
||||
continuously call Query until EFI_NOT_FOUND is returned. For
|
||||
every call to Query that returns EFI_SUCCESS a corrisponding
|
||||
every call to Query that returns EFI_SUCCESS a corresponding
|
||||
call to Response is required passing in the same
|
||||
ContollerHandle, ChildHandle, Instance, ParameterTypeGuid,
|
||||
ParameterBlock, and ParameterBlockSize. The UEFI driver may
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ typedef UINT32 EFI_REDFISH_DISCOVER_FLAG;
|
|||
#define EFI_REDFISH_DISCOVER_KEEP_ALIVE 0x00000008 ///< Keep to send UPnP Search in the duration indicated in
|
||||
///< EFI_REDFISH_DISCOVER_DURATION_MASK.
|
||||
#define EFI_REDFISH_DISCOVER_RENEW 0x00000010 ///< Set this bit to indicate this function to notify the caller
|
||||
///< a list of all Redfish servers it found. Otherwise, this fucntion
|
||||
///< a list of all Redfish servers it found. Otherwise, this function
|
||||
///< just notify the caller new found Redfish servers.
|
||||
///<
|
||||
#define EFI_REDFISH_DISCOVER_VALIDATION 0x80000000 ///< Validate Redfish service for host interface instance.
|
||||
|
|
@ -65,7 +65,7 @@ typedef struct {
|
|||
} EFI_REDFISH_DISCOVERED_LIST;
|
||||
|
||||
typedef struct {
|
||||
EFI_MAC_ADDRESS MacAddress; ///< MAC address of network interfase to discover Redfish service.
|
||||
EFI_MAC_ADDRESS MacAddress; ///< MAC address of network interface to discover Redfish service.
|
||||
BOOLEAN IsIpv6; ///< Indicates it's IP versino 6.
|
||||
EFI_IP_ADDRESS SubnetId; ///< Subnet ID.
|
||||
UINT8 SubnetPrefixLength; ///< Subnet prefix-length for IPv4 and IPv6.
|
||||
|
|
@ -117,8 +117,8 @@ EFI_STATUS
|
|||
This function acquires Redfish services by discovering static Redfish setting
|
||||
according to Redfish Host Interface or through SSDP. Returns a list of EFI
|
||||
handles in EFI_REDFISH_DISCOVERED_LIST. Each of EFI handle has cooresponding
|
||||
EFI REST EX instance installed on it. Each REST EX isntance is a child instance which
|
||||
created through EFI REST EX serivce protoocl for communicating with specific
|
||||
EFI REST EX instance installed on it. Each REST EX instance is a child instance which
|
||||
created through EFI REST EX service protocol for communicating with specific
|
||||
Redfish service.
|
||||
|
||||
@param[in] This EFI_REDFISH_DISCOVER_PROTOCOL instance.
|
||||
|
|
|
|||
|
|
@ -132,7 +132,7 @@ EFI_STATUS
|
|||
SyntaxTypeis not supported by this driver.
|
||||
@retval EFI_DEVICE_ERROR The regular expression string matching
|
||||
failed due to a hardware or firmware error.
|
||||
@retval EFI_INVALID_PARAMETER String, Pattern, Result, or CapturesCountis
|
||||
@retval EFI_INVALID_PARAMETER String, Pattern, Result, or CapturesCount is
|
||||
NULL.
|
||||
|
||||
**/
|
||||
|
|
|
|||
|
|
@ -116,7 +116,7 @@ EFI_STATUS
|
|||
@param[in] Label Points to the label which will be inserted in the boot script table.
|
||||
|
||||
@retval EFI_SUCCESS The label already exists or was inserted.
|
||||
@retval EFI_NOT_FOUND The label did not already exist and CreateifNotFound was FALSE.
|
||||
@retval EFI_NOT_FOUND The label did not already exist and CreateIfNotFound was FALSE.
|
||||
@retval EFI_INVALID_PARAMETER The Label is NULL or points to an empty string.
|
||||
@retval EFI_INVALID_PARAMETER The Position is not a valid position in the boot script table.
|
||||
@retval EFI_OUT_OF_RESOURCES There is insufficient memory to store the boot script.
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ typedef struct _EFI_SCSI_IO_PROTOCOL EFI_SCSI_IO_PROTOCOL;
|
|||
#define EFI_SCSI_IO_STATUS_HOST_ADAPTER_REQUEST_SENSE_FAILED 0x10 ///< the adapter failed in issuing request sense command
|
||||
#define EFI_SCSI_IO_STATUS_HOST_ADAPTER_SELECTION_TIMEOUT 0x11 ///< selection timeout
|
||||
#define EFI_SCSI_IO_STATUS_HOST_ADAPTER_DATA_OVERRUN_UNDERRUN 0x12 ///< data overrun or data underrun
|
||||
#define EFI_SCSI_IO_STATUS_HOST_ADAPTER_BUS_FREE 0x13 ///< Unexepected bus free
|
||||
#define EFI_SCSI_IO_STATUS_HOST_ADAPTER_BUS_FREE 0x13 ///< Unexpected bus free
|
||||
#define EFI_SCSI_IO_STATUS_HOST_ADAPTER_PHASE_ERROR 0x14 ///< Target bus phase sequence failure
|
||||
#define EFI_SCSI_IO_STATUS_HOST_ADAPTER_OTHER 0x7f
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/** @file
|
||||
Security Architectural Protocol as defined in PI Specification VOLUME 2 DXE
|
||||
|
||||
Used to provide Security services. Specifically, dependening upon the
|
||||
Used to provide Security services. Specifically, depending upon the
|
||||
authentication state of a discovered driver in a Firmware Volume, the
|
||||
portable DXE Core Dispatcher will call into the Security Architectural
|
||||
Protocol (SAP) with the authentication state of the driver.
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
When both Security and Security2 Architectural Protocols are published, LoadImage must use
|
||||
them in accordance with the following rules:
|
||||
The Security2 protocol must be used on every image being loaded.
|
||||
The Security protocol must be used after the Securiy2 protocol and only on images that
|
||||
The Security protocol must be used after the Security2 protocol and only on images that
|
||||
have been read using Firmware Volume protocol.
|
||||
|
||||
When only Security architectural protocol is published, LoadImage must use it on every image
|
||||
|
|
|
|||
|
|
@ -102,13 +102,13 @@ EFI_STATUS
|
|||
);
|
||||
|
||||
/**
|
||||
Sets the baud rate, receive FIFO depth, transmit/receice time out, parity,
|
||||
Sets the baud rate, receive FIFO depth, transmit/receive time out, parity,
|
||||
data bits, and stop bits on a serial device.
|
||||
|
||||
@param This Protocol instance pointer.
|
||||
@param BaudRate The requested baud rate. A BaudRate value of 0 will use the
|
||||
device's default interface speed.
|
||||
@param ReveiveFifoDepth The requested depth of the FIFO on the receive side of the
|
||||
@param ReceiveFifoDepth The requested depth of the FIFO on the receive side of the
|
||||
serial interface. A ReceiveFifoDepth value of 0 will use
|
||||
the device's default FIFO depth.
|
||||
@param Timeout The requested time out for a single character in microseconds.
|
||||
|
|
@ -118,7 +118,7 @@ EFI_STATUS
|
|||
@param Parity The type of parity to use on this serial device. A Parity value of
|
||||
DefaultParity will use the device's default parity value.
|
||||
@param DataBits The number of data bits to use on the serial device. A DataBits
|
||||
vaule of 0 will use the device's default data bit setting.
|
||||
value of 0 will use the device's default data bit setting.
|
||||
@param StopBits The number of stop bits to use on this serial device. A StopBits
|
||||
value of DefaultStopBits will use the device's default number of
|
||||
stop bits.
|
||||
|
|
@ -243,7 +243,7 @@ EFI_STATUS
|
|||
|
||||
@param Parity
|
||||
If applicable, this is the EFI_PARITY_TYPE that is computed or
|
||||
checked as each character is transmitted or reveived. If the device
|
||||
checked as each character is transmitted or received. If the device
|
||||
does not support parity the value is the default parity value.
|
||||
|
||||
@param StopBits
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ typedef struct _EFI_SERVICE_BINDING_PROTOCOL EFI_SERVICE_BINDING_PROTOCOL;
|
|||
then a new handle is created. If it is a pointer to an existing UEFI handle,
|
||||
then the protocol is added to the existing UEFI handle.
|
||||
|
||||
@retval EFI_SUCCES The protocol was added to ChildHandle.
|
||||
@retval EFI_SUCCESS The protocol was added to ChildHandle.
|
||||
@retval EFI_INVALID_PARAMETER ChildHandle is NULL.
|
||||
@retval EFI_OUT_OF_RESOURCES There are not enough resources available to create
|
||||
the child
|
||||
|
|
@ -53,7 +53,7 @@ EFI_STATUS
|
|||
@param This Pointer to the EFI_SERVICE_BINDING_PROTOCOL instance.
|
||||
@param ChildHandle Handle of the child to destroy
|
||||
|
||||
@retval EFI_SUCCES The protocol was removed from ChildHandle.
|
||||
@retval EFI_SUCCESS The protocol was removed from ChildHandle.
|
||||
@retval EFI_UNSUPPORTED ChildHandle does not support the protocol that is being removed.
|
||||
@retval EFI_INVALID_PARAMETER Child handle is NULL.
|
||||
@retval EFI_ACCESS_DENIED The protocol could not be removed from the ChildHandle
|
||||
|
|
|
|||
|
|
@ -179,7 +179,7 @@ BOOLEAN
|
|||
|
||||
@param[in] FileHandle The file handle to be closed.
|
||||
|
||||
@retval EFI_SUCCESS The file closed sucessfully.
|
||||
@retval EFI_SUCCESS The file closed successfully.
|
||||
**/
|
||||
typedef
|
||||
EFI_STATUS
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ typedef struct _EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL EFI_SHELL_DYNAMIC_COMMAND_PRO
|
|||
@param[in] Shell The instance of the shell protocol used in the context
|
||||
of processing this command.
|
||||
|
||||
@return EFI_SUCCESS the operation was sucessful
|
||||
@return EFI_SUCCESS the operation was successful
|
||||
@return other the operation failed.
|
||||
**/
|
||||
typedef
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ typedef struct {
|
|||
UINT64 RxUndersizeFrames;
|
||||
|
||||
///
|
||||
/// Number of frames longer than the maxminum length for the
|
||||
/// Number of frames longer than the maximum length for the
|
||||
/// media. This would be >1500 for ethernet.
|
||||
///
|
||||
UINT64 RxOversizeFrames;
|
||||
|
|
@ -74,7 +74,7 @@ typedef struct {
|
|||
UINT64 RxBroadcastFrames;
|
||||
|
||||
///
|
||||
/// Number of valid mutlicast frames received and not dropped.
|
||||
/// Number of valid multicast frames received and not dropped.
|
||||
///
|
||||
UINT64 RxMulticastFrames;
|
||||
|
||||
|
|
|
|||
|
|
@ -373,9 +373,9 @@ EFI_STATUS
|
|||
If Smart Card found the PIN code correct the user is considered authenticated
|
||||
to current application, and the function returns TRUE.
|
||||
|
||||
Negative or null PinSize value rejected if PinCodeis not NULL.
|
||||
Negative or null PinSize value rejected if PinCode is not NULL.
|
||||
|
||||
A NULL PinCodebuffer means the application didn't know the PIN, in that case:
|
||||
A NULL PinCode buffer means the application didn't know the PIN, in that case:
|
||||
- If PinSize value is negative the caller only wants to know if the current
|
||||
chain of the elements Smart Card Edge protocol, Smart Card Reader protocol
|
||||
and Smart Card Reader supports the Secure Pin Entry PCSC V2 functionality.
|
||||
|
|
|
|||
|
|
@ -232,8 +232,8 @@ EFI_STATUS
|
|||
@retval EFI_SUCCESS The requested command completed successfully.
|
||||
@retval EFI_INVALID_PARAMETER This is NULL.
|
||||
@retval EFI_INVALID_PARAMETER ControlCode requires input parameters but:
|
||||
InBuffer is NULL or InBufferLenth is NULL or
|
||||
InBuffer is not NULL but InBufferLenth is less than
|
||||
InBuffer is NULL or InBufferlength is NULL or
|
||||
InBuffer is not NULL but InBufferlength is less than
|
||||
expected.
|
||||
@retval EFI_INVALID_PARAMETER OutBuffer is not NULL but OutBufferLength is NULL.
|
||||
@retval EFI_UNSUPPORTED ControlCode is not supported.
|
||||
|
|
@ -281,7 +281,7 @@ EFI_STATUS
|
|||
@retval EFI_BUFFER_TOO_SMALL OutBufferLength is not big enough to hold the output
|
||||
parameters.
|
||||
OutBufferLength has been updated to the required value.
|
||||
@retval EFI_UNSUPPORTED Attribis not supported
|
||||
@retval EFI_UNSUPPORTED Attributes not supported
|
||||
@retval EFI_NO_MEDIA There is no card in the reader and Attrib value
|
||||
requires one.
|
||||
@retval EFI_NOT_READY Attrib requires a powered card to operate.
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
the platform manufacturer.
|
||||
This protocol is a mandatory protocol published by SMM Foundation code.
|
||||
This protocol is an SMM counterpart of the End of DXE Event.
|
||||
This protocol prorogates End of DXE notification into SMM environment.
|
||||
This protocol propagates End of DXE notification into SMM environment.
|
||||
This protocol is installed prior to installation of the SMM Ready to Lock Protocol.
|
||||
|
||||
Copyright (c) 2012 - 2017, Intel Corporation. All rights reserved.<BR>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
code when the system is preparing to lock certain resources and interfaces
|
||||
in anticipation of the invocation of 3rd party extensible modules.
|
||||
This protocol is an SMM counterpart of the DXE SMM Ready to Lock Protocol.
|
||||
This protocol prorogates resource locking notification into SMM environment.
|
||||
This protocol propagates resource locking notification into SMM environment.
|
||||
This protocol is installed after installation of the SMM End of DXE Protocol.
|
||||
|
||||
Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||
|
|
|
|||
|
|
@ -153,7 +153,7 @@ typedef struct _EFI_SPI_BUS {
|
|||
|
||||
///
|
||||
/// Address of the routine which controls the clock used by the SPI bus for
|
||||
/// this SPI peripheral. The SPI host co ntroller's clock routine is called
|
||||
/// this SPI peripheral. The SPI host controller's clock routine is called
|
||||
/// when this value is set to NULL.
|
||||
///
|
||||
EFI_SPI_CLOCK Clock;
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ typedef struct _EFI_SPI_HC_PROTOCOL EFI_SPI_HC_PROTOCOL;
|
|||
describing the SPI peripheral whose chip select pin
|
||||
is to be manipulated. The routine may access the
|
||||
ChipSelectParameter field to gain sufficient
|
||||
context to complete the operati on.
|
||||
context to complete the operation.
|
||||
@param[in] PinValue The value to be applied to the chip select line of
|
||||
the SPI peripheral.
|
||||
|
||||
|
|
@ -174,7 +174,7 @@ struct _EFI_SPI_HC_PROTOCOL {
|
|||
UINT32 FrameSizeSupportMask;
|
||||
|
||||
///
|
||||
/// Maximum transfer size in bytes: 1 - Oxffffffff
|
||||
/// Maximum transfer size in bytes: 1 - 0xffffffff
|
||||
///
|
||||
UINT32 MaximumTransferBytes;
|
||||
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ typedef enum {
|
|||
significant N bits.
|
||||
@param[in] ReadBytes The length of the ReadBuffer in bytes.
|
||||
Specify zero for write-only operations.
|
||||
@param[out] ReadBuffer The buffer to receeive data from the SPI chip
|
||||
@param[out] ReadBuffer The buffer to receive data from the SPI chip
|
||||
during the transaction. Specify NULL for write
|
||||
only operations.
|
||||
* Frame sizes 1-8 bits: UINT8 (one byte) per
|
||||
|
|
@ -152,9 +152,9 @@ EFI_STATUS
|
|||
@retval EFI_SUCCESS The SPI peripheral was updated successfully
|
||||
@retval EFI_INVALID_PARAMETER The SpiPeripheral value is NULL,
|
||||
or the SpiPeripheral->SpiBus is NULL,
|
||||
or the SpiP eripheral - >SpiBus pointing at
|
||||
or the SpiPeripheral->SpiBus pointing at
|
||||
wrong bus,
|
||||
or the SpiP eripheral - >SpiPart is NULL
|
||||
or the SpiPeripheral->SpiPart is NULL
|
||||
|
||||
**/
|
||||
typedef EFI_STATUS
|
||||
|
|
@ -259,7 +259,7 @@ struct _EFI_SPI_IO_PROTOCOL {
|
|||
UINT32 FrameSizeSupportMask;
|
||||
|
||||
///
|
||||
/// Maximum transfer size in bytes: 1 - Oxffffffff
|
||||
/// Maximum transfer size in bytes: 1 - 0xffffffff
|
||||
///
|
||||
UINT32 MaximumTransferBytes;
|
||||
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@ EFI_STATUS
|
|||
/**
|
||||
Write the flash status register.
|
||||
|
||||
This routine must be called at or below TPL_N OTIFY.
|
||||
This routine must be called at or below TPL_NOTIFY.
|
||||
This routine writes the flash part status register.
|
||||
|
||||
@param[in] This Pointer to an EFI_SPI_NOR_FLASH_PROTOCOL data
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ typedef struct {
|
|||
} EFI_TCP4_CONFIG_DATA;
|
||||
|
||||
///
|
||||
/// TCP4 connnection state
|
||||
/// TCP4 connection state
|
||||
///
|
||||
typedef enum {
|
||||
Tcp4StateClosed = 0,
|
||||
|
|
@ -340,7 +340,7 @@ EFI_STATUS
|
|||
- This is NULL.
|
||||
- ConnectionToken is NULL.
|
||||
- ConnectionToken->CompletionToken.Event is NULL.
|
||||
@retval EFI_OUT_OF_RESOURCES The driver can't allocate enough resource to initiate the activ eopen.
|
||||
@retval EFI_OUT_OF_RESOURCES The driver can't allocate enough resource to initiate the active open.
|
||||
@retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
|
||||
|
||||
**/
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ UINT64
|
|||
|
||||
@retval EFI_SUCCESS The properties were successfully retrieved.
|
||||
@retval EFI_DEVICE_ERROR An error occurred trying to retrieve the properties of the timestamp
|
||||
counter subsystem. Properties is not pedated.
|
||||
counter subsystem. Properties is not updated.
|
||||
@retval EFI_INVALID_PARAMETER Properties is NULL.
|
||||
|
||||
**/
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue