TianoCore EDK2 master
Loading...
Searching...
No Matches
S3BootScriptLib.h File Reference

Go to the source code of this file.

Macros

#define S3_BOOT_SCRIPT_LIB_PCI_ADDRESS(Bus, Device, Function, Register)
 

Enumerations

enum  S3_BOOT_SCRIPT_LIB_WIDTH {
  S3BootScriptWidthUint8 , S3BootScriptWidthUint16 , S3BootScriptWidthUint32 , S3BootScriptWidthUint64 ,
  S3BootScriptWidthFifoUint8 , S3BootScriptWidthFifoUint16 , S3BootScriptWidthFifoUint32 , S3BootScriptWidthFifoUint64 ,
  S3BootScriptWidthFillUint8 , S3BootScriptWidthFillUint16 , S3BootScriptWidthFillUint32 , S3BootScriptWidthFillUint64 ,
  S3BootScriptWidthMaximum
}
 

Functions

RETURN_STATUS EFIAPI S3BootScriptSaveIoWrite (IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer)
 
RETURN_STATUS EFIAPI S3BootScriptSaveIoReadWrite (IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN VOID *Data, IN VOID *DataMask)
 
RETURN_STATUS EFIAPI S3BootScriptSaveMemWrite (IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer)
 
RETURN_STATUS EFIAPI S3BootScriptSaveMemReadWrite (IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN VOID *Data, IN VOID *DataMask)
 
RETURN_STATUS EFIAPI S3BootScriptSavePciCfgWrite (IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer)
 
RETURN_STATUS EFIAPI S3BootScriptSavePciCfgReadWrite (IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN VOID *Data, IN VOID *DataMask)
 
RETURN_STATUS EFIAPI S3BootScriptSavePciCfg2Write (IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT16 Segment, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer)
 
RETURN_STATUS EFIAPI S3BootScriptSavePciCfg2ReadWrite (IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT16 Segment, IN UINT64 Address, IN VOID *Data, IN VOID *DataMask)
 
RETURN_STATUS EFIAPI S3BootScriptSaveSmbusExecute (IN UINTN SmBusAddress, IN EFI_SMBUS_OPERATION Operation, IN UINTN *Length, IN VOID *Buffer)
 
RETURN_STATUS EFIAPI S3BootScriptSaveStall (IN UINTN Duration)
 
RETURN_STATUS EFIAPI S3BootScriptSaveDispatch2 (IN VOID *EntryPoint, IN VOID *Context)
 
RETURN_STATUS EFIAPI S3BootScriptSaveDispatch (IN VOID *EntryPoint)
 
RETURN_STATUS EFIAPI S3BootScriptSaveMemPoll (IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN VOID *BitMask, IN VOID *BitValue, IN UINTN Duration, IN UINT64 LoopTimes)
 
RETURN_STATUS EFIAPI S3BootScriptSaveInformation (IN UINT32 InformationLength, IN VOID *Information)
 
RETURN_STATUS EFIAPI S3BootScriptSaveIoPoll (IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN VOID *Data, IN VOID *DataMask, IN UINT64 Delay)
 
RETURN_STATUS EFIAPI S3BootScriptSavePciPoll (IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN VOID *Data, IN VOID *DataMask, IN UINT64 Delay)
 
RETURN_STATUS EFIAPI S3BootScriptSavePci2Poll (IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT16 Segment, IN UINT64 Address, IN VOID *Data, IN VOID *DataMask, IN UINT64 Delay)
 
RETURN_STATUS EFIAPI S3BootScriptSaveInformationAsciiString (IN CONST CHAR8 *String)
 
UINT8 *EFIAPI S3BootScriptCloseTable (VOID)
 
RETURN_STATUS EFIAPI S3BootScriptExecute (VOID)
 
RETURN_STATUS EFIAPI S3BootScriptMoveLastOpcode (IN BOOLEAN BeforeOrAfter, IN OUT VOID **Position OPTIONAL)
 
RETURN_STATUS EFIAPI S3BootScriptLabel (IN BOOLEAN BeforeOrAfter, IN BOOLEAN CreateIfNotFound, IN OUT VOID **Position OPTIONAL, IN CONST CHAR8 *Label)
 
RETURN_STATUS EFIAPI S3BootScriptCompare (IN UINT8 *Position1, IN UINT8 *Position2, OUT UINTN *RelativePosition)
 

Detailed Description

Defines library APIs used by modules to save EFI Boot Script Opcodes. These OpCode will be restored by S3 related modules. Note that some of the API defined in the Library class may not be provided in the Framework version library instance, which means some of these APIs cannot be used if the underlying firmware is Framework and not PI.

Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.

SPDX-License-Identifier: BSD-2-Clause-Patent

Definition in file S3BootScriptLib.h.

Macro Definition Documentation

◆ S3_BOOT_SCRIPT_LIB_PCI_ADDRESS

#define S3_BOOT_SCRIPT_LIB_PCI_ADDRESS (   Bus,
  Device,
  Function,
  Register 
)
Value:
(UINT64) ( \
(((UINTN) Bus) << 24) | \
(((UINTN) Device) << 16) | \
(((UINTN) Function) << 8) | \
(((UINTN) (Register)) < 256 ? ((UINTN) (Register)) : (UINT64) (LShiftU64 ((UINT64) (Register), 32))))
UINT64 UINTN
UINT64 EFIAPI LShiftU64(IN UINT64 Operand, IN UINTN Count)
Definition: LShiftU64.c:28
EFI_STATUS EFIAPI Register(IN EFI_PEI_RSC_HANDLER_CALLBACK Callback)

Macro that converts PCI Bus, PCI Device, PCI Function and PCI Register to an address that can be passed to the S3 Boot Script Library PCI functions.

Parameters
BusPCI Bus number. Range 0..255.
DevicePCI Device number. Range 0..31.
FunctionPCI Function number. Range 0..7.
RegisterPCI Register number. Range 0..255 for PCI. Range 0..4095 for PCI Express.
Returns
The encoded PCI address.

Definition at line 33 of file S3BootScriptLib.h.

Enumeration Type Documentation

◆ S3_BOOT_SCRIPT_LIB_WIDTH

S3 Boot Script Width.

Enumerator
S3BootScriptWidthUint8 

8-bit operation.

S3BootScriptWidthUint16 

16-bit operation.

S3BootScriptWidthUint32 

32-bit operation.

S3BootScriptWidthUint64 

64-bit operation.

S3BootScriptWidthFifoUint8 

8-bit FIFO operation.

S3BootScriptWidthFifoUint16 

16-bit FIFO operation.

S3BootScriptWidthFifoUint32 

32-bit FIFO operation.

S3BootScriptWidthFifoUint64 

64-bit FIFO operation.

S3BootScriptWidthFillUint8 

8-bit Fill operation.

S3BootScriptWidthFillUint16 

16-bit Fill operation.

S3BootScriptWidthFillUint32 

32-bit Fill operation.

S3BootScriptWidthFillUint64 

64-bit Fill operation.

Definition at line 43 of file S3BootScriptLib.h.

Function Documentation

◆ S3BootScriptCloseTable()

UINT8 *EFIAPI S3BootScriptCloseTable ( VOID  )

This is an function to close the S3 boot script table. The function could only be called in BOOT time phase. To comply with the Framework spec definition on EFI_BOOT_SCRIPT_SAVE_PROTOCOL.CloseTable(), this function will fulfill following things:

  1. Closes the specified boot script table
  2. It allocates a new memory pool to duplicate all the boot scripts in the specified table. Once this function is called, the table maintained by the library will be destroyed after it is copied into the allocated pool.
  3. Any attempts to add a script record after calling this function will cause a new table to be created by the library.
  4. The base address of the allocated pool will be returned in Address. Note that after using the boot script table, the CALLER is responsible for freeing the pool that is allocated by this function.

In Spec PI1.1, this EFI_BOOT_SCRIPT_SAVE_PROTOCOL.CloseTable() is retired. This API is supplied here to meet the requirements of the Framework Spec.

If anyone does call CloseTable() on a real platform, then the caller is responsible for figuring out how to get the script to run on an S3 resume because the boot script maintained by the lib will be destroyed.

Returns
the base address of the new copy of the boot script table.

This is an function to close the S3 boot script table. The function could only be called in BOOT time phase. To comply with the Framework spec definition on EFI_BOOT_SCRIPT_SAVE_PROTOCOL.CloseTable(), this function will fulfill following things:

  1. Closes the specified boot script table
  2. It allocates a new memory pool to duplicate all the boot scripts in the specified table. Once this function is called, the table maintained by the library will be destroyed after it is copied into the allocated pool.
  3. Any attempts to add a script record after calling this function will cause a new table to be created by the library.
  4. The base address of the allocated pool will be returned in Address. Note that after using the boot script table, the CALLER is responsible for freeing the pool that is allocated by this function.

In Spec PI1.1, this EFI_BOOT_SCRIPT_SAVE_PROTOCOL.CloseTable() is retired. To provides this API for now is for Framework Spec compatibility.

If anyone does call CloseTable() on a real platform, then the caller is responsible for figuring out how to get the script to run at S3 resume because the boot script maintained by the lib will be destroyed.

Returns
the base address of the new copy of the boot script table.
Note
this function could only called in boot time phase

This is an function to close the S3 boot script table. The function could only be called in BOOT time phase. To comply with the Framework spec definition on EFI_BOOT_SCRIPT_SAVE_PROTOCOL.CloseTable(), this function will fulfill following things:

  1. Closes the specified boot script table
  2. It allocates a new memory pool to duplicate all the boot scripts in the specified table. Once this function is called, the table maintained by the library will be destroyed after it is copied into the allocated pool.
  3. Any attempts to add a script record after calling this function will cause a new table to be created by the library.
  4. The base address of the allocated pool will be returned in Address. Note that after using the boot script table, the CALLER is responsible for freeing the pool that is allocated by this function.

In Spec PI1.1, this EFI_BOOT_SCRIPT_SAVE_PROTOCOL.CloseTable() is retired. By then it is not necessary to provide this API in BootScriptLib. To provides this API for now is only to meet the requirement from Framework Spec.

If anyone does call CloseTable() on a real platform, then the caller is responsible for figuring out how to get the script to run on an S3 resume because the boot script maintained by the lib will be destroyed.

Returns
the base address of the new copy of the boot script table.

Definition at line 950 of file BootScriptSave.c.

◆ S3BootScriptCompare()

RETURN_STATUS EFIAPI S3BootScriptCompare ( IN UINT8 *  Position1,
IN UINT8 *  Position2,
OUT UINTN RelativePosition 
)

Compare two positions in the boot script table and return their relative position.

Parameters
Position1The positions in the boot script table to compare
Position2The positions in the boot script table to compare
RelativePositionOn return, points to the result of the comparison
Return values
EFI_SUCCESSThe operation succeeded. A record was added into the specified script table.
EFI_INVALID_PARAMETERThe 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.
EFI_OUT_OF_RESOURCESThere is insufficient memory to store the boot script.
Note
The FRAMEWORK version implementation does not support this API

Compare two positions in the boot script table and return their relative position.

Parameters
Position1The positions in the boot script table to compare
Position2The positions in the boot script table to compare
RelativePositionOn return, points to the result of the comparison
Return values
EFI_SUCCESSThe operation succeeded or no action is required. A record was added into the specified script table if ACPI S3 was enabled.
EFI_INVALID_PARAMETERThe parameter is illegal or the given boot script is not supported. If the opcode is unknow or not supported because of the PCD Feature Flags.
EFI_OUT_OF_RESOURCESThere is insufficient memory to store the boot script.

Compare two positions in the boot script table and return their relative position.

Parameters
Position1The positions in the boot script table to compare
Position2The positions in the boot script table to compare
RelativePositionOn return, points to the result of the comparison
Return values
EFI_SUCCESSThe operation succeeded. A record was added into the specified script table.
EFI_INVALID_PARAMETERThe parameter is illegal or the given boot script is not supported. If the opcode is unknow or not supported because of the PCD Feature Flags.
EFI_OUT_OF_RESOURCESThere is insufficient memory to store the boot script.

Definition at line 2536 of file BootScriptSave.c.

◆ S3BootScriptExecute()

RETURN_STATUS EFIAPI S3BootScriptExecute ( VOID  )

Executes the S3 boot script table.

Return values
RETURN_SUCCESSThe boot script table was executed successfully.
RETURN_UNSUPPORTEDInvalid script table or opcode.

Executes the S3 boot script table.

Parameters
RETURN_SUCCESSThe boot script table was executed successfully.
RETURN_UNSUPPORTEDInvalid script table or opcode.

Definition at line 1627 of file BootScriptExecute.c.

◆ S3BootScriptLabel()

RETURN_STATUS EFIAPI S3BootScriptLabel ( IN BOOLEAN  BeforeOrAfter,
IN BOOLEAN  CreateIfNotFound,
IN OUT VOID **Position  OPTIONAL,
IN CONST CHAR8 *  Label 
)

Find a label within the boot script table and, if not present, optionally create it.

Parameters
BeforeOrAfterSpecifies whether the opcode is stored before (TRUE) or after (FALSE) the position in the boot script table specified by Position.
CreateIfNotFoundSpecifies whether the label will be created if the label does not exists (TRUE) or not (FALSE).
PositionOn 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 the boot script table.
LabelPoints to the label which will be inserted in the boot script table.
Return values
EFI_SUCCESSThe operation succeeded. A record was added into the specified script table.
EFI_INVALID_PARAMETERThe parameter is illegal or the given boot script is not supported. If the opcode is unknow or not supported because of the PCD Feature Flags.
EFI_OUT_OF_RESOURCESThere is insufficient memory to store the boot script.
Note
The FRAMEWORK version implementation does not support this API

Find a label within the boot script table and, if not present, optionally create it.

Parameters
BeforeOrAfterSpecifies whether the opcode is stored before (TRUE) or after (FALSE) the position in the boot script table specified by Position.
CreateIfNotFoundSpecifies whether the label will be created if the label does not exists (TRUE) or not (FALSE).
PositionOn 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 position of the inserted opcode in the boot script table.
LabelPoints to the label which will be inserted in the boot script table.
Return values
EFI_SUCCESSThe operation succeeded or no action is required. A record was added into the specified script table if ACPI S3 was enabled.
EFI_INVALID_PARAMETERThe parameter is illegal or the given boot script is not supported. If the opcode is unknow or not supported because of the PCD Feature Flags.
EFI_OUT_OF_RESOURCESThere is insufficient memory to store the boot script.

Find a label within the boot script table and, if not present, optionally create it.

Parameters
BeforeOrAfterSpecifies whether the opcode is stored before (TRUE) or after (FALSE) the position in the boot script table specified by Position.
CreateIfNotFoundSpecifies whether the label will be created if the label does not exists (TRUE) or not (FALSE).
PositionOn 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 position of the inserted opcode in the boot script table.
LabelPoints to the label which will be inserted in the boot script table.
Return values
EFI_SUCCESSThe operation succeeded. A record was added into the specified script table.
EFI_INVALID_PARAMETERThe parameter is illegal or the given boot script is not supported. If the opcode is unknow or not supported because of the PCD Feature Flags.
EFI_OUT_OF_RESOURCESThere is insufficient memory to store the boot script.

Definition at line 2446 of file BootScriptSave.c.

◆ S3BootScriptMoveLastOpcode()

RETURN_STATUS EFIAPI S3BootScriptMoveLastOpcode ( IN BOOLEAN  BeforeOrAfter,
IN OUT VOID **Position  OPTIONAL 
)

Move the last boot script entry to the position

Parameters
BeforeOrAfterSpecifies whether the opcode is stored before (TRUE) or after (FALSE) the positionin 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) or end of the table (if FALSE).
PositionOn 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 position of the inserted opcode in the boot script table.
Return values
RETURN_OUT_OF_RESOURCESThe table is not available.
RETURN_INVALID_PARAMETERThe Position is not a valid position in the boot script table.
RETURN_SUCCESSThe opcode was inserted.
Note
The FRAMEWORK version implementation does not support this API.

Move the last boot script entry to the position

Parameters
BeforeOrAfterSpecifies whether the opcode is stored before (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) or end of the table (if FALSE).
PositionOn 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 position of the inserted opcode in the boot script table.
Return values
RETURN_OUT_OF_RESOURCESThe table is not available.
RETURN_INVALID_PARAMETERThe Position is not a valid position in the boot script table.
RETURN_SUCCESSOpcode is inserted no action is required as ACPI S3 was disabled.

Move the last boot script entry to the position

Parameters
BeforeOrAfterSpecifies whether the opcode is stored before (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) or end of the table (if FALSE).
PositionOn 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 position of the inserted opcode in the boot script table.
Return values
RETURN_OUT_OF_RESOURCESThe table is not available.
RETURN_INVALID_PARAMETERThe Position is not a valid position in the boot script table.
RETURN_SUCCESSOpcode is inserted.

Definition at line 2267 of file BootScriptSave.c.

◆ S3BootScriptSaveDispatch()

RETURN_STATUS EFIAPI S3BootScriptSaveDispatch ( IN VOID *  EntryPoint)

Adds a record for dispatching specified arbitrary code into a specified boot script table.

Parameters
[in]EntryPointThe entry point of the code to be dispatched.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.

Adds a record for dispatching specified arbitrary code into a specified boot script table.

Parameters
EntryPointEntry point of the code to be dispatched.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.

Adds a record for dispatching specified arbitrary code into a specified boot script table.

Parameters
EntryPointEntry point of the code to be dispatched.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.

Definition at line 1948 of file BootScriptSave.c.

◆ S3BootScriptSaveDispatch2()

RETURN_STATUS EFIAPI S3BootScriptSaveDispatch2 ( IN VOID *  EntryPoint,
IN VOID *  Context 
)

Adds a record for dispatching specified arbitrary code into a specified boot script table.

Parameters
[in]EntryPointThe entry point of the code to be dispatched.
[in]ContextThe argument to be passed into the EntryPoint of the code to be dispatched.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.

Adds a record for dispatching specified arbitrary code into a specified boot script table.

Parameters
EntryPointEntry point of the code to be dispatched.
ContextArgument to be passed into the EntryPoint of the code to be dispatched.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.

Adds a record for dispatching specified arbitrary code into a specified boot script table.

Parameters
EntryPointEntry point of the code to be dispatched.
ContextArgument to be passed into the EntryPoint of the code to be dispatched.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.

Definition at line 1757 of file BootScriptSave.c.

◆ S3BootScriptSaveInformation()

RETURN_STATUS EFIAPI S3BootScriptSaveInformation ( IN UINT32  InformationLength,
IN VOID *  Information 
)

Store arbitrary information in the boot script table. This opcode is a no-op on dispatch and is only used for debugging script issues.

Parameters
[in]InformationLengthLength of the data in bytes
[in]InformationInformation to be logged in the boot scrpit
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.

Store arbitrary information in the boot script table. This opcode is a no-op on dispatch and is only used for debugging script issues.

Parameters
InformationLengthLength of the data in bytes
InformationInformation to be logged in the boot scrpit
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.

Store arbitrary information in the boot script table. This opcode is a no-op on dispatch and is only used for debugging script issues.

Parameters
InformationLengthLength of the data in bytes
InformationInformation to be logged in the boot scrpit
Return values
RETURN_UNSUPPORTEDIf entering runtime, this method will not support.
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.

Definition at line 1873 of file BootScriptSave.c.

◆ S3BootScriptSaveInformationAsciiString()

RETURN_STATUS EFIAPI S3BootScriptSaveInformationAsciiString ( IN CONST CHAR8 *  String)

Save ASCII string information specified by Buffer to boot script with opcode EFI_BOOT_SCRIPT_INFORMATION_OPCODE.

Parameters
[in]StringThe Null-terminated ASCII string to store into the S3 boot script table.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.

Store a string in the boot script table. This opcode is a no-op on dispatch and is only used for debugging script issues.

Parameters
StringThe string to save to boot script table
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.

Save ASCII string information specified by Buffer to boot script with opcode EFI_BOOT_SCRIPT_INFORMATION_OPCODE

Parameters
Stringthe ascii string to store into the S3 boot script table
Return values
RETURN_NOT_FOUNDBootScriptSave Protocol not exist.
RETURN_SUCCESSBootScriptSave Protocol exist, always returns RETURN_SUCCESS

Definition at line 1928 of file BootScriptSave.c.

◆ S3BootScriptSaveIoPoll()

RETURN_STATUS EFIAPI S3BootScriptSaveIoPoll ( IN S3_BOOT_SCRIPT_LIB_WIDTH  Width,
IN UINT64  Address,
IN VOID *  Data,
IN VOID *  DataMask,
IN UINT64  Delay 
)

Adds a record for I/O reads the I/O location and continues when the exit criteria is satisfied, or after a defined duration.

Parameters
WidthThe width of the I/O operations.
AddressThe base address of the I/O operations.
DataThe comparison value used for the polling exit criteria.
DataMaskThe mask used for the polling criteria. The bits in the bytes below Width which are zero in Data are ignored when polling the memory address.
DelayThe number of 100ns units to poll. Note that timer available may be of insufficient granularity, so the delay may be longer.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.
Note
The FRAMEWORK version implementation does not support this API

Adds a record for I/O reads the I/O location and continues when the exit criteria is satisfied or after a defined duration.

Parameters
WidthThe width of the I/O operations.
AddressThe base address of the I/O operations.
DataThe comparison value used for the polling exit criteria.
DataMaskMask used for the polling criteria. The bits in the bytes below Width which are zero in Data are ignored when polling the memory address.
DelayThe number of 100ns units to poll. Note that timer available may be of poorer granularity so the delay may be longer.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.

Adds a record for I/O reads the I/O location and continues when the exit criteria is satisfied or after a defined duration.

Parameters
WidthThe width of the I/O operations.
AddressThe base address of the I/O operations.
DataThe comparison value used for the polling exit criteria.
DataMaskMask used for the polling criteria. The bits in the bytes below Width which are zero in Data are ignored when polling the memory address.
DelayThe number of 100ns units to poll. Note that timer available may be of poorer granularity so the delay may be longer.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.

Definition at line 1999 of file BootScriptSave.c.

◆ S3BootScriptSaveIoReadWrite()

RETURN_STATUS EFIAPI S3BootScriptSaveIoReadWrite ( IN S3_BOOT_SCRIPT_LIB_WIDTH  Width,
IN UINT64  Address,
IN VOID *  Data,
IN VOID *  DataMask 
)

Adds a record for an I/O modify operation into a S3 boot script table.

Parameters
[in]WidthThe width of the I/O operations.
[in]AddressThe base address of the I/O operations.
[in]DataA pointer to the data to be OR-ed.
[in]DataMaskA pointer to the data mask to be AND-ed with the data read from the register.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.

Adds a record for an I/O modify operation into a S3 boot script table

Parameters
WidthThe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
AddressThe base address of the I/O operations.
DataA pointer to the data to be OR-ed.
DataMaskA pointer to the data mask to be AND-ed with the data read from the register
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.

Adds a record for an I/O modify operation into a S3 boot script table

Parameters
WidthThe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
AddressThe base address of the I/O operations.
DataA pointer to the data to be OR-ed.
DataMaskA pointer to the data mask to be AND-ed with the data read from the register
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.

Definition at line 1075 of file BootScriptSave.c.

◆ S3BootScriptSaveIoWrite()

RETURN_STATUS EFIAPI S3BootScriptSaveIoWrite ( IN S3_BOOT_SCRIPT_LIB_WIDTH  Width,
IN UINT64  Address,
IN UINTN  Count,
IN VOID *  Buffer 
)

Save I/O write to boot script.

Parameters
[in]WidthThe width of the I/O operations.
[in]AddressThe base address of the I/O operations.
[in]CountThe number of I/O operations to perform.
[in]BufferThe source buffer from which to write data.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.

Save I/O write to boot script

Parameters
WidthThe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
AddressThe base address of the I/O operations.
CountThe number of I/O operations to perform.
BufferThe source buffer from which to write data.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.

Save I/O write to boot script

Parameters
Widththe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
AddressThe base address of the I/O operations.
CountThe number of I/O operations to perform.
BufferThe source buffer from which to write data.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.

Definition at line 1011 of file BootScriptSave.c.

◆ S3BootScriptSaveMemPoll()

RETURN_STATUS EFIAPI S3BootScriptSaveMemPoll ( IN S3_BOOT_SCRIPT_LIB_WIDTH  Width,
IN UINT64  Address,
IN VOID *  BitMask,
IN VOID *  BitValue,
IN UINTN  Duration,
IN UINT64  LoopTimes 
)

Adds a record for memory reads of the memory location and continues when the exit criteria is satisfied, or after a defined duration.

Please aware, below interface is different with PI specification, Vol 5: EFI_S3_SAVE_STATE_PROTOCOL.Write() for EFI_BOOT_SCRIPT_MEM_POLL_OPCODE. "Duration" below is microseconds, while "Delay" in PI specification means the number of 100ns units to poll.

Parameters
[in]WidthThe width of the memory operations.
[in]AddressThe base address of the memory operations.
[in]BitMaskA pointer to the bit mask to be AND-ed with the data read from the register.
[in]BitValueA pointer to the data value after to be Masked.
[in]DurationThe duration in microseconds of the stall.
[in]LoopTimesThe times of the register polling.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.

Adds a record for memory reads of the memory location and continues when the exit criteria is satisfied or after a defined duration.

Please aware, below interface is different with PI specification, Vol 5: EFI_S3_SAVE_STATE_PROTOCOL.Write() for EFI_BOOT_SCRIPT_MEM_POLL_OPCODE. "Duration" below is microseconds, while "Delay" in PI specification means the number of 100ns units to poll.

Parameters
WidthThe width of the memory operations.
AddressThe base address of the memory operations.
BitMaskA pointer to the bit mask to be AND-ed with the data read from the register.
BitValueA pointer to the data value after to be Masked.
DurationDuration in microseconds of the stall.
LoopTimesThe times of the register polling.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.

Adds a record for memory reads of the memory location and continues when the exit criteria is satisfied or after a defined duration.

Please aware, below interface is different with PI specification, Vol 5: EFI_S3_SAVE_STATE_PROTOCOL.Write() for EFI_BOOT_SCRIPT_MEM_POLL_OPCODE. "Duration" below is microseconds, while "Delay" in PI specification means the number of 100ns units to poll.

Parameters
WidthThe width of the memory operations.
AddressThe base address of the memory operations.
BitMaskA pointer to the bit mask to be AND-ed with the data read from the register.
BitValueA pointer to the data value after to be Masked.
DurationDuration in microseconds of the stall.
LoopTimesThe times of the register polling.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.

Definition at line 1814 of file BootScriptSave.c.

◆ S3BootScriptSaveMemReadWrite()

RETURN_STATUS EFIAPI S3BootScriptSaveMemReadWrite ( IN S3_BOOT_SCRIPT_LIB_WIDTH  Width,
IN UINT64  Address,
IN VOID *  Data,
IN VOID *  DataMask 
)

Adds a record for a memory modify operation into a specified boot script table.

Parameters
[in]WidthThe width of the I/O operations.
[in]AddressThe base address of the memory operations. Address needs alignment, if required
[in]DataA pointer to the data to be OR-ed.
[in]DataMaskA pointer to the data mask to be AND-ed with the data read from the register.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.

Adds a record for a memory modify operation into a specified boot script table.

Parameters
WidthThe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
AddressThe base address of the memory operations. Address needs alignment if required
DataA pointer to the data to be OR-ed.
DataMaskA pointer to the data mask to be AND-ed with the data read from the register.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.

Adds a record for a memory modify operation into a specified boot script table.

Parameters
WidthThe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
AddressThe base address of the memory operations. Address needs alignment if required
DataA pointer to the data to be OR-ed.
DataMaskA pointer to the data mask to be AND-ed with the data read from the register.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.

Definition at line 1193 of file BootScriptSave.c.

◆ S3BootScriptSaveMemWrite()

RETURN_STATUS EFIAPI S3BootScriptSaveMemWrite ( IN S3_BOOT_SCRIPT_LIB_WIDTH  Width,
IN UINT64  Address,
IN UINTN  Count,
IN VOID *  Buffer 
)

Adds a record for a memory write operation into a specified boot script table.

Parameters
[in]WidthThe width of the I/O operations.
[in]AddressThe base address of the memory operations
[in]CountThe number of memory operations to perform.
[in]BufferThe source buffer from which to write the data.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.

Adds a record for a memory write operation into a specified boot script table.

Parameters
WidthThe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
AddressThe base address of the memory operations
CountThe number of memory operations to perform.
BufferThe source buffer from which to write the data.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.

Adds a record for a memory write operation into a specified boot script table.

Parameters
WidthThe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
AddressThe base address of the memory operations
CountThe number of memory operations to perform.
BufferThe source buffer from which to write the data.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.

Definition at line 1129 of file BootScriptSave.c.

◆ S3BootScriptSavePci2Poll()

RETURN_STATUS EFIAPI S3BootScriptSavePci2Poll ( IN S3_BOOT_SCRIPT_LIB_WIDTH  Width,
IN UINT16  Segment,
IN UINT64  Address,
IN VOID *  Data,
IN VOID *  DataMask,
IN UINT64  Delay 
)

Adds a record for PCI configuration space reads and continues when the exit criteria is satisfied, or after a defined duration.

Parameters
WidthThe width of the I/O operations.
SegmentThe PCI segment number for Address.
AddressThe address within the PCI configuration space.
DataThe comparison value used for the polling exit criteria.
DataMaskMask used for the polling criteria. The bits in the bytes below Width which are zero in Data are ignored when polling the memory address
DelayThe number of 100ns units to poll. Note that timer available may be of insufficient granularity so the delay may be longer.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.
Note
A known Limitations in the implementation: When interpreting the opcode EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE_OPCODE, EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE_OPCODE and EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL_OPCODE, the 'Segment' parameter is assumed as Zero, or else, assert. The FRAMEWORK version implementation does not support this API.

Adds a record for PCI configuration space reads and continues when the exit criteria is satisfied or after a defined duration.

Parameters
WidthThe width of the I/O operations.
SegmentThe PCI segment number for Address.
AddressThe address within the PCI configuration space.
DataThe comparison value used for the polling exit criteria.
DataMaskMask used for the polling criteria. The bits in the bytes below Width which are zero in Data are ignored when polling the memory address
DelayThe number of 100ns units to poll. Note that timer available may be of poorer granularity so the delay may be longer.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.
Note
A known Limitations in the implementation which is 64bits operations are not supported.

Adds a record for PCI configuration space reads and continues when the exit criteria is satisfied or after a defined duration.

Parameters
WidthThe width of the I/O operations.
SegmentThe PCI segment number for Address.
AddressThe address within the PCI configuration space.
DataThe comparison value used for the polling exit criteria.
DataMaskMask used for the polling criteria. The bits in the bytes below Width which are zero in Data are ignored when polling the memory address
DelayThe number of 100ns units to poll. Note that timer available may be of poorer granularity so the delay may be longer.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.
Note
A known Limitations in the implementation: When interpreting the opcode EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE_OPCODE EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE_OPCODE and EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL_OPCODE, the 'Segment' parameter is assumed as Zero, or else, assert.

Definition at line 2131 of file BootScriptSave.c.

◆ S3BootScriptSavePciCfg2ReadWrite()

RETURN_STATUS EFIAPI S3BootScriptSavePciCfg2ReadWrite ( IN S3_BOOT_SCRIPT_LIB_WIDTH  Width,
IN UINT16  Segment,
IN UINT64  Address,
IN VOID *  Data,
IN VOID *  DataMask 
)

Adds a record for a PCI configuration space modify operation into a specified boot script table.

Parameters
[in]WidthThe width of the I/O operations.
[in]SegmentThe PCI segment number for Address.
[in]AddressThe address within the PCI configuration space.
[in]DataA pointer to the data to be OR-ed. The size depends on Width.
[in]DataMaskA pointer to the data mask to be AND-ed.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.

Adds a record for a PCI configuration 2 space modify operation into a specified boot script table.

Parameters
WidthThe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
SegmentThe PCI segment number for Address.
AddressThe address within the PCI configuration space.
DataA pointer to the data to be OR-ed. The size depends on Width.
DataMaskA pointer to the data mask to be AND-ed.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.
Note
A known Limitations in the implementation which is 64bits operations are not supported.

Adds a record for a PCI configuration space modify operation into a specified boot script table.

Parameters
WidthThe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
SegmentThe PCI segment number for Address.
AddressThe address within the PCI configuration space.
DataA pointer to the data to be OR-ed. The size depends on Width.
DataMaskA pointer to the data mask to be AND-ed.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.

Definition at line 1466 of file BootScriptSave.c.

◆ S3BootScriptSavePciCfg2Write()

RETURN_STATUS EFIAPI S3BootScriptSavePciCfg2Write ( IN S3_BOOT_SCRIPT_LIB_WIDTH  Width,
IN UINT16  Segment,
IN UINT64  Address,
IN UINTN  Count,
IN VOID *  Buffer 
)

Adds a record for a PCI configuration space modify operation into a specified boot script table.

Parameters
[in]WidthThe width of the I/O operations.
[in]SegmentThe PCI segment number for Address.
[in]AddressThe address within the PCI configuration space.
[in]CountThe number of PCI operations to perform.
[in]BufferThe source buffer from which to write the data.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.

Adds a record for a PCI configuration 2 space write operation into a specified boot script table.

Parameters
WidthThe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
SegmentThe PCI segment number for Address.
AddressThe address within the PCI configuration space.
CountThe number of PCI operations to perform.
BufferThe source buffer from which to write the data.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.
Note
A known Limitations in the implementation which is 64bits operations are not supported.

Adds a record for a PCI configuration space modify operation into a specified boot script table.

Parameters
WidthThe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
SegmentThe PCI segment number for Address.
AddressThe address within the PCI configuration space.
CountThe number of PCI operations to perform.
BufferThe source buffer from which to write the data.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.

Definition at line 1390 of file BootScriptSave.c.

◆ S3BootScriptSavePciCfgReadWrite()

RETURN_STATUS EFIAPI S3BootScriptSavePciCfgReadWrite ( IN S3_BOOT_SCRIPT_LIB_WIDTH  Width,
IN UINT64  Address,
IN VOID *  Data,
IN VOID *  DataMask 
)

Adds a record for a PCI configuration space modify operation into a specified boot script table.

Parameters
[in]WidthThe width of the I/O operations.
[in]AddressThe address within the PCI configuration space.
[in]DataA pointer to the data to be OR-ed.The size depends on Width.
[in]DataMaskA pointer to the data mask to be AND-ed.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN__SUCCESSThe opcode was added.

Adds a record for a PCI configuration space modify operation into a specified boot script table.

Parameters
WidthThe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
AddressThe address within the PCI configuration space.
DataA pointer to the data to be OR-ed.The size depends on Width.
DataMaskA pointer to the data mask to be AND-ed.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN__SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.
Note
A known Limitations in the implementation which is 64bits operations are not supported.

Adds a record for a PCI configuration space modify operation into a specified boot script table.

Parameters
WidthThe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
AddressThe address within the PCI configuration space.
DataA pointer to the data to be OR-ed.The size depends on Width.
DataMaskA pointer to the data mask to be AND-ed.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN__SUCCESSOpcode is added.

Definition at line 1322 of file BootScriptSave.c.

◆ S3BootScriptSavePciCfgWrite()

RETURN_STATUS EFIAPI S3BootScriptSavePciCfgWrite ( IN S3_BOOT_SCRIPT_LIB_WIDTH  Width,
IN UINT64  Address,
IN UINTN  Count,
IN VOID *  Buffer 
)

Adds a record for a PCI configuration space write operation into a specified boot script table.

Parameters
[in]WidthThe width of the I/O operations.
[in]AddressThe address within the PCI configuration space.
[in]CountThe number of PCI operations to perform.
[in]BufferThe source buffer from which to write the data.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.

Adds a record for a PCI configuration space write operation into a specified boot script table.

Parameters
WidthThe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
AddressThe address within the PCI configuration space.
CountThe number of PCI operations to perform.
BufferThe source buffer from which to write the data.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.
Note
A known Limitations in the implementation which is 64bits operations are not supported.

Adds a record for a PCI configuration space write operation into a specified boot script table.

Parameters
WidthThe width of the I/O operations.Enumerated in S3_BOOT_SCRIPT_LIB_WIDTH.
AddressThe address within the PCI configuration space.
CountThe number of PCI operations to perform.
BufferThe source buffer from which to write the data.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.

Definition at line 1249 of file BootScriptSave.c.

◆ S3BootScriptSavePciPoll()

RETURN_STATUS EFIAPI S3BootScriptSavePciPoll ( IN S3_BOOT_SCRIPT_LIB_WIDTH  Width,
IN UINT64  Address,
IN VOID *  Data,
IN VOID *  DataMask,
IN UINT64  Delay 
)

Adds a record for PCI configuration space reads and continues when the exit criteria is satisfied ,or after a defined duration.

Parameters
WidthThe width of the I/O operations.
AddressThe address within the PCI configuration space.
DataThe comparison value used for the polling exit criteria.
DataMaskMask used for the polling criteria. The bits in the bytes below Width which are zero in Data are ignored when polling the memory address.
DelayThe number of 100ns units to poll. Note that timer available may be of insufficient granularity, so the delay may be longer.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.
Note
The FRAMEWORK version implementation does not support this API

Adds a record for PCI configuration space reads and continues when the exit criteria is satisfied or after a defined duration.

Parameters
WidthThe width of the I/O operations.
AddressThe address within the PCI configuration space.
DataThe comparison value used for the polling exit criteria.
DataMaskMask used for the polling criteria. The bits in the bytes below Width which are zero in Data are ignored when polling the memory address
DelayThe number of 100ns units to poll. Note that timer available may be of poorer granularity so the delay may be longer.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.
Note
A known Limitations in the implementation which is 64bits operations are not supported.

Adds a record for PCI configuration space reads and continues when the exit criteria is satisfied or after a defined duration.

Parameters
WidthThe width of the I/O operations.
AddressThe address within the PCI configuration space.
DataThe comparison value used for the polling exit criteria.
DataMaskMask used for the polling criteria. The bits in the bytes below Width which are zero in Data are ignored when polling the memory address
DelayThe number of 100ns units to poll. Note that timer available may be of poorer granularity so the delay may be longer.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.

Definition at line 2061 of file BootScriptSave.c.

◆ S3BootScriptSaveSmbusExecute()

RETURN_STATUS EFIAPI S3BootScriptSaveSmbusExecute ( IN UINTN  SmBusAddress,
IN EFI_SMBUS_OPERATION  Operation,
IN UINTN Length,
IN VOID *  Buffer 
)

Adds a record for an SMBus command execution into a specified boot script table.

Parameters
[in]SmBusAddressAddress that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
[in]OperationIndicates which particular SMBus protocol it will use to execute the SMBus transactions.
[in]LengthA pointer to signify the number of bytes that this operation will do.
[in]BufferContains the value of data to execute to the SMBUS slave device.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.

Adds a record for an SMBus command execution into a specified boot script table.

Parameters
SmBusAddressAddress that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
OperationIndicates which particular SMBus protocol it will use to execute the SMBus transactions.
LengthA pointer to signify the number of bytes that this operation will do.
BufferContains the value of data to execute to the SMBUS slave device.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.

Adds a record for an SMBus command execution into a specified boot script table.

Parameters
SmBusAddressAddress that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
OperationIndicates which particular SMBus protocol it will use to execute the SMBus transactions.
LengthA pointer to signify the number of bytes that this operation will do.
BufferContains the value of data to execute to the SMBUS slave device.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.

Definition at line 1640 of file BootScriptSave.c.

◆ S3BootScriptSaveStall()

RETURN_STATUS EFIAPI S3BootScriptSaveStall ( IN UINTN  Duration)

Adds a record for an execution stall on the processor into a specified boot script table.

Parameters
[in]DurationThe duration in microseconds of the stall.
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table to perform the operation.
RETURN_SUCCESSThe opcode was added.

Adds a record for an execution stall on the processor into a specified boot script table.

Parameters
DurationDuration in microseconds of the stall
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added or no action is required as ACPI S3 was disabled.

Adds a record for an execution stall on the processor into a specified boot script table.

Parameters
DurationDuration in microseconds of the stall
Return values
RETURN_OUT_OF_RESOURCESNot enough memory for the table do operation.
RETURN_SUCCESSOpcode is added.

Definition at line 1713 of file BootScriptSave.c.