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

Go to the source code of this file.

Functions

VOID EFIAPI S3SmBusQuickRead (IN UINTN SmBusAddress, OUT RETURN_STATUS *Status OPTIONAL)
 
VOID EFIAPI S3SmBusQuickWrite (IN UINTN SmBusAddress, OUT RETURN_STATUS *Status OPTIONAL)
 
UINT8 EFIAPI S3SmBusReceiveByte (IN UINTN SmBusAddress, OUT RETURN_STATUS *Status OPTIONAL)
 
UINT8 EFIAPI S3SmBusSendByte (IN UINTN SmBusAddress, IN UINT8 Value, OUT RETURN_STATUS *Status OPTIONAL)
 
UINT8 EFIAPI S3SmBusReadDataByte (IN UINTN SmBusAddress, OUT RETURN_STATUS *Status OPTIONAL)
 
UINT8 EFIAPI S3SmBusWriteDataByte (IN UINTN SmBusAddress, IN UINT8 Value, OUT RETURN_STATUS *Status OPTIONAL)
 
UINT16 EFIAPI S3SmBusReadDataWord (IN UINTN SmBusAddress, OUT RETURN_STATUS *Status OPTIONAL)
 
UINT16 EFIAPI S3SmBusWriteDataWord (IN UINTN SmBusAddress, IN UINT16 Value, OUT RETURN_STATUS *Status OPTIONAL)
 
UINT16 EFIAPI S3SmBusProcessCall (IN UINTN SmBusAddress, IN UINT16 Value, OUT RETURN_STATUS *Status OPTIONAL)
 
UINTN EFIAPI S3SmBusReadBlock (IN UINTN SmBusAddress, OUT VOID *Buffer, OUT RETURN_STATUS *Status OPTIONAL)
 
UINTN EFIAPI S3SmBusWriteBlock (IN UINTN SmBusAddress, OUT VOID *Buffer, OUT RETURN_STATUS *Status OPTIONAL)
 
UINTN EFIAPI S3SmBusBlockProcessCall (IN UINTN SmBusAddress, IN VOID *WriteBuffer, OUT VOID *ReadBuffer, OUT RETURN_STATUS *Status OPTIONAL)
 

Detailed Description

Smbus Library Services that conduct SMBus transactions and enable the operatation to be replayed during an S3 resume. This library class maps directly on top of the SmbusLib class.

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

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

Definition in file S3SmbusLib.h.

Function Documentation

◆ S3SmBusBlockProcessCall()

UINTN EFIAPI S3SmBusBlockProcessCall ( IN UINTN  SmBusAddress,
IN VOID *  WriteBuffer,
OUT VOID *  ReadBuffer,
OUT RETURN_STATUS *Status  OPTIONAL 
)

Executes an SMBUS block process call command, and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS block process call command on the SMBUS device specified by SmBusAddress. The SMBUS slave address, SMBUS command, and SMBUS length fields of SmBusAddress are required. Bytes are written to the SMBUS from WriteBuffer. Bytes are then read from the SMBUS into ReadBuffer. If Status is not NULL, then the status of the executed command is returned in Status. It is the caller's responsibility to make sure ReadBuffer is large enough for the total number of bytes read. SMBUS supports a maximum transfer size of 32 bytes, so Buffer does not need to be any larger than 32 bytes. If Length in SmBusAddress is zero or greater than 32, then ASSERT(). If WriteBuffer is NULL, then ASSERT(). If ReadBuffer is NULL, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
[in]SmBusAddressThe address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
[in]WriteBufferThe pointer to the buffer of bytes to write to the SMBUS.
[out]ReadBufferThe pointer to the buffer of bytes to read from the SMBUS.
[out]StatusThe return status for the executed command. This is an optional parameter and may be NULL. RETURN_TIMEOUT A timeout occurred while executing the SMBUS command. RETURN_DEVICE_ERROR The request was not completed because a failure was recorded in the Host Status Register bit. Device errors are a result of a transaction collision, illegal command field, unclaimed cycle (host initiated), or bus error (collision). RETURN_CRC_ERROR The checksum is not correct (PEC is incorrect). RETURN_UNSUPPORTED The SMBus operation is not supported.
Returns
The number of bytes written.

Executes an SMBUS block process call command and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS block process call command on the SMBUS device specified by SmBusAddress. The SMBUS slave address, SMBUS command, and SMBUS length fields of SmBusAddress are required. Bytes are written to the SMBUS from WriteBuffer. Bytes are then read from the SMBUS into ReadBuffer. If Status is not NULL, then the status of the executed command is returned in Status. It is the caller's responsibility to make sure ReadBuffer is large enough for the total number of bytes read. SMBUS supports a maximum transfer size of 32 bytes, so Buffer does not need to be any larger than 32 bytes. If Length in SmBusAddress is zero or greater than 32, then ASSERT(). If WriteBuffer is NULL, then ASSERT(). If ReadBuffer is NULL, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
SmBusAddressAddress that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
WriteBufferPointer to the buffer of bytes to write to the SMBUS.
ReadBufferPointer to the buffer of bytes to read from the SMBUS.
StatusReturn status for the executed command. This is an optional parameter and may be NULL.
Returns
The number of bytes written.

Definition at line 480 of file S3SmbusLib.c.

◆ S3SmBusProcessCall()

UINT16 EFIAPI S3SmBusProcessCall ( IN UINTN  SmBusAddress,
IN UINT16  Value,
OUT RETURN_STATUS *Status  OPTIONAL 
)

Executes an SMBUS process call command, and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS process call command on the SMBUS device specified by SmBusAddress. The 16-bit value specified by Value is written. Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required. The 16-bit value returned by the process call command is returned. If Status is not NULL, then the status of the executed command is returned in Status. If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
[in]SmBusAddressThe address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
[in]ValueThe 16-bit value to write.
[out]StatusThe return status for the executed command. This is an optional parameter and may be NULL. RETURN_SUCCESS The SMBUS command was executed. RETURN_TIMEOUT A timeout occurred while executing the SMBUS command. RETURN_DEVICE_ERROR The request was not completed because a failure was recorded in the Host Status Register bit. Device errors are a result of a transaction collision, illegal command field, unclaimed cycle (host initiated), or bus error (collision). RETURN_CRC_ERROR The checksum is not correct (PEC is incorrect). RETURN_UNSUPPORTED The SMBus operation is not supported.
Returns
The 16-bit value returned by the process call command.

Executes an SMBUS process call command and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS process call command on the SMBUS device specified by SmBusAddress. The 16-bit value specified by Value is written. Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required. The 16-bit value returned by the process call command is returned. If Status is not NULL, then the status of the executed command is returned in Status. If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
SmBusAddressAddress that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
ValueThe 16-bit value to write.
StatusReturn status for the executed command. This is an optional parameter and may be NULL.
Returns
The 16-bit value returned by the process call command.

Definition at line 358 of file S3SmbusLib.c.

◆ S3SmBusQuickRead()

VOID EFIAPI S3SmBusQuickRead ( IN UINTN  SmBusAddress,
OUT RETURN_STATUS *Status  OPTIONAL 
)

Executes an SMBUS quick read command, and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS quick read command on the SMBUS device specified by SmBusAddress. Only the SMBUS slave address field of SmBusAddress is required. If Status is not NULL, then the status of the executed command is returned in Status. If PEC is set in SmBusAddress, then ASSERT(). If Command in SmBusAddress is not zero, then ASSERT(). If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
[in]SmBusAddressThe address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
[out]StatusThe return status for the executed command. This is an optional parameter and may be NULL. RETURN_SUCCESS The SMBUS command was executed. RETURN_TIMEOUT A timeout occurred while executing the SMBUS command. RETURN_DEVICE_ERROR The request was not completed because a failure was recorded in the Host Status Register bit. Device errors are a result of a transaction collision, illegal command field, unclaimed cycle (host initiated), or bus error (collision). RETURN_UNSUPPORTED The SMBus operation is not supported.

Executes an SMBUS quick read command and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS quick read command on the SMBUS device specified by SmBusAddress. Only the SMBUS slave address field of SmBusAddress is required. If Status is not NULL, then the status of the executed command is returned in Status. If PEC is set in SmBusAddress, then ASSERT(). If Command in SmBusAddress is not zero, then ASSERT(). If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
SmBusAddressAddress that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
StatusReturn status for the executed command. This is an optional parameter and may be NULL.

Definition at line 75 of file S3SmbusLib.c.

◆ S3SmBusQuickWrite()

VOID EFIAPI S3SmBusQuickWrite ( IN UINTN  SmBusAddress,
OUT RETURN_STATUS *Status  OPTIONAL 
)

Executes an SMBUS quick write command, and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS quick write command on the SMBUS device specified by SmBusAddress. Only the SMBUS slave address field of SmBusAddress is required. If Status is not NULL, then the status of the executed command is returned in Status. If PEC is set in SmBusAddress, then ASSERT(). If Command in SmBusAddress is not zero, then ASSERT(). If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
[in]SmBusAddressThe address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
[out]StatusThe return status for the executed command. This is an optional parameter and may be NULL. RETURN_SUCCESS The SMBUS command was executed. RETURN_TIMEOUT A timeout occurred while executing the SMBUS command. RETURN_DEVICE_ERROR The request was not completed because a failure was recorded in the Host Status Register bit. Device errors are a result of a transaction collision, illegal command field, unclaimed cycle (host initiated), or bus error (collision). RETURN_UNSUPPORTED The SMBus operation is not supported.

Executes an SMBUS quick write command and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS quick write command on the SMBUS device specified by SmBusAddress. Only the SMBUS slave address field of SmBusAddress is required. If Status is not NULL, then the status of the executed command is returned in Status. If PEC is set in SmBusAddress, then ASSERT(). If Command in SmBusAddress is not zero, then ASSERT(). If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
SmBusAddressAddress that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
StatusReturn status for the executed command. This is an optional parameter and may be NULL.

Definition at line 105 of file S3SmbusLib.c.

◆ S3SmBusReadBlock()

UINTN EFIAPI S3SmBusReadBlock ( IN UINTN  SmBusAddress,
OUT VOID *  Buffer,
OUT RETURN_STATUS *Status  OPTIONAL 
)

Executes an SMBUS read block command, and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS read block command on the SMBUS device specified by SmBusAddress. Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required. Bytes are read from the SMBUS and stored in Buffer. The number of bytes read is returned, and will never return a value larger than 32-bytes. If Status is not NULL, then the status of the executed command is returned in Status. It is the caller's responsibility to make sure Buffer is large enough for the total number of bytes read. SMBUS supports a maximum transfer size of 32 bytes, so Buffer does not need to be any larger than 32 bytes. If Length in SmBusAddress is not zero, then ASSERT(). If Buffer is NULL, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
[in]SmBusAddressThe address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
[out]BufferThe pointer to the buffer to store the bytes read from the SMBUS.
[out]StatusThe return status for the executed command. This is an optional parameter and may be NULL. RETURN_SUCCESS The SMBUS command was executed. RETURN_TIMEOUT A timeout occurred while executing the SMBUS command. RETURN_DEVICE_ERROR The request was not completed because a failure was recorded in the Host Status Register bit. Device errors are a result of a transaction collision, illegal command field, unclaimed cycle (host initiated), or bus error (collision). RETURN_CRC_ERROR The checksum is not correct (PEC is incorrect). RETURN_UNSUPPORTED The SMBus operation is not supported.
Returns
The number of bytes read.

Executes an SMBUS read block command and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS read block command on the SMBUS device specified by SmBusAddress. Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required. Bytes are read from the SMBUS and stored in Buffer. The number of bytes read is returned, and will never return a value larger than 32-bytes. If Status is not NULL, then the status of the executed command is returned in Status. It is the caller's responsibility to make sure Buffer is large enough for the total number of bytes read. SMBUS supports a maximum transfer size of 32 bytes, so Buffer does not need to be any larger than 32 bytes. If Length in SmBusAddress is not zero, then ASSERT(). If Buffer is NULL, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
SmBusAddressAddress that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
BufferPointer to the buffer to store the bytes read from the SMBUS.
StatusReturn status for the executed command. This is an optional parameter and may be NULL.
Returns
The number of bytes read.

Definition at line 399 of file S3SmbusLib.c.

◆ S3SmBusReadDataByte()

UINT8 EFIAPI S3SmBusReadDataByte ( IN UINTN  SmBusAddress,
OUT RETURN_STATUS *Status  OPTIONAL 
)

Executes an SMBUS read data byte command, and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS read data byte command on the SMBUS device specified by SmBusAddress. Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required. The 8-bit value read from the SMBUS is returned. If Status is not NULL, then the status of the executed command is returned in Status. If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
[in]SmBusAddressThe address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
[out]StatusThe return status for the executed command. This is an optional parameter and may be NULL. RETURN_SUCCESS The SMBUS command was executed. RETURN_TIMEOUT A timeout occurred while executing the SMBUS command. RETURN_DEVICE_ERROR The request was not completed because a failure was recorded in the Host Status Register bit. Device errors are a result of a transaction collision, illegal command field, unclaimed cycle (host initiated), or bus error (collision). RETURN_CRC_ERROR The checksum is not correct (PEC is incorrect). RETURN_UNSUPPORTED The SMBus operation is not supported.
Returns
The byte read from the SMBUS.

Executes an SMBUS read data byte command and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS read data byte command on the SMBUS device specified by SmBusAddress. Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required. The 8-bit value read from the SMBUS is returned. If Status is not NULL, then the status of the executed command is returned in Status. If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
SmBusAddressAddress that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
StatusReturn status for the executed command. This is an optional parameter and may be NULL.
Returns
The byte read from the SMBUS.

Definition at line 210 of file S3SmbusLib.c.

◆ S3SmBusReadDataWord()

UINT16 EFIAPI S3SmBusReadDataWord ( IN UINTN  SmBusAddress,
OUT RETURN_STATUS *Status  OPTIONAL 
)

Executes an SMBUS read data word command, and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS read data word command on the SMBUS device specified by SmBusAddress. Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required. The 16-bit value read from the SMBUS is returned. If Status is not NULL, then the status of the executed command is returned in Status. If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
[in]SmBusAddressThe address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
[out]StatusThe return status for the executed command. This is an optional parameter and may be NULL. RETURN_SUCCESS The SMBUS command was executed. RETURN_TIMEOUT A timeout occurred while executing the SMBUS command. RETURN_DEVICE_ERROR The request was not completed because a failure was recorded in the Host Status Register bit. Device errors are a result of a transaction collision, illegal command field, unclaimed cycle (host initiated), or bus error (collision). RETURN_CRC_ERROR The checksum is not correct (PEC is incorrect). RETURN_UNSUPPORTED The SMBus operation is not supported.
Returns
The byte read from the SMBUS.

Executes an SMBUS read data word command and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS read data word command on the SMBUS device specified by SmBusAddress. Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required. The 16-bit value read from the SMBUS is returned. If Status is not NULL, then the status of the executed command is returned in Status. If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
SmBusAddressAddress that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
StatusReturn status for the executed command. This is an optional parameter and may be NULL.
Returns
The byte read from the SMBUS.

Definition at line 283 of file S3SmbusLib.c.

◆ S3SmBusReceiveByte()

UINT8 EFIAPI S3SmBusReceiveByte ( IN UINTN  SmBusAddress,
OUT RETURN_STATUS *Status  OPTIONAL 
)

Executes an SMBUS receive byte command, and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS receive byte command on the SMBUS device specified by SmBusAddress. Only the SMBUS slave address field of SmBusAddress is required. The byte received from the SMBUS is returned. If Status is not NULL, then the status of the executed command is returned in Status. If Command in SmBusAddress is not zero, then ASSERT(). If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
[in]SmBusAddressThe address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
[out]StatusThe return status for the executed command. This is an optional parameter and may be NULL. RETURN_SUCCESS The SMBUS command was executed. RETURN_TIMEOUT A timeout occurred while executing the SMBUS command. RETURN_DEVICE_ERROR The request was not completed because a failure was recorded in the Host Status Register bit. Device errors are a result of a transaction collision, illegal command field, unclaimed cycle (host initiated), or bus error (collision). RETURN_CRC_ERROR The checksum is not correct (PEC is incorrect). RETURN_UNSUPPORTED The SMBus operation is not supported.
Returns
The byte received from the SMBUS.

Executes an SMBUS receive byte command and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS receive byte command on the SMBUS device specified by SmBusAddress. Only the SMBUS slave address field of SmBusAddress is required. The byte received from the SMBUS is returned. If Status is not NULL, then the status of the executed command is returned in Status. If Command in SmBusAddress is not zero, then ASSERT(). If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
SmBusAddressAddress that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
StatusReturn status for the executed command. This is an optional parameter and may be NULL.
Returns
The byte received from the SMBUS.

Definition at line 137 of file S3SmbusLib.c.

◆ S3SmBusSendByte()

UINT8 EFIAPI S3SmBusSendByte ( IN UINTN  SmBusAddress,
IN UINT8  Value,
OUT RETURN_STATUS *Status  OPTIONAL 
)

Executes an SMBUS send byte command, and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS send byte command on the SMBUS device specified by SmBusAddress. The byte specified by Value is sent. Only the SMBUS slave address field of SmBusAddress is required. Value is returned. If Status is not NULL, then the status of the executed command is returned in Status. If Command in SmBusAddress is not zero, then ASSERT(). If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
[in]SmBusAddressThe address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
[in]ValueThe 8-bit value to send.
[out]StatusThe return status for the executed command. This is an optional parameter and may be NULL. RETURN_SUCCESS The SMBUS command was executed. RETURN_TIMEOUT A timeout occurred while executing the SMBUS command. RETURN_DEVICE_ERROR The request was not completed because a failure was recorded in the Host Status Register bit. Device errors are a result of a transaction collision, illegal command field, unclaimed cycle (host initiated), or bus errors (collisions). RETURN_CRC_ERROR The checksum is not correct (PEC is incorrect). RETURN_UNSUPPORTED The SMBus operation is not supported.
Returns
The parameter of Value.

Executes an SMBUS send byte command and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS send byte command on the SMBUS device specified by SmBusAddress. The byte specified by Value is sent. Only the SMBUS slave address field of SmBusAddress is required. Value is returned. If Status is not NULL, then the status of the executed command is returned in Status. If Command in SmBusAddress is not zero, then ASSERT(). If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
SmBusAddressAddress that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
ValueThe 8-bit value to send.
StatusReturn status for the executed command. This is an optional parameter and may be NULL.
Returns
The parameter of Value.

Definition at line 174 of file S3SmbusLib.c.

◆ S3SmBusWriteBlock()

UINTN EFIAPI S3SmBusWriteBlock ( IN UINTN  SmBusAddress,
OUT VOID *  Buffer,
OUT RETURN_STATUS *Status  OPTIONAL 
)

Executes an SMBUS write block command, and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS write block command on the SMBUS device specified by SmBusAddress. The SMBUS slave address, SMBUS command, and SMBUS length fields of SmBusAddress are required. Bytes are written to the SMBUS from Buffer. The number of bytes written is returned, and will never return a value larger than 32-bytes. If Status is not NULL, then the status of the executed command is returned in Status. If Length in SmBusAddress is zero or greater than 32, then ASSERT(). If Buffer is NULL, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
[in]SmBusAddressThe address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
[out]BufferThe pointer to the buffer to store the bytes read from the SMBUS.
[out]StatusThe return status for the executed command. This is an optional parameter and may be NULL. RETURN_TIMEOUT A timeout occurred while executing the SMBUS command. RETURN_DEVICE_ERROR The request was not completed because a failure was recorded in the Host Status Register bit. Device errors are a result of a transaction collision, illegal command field, unclaimed cycle (host initiated), or bus error (collision). RETURN_CRC_ERROR The checksum is not correct (PEC is incorrect). RETURN_UNSUPPORTED The SMBus operation is not supported.
Returns
The number of bytes written.

Executes an SMBUS write block command and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS write block command on the SMBUS device specified by SmBusAddress. The SMBUS slave address, SMBUS command, and SMBUS length fields of SmBusAddress are required. Bytes are written to the SMBUS from Buffer. The number of bytes written is returned, and will never return a value larger than 32-bytes. If Status is not NULL, then the status of the executed command is returned in Status. If Length in SmBusAddress is zero or greater than 32, then ASSERT(). If Buffer is NULL, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
SmBusAddressAddress that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
BufferPointer to the buffer to store the bytes read from the SMBUS.
StatusReturn status for the executed command. This is an optional parameter and may be NULL.
Returns
The number of bytes written.

Definition at line 438 of file S3SmbusLib.c.

◆ S3SmBusWriteDataByte()

UINT8 EFIAPI S3SmBusWriteDataByte ( IN UINTN  SmBusAddress,
IN UINT8  Value,
OUT RETURN_STATUS *Status  OPTIONAL 
)

Executes an SMBUS write data byte command, and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS write data byte command on the SMBUS device specified by SmBusAddress. The 8-bit value specified by Value is written. Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required. Value is returned. If Status is not NULL, then the status of the executed command is returned in Status. If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
[in]SmBusAddressThe address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
[in]ValueThe 8-bit value to write.
[out]StatusThe return status for the executed command. This is an optional parameter and may be NULL. RETURN_SUCCESS The SMBUS command was executed. RETURN_TIMEOUT A timeout occurred while executing the SMBUS command. RETURN_DEVICE_ERROR The request was not completed because a failure was recorded in the Host Status Register bit. Device errors are a result of a transaction collision, illegal command field, unclaimed cycle (host initiated), or bus error (collision). RETURN_CRC_ERROR The checksum is not correct (PEC is incorrect). RETURN_UNSUPPORTED The SMBus operation is not supported.
Returns
The parameter of Value.

Executes an SMBUS write data byte command and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS write data byte command on the SMBUS device specified by SmBusAddress. The 8-bit value specified by Value is written. Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required. Value is returned. If Status is not NULL, then the status of the executed command is returned in Status. If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
SmBusAddressAddress that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
ValueThe 8-bit value to write.
StatusReturn status for the executed command. This is an optional parameter and may be NULL.
Returns
The parameter of Value.

Definition at line 247 of file S3SmbusLib.c.

◆ S3SmBusWriteDataWord()

UINT16 EFIAPI S3SmBusWriteDataWord ( IN UINTN  SmBusAddress,
IN UINT16  Value,
OUT RETURN_STATUS *Status  OPTIONAL 
)

Executes an SMBUS write data word command, and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS write data word command on the SMBUS device specified by SmBusAddress. The 16-bit value specified by Value is written. Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required. Value is returned. If Status is not NULL, then the status of the executed command is returned in Status. If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
[in]SmBusAddressThe address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
[in]ValueThe 16-bit value to write.
[out]StatusThe return status for the executed command. This is an optional parameter and may be NULL. RETURN_SUCCESS The SMBUS command was executed. RETURN_TIMEOUT A timeout occurred while executing the SMBUS command. RETURN_DEVICE_ERROR The request was not completed because a failure was recorded in the Host Status Register bit. Device errors are a result of a transaction collision, illegal command field, unclaimed cycle (host initiated), or bus error (collision). RETURN_CRC_ERROR The checksum is not correct (PEC is incorrect). RETURN_UNSUPPORTED The SMBus operation is not supported.
Returns
The parameter of Value.

Executes an SMBUS write data word command and saves the value in the S3 script to be replayed on S3 resume.

Executes an SMBUS write data word command on the SMBUS device specified by SmBusAddress. The 16-bit value specified by Value is written. Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required. Value is returned. If Status is not NULL, then the status of the executed command is returned in Status. If Length in SmBusAddress is not zero, then ASSERT(). If any reserved bits of SmBusAddress are set, then ASSERT().

Parameters
SmBusAddressAddress that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC.
ValueThe 16-bit value to write.
StatusReturn status for the executed command. This is an optional parameter and may be NULL.
Returns
The parameter of Value.

Definition at line 320 of file S3SmbusLib.c.