Detect some unsupported cases when save boot script, then return error early.
1. PciCfg Read/Write doesn't support UINT64 width. 2. PciCfg2 Segment must be zero. Move CheckParameters () to BootScriptSave.c to check parameter early. Add code for EfiSmbusBWBRProcessCall operation, and let the SmbusLib instance to decide if it is supported or not. Signed-off-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@14018 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
		@@ -15,107 +15,6 @@
 | 
				
			|||||||
**/
 | 
					**/
 | 
				
			||||||
#include "InternalBootScriptLib.h"
 | 
					#include "InternalBootScriptLib.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					 | 
				
			||||||
  Checks the parameter of SmbusExecute().
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  This function checks the input parameters of SmbusExecute().  If the input parameters are valid
 | 
					 | 
				
			||||||
  for certain SMBus bus protocol, it will return EFI_SUCCESS; otherwise, it will return certain
 | 
					 | 
				
			||||||
  error code based on the input SMBus bus protocol.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  @param  SmBusAddress            Address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, 
 | 
					 | 
				
			||||||
                                  and PEC.
 | 
					 | 
				
			||||||
  @param  Operation               Signifies which particular SMBus hardware protocol instance that
 | 
					 | 
				
			||||||
                                  it will use to execute the SMBus transactions. This SMBus
 | 
					 | 
				
			||||||
                                  hardware protocol is defined by the SMBus Specification and is
 | 
					 | 
				
			||||||
                                  not related to EFI.
 | 
					 | 
				
			||||||
  @param  Length                  Signifies the number of bytes that this operation will do. The
 | 
					 | 
				
			||||||
                                  maximum number of bytes can be revision specific and operation
 | 
					 | 
				
			||||||
                                  specific. This field will contain the actual number of bytes that
 | 
					 | 
				
			||||||
                                  are executed for this operation. Not all operations require this
 | 
					 | 
				
			||||||
                                  argument.
 | 
					 | 
				
			||||||
  @param  Buffer                  Contains the value of data to execute to the SMBus slave device.
 | 
					 | 
				
			||||||
                                  Not all operations require this argument. The length of this
 | 
					 | 
				
			||||||
                                  buffer is identified by Length.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  @retval EFI_SUCCESS             All the parameters are valid for the corresponding SMBus bus
 | 
					 | 
				
			||||||
                                  protocol. 
 | 
					 | 
				
			||||||
  @retval EFI_INVALID_PARAMETER   Operation is not defined in EFI_SMBUS_OPERATION.
 | 
					 | 
				
			||||||
  @retval EFI_INVALID_PARAMETER   Length/Buffer is NULL for operations except for EfiSmbusQuickRead
 | 
					 | 
				
			||||||
                                  and EfiSmbusQuickWrite. Length is outside the range of valid
 | 
					 | 
				
			||||||
                                  values.
 | 
					 | 
				
			||||||
  @retval EFI_UNSUPPORTED         The SMBus operation or PEC is not supported.
 | 
					 | 
				
			||||||
  @retval EFI_BUFFER_TOO_SMALL    Buffer is not sufficient for this operation.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
**/
 | 
					 | 
				
			||||||
EFI_STATUS
 | 
					 | 
				
			||||||
CheckParameters (
 | 
					 | 
				
			||||||
  IN     UINTN                    SmBusAddress,
 | 
					 | 
				
			||||||
  IN     EFI_SMBUS_OPERATION      Operation,
 | 
					 | 
				
			||||||
  IN OUT UINTN                    *Length,
 | 
					 | 
				
			||||||
  IN OUT VOID                     *Buffer
 | 
					 | 
				
			||||||
  )
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
  EFI_STATUS  Status;
 | 
					 | 
				
			||||||
  UINTN       RequiredLen;
 | 
					 | 
				
			||||||
  EFI_SMBUS_DEVICE_COMMAND Command;
 | 
					 | 
				
			||||||
  BOOLEAN                  PecCheck;
 | 
					 | 
				
			||||||
 
 | 
					 | 
				
			||||||
  Command      = SMBUS_LIB_COMMAND (SmBusAddress);
 | 
					 | 
				
			||||||
  PecCheck     = SMBUS_LIB_PEC (SmBusAddress);
 | 
					 | 
				
			||||||
  //
 | 
					 | 
				
			||||||
  // Set default value to be 2:
 | 
					 | 
				
			||||||
  // for SmbusReadWord, SmbusWriteWord and SmbusProcessCall. 
 | 
					 | 
				
			||||||
  //
 | 
					 | 
				
			||||||
  RequiredLen = 2;
 | 
					 | 
				
			||||||
  Status      = EFI_SUCCESS;
 | 
					 | 
				
			||||||
  switch (Operation) {
 | 
					 | 
				
			||||||
    case EfiSmbusQuickRead:
 | 
					 | 
				
			||||||
    case EfiSmbusQuickWrite:
 | 
					 | 
				
			||||||
      if (PecCheck || Command != 0) {
 | 
					 | 
				
			||||||
        return EFI_UNSUPPORTED;
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
      break;
 | 
					 | 
				
			||||||
    case EfiSmbusReceiveByte:
 | 
					 | 
				
			||||||
    case EfiSmbusSendByte:
 | 
					 | 
				
			||||||
      if (Command != 0) {
 | 
					 | 
				
			||||||
        return EFI_UNSUPPORTED;
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
      //
 | 
					 | 
				
			||||||
      // Cascade to check length parameter.
 | 
					 | 
				
			||||||
      //
 | 
					 | 
				
			||||||
    case EfiSmbusReadByte:
 | 
					 | 
				
			||||||
    case EfiSmbusWriteByte:
 | 
					 | 
				
			||||||
      RequiredLen = 1;
 | 
					 | 
				
			||||||
      //
 | 
					 | 
				
			||||||
      // Cascade to check length parameter.
 | 
					 | 
				
			||||||
      //
 | 
					 | 
				
			||||||
    case EfiSmbusReadWord:
 | 
					 | 
				
			||||||
    case EfiSmbusWriteWord:
 | 
					 | 
				
			||||||
    case EfiSmbusProcessCall:
 | 
					 | 
				
			||||||
      if (Buffer == NULL || Length == NULL) {
 | 
					 | 
				
			||||||
        return EFI_INVALID_PARAMETER;
 | 
					 | 
				
			||||||
      } else if (*Length < RequiredLen) {
 | 
					 | 
				
			||||||
        Status = EFI_BUFFER_TOO_SMALL;
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
      *Length = RequiredLen;
 | 
					 | 
				
			||||||
      break;
 | 
					 | 
				
			||||||
    case EfiSmbusReadBlock:
 | 
					 | 
				
			||||||
    case EfiSmbusWriteBlock:
 | 
					 | 
				
			||||||
      if ((Buffer == NULL) || 
 | 
					 | 
				
			||||||
          (Length == NULL) || 
 | 
					 | 
				
			||||||
          (*Length < MIN_SMBUS_BLOCK_LEN) ||
 | 
					 | 
				
			||||||
          (*Length > MAX_SMBUS_BLOCK_LEN)) {
 | 
					 | 
				
			||||||
        return EFI_INVALID_PARAMETER;
 | 
					 | 
				
			||||||
      } 
 | 
					 | 
				
			||||||
      break;
 | 
					 | 
				
			||||||
    case EfiSmbusBWBRProcessCall:
 | 
					 | 
				
			||||||
      return EFI_UNSUPPORTED;
 | 
					 | 
				
			||||||
    default:
 | 
					 | 
				
			||||||
      return EFI_INVALID_PARAMETER;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  return Status;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
  Executes an SMBus operation to an SMBus controller. Returns when either the command has been
 | 
					  Executes an SMBus operation to an SMBus controller. Returns when either the command has been
 | 
				
			||||||
  executed or an error is encountered in doing the operation.
 | 
					  executed or an error is encountered in doing the operation.
 | 
				
			||||||
@@ -166,14 +65,8 @@ SmbusExecute (
 | 
				
			|||||||
  )
 | 
					  )
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  EFI_STATUS                      Status;
 | 
					  EFI_STATUS                      Status;
 | 
				
			||||||
  UINTN                           WorkBufferLen;
 | 
					 | 
				
			||||||
  UINT8                           WorkBuffer[MAX_SMBUS_BLOCK_LEN];
 | 
					  UINT8                           WorkBuffer[MAX_SMBUS_BLOCK_LEN];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  Status = CheckParameters (SmbusAddress, Operation, Length, Buffer);
 | 
					 | 
				
			||||||
  if (EFI_ERROR (Status)) {
 | 
					 | 
				
			||||||
    return Status;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  switch (Operation) {
 | 
					  switch (Operation) {
 | 
				
			||||||
    case EfiSmbusQuickRead:
 | 
					    case EfiSmbusQuickRead:
 | 
				
			||||||
      DEBUG ((EFI_D_INFO, "EfiSmbusQuickRead - 0x%08x\n", SmbusAddress));
 | 
					      DEBUG ((EFI_D_INFO, "EfiSmbusQuickRead - 0x%08x\n", SmbusAddress));
 | 
				
			||||||
@@ -185,15 +78,15 @@ SmbusExecute (
 | 
				
			|||||||
      break;
 | 
					      break;
 | 
				
			||||||
    case EfiSmbusReceiveByte:
 | 
					    case EfiSmbusReceiveByte:
 | 
				
			||||||
      DEBUG ((EFI_D_INFO, "EfiSmbusReceiveByte - 0x%08x\n", SmbusAddress));
 | 
					      DEBUG ((EFI_D_INFO, "EfiSmbusReceiveByte - 0x%08x\n", SmbusAddress));
 | 
				
			||||||
      *(UINT8 *) Buffer = SmBusReceiveByte (SmbusAddress, &Status);
 | 
					      SmBusReceiveByte (SmbusAddress, &Status);
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    case EfiSmbusSendByte:
 | 
					    case EfiSmbusSendByte:
 | 
				
			||||||
      DEBUG ((EFI_D_INFO, "EfiSmbusReceiveByte - 0x%08x (0x%02x)\n", SmbusAddress, (UINTN)*(UINT8 *) Buffer));
 | 
					      DEBUG ((EFI_D_INFO, "EfiSmbusSendByte - 0x%08x (0x%02x)\n", SmbusAddress, (UINTN)*(UINT8 *) Buffer));
 | 
				
			||||||
      SmBusSendByte (SmbusAddress, *(UINT8 *) Buffer, &Status);
 | 
					      SmBusSendByte (SmbusAddress, *(UINT8 *) Buffer, &Status);
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    case EfiSmbusReadByte:
 | 
					    case EfiSmbusReadByte:
 | 
				
			||||||
      DEBUG ((EFI_D_INFO, "EfiSmbusReadByte - 0x%08x\n", SmbusAddress));
 | 
					      DEBUG ((EFI_D_INFO, "EfiSmbusReadByte - 0x%08x\n", SmbusAddress));
 | 
				
			||||||
      *(UINT8 *) Buffer = SmBusReadDataByte (SmbusAddress, &Status);
 | 
					      SmBusReadDataByte (SmbusAddress, &Status);
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    case EfiSmbusWriteByte:
 | 
					    case EfiSmbusWriteByte:
 | 
				
			||||||
      DEBUG ((EFI_D_INFO, "EfiSmbusWriteByte - 0x%08x (0x%02x)\n", SmbusAddress, (UINTN)*(UINT8 *) Buffer));
 | 
					      DEBUG ((EFI_D_INFO, "EfiSmbusWriteByte - 0x%08x (0x%02x)\n", SmbusAddress, (UINTN)*(UINT8 *) Buffer));
 | 
				
			||||||
@@ -201,41 +94,30 @@ SmbusExecute (
 | 
				
			|||||||
      break;
 | 
					      break;
 | 
				
			||||||
    case EfiSmbusReadWord:
 | 
					    case EfiSmbusReadWord:
 | 
				
			||||||
      DEBUG ((EFI_D_INFO, "EfiSmbusReadWord - 0x%08x\n", SmbusAddress));
 | 
					      DEBUG ((EFI_D_INFO, "EfiSmbusReadWord - 0x%08x\n", SmbusAddress));
 | 
				
			||||||
      *(UINT16 *) Buffer = SmBusReadDataWord (SmbusAddress, &Status);
 | 
					      SmBusReadDataWord (SmbusAddress, &Status);
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    case EfiSmbusWriteWord:
 | 
					    case EfiSmbusWriteWord:
 | 
				
			||||||
      DEBUG ((EFI_D_INFO, "EfiSmbusWriteByte - 0x%08x (0x%04x)\n", SmbusAddress, (UINTN)*(UINT16 *) Buffer));
 | 
					      DEBUG ((EFI_D_INFO, "EfiSmbusWriteWord - 0x%08x (0x%04x)\n", SmbusAddress, (UINTN)*(UINT16 *) Buffer));
 | 
				
			||||||
      SmBusWriteDataWord (SmbusAddress, *(UINT16 *) Buffer, &Status);
 | 
					      SmBusWriteDataWord (SmbusAddress, *(UINT16 *) Buffer, &Status);
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    case EfiSmbusProcessCall:
 | 
					    case EfiSmbusProcessCall:
 | 
				
			||||||
      DEBUG ((EFI_D_INFO, "EfiSmbusProcessCall - 0x%08x (0x%04x)\n", SmbusAddress, (UINTN)*(UINT16 *) Buffer));
 | 
					      DEBUG ((EFI_D_INFO, "EfiSmbusProcessCall - 0x%08x (0x%04x)\n", SmbusAddress, (UINTN)*(UINT16 *) Buffer));
 | 
				
			||||||
      *(UINT16 *) Buffer = SmBusProcessCall (SmbusAddress, *(UINT16 *) Buffer, &Status);
 | 
					      SmBusProcessCall (SmbusAddress, *(UINT16 *) Buffer, &Status);
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    case EfiSmbusReadBlock:
 | 
					    case EfiSmbusReadBlock:
 | 
				
			||||||
      DEBUG ((EFI_D_INFO, "EfiSmbusReadBlock - 0x%08x\n", SmbusAddress));
 | 
					      DEBUG ((EFI_D_INFO, "EfiSmbusReadBlock - 0x%08x\n", SmbusAddress));
 | 
				
			||||||
      WorkBufferLen = SmBusReadBlock (SmbusAddress, WorkBuffer, &Status);
 | 
					      SmBusReadBlock (SmbusAddress, WorkBuffer, &Status);
 | 
				
			||||||
      if (!EFI_ERROR (Status)) {
 | 
					 | 
				
			||||||
        //
 | 
					 | 
				
			||||||
        // Read block transaction is complete successfully, and then
 | 
					 | 
				
			||||||
        // check whether the output buffer is large enough.  
 | 
					 | 
				
			||||||
        //
 | 
					 | 
				
			||||||
        if (*Length >= WorkBufferLen) {
 | 
					 | 
				
			||||||
          CopyMem (Buffer, WorkBuffer, WorkBufferLen);
 | 
					 | 
				
			||||||
        } else {
 | 
					 | 
				
			||||||
          Status = EFI_BUFFER_TOO_SMALL;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        *Length = WorkBufferLen;
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    case EfiSmbusWriteBlock:
 | 
					    case EfiSmbusWriteBlock:
 | 
				
			||||||
      DEBUG ((EFI_D_INFO, "EfiSmbusWriteBlock - 0x%08x (0x%04x)\n", SmbusAddress, (UINTN)*(UINT16 *) Buffer));
 | 
					      DEBUG ((EFI_D_INFO, "EfiSmbusWriteBlock - 0x%08x\n", SmbusAddress));
 | 
				
			||||||
      SmBusWriteBlock ((SmbusAddress + SMBUS_LIB_ADDRESS (0, 0, (*Length), FALSE)), Buffer, &Status);
 | 
					      SmBusWriteBlock ((SmbusAddress + SMBUS_LIB_ADDRESS (0, 0, (*Length), FALSE)), Buffer, &Status);
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    case EfiSmbusBWBRProcessCall:
 | 
					    case EfiSmbusBWBRProcessCall:
 | 
				
			||||||
      //
 | 
					      DEBUG ((EFI_D_INFO, "EfiSmbusBWBRProcessCall - 0x%08x\n", SmbusAddress));
 | 
				
			||||||
      // BUGBUG: Should this case be handled?
 | 
					      SmBusBlockProcessCall ((SmbusAddress + SMBUS_LIB_ADDRESS (0, 0, (*Length), FALSE)), Buffer, WorkBuffer, &Status);
 | 
				
			||||||
      //
 | 
					 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
 | 
					    default:
 | 
				
			||||||
 | 
					      return EFI_INVALID_PARAMETER;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  return Status;  
 | 
					  return Status;  
 | 
				
			||||||
@@ -766,6 +648,7 @@ BootScriptExecuteMemoryWrite (
 | 
				
			|||||||
  
 | 
					  
 | 
				
			||||||
  @retval EFI_SUCCESS The read succeed.
 | 
					  @retval EFI_SUCCESS The read succeed.
 | 
				
			||||||
  @retval EFI_INVALID_PARAMETER if Width is not defined  
 | 
					  @retval EFI_INVALID_PARAMETER if Width is not defined  
 | 
				
			||||||
 | 
					  @note  A known Limitations in the implementation which is 64bits operations are not supported.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
**/
 | 
					**/
 | 
				
			||||||
EFI_STATUS
 | 
					EFI_STATUS
 | 
				
			||||||
@@ -851,6 +734,7 @@ ScriptPciCfgRead (
 | 
				
			|||||||
  
 | 
					  
 | 
				
			||||||
  @retval EFI_SUCCESS The write succeed.
 | 
					  @retval EFI_SUCCESS The write succeed.
 | 
				
			||||||
  @retval EFI_INVALID_PARAMETER if Width is not defined  
 | 
					  @retval EFI_INVALID_PARAMETER if Width is not defined  
 | 
				
			||||||
 | 
					  @note  A known Limitations in the implementation which is 64bits operations are not supported.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
**/
 | 
					**/
 | 
				
			||||||
EFI_STATUS
 | 
					EFI_STATUS
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -905,6 +905,8 @@ S3BootScriptSaveMemReadWrite (
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  @retval RETURN_OUT_OF_RESOURCES  Not enough memory for the table do operation.
 | 
					  @retval RETURN_OUT_OF_RESOURCES  Not enough memory for the table do operation.
 | 
				
			||||||
  @retval RETURN_SUCCESS           Opcode is added.
 | 
					  @retval RETURN_SUCCESS           Opcode is added.
 | 
				
			||||||
 | 
					  @note  A known Limitations in the implementation which is 64bits operations are not supported.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
**/
 | 
					**/
 | 
				
			||||||
RETURN_STATUS
 | 
					RETURN_STATUS
 | 
				
			||||||
EFIAPI
 | 
					EFIAPI
 | 
				
			||||||
@@ -920,6 +922,12 @@ S3BootScriptSavePciCfgWrite (
 | 
				
			|||||||
  UINT8                 WidthInByte;
 | 
					  UINT8                 WidthInByte;
 | 
				
			||||||
  EFI_BOOT_SCRIPT_PCI_CONFIG_WRITE  ScriptPciWrite;
 | 
					  EFI_BOOT_SCRIPT_PCI_CONFIG_WRITE  ScriptPciWrite;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  if (Width == S3BootScriptWidthUint64 ||
 | 
				
			||||||
 | 
					      Width == S3BootScriptWidthFifoUint64 ||
 | 
				
			||||||
 | 
					      Width == S3BootScriptWidthFillUint64) {
 | 
				
			||||||
 | 
					    return EFI_INVALID_PARAMETER;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  WidthInByte = (UINT8) (0x01 << (Width & 0x03));
 | 
					  WidthInByte = (UINT8) (0x01 << (Width & 0x03));
 | 
				
			||||||
  Length = (UINT8)(sizeof (EFI_BOOT_SCRIPT_PCI_CONFIG_WRITE) + (WidthInByte * Count));
 | 
					  Length = (UINT8)(sizeof (EFI_BOOT_SCRIPT_PCI_CONFIG_WRITE) + (WidthInByte * Count));
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
@@ -953,6 +961,8 @@ S3BootScriptSavePciCfgWrite (
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  @retval RETURN_OUT_OF_RESOURCES  Not enough memory for the table do operation.
 | 
					  @retval RETURN_OUT_OF_RESOURCES  Not enough memory for the table do operation.
 | 
				
			||||||
  @retval RETURN__SUCCESS           Opcode is added.
 | 
					  @retval RETURN__SUCCESS           Opcode is added.
 | 
				
			||||||
 | 
					  @note  A known Limitations in the implementation which is 64bits operations are not supported.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
**/
 | 
					**/
 | 
				
			||||||
RETURN_STATUS
 | 
					RETURN_STATUS
 | 
				
			||||||
EFIAPI
 | 
					EFIAPI
 | 
				
			||||||
@@ -968,6 +978,12 @@ S3BootScriptSavePciCfgReadWrite (
 | 
				
			|||||||
  UINT8                 WidthInByte;
 | 
					  UINT8                 WidthInByte;
 | 
				
			||||||
  EFI_BOOT_SCRIPT_PCI_CONFIG_READ_WRITE  ScriptPciReadWrite;
 | 
					  EFI_BOOT_SCRIPT_PCI_CONFIG_READ_WRITE  ScriptPciReadWrite;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  if (Width == S3BootScriptWidthUint64 ||
 | 
				
			||||||
 | 
					      Width == S3BootScriptWidthFifoUint64 ||
 | 
				
			||||||
 | 
					      Width == S3BootScriptWidthFillUint64) {
 | 
				
			||||||
 | 
					    return EFI_INVALID_PARAMETER;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  WidthInByte = (UINT8) (0x01 << (Width & 0x03));
 | 
					  WidthInByte = (UINT8) (0x01 << (Width & 0x03));
 | 
				
			||||||
  Length = (UINT8)(sizeof (EFI_BOOT_SCRIPT_PCI_CONFIG_READ_WRITE) + (WidthInByte * 2));
 | 
					  Length = (UINT8)(sizeof (EFI_BOOT_SCRIPT_PCI_CONFIG_READ_WRITE) + (WidthInByte * 2));
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
@@ -1006,6 +1022,8 @@ S3BootScriptSavePciCfgReadWrite (
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  @retval RETURN_OUT_OF_RESOURCES  Not enough memory for the table do operation.
 | 
					  @retval RETURN_OUT_OF_RESOURCES  Not enough memory for the table do operation.
 | 
				
			||||||
  @retval RETURN_SUCCESS           Opcode is added.
 | 
					  @retval RETURN_SUCCESS           Opcode is added.
 | 
				
			||||||
 | 
					  @note  A known Limitations in the implementation which is non-zero Segment and 64bits operations are not supported.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
**/
 | 
					**/
 | 
				
			||||||
RETURN_STATUS
 | 
					RETURN_STATUS
 | 
				
			||||||
EFIAPI
 | 
					EFIAPI
 | 
				
			||||||
@@ -1022,6 +1040,13 @@ S3BootScriptSavePciCfg2Write (
 | 
				
			|||||||
  UINT8                 WidthInByte;
 | 
					  UINT8                 WidthInByte;
 | 
				
			||||||
  EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE  ScriptPciWrite2;
 | 
					  EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE  ScriptPciWrite2;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  if (Segment != 0 ||
 | 
				
			||||||
 | 
					      Width == S3BootScriptWidthUint64 ||
 | 
				
			||||||
 | 
					      Width == S3BootScriptWidthFifoUint64 ||
 | 
				
			||||||
 | 
					      Width == S3BootScriptWidthFillUint64) {
 | 
				
			||||||
 | 
					    return EFI_INVALID_PARAMETER;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  WidthInByte = (UINT8) (0x01 << (Width & 0x03));
 | 
					  WidthInByte = (UINT8) (0x01 << (Width & 0x03));
 | 
				
			||||||
  Length = (UINT8)(sizeof (EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE) + (WidthInByte * Count));
 | 
					  Length = (UINT8)(sizeof (EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE) + (WidthInByte * Count));
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
@@ -1057,6 +1082,8 @@ S3BootScriptSavePciCfg2Write (
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  @retval RETURN_OUT_OF_RESOURCES  Not enough memory for the table do operation.
 | 
					  @retval RETURN_OUT_OF_RESOURCES  Not enough memory for the table do operation.
 | 
				
			||||||
  @retval RETURN_SUCCESS           Opcode is added.
 | 
					  @retval RETURN_SUCCESS           Opcode is added.
 | 
				
			||||||
 | 
					  @note  A known Limitations in the implementation which is non-zero Segment and 64bits operations are not supported.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
**/
 | 
					**/
 | 
				
			||||||
RETURN_STATUS
 | 
					RETURN_STATUS
 | 
				
			||||||
EFIAPI
 | 
					EFIAPI
 | 
				
			||||||
@@ -1073,6 +1100,13 @@ S3BootScriptSavePciCfg2ReadWrite (
 | 
				
			|||||||
  UINT8                 WidthInByte;
 | 
					  UINT8                 WidthInByte;
 | 
				
			||||||
  EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE  ScriptPciReadWrite2;
 | 
					  EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE  ScriptPciReadWrite2;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  if (Segment != 0 ||
 | 
				
			||||||
 | 
					      Width == S3BootScriptWidthUint64 ||
 | 
				
			||||||
 | 
					      Width == S3BootScriptWidthFifoUint64 ||
 | 
				
			||||||
 | 
					      Width == S3BootScriptWidthFillUint64) {
 | 
				
			||||||
 | 
					    return EFI_INVALID_PARAMETER;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
  WidthInByte = (UINT8) (0x01 << (Width & 0x03));
 | 
					  WidthInByte = (UINT8) (0x01 << (Width & 0x03));
 | 
				
			||||||
  Length = (UINT8)(sizeof (EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE) + (WidthInByte * 2));
 | 
					  Length = (UINT8)(sizeof (EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE) + (WidthInByte * 2));
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
@@ -1101,6 +1135,107 @@ S3BootScriptSavePciCfg2ReadWrite (
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  return RETURN_SUCCESS;
 | 
					  return RETURN_SUCCESS;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					  Checks the parameter of S3BootScriptSaveSmbusExecute().
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  This function checks the input parameters of SmbusExecute().  If the input parameters are valid
 | 
				
			||||||
 | 
					  for certain SMBus bus protocol, it will return EFI_SUCCESS; otherwise, it will return certain
 | 
				
			||||||
 | 
					  error code based on the input SMBus bus protocol.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  @param  SmBusAddress            Address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, 
 | 
				
			||||||
 | 
					                                  and PEC.
 | 
				
			||||||
 | 
					  @param  Operation               Signifies which particular SMBus hardware protocol instance that
 | 
				
			||||||
 | 
					                                  it will use to execute the SMBus transactions. This SMBus
 | 
				
			||||||
 | 
					                                  hardware protocol is defined by the SMBus Specification and is
 | 
				
			||||||
 | 
					                                  not related to EFI.
 | 
				
			||||||
 | 
					  @param  Length                  Signifies the number of bytes that this operation will do. The
 | 
				
			||||||
 | 
					                                  maximum number of bytes can be revision specific and operation
 | 
				
			||||||
 | 
					                                  specific. This field will contain the actual number of bytes that
 | 
				
			||||||
 | 
					                                  are executed for this operation. Not all operations require this
 | 
				
			||||||
 | 
					                                  argument.
 | 
				
			||||||
 | 
					  @param  Buffer                  Contains the value of data to execute to the SMBus slave device.
 | 
				
			||||||
 | 
					                                  Not all operations require this argument. The length of this
 | 
				
			||||||
 | 
					                                  buffer is identified by Length.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  @retval EFI_SUCCESS             All the parameters are valid for the corresponding SMBus bus
 | 
				
			||||||
 | 
					                                  protocol. 
 | 
				
			||||||
 | 
					  @retval EFI_INVALID_PARAMETER   Operation is not defined in EFI_SMBUS_OPERATION.
 | 
				
			||||||
 | 
					  @retval EFI_INVALID_PARAMETER   Length/Buffer is NULL for operations except for EfiSmbusQuickRead
 | 
				
			||||||
 | 
					                                  and EfiSmbusQuickWrite. Length is outside the range of valid
 | 
				
			||||||
 | 
					                                  values.
 | 
				
			||||||
 | 
					  @retval EFI_UNSUPPORTED         The SMBus operation or PEC is not supported.
 | 
				
			||||||
 | 
					  @retval EFI_BUFFER_TOO_SMALL    Buffer is not sufficient for this operation.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					**/
 | 
				
			||||||
 | 
					EFI_STATUS
 | 
				
			||||||
 | 
					CheckParameters (
 | 
				
			||||||
 | 
					  IN     UINTN                    SmBusAddress,
 | 
				
			||||||
 | 
					  IN     EFI_SMBUS_OPERATION      Operation,
 | 
				
			||||||
 | 
					  IN OUT UINTN                    *Length,
 | 
				
			||||||
 | 
					  IN     VOID                     *Buffer
 | 
				
			||||||
 | 
					  )
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  EFI_STATUS  Status;
 | 
				
			||||||
 | 
					  UINTN       RequiredLen;
 | 
				
			||||||
 | 
					  EFI_SMBUS_DEVICE_COMMAND Command;
 | 
				
			||||||
 | 
					  BOOLEAN                  PecCheck;
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
 | 
					  Command      = SMBUS_LIB_COMMAND (SmBusAddress);
 | 
				
			||||||
 | 
					  PecCheck     = SMBUS_LIB_PEC (SmBusAddress);
 | 
				
			||||||
 | 
					  //
 | 
				
			||||||
 | 
					  // Set default value to be 2:
 | 
				
			||||||
 | 
					  // for SmbusReadWord, SmbusWriteWord and SmbusProcessCall. 
 | 
				
			||||||
 | 
					  //
 | 
				
			||||||
 | 
					  RequiredLen = 2;
 | 
				
			||||||
 | 
					  Status      = EFI_SUCCESS;
 | 
				
			||||||
 | 
					  switch (Operation) {
 | 
				
			||||||
 | 
					    case EfiSmbusQuickRead:
 | 
				
			||||||
 | 
					    case EfiSmbusQuickWrite:
 | 
				
			||||||
 | 
					      if (PecCheck || Command != 0) {
 | 
				
			||||||
 | 
					        return EFI_UNSUPPORTED;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					      break;
 | 
				
			||||||
 | 
					    case EfiSmbusReceiveByte:
 | 
				
			||||||
 | 
					    case EfiSmbusSendByte:
 | 
				
			||||||
 | 
					      if (Command != 0) {
 | 
				
			||||||
 | 
					        return EFI_UNSUPPORTED;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					      //
 | 
				
			||||||
 | 
					      // Cascade to check length parameter.
 | 
				
			||||||
 | 
					      //
 | 
				
			||||||
 | 
					    case EfiSmbusReadByte:
 | 
				
			||||||
 | 
					    case EfiSmbusWriteByte:
 | 
				
			||||||
 | 
					      RequiredLen = 1;
 | 
				
			||||||
 | 
					      //
 | 
				
			||||||
 | 
					      // Cascade to check length parameter.
 | 
				
			||||||
 | 
					      //
 | 
				
			||||||
 | 
					    case EfiSmbusReadWord:
 | 
				
			||||||
 | 
					    case EfiSmbusWriteWord:
 | 
				
			||||||
 | 
					    case EfiSmbusProcessCall:
 | 
				
			||||||
 | 
					      if (Buffer == NULL || Length == NULL) {
 | 
				
			||||||
 | 
					        return EFI_INVALID_PARAMETER;
 | 
				
			||||||
 | 
					      } else if (*Length < RequiredLen) {
 | 
				
			||||||
 | 
					        Status = EFI_BUFFER_TOO_SMALL;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					      *Length = RequiredLen;
 | 
				
			||||||
 | 
					      break;
 | 
				
			||||||
 | 
					    case EfiSmbusReadBlock:
 | 
				
			||||||
 | 
					    case EfiSmbusWriteBlock:
 | 
				
			||||||
 | 
					    case EfiSmbusBWBRProcessCall:
 | 
				
			||||||
 | 
					      if ((Buffer == NULL) || 
 | 
				
			||||||
 | 
					          (Length == NULL) || 
 | 
				
			||||||
 | 
					          (*Length < MIN_SMBUS_BLOCK_LEN) ||
 | 
				
			||||||
 | 
					          (*Length > MAX_SMBUS_BLOCK_LEN)) {
 | 
				
			||||||
 | 
					        return EFI_INVALID_PARAMETER;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					      break;
 | 
				
			||||||
 | 
					    default:
 | 
				
			||||||
 | 
					      return EFI_INVALID_PARAMETER;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  return Status;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
  Adds a record for an SMBus command execution into a specified boot script table.
 | 
					  Adds a record for an SMBus command execution into a specified boot script table.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1122,11 +1257,24 @@ S3BootScriptSaveSmbusExecute (
 | 
				
			|||||||
  IN  VOID                              *Buffer
 | 
					  IN  VOID                              *Buffer
 | 
				
			||||||
  )
 | 
					  )
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
 | 
					  EFI_STATUS            Status;
 | 
				
			||||||
 | 
					  UINTN                 BufferLength;
 | 
				
			||||||
  UINT8                 DataSize;
 | 
					  UINT8                 DataSize;
 | 
				
			||||||
  UINT8                *Script;
 | 
					  UINT8                *Script;
 | 
				
			||||||
  EFI_BOOT_SCRIPT_SMBUS_EXECUTE  ScriptSmbusExecute;
 | 
					  EFI_BOOT_SCRIPT_SMBUS_EXECUTE  ScriptSmbusExecute;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  DataSize = (UINT8)(sizeof (EFI_BOOT_SCRIPT_SMBUS_EXECUTE) + (*Length));
 | 
					  if (Length == NULL) {
 | 
				
			||||||
 | 
					    BufferLength = 0;
 | 
				
			||||||
 | 
					  } else {
 | 
				
			||||||
 | 
					    BufferLength = *Length;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Status = CheckParameters (SmBusAddress, Operation, &BufferLength, Buffer);
 | 
				
			||||||
 | 
					  if (EFI_ERROR (Status)) {
 | 
				
			||||||
 | 
					    return Status;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  DataSize = (UINT8)(sizeof (EFI_BOOT_SCRIPT_SMBUS_EXECUTE) + BufferLength);
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
  Script = S3BootScriptGetEntryAddAddress (DataSize);
 | 
					  Script = S3BootScriptGetEntryAddAddress (DataSize);
 | 
				
			||||||
  if (Script == NULL) {
 | 
					  if (Script == NULL) {
 | 
				
			||||||
@@ -1139,13 +1287,13 @@ S3BootScriptSaveSmbusExecute (
 | 
				
			|||||||
  ScriptSmbusExecute.Length       = DataSize;
 | 
					  ScriptSmbusExecute.Length       = DataSize;
 | 
				
			||||||
  ScriptSmbusExecute.SmBusAddress = (UINT64) SmBusAddress;
 | 
					  ScriptSmbusExecute.SmBusAddress = (UINT64) SmBusAddress;
 | 
				
			||||||
  ScriptSmbusExecute.Operation    = Operation;
 | 
					  ScriptSmbusExecute.Operation    = Operation;
 | 
				
			||||||
  ScriptSmbusExecute.DataSize     = (UINT32) *Length;
 | 
					  ScriptSmbusExecute.DataSize     = (UINT32) BufferLength;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  CopyMem ((VOID*)Script, (VOID*)&ScriptSmbusExecute, sizeof (EFI_BOOT_SCRIPT_SMBUS_EXECUTE));
 | 
					  CopyMem ((VOID*)Script, (VOID*)&ScriptSmbusExecute, sizeof (EFI_BOOT_SCRIPT_SMBUS_EXECUTE));
 | 
				
			||||||
  CopyMem (
 | 
					  CopyMem (
 | 
				
			||||||
    (VOID*)(Script + sizeof (EFI_BOOT_SCRIPT_SMBUS_EXECUTE)),
 | 
					    (VOID*)(Script + sizeof (EFI_BOOT_SCRIPT_SMBUS_EXECUTE)),
 | 
				
			||||||
    Buffer,
 | 
					    Buffer,
 | 
				
			||||||
    (*Length)
 | 
					    BufferLength
 | 
				
			||||||
    );
 | 
					    );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  SyncBootScript (Script);
 | 
					  SyncBootScript (Script);
 | 
				
			||||||
@@ -1461,6 +1609,7 @@ S3BootScriptSaveIoPoll (
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 @retval RETURN_OUT_OF_RESOURCES  Not enough memory for the table do operation.
 | 
					 @retval RETURN_OUT_OF_RESOURCES  Not enough memory for the table do operation.
 | 
				
			||||||
 @retval RETURN_SUCCESS           Opcode is added.
 | 
					 @retval RETURN_SUCCESS           Opcode is added.
 | 
				
			||||||
 | 
					  @note  A known Limitations in the implementation which is 64bits operations are not supported.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
**/
 | 
					**/
 | 
				
			||||||
RETURN_STATUS
 | 
					RETURN_STATUS
 | 
				
			||||||
@@ -1478,6 +1627,12 @@ S3BootScriptSavePciPoll (
 | 
				
			|||||||
  UINT8                    Length;
 | 
					  UINT8                    Length;
 | 
				
			||||||
  EFI_BOOT_SCRIPT_PCI_CONFIG_POLL  ScriptPciPoll;
 | 
					  EFI_BOOT_SCRIPT_PCI_CONFIG_POLL  ScriptPciPoll;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  if (Width == S3BootScriptWidthUint64 ||
 | 
				
			||||||
 | 
					      Width == S3BootScriptWidthFifoUint64 ||
 | 
				
			||||||
 | 
					      Width == S3BootScriptWidthFillUint64) {
 | 
				
			||||||
 | 
					    return EFI_INVALID_PARAMETER;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  WidthInByte = (UINT8) (0x01 << (Width & 0x03));
 | 
					  WidthInByte = (UINT8) (0x01 << (Width & 0x03));
 | 
				
			||||||
  Length = (UINT8)(sizeof (EFI_BOOT_SCRIPT_PCI_CONFIG_POLL) + (WidthInByte * 2));
 | 
					  Length = (UINT8)(sizeof (EFI_BOOT_SCRIPT_PCI_CONFIG_POLL) + (WidthInByte * 2));
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
@@ -1517,9 +1672,8 @@ S3BootScriptSavePciPoll (
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 @retval RETURN_OUT_OF_RESOURCES  Not enough memory for the table do operation.
 | 
					 @retval RETURN_OUT_OF_RESOURCES  Not enough memory for the table do operation.
 | 
				
			||||||
 @retval RETURN_SUCCESS           Opcode is added.
 | 
					 @retval RETURN_SUCCESS           Opcode is added.
 | 
				
			||||||
 @note   A known Limitations in the implementation: When interpreting the opcode  EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE_OPCODE
 | 
					  @note  A known Limitations in the implementation which is non-zero Segment and 64bits operations are not supported.
 | 
				
			||||||
         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.
 | 
					 | 
				
			||||||
**/
 | 
					**/
 | 
				
			||||||
RETURN_STATUS
 | 
					RETURN_STATUS
 | 
				
			||||||
EFIAPI
 | 
					EFIAPI
 | 
				
			||||||
@@ -1537,6 +1691,13 @@ S3BootScriptSavePci2Poll (
 | 
				
			|||||||
  UINT8                    Length;
 | 
					  UINT8                    Length;
 | 
				
			||||||
  EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL  ScriptPci2Poll;
 | 
					  EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL  ScriptPci2Poll;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  if (Segment != 0 ||
 | 
				
			||||||
 | 
					      Width == S3BootScriptWidthUint64 ||
 | 
				
			||||||
 | 
					      Width == S3BootScriptWidthFifoUint64 ||
 | 
				
			||||||
 | 
					      Width == S3BootScriptWidthFillUint64) {
 | 
				
			||||||
 | 
					    return EFI_INVALID_PARAMETER;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  WidthInByte = (UINT8) (0x01 << (Width & 0x03));
 | 
					  WidthInByte = (UINT8) (0x01 << (Width & 0x03));
 | 
				
			||||||
  Length = (UINT8)(sizeof (EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL) + (WidthInByte * 2));
 | 
					  Length = (UINT8)(sizeof (EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL) + (WidthInByte * 2));
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user