70 lines
2.1 KiB
C
70 lines
2.1 KiB
C
/** @file
|
|
PEI Chipset Services Library.
|
|
|
|
This file contains only one function that is PeiCsSvcGetSleepState().
|
|
The function PeiCsSvcGetSleepState() use chipset services to identify
|
|
sleep state.
|
|
|
|
***************************************************************************
|
|
* Copyright (c) 2012, Insyde Software Corp. All Rights Reserved.
|
|
*
|
|
* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
* any part of this publication in any form, by any means, without the prior
|
|
* written permission of Insyde Software Corporation.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
|
|
#include <PiPei.h>
|
|
#include <Library/DebugLib.h>
|
|
#include <Library/PeiServicesLib.h>
|
|
#include <Ppi/H2OPeiChipsetServices.h>
|
|
|
|
/**
|
|
To identify sleep state.
|
|
|
|
@param[in, out] SleepState 3 - This is an S3 restart
|
|
4 - This is an S4 restart
|
|
|
|
@retval EFI_SUCCESS Function returns successfully
|
|
@retval EFI_UNSUPPORTED If the function is not implemented.
|
|
*/
|
|
EFI_STATUS
|
|
EFIAPI
|
|
PeiCsSvcGetSleepState (
|
|
IN OUT UINT8 *SleepState
|
|
)
|
|
{
|
|
EFI_STATUS Status;
|
|
H2O_CHIPSET_SERVICES_PPI *ChipsetSvcPpi;
|
|
|
|
ChipsetSvcPpi = NULL;
|
|
|
|
Status = PeiServicesLocatePpi (
|
|
&gH2OChipsetServicesPpiGuid,
|
|
0,
|
|
NULL,
|
|
(VOID **)&ChipsetSvcPpi
|
|
);
|
|
|
|
if (EFI_ERROR(Status)) {
|
|
DEBUG ((EFI_D_ERROR, "H2O PEI Chipset Services can not be found!\n"));
|
|
return EFI_UNSUPPORTED;
|
|
}
|
|
|
|
//
|
|
// Verify that the PPI interface structure contains the function
|
|
// pointer and whether that function pointer is non-NULL. If not, return
|
|
// an error.
|
|
//
|
|
if (ChipsetSvcPpi == NULL ||
|
|
ChipsetSvcPpi->Size < (OFFSET_OF(H2O_CHIPSET_SERVICES_PPI, GetSleepState) + sizeof(VOID*)) ||
|
|
ChipsetSvcPpi->GetSleepState == NULL) {
|
|
DEBUG ((EFI_D_ERROR, "H2O PEI Chipset Services is NULL or member GetSleepState() isn't implement!\n"));
|
|
return EFI_UNSUPPORTED;
|
|
}
|
|
return ChipsetSvcPpi->GetSleepState (SleepState);
|
|
}
|