/** @file
PCH PMC Library.
All function in this library is available for PEI, DXE, and SMM,
But do not support UEFI RUNTIME environment call.
Copyright (c) 2019 Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include
#include
#include
#include
#include
#include
#include
#include
#include
/**
Query PCH to determine the Pm Status
NOTE:
It's matter when did platform code use this library, since some status could be cleared by write one clear.
Therefore this funciton is not always return the same result in one boot.
It's suggested that platform code read this status in the beginning of post.
For the ColdBoot case, this function only returns one case of the cold boot. Some cold boot case might
depends on the power cycle scenario and should check with different condtion.
@param[in] PmStatus - The Pch Pm Status to be probed
@retval Return TRUE if Status querried is Valid or FALSE if otherwise
**/
BOOLEAN
GetPchPmStatus (
PCH_PM_STATUS PmStatus
)
{
UINTN PmcRegBase;
UINT32 GblRst0;
PmcRegBase = MmPciBase (
DEFAULT_PCI_BUS_NUMBER_PCH,
PCI_DEVICE_NUMBER_PCH_PMC,
PCI_FUNCTION_NUMBER_PCH_PMC
);
switch (PmStatus) {
case WarmBoot:
break;
case PwrFlr:
break;
case PwrFlrSys:
if (GblRst0 & BIT12) {
return TRUE;
}
break;
case PwrFlrPch:
if (GblRst0 & BIT11) {
return TRUE;
}
break;
case ColdBoot:
break;
default:
break;
}
return FALSE;
}
/**
Funtion to check if Battery lost or CMOS cleared.
@reval TRUE Battery is always present.
@reval FALSE CMOS is cleared.
**/
BOOLEAN
EFIAPI
PchIsRtcBatteryGood (
VOID
)
{
UINTN PmcBaseAddress;
//
// Check if the CMOS battery is present
// Checks RTC_PWR_STS bit in the GEN_PMCON_3 register
//
PmcBaseAddress = MmPciBase (
DEFAULT_PCI_BUS_NUMBER_PCH,
PCI_DEVICE_NUMBER_PCH_PMC,
PCI_FUNCTION_NUMBER_PCH_PMC
);
return FALSE;
}