2007-07-13 05:21:40 +02:00
|
|
|
/** @file
|
2007-07-20 07:14:34 +02:00
|
|
|
PEI Services Table Pointer Library implementation for IPF that uses Kernel
|
2007-07-13 05:21:40 +02:00
|
|
|
Register 7 to store the pointer.
|
2007-06-22 18:22:26 +02:00
|
|
|
|
2010-04-23 18:37:43 +02:00
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2007-07-20 07:14:34 +02:00
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
2010-06-25 23:56:02 +02:00
|
|
|
http://opensource.org/licenses/bsd-license.php.
|
2007-06-22 18:22:26 +02:00
|
|
|
|
2007-07-20 07:14:34 +02:00
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2007-06-22 18:22:26 +02:00
|
|
|
|
2007-07-13 05:21:40 +02:00
|
|
|
**/
|
2007-06-22 18:22:26 +02:00
|
|
|
|
2007-07-20 07:14:34 +02:00
|
|
|
#include <PiPei.h>
|
2007-06-22 18:22:26 +02:00
|
|
|
#include <Library/BaseLib.h>
|
2007-07-20 07:14:34 +02:00
|
|
|
#include <Library/DebugLib.h>
|
2007-06-22 18:22:26 +02:00
|
|
|
|
|
|
|
/**
|
2008-12-11 07:29:24 +01:00
|
|
|
Retrieves the cached value of the PEI Services Table pointer.
|
2007-06-22 18:22:26 +02:00
|
|
|
|
2008-12-11 07:29:24 +01:00
|
|
|
Returns the cached value of the PEI Services Table pointer in a CPU specific manner
|
|
|
|
as specified in the CPU binding section of the Platform Initialization Pre-EFI
|
|
|
|
Initialization Core Interface Specification.
|
|
|
|
|
|
|
|
If the cached PEI Services Table pointer is NULL, then ASSERT().
|
2007-06-22 18:22:26 +02:00
|
|
|
|
2008-07-16 08:31:22 +02:00
|
|
|
@return The pointer to PeiServices.
|
2007-06-22 18:22:26 +02:00
|
|
|
|
|
|
|
**/
|
2008-10-17 10:41:06 +02:00
|
|
|
CONST EFI_PEI_SERVICES **
|
2007-06-22 18:22:26 +02:00
|
|
|
EFIAPI
|
|
|
|
GetPeiServicesTablePointer (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
2008-10-17 10:41:06 +02:00
|
|
|
CONST EFI_PEI_SERVICES **PeiServices;
|
2007-06-22 18:22:26 +02:00
|
|
|
|
2008-10-17 10:41:06 +02:00
|
|
|
PeiServices = (CONST EFI_PEI_SERVICES **)(UINTN)AsmReadKr7 ();
|
2007-06-22 18:22:26 +02:00
|
|
|
ASSERT (PeiServices != NULL);
|
|
|
|
return PeiServices;
|
|
|
|
}
|
|
|
|
|
2008-12-11 07:29:24 +01:00
|
|
|
|
2007-10-09 10:40:11 +02:00
|
|
|
/**
|
2008-12-11 07:29:24 +01:00
|
|
|
Caches a pointer PEI Services Table.
|
|
|
|
|
|
|
|
Caches the pointer to the PEI Services Table specified by PeiServicesTablePointer
|
|
|
|
in a CPU specific manner as specified in the CPU binding section of the Platform Initialization
|
|
|
|
Pre-EFI Initialization Core Interface Specification.
|
2008-10-17 06:09:00 +02:00
|
|
|
The function set the pointer of PEI services in KR7 register
|
2007-10-09 10:40:11 +02:00
|
|
|
according to PI specification.
|
|
|
|
|
2008-12-11 07:29:24 +01:00
|
|
|
If PeiServicesTablePointer is NULL, then ASSERT().
|
|
|
|
|
2008-07-25 14:21:57 +02:00
|
|
|
@param PeiServicesTablePointer The address of PeiServices pointer.
|
2007-10-09 10:40:11 +02:00
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
SetPeiServicesTablePointer (
|
2008-10-21 07:52:19 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES ** PeiServicesTablePointer
|
2007-10-09 10:40:11 +02:00
|
|
|
)
|
|
|
|
{
|
2008-12-11 07:29:24 +01:00
|
|
|
ASSERT (PeiServicesTablePointer != NULL);
|
2008-02-29 19:24:43 +01:00
|
|
|
AsmWriteKr7 ((UINT64)(UINTN)PeiServicesTablePointer);
|
2007-10-09 10:40:11 +02:00
|
|
|
}
|
|
|
|
|
2008-02-29 19:24:43 +01:00
|
|
|
|
2007-10-09 10:16:53 +02:00
|
|
|
|
2007-07-24 09:40:09 +02:00
|
|
|
|