2011-07-01 17:45:52 +02:00
|
|
|
/** @file
|
2021-02-25 17:37:35 +01:00
|
|
|
|
|
|
|
Copyright (c) 2011, ARM Limited. All rights reserved.
|
|
|
|
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
|
2011-07-01 17:45:52 +02:00
|
|
|
**/
|
|
|
|
|
|
|
|
#include <PiPei.h>
|
2015-11-27 18:04:59 +01:00
|
|
|
#include <Library/ArmLib.h>
|
2011-07-01 17:45:52 +02:00
|
|
|
#include <Library/PrePiHobListPointerLib.h>
|
|
|
|
#include <Library/DebugLib.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the pointer to the HOB list.
|
|
|
|
|
|
|
|
This function returns the pointer to first HOB in the list.
|
|
|
|
|
|
|
|
@return The pointer to the HOB list.
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID *
|
|
|
|
EFIAPI
|
|
|
|
PrePeiGetHobList (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
2015-11-27 18:04:59 +01:00
|
|
|
return (VOID *)ArmReadTpidrurw ();
|
2011-07-01 17:45:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Updates the pointer to the HOB list.
|
|
|
|
|
|
|
|
@param HobList Hob list pointer to store
|
2014-08-19 15:29:52 +02:00
|
|
|
|
2011-07-01 17:45:52 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PrePeiSetHobList (
|
|
|
|
IN VOID *HobList
|
|
|
|
)
|
|
|
|
{
|
2015-11-27 18:04:59 +01:00
|
|
|
ArmWriteTpidrurw ((UINTN)HobList);
|
2011-08-18 13:23:28 +02:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
2011-07-01 17:45:52 +02:00
|
|
|
}
|