2011-07-01 13:45:32 +02:00
|
|
|
/** @file
|
|
|
|
*
|
2014-11-11 01:43:03 +01:00
|
|
|
* Copyright (c) 2011-2014, ARM Limited. All rights reserved.
|
2011-07-01 13:45:32 +02:00
|
|
|
*
|
2019-04-04 01:03:21 +02:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-07-01 13:45:32 +02:00
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <PiPei.h>
|
|
|
|
|
|
|
|
#include <Library/ArmPlatformLib.h>
|
|
|
|
#include <Library/HobLib.h>
|
|
|
|
#include <Library/PcdLib.h>
|
|
|
|
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PlatformPeim (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
2014-11-11 01:43:03 +01:00
|
|
|
BuildFvHob (PcdGet64 (PcdFvBaseAddress), PcdGet32 (PcdFvSize));
|
2011-07-01 13:45:32 +02:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|