From 3cbfba02fef9dae07a041fdbf2e89611d72d6f90 Mon Sep 17 00:00:00 2001 From: David Wei Date: Mon, 12 Jan 2015 09:37:20 +0000 Subject: Upload BSD-licensed Vlv2TbltDevicePkg and Vlv2DeviceRefCodePkg to https://svn.code.sf.net/p/edk2/code/trunk/edk2/, which are for MinnowBoard MAX open source project. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: David Wei Reviewed-by: Mike Wu Reviewed-by: Hot Tian git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16599 6f19259b-4bc3-4df7-8a09-765794883524 --- Vlv2TbltDevicePkg/FvInfoPei/FvInfoPei.c | 73 +++++++++++++++++++++++++++++++ Vlv2TbltDevicePkg/FvInfoPei/FvInfoPei.inf | 54 +++++++++++++++++++++++ 2 files changed, 127 insertions(+) create mode 100644 Vlv2TbltDevicePkg/FvInfoPei/FvInfoPei.c create mode 100644 Vlv2TbltDevicePkg/FvInfoPei/FvInfoPei.inf (limited to 'Vlv2TbltDevicePkg/FvInfoPei') diff --git a/Vlv2TbltDevicePkg/FvInfoPei/FvInfoPei.c b/Vlv2TbltDevicePkg/FvInfoPei/FvInfoPei.c new file mode 100644 index 0000000000..5d8aa8065d --- /dev/null +++ b/Vlv2TbltDevicePkg/FvInfoPei/FvInfoPei.c @@ -0,0 +1,73 @@ +/** @file + + Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.
+ + This program and the accompanying materials are licensed and made available under + the terms and conditions of the BSD License that accompanies this distribution. + The full text of the license may be found at + http://opensource.org/licenses/bsd-license.php. + + THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, + WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + + +Module Name: + + FvInfoPei.c + +Abstract: + + EFI 2.0 PEIM to initialize the cache and program for unlock processor + + + +--*/ + +#include +#include +#include +#include +#include + +EFI_PEI_FIRMWARE_VOLUME_INFO_PPI mAddtionFVPpi = { + EFI_FIRMWARE_FILE_SYSTEM2_GUID, + (VOID*)(UINTN)FixedPcdGet32(PcdFlashFvRecovery2Base), + FixedPcdGet32(PcdFlashFvRecovery2Size), + NULL, + NULL +}; + +EFI_PEI_PPI_DESCRIPTOR mPpiList[] = { + (EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST), + &gEfiPeiFirmwareVolumeInfoPpiGuid, + &mAddtionFVPpi +}; + + +/** + Add Recovery Fv Info to the Pei Core. + + @param PeiServices General purpose services available to every PEIM. + + @retval Status + +**/ +EFI_STATUS +EFIAPI +PeimInitializeFvInfo ( + IN EFI_PEI_FILE_HANDLE FileHandle, + IN CONST EFI_PEI_SERVICES **PeiServices + ) + +// +// GC_TODO: FfsHeader - add argument and description to function comment +// +{ + EFI_STATUS Status; + Status = (**PeiServices).InstallPpi (PeiServices, &mPpiList[0]); + ASSERT_EFI_ERROR (Status); + + DEBUG ((EFI_D_INFO, "\nFvInfo Add Fv Info\n")); + + return Status; +} diff --git a/Vlv2TbltDevicePkg/FvInfoPei/FvInfoPei.inf b/Vlv2TbltDevicePkg/FvInfoPei/FvInfoPei.inf new file mode 100644 index 0000000000..bf0cc3cb31 --- /dev/null +++ b/Vlv2TbltDevicePkg/FvInfoPei/FvInfoPei.inf @@ -0,0 +1,54 @@ +# +# +# Copyright (c) 1999 - 2014, Intel Corporation. All rights reserved +# +# This program and the accompanying materials are licensed and made available under +# the terms and conditions of the BSD License that accompanies this distribution. +# The full text of the license may be found at +# http://opensource.org/licenses/bsd-license.php. +# +# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. +# +# +# +# Module Name: +# +# CpuPeim.inf +# +# Abstract: +# +# Component description file for CPU module +# +# +#--*/ + +[defines] + INF_VERSION = 0x00010005 + BASE_NAME = FvInfoPei + FILE_GUID = 64AAEAE0-92DF-4980-8668-6EB5EAAF4393 + MODULE_TYPE = PEIM + VERSION_STRING = 1.0 + ENTRY_POINT = PeimInitializeFvInfo + +[sources.common] + FvInfoPei.c + +[Packages] + MdePkg/MdePkg.dec + Vlv2TbltDevicePkg/PlatformPkg.dec + +[LibraryClasses] + PeimEntryPoint + DebugLib + +[Pcd.common] + gPlatformModuleTokenSpaceGuid.PcdFlashFvRecovery2Base + gPlatformModuleTokenSpaceGuid.PcdFlashFvRecovery2Size + +[Ppis] + gEfiPeiFirmwareVolumeInfoPpiGuid + +[Depex] + TRUE + -- cgit v1.2.3