From 151daa57732eaeacf286f63ea05bbe08c0e27c3c Mon Sep 17 00:00:00 2001 From: oliviermartin Date: Tue, 13 Sep 2011 09:33:49 +0000 Subject: ArmRealViewEbPkg: Delete the deprecated package 'ArmRealViewEbPkg' ARM RealView Emulation Board is supporting by the package: ArmPlatformPkg/ArmRealViewEbPkg/ git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12337 6f19259b-4bc3-4df7-8a09-765794883524 --- ArmRealViewEbPkg/MemoryInitPei/MemoryInit.c | 104 ----------------------- ArmRealViewEbPkg/MemoryInitPei/MemoryInitPei.inf | 59 ------------- 2 files changed, 163 deletions(-) delete mode 100755 ArmRealViewEbPkg/MemoryInitPei/MemoryInit.c delete mode 100755 ArmRealViewEbPkg/MemoryInitPei/MemoryInitPei.inf (limited to 'ArmRealViewEbPkg/MemoryInitPei') diff --git a/ArmRealViewEbPkg/MemoryInitPei/MemoryInit.c b/ArmRealViewEbPkg/MemoryInitPei/MemoryInit.c deleted file mode 100755 index 972bb37d2e..0000000000 --- a/ArmRealViewEbPkg/MemoryInitPei/MemoryInit.c +++ /dev/null @@ -1,104 +0,0 @@ -/**@file - -Copyright (c) 2006, 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 -which 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: - - MemoryInit.c - -Abstract: - - PEIM to provide fake memory init - -**/ - - - -// -// The package level header files this module uses -// -#include -// -// The protocols, PPI and GUID defintions for this module -// -#include -#include -// -// The Library classes this module consumes -// -#include -#include -#include -#include -#include - - -// -// Module globals -// - -EFI_STATUS -EFIAPI -InitializeMemory ( - IN EFI_PEI_FILE_HANDLE FileHandle, - IN CONST EFI_PEI_SERVICES **PeiServices - ) -/*++ - -Routine Description: - - - -Arguments: - - FileHandle - Handle of the file being invoked. - PeiServices - Describes the list of possible PEI Services. - -Returns: - - Status - EFI_SUCCESS if the boot mode could be set - ---*/ -{ - EFI_STATUS Status; - EFI_RESOURCE_ATTRIBUTE_TYPE Attributes; - UINT64 MemoryBase; - UINT64 MemorySize; - - DEBUG ((EFI_D_ERROR, "Memory Init PEIM Loaded\n")); - - // NOTE: this needs to come from your memory controller initization process - MemoryBase = 0; - MemorySize = 0x10000000; - - DEBUG ((EFI_D_ERROR, "Installing hardcoded 256MB\n")); - Status = PeiServicesInstallPeiMemory (MemoryBase, MemorySize); - ASSERT_EFI_ERROR (Status); - - Attributes = - ( - EFI_RESOURCE_ATTRIBUTE_PRESENT | - EFI_RESOURCE_ATTRIBUTE_INITIALIZED | - EFI_RESOURCE_ATTRIBUTE_UNCACHEABLE | - EFI_RESOURCE_ATTRIBUTE_WRITE_COMBINEABLE | - EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE | - EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE | - EFI_RESOURCE_ATTRIBUTE_TESTED - ); - - BuildResourceDescriptorHob ( - EFI_RESOURCE_SYSTEM_MEMORY, - Attributes, - MemoryBase, - MemorySize - ); - - return Status; -} diff --git a/ArmRealViewEbPkg/MemoryInitPei/MemoryInitPei.inf b/ArmRealViewEbPkg/MemoryInitPei/MemoryInitPei.inf deleted file mode 100755 index e50e2ecbcf..0000000000 --- a/ArmRealViewEbPkg/MemoryInitPei/MemoryInitPei.inf +++ /dev/null @@ -1,59 +0,0 @@ -## @file -# Component description file for BootMode module -# -# This module provides platform specific function to detect boot mode. -# Copyright (c) 2006 - 2010, 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 -# which 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. -# -# -## - -[Defines] - INF_VERSION = 0x00010005 - BASE_NAME = MemoryInit - FILE_GUID = D6F4724D-4504-418c-92BF-5E4D98FDBE85 - MODULE_TYPE = PEIM - VERSION_STRING = 1.0 - - ENTRY_POINT = InitializeMemory - -# -# The following information is for reference only and not required by the build tools. -# -# VALID_ARCHITECTURES = IA32 X64 IPF EBC -# - -[Sources] - MemoryInit.c - - -[Packages] - MdePkg/MdePkg.dec - EmbeddedPkg/EmbeddedPkg.dec - - -[LibraryClasses] - PeimEntryPoint - DebugLib - HobLib - - -[Ppis] - -[FixedPcd] - gEmbeddedTokenSpaceGuid.PcdEmbeddedFdBaseAddress #The base address of the FLASH Device. - gEmbeddedTokenSpaceGuid.PcdEmbeddedFdSize #The size in bytes of the FLASH Device - gEmbeddedTokenSpaceGuid.PcdFlashFvMainBase - gEmbeddedTokenSpaceGuid.PcdFlashFvMainSize - gEmbeddedTokenSpaceGuid.PcdPrePiCpuMemorySize - gEmbeddedTokenSpaceGuid.PcdPrePiCpuIoSize - -[depex] - TRUE - -- cgit v1.2.3