mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-28 08:04:07 +02:00
ArmPlatformPkg: Add support for ARM RTSM Versatile Express A15x1 and A15x4
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12456 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
da9675a241
commit
88d4f51dfc
@ -0,0 +1,47 @@
|
|||||||
|
//
|
||||||
|
// Copyright (c) 2011, ARM Limited. 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.
|
||||||
|
//
|
||||||
|
//
|
||||||
|
|
||||||
|
#include <AsmMacroIoLib.h>
|
||||||
|
#include <Library/ArmCpuLib.h>
|
||||||
|
#include <Library/ArmGicLib.h>
|
||||||
|
#include <Library/PcdLib.h>
|
||||||
|
#include <Chipset/ArmV7.h>
|
||||||
|
|
||||||
|
.text
|
||||||
|
.align 3
|
||||||
|
|
||||||
|
GCC_ASM_EXPORT(ArmCpuSynchronizeWait)
|
||||||
|
GCC_ASM_IMPORT(CArmCpuSynchronizeWait)
|
||||||
|
// Dirty hack to get the Fixed value of GicDistributorBase
|
||||||
|
GCC_ASM_IMPORT(_gPcd_FixedAtBuild_PcdGicDistributorBase)
|
||||||
|
|
||||||
|
|
||||||
|
// VOID
|
||||||
|
// ArmCpuSynchronizeWait (
|
||||||
|
// IN ARM_CPU_SYNCHRONIZE_EVENT Event
|
||||||
|
// );
|
||||||
|
ASM_PFX(ArmCpuSynchronizeWait):
|
||||||
|
cmp r0, #ARM_CPU_EVENT_BOOT_MEM_INIT
|
||||||
|
// The SCU enabled is the event to tell us the Init Boot Memory is initialized
|
||||||
|
beq ArmWaitGicDistributorEnabled
|
||||||
|
b CArmCpuSynchronizeWait
|
||||||
|
|
||||||
|
// IN None
|
||||||
|
ArmWaitGicDistributorEnabled:
|
||||||
|
LoadConstantToReg (_gPcd_FixedAtBuild_PcdGicDistributorBase, r0)
|
||||||
|
ldr r0, [r0]
|
||||||
|
_WaitGicDistributor:
|
||||||
|
ldr r1, [r0, #ARM_GIC_ICDDCR]
|
||||||
|
cmp r1, #1
|
||||||
|
bne _WaitGicDistributor
|
||||||
|
bx lr
|
@ -0,0 +1,50 @@
|
|||||||
|
//
|
||||||
|
// Copyright (c) 2011, ARM Limited. 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.
|
||||||
|
//
|
||||||
|
//
|
||||||
|
|
||||||
|
#include <AsmMacroIoLib.h>
|
||||||
|
#include <Library/ArmCpuLib.h>
|
||||||
|
#include <Library/ArmGicLib.h>
|
||||||
|
#include <Library/PcdLib.h>
|
||||||
|
#include <Chipset/ArmV7.h>
|
||||||
|
|
||||||
|
INCLUDE AsmMacroIoLib.inc
|
||||||
|
|
||||||
|
EXPORT ArmCpuSynchronizeWait
|
||||||
|
IMPORT CArmCpuSynchronizeWait
|
||||||
|
// Dirty hack to get the Fixed value of GicDistributorBase
|
||||||
|
IMPORT _gPcd_FixedAtBuild_PcdGicDistributorBase
|
||||||
|
|
||||||
|
PRESERVE8
|
||||||
|
AREA ArmCortexA15Helper, CODE, READONLY
|
||||||
|
|
||||||
|
// VOID
|
||||||
|
// ArmCpuSynchronizeWait (
|
||||||
|
// IN ARM_CPU_SYNCHRONIZE_EVENT Event
|
||||||
|
// );
|
||||||
|
ArmCpuSynchronizeWait
|
||||||
|
cmp r0, #ARM_CPU_EVENT_BOOT_MEM_INIT
|
||||||
|
// The SCU enabled is the event to tell us the Init Boot Memory is initialized
|
||||||
|
beq ArmWaitGicDistributorEnabled
|
||||||
|
b CArmCpuSynchronizeWait
|
||||||
|
|
||||||
|
// IN None
|
||||||
|
ArmWaitGicDistributorEnabled
|
||||||
|
LoadConstantToReg (_gPcd_FixedAtBuild_PcdGicDistributorBase, r0)
|
||||||
|
ldr r0, [r0]
|
||||||
|
_WaitGicDistributor
|
||||||
|
ldr r1, [r0, #ARM_GIC_ICDDCR]
|
||||||
|
cmp r1, #1
|
||||||
|
bne _WaitGicDistributor
|
||||||
|
bx lr
|
||||||
|
|
||||||
|
END
|
95
ArmPkg/Drivers/ArmCpuLib/ArmCortexA15Lib/ArmCortexA15Lib.c
Normal file
95
ArmPkg/Drivers/ArmCpuLib/ArmCortexA15Lib/ArmCortexA15Lib.c
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
/** @file
|
||||||
|
|
||||||
|
Copyright (c) 2011, ARM Limited. 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.
|
||||||
|
|
||||||
|
**/
|
||||||
|
|
||||||
|
#include <Base.h>
|
||||||
|
#include <Library/ArmLib.h>
|
||||||
|
#include <Library/ArmCpuLib.h>
|
||||||
|
#include <Library/ArmGicLib.h>
|
||||||
|
#include <Library/ArmV7ArchTimerLib.h>
|
||||||
|
#include <Library/DebugLib.h>
|
||||||
|
#include <Library/IoLib.h>
|
||||||
|
#include <Library/PcdLib.h>
|
||||||
|
|
||||||
|
#include <Chipset/ArmV7.h>
|
||||||
|
|
||||||
|
VOID
|
||||||
|
ArmCpuSynchronizeSignal (
|
||||||
|
IN ARM_CPU_SYNCHRONIZE_EVENT Event
|
||||||
|
)
|
||||||
|
{
|
||||||
|
if (Event == ARM_CPU_EVENT_BOOT_MEM_INIT) {
|
||||||
|
// Do nothing, Cortex A15 secondary cores are waiting for the GIC Distributor
|
||||||
|
// to be enabled (done by the Sec module itself) as a way to know when the Init Boot
|
||||||
|
// Mem as been initialized
|
||||||
|
} else {
|
||||||
|
// Send SGI to all Secondary core to wake them up from WFI state.
|
||||||
|
ArmGicSendSgiTo (PcdGet32(PcdGicDistributorBase), ARM_GIC_ICDSGIR_FILTER_EVERYONEELSE, 0x0E);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
VOID
|
||||||
|
CArmCpuSynchronizeWait (
|
||||||
|
IN ARM_CPU_SYNCHRONIZE_EVENT Event
|
||||||
|
)
|
||||||
|
{
|
||||||
|
// Waiting for the SGI from the primary core
|
||||||
|
ArmCallWFI ();
|
||||||
|
|
||||||
|
// Acknowledge the interrupt and send End of Interrupt signal.
|
||||||
|
ArmGicAcknowledgeSgiFrom (PcdGet32(PcdGicInterruptInterfaceBase), PRIMARY_CORE_ID);
|
||||||
|
}
|
||||||
|
|
||||||
|
VOID
|
||||||
|
ArmCpuSetup (
|
||||||
|
IN UINTN MpId
|
||||||
|
)
|
||||||
|
{
|
||||||
|
// Check if Architectural Timer frequency is valid number (should not be 0)
|
||||||
|
ASSERT (PcdGet32 (PcdArmArchTimerFreqInHz));
|
||||||
|
ASSERT(ArmIsArchTimerImplemented () != 0);
|
||||||
|
|
||||||
|
// Enable SWP instructions
|
||||||
|
ArmEnableSWPInstruction ();
|
||||||
|
|
||||||
|
// Enable program flow prediction, if supported.
|
||||||
|
ArmEnableBranchPrediction ();
|
||||||
|
|
||||||
|
// Note: System Counter frequency can only be set in Secure privileged mode,
|
||||||
|
// if security extensions are implemented.
|
||||||
|
ArmArchTimerSetTimerFreq (PcdGet32 (PcdArmArchTimerFreqInHz));
|
||||||
|
|
||||||
|
/*// If MPCore then Enable the SCU
|
||||||
|
if (ArmIsMpCore()) {
|
||||||
|
ArmEnableScu ();
|
||||||
|
}*/
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
VOID
|
||||||
|
ArmCpuSetupSmpNonSecure (
|
||||||
|
IN UINTN MpId
|
||||||
|
)
|
||||||
|
{
|
||||||
|
//ArmSetAuxCrBit (A15_FEATURE_SMP);
|
||||||
|
|
||||||
|
/*// Make the SCU accessible in Non Secure world
|
||||||
|
if (IS_PRIMARY_CORE(MpId)) {
|
||||||
|
ScuBase = ArmGetScuBaseAddress();
|
||||||
|
|
||||||
|
// Allow NS access to SCU register
|
||||||
|
MmioOr32 (ScuBase + A9_SCU_SACR_OFFSET, 0xf);
|
||||||
|
// Allow NS access to Private Peripherals
|
||||||
|
MmioOr32 (ScuBase + A9_SCU_SSACR_OFFSET, 0xfff);
|
||||||
|
}*/
|
||||||
|
}
|
46
ArmPkg/Drivers/ArmCpuLib/ArmCortexA15Lib/ArmCortexA15Lib.inf
Normal file
46
ArmPkg/Drivers/ArmCpuLib/ArmCortexA15Lib/ArmCortexA15Lib.inf
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
#/* @file
|
||||||
|
# Copyright (c) 2011, ARM Limited. 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 = ArmCortexA15Lib
|
||||||
|
FILE_GUID = 501b1c8f-21d5-4ef5-a565-435b7f0aae2d
|
||||||
|
MODULE_TYPE = BASE
|
||||||
|
VERSION_STRING = 1.0
|
||||||
|
LIBRARY_CLASS = ArmCpuLib
|
||||||
|
|
||||||
|
[Packages]
|
||||||
|
MdePkg/MdePkg.dec
|
||||||
|
ArmPkg/ArmPkg.dec
|
||||||
|
|
||||||
|
[LibraryClasses]
|
||||||
|
ArmLib
|
||||||
|
ArmGicSecLib
|
||||||
|
IoLib
|
||||||
|
PcdLib
|
||||||
|
|
||||||
|
[Sources.common]
|
||||||
|
ArmCortexA15Lib.c
|
||||||
|
ArmCortexA15Helper.asm | RVCT
|
||||||
|
ArmCortexA15Helper.S | GCC
|
||||||
|
|
||||||
|
[FeaturePcd]
|
||||||
|
|
||||||
|
[FixedPcd]
|
||||||
|
gArmTokenSpaceGuid.PcdArmPrimaryCoreMask
|
||||||
|
gArmTokenSpaceGuid.PcdArmPrimaryCore
|
||||||
|
|
||||||
|
gArmTokenSpaceGuid.PcdGicDistributorBase
|
||||||
|
gArmTokenSpaceGuid.PcdGicInterruptInterfaceBase
|
||||||
|
|
||||||
|
gArmTokenSpaceGuid.PcdArmArchTimerFreqInHz
|
301
ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-RTSM-A15.dsc
Normal file
301
ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-RTSM-A15.dsc
Normal file
@ -0,0 +1,301 @@
|
|||||||
|
#
|
||||||
|
# Copyright (c) 2011, ARM Limited. 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 Section - statements that will be processed to create a Makefile.
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
[Defines]
|
||||||
|
PLATFORM_NAME = ArmVExpressPkg-RTSM-A15
|
||||||
|
PLATFORM_GUID = 1665b5b1-529d-4ba1-bd51-c3c9b29a2274
|
||||||
|
PLATFORM_VERSION = 0.1
|
||||||
|
DSC_SPECIFICATION = 0x00010005
|
||||||
|
OUTPUT_DIRECTORY = Build/ArmVExpress-RTSM-A15
|
||||||
|
SUPPORTED_ARCHITECTURES = ARM
|
||||||
|
BUILD_TARGETS = DEBUG|RELEASE
|
||||||
|
SKUID_IDENTIFIER = DEFAULT
|
||||||
|
FLASH_DEFINITION = ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-RTSM-A15.fdf
|
||||||
|
|
||||||
|
!include ArmPlatformPkg/ArmVExpressPkg/ArmVExpress.dsc.inc
|
||||||
|
|
||||||
|
[LibraryClasses.common]
|
||||||
|
ArmLib|ArmPkg/Library/ArmLib/ArmV7/ArmV7Lib.inf
|
||||||
|
ArmCpuLib|ArmPkg/Drivers/ArmCpuLib/ArmCortexA15Lib/ArmCortexA15Lib.inf
|
||||||
|
ArmPlatformLib|ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibRTSM/ArmVExpressLib.inf
|
||||||
|
|
||||||
|
ArmPlatformSysConfigLib|ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressSysConfigLib/ArmVExpressSysConfigLib.inf
|
||||||
|
NorFlashPlatformLib|ArmPlatformPkg/ArmVExpressPkg/Library/NorFlashArmVExpressLib/NorFlashArmVExpressLib.inf
|
||||||
|
LcdPlatformLib|ArmPlatformPkg/ArmVExpressPkg/Library/PL111LcdArmVExpressLib/PL111LcdArmVExpressLib.inf
|
||||||
|
|
||||||
|
#DebugAgentTimerLib|ArmPlatformPkg/ArmVExpressPkg/Library/DebugAgentTimerLib/DebugAgentTimerLib.inf
|
||||||
|
|
||||||
|
# ARM PL390 General Interrupt Driver in Secure and Non-secure
|
||||||
|
ArmGicSecLib|ArmPkg/Drivers/PL390Gic/PL390GicSecLib.inf
|
||||||
|
ArmGicLib|ArmPkg/Drivers/PL390Gic/PL390GicLib.inf
|
||||||
|
|
||||||
|
TimerLib|ArmPkg/Library/ArmArchTimerLib/ArmArchTimerLib.inf
|
||||||
|
|
||||||
|
[LibraryClasses.common.SEC]
|
||||||
|
ArmLib|ArmPkg/Library/ArmLib/ArmV7/ArmV7LibSec.inf
|
||||||
|
ArmPlatformLib|ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibRTSM/ArmVExpressSecLib.inf
|
||||||
|
[BuildOptions]
|
||||||
|
RVCT:*_*_ARM_PLATFORM_FLAGS == --cpu Cortex-A15 -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include/Platform/RTSM
|
||||||
|
|
||||||
|
GCC:*_*_ARM_PLATFORM_FLAGS == -mcpu=cortex-a15 -mfpu=neon -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include/Platform/RTSM
|
||||||
|
|
||||||
|
XCODE:*_*_ARM_PLATFORM_FLAGS = -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include/Platform/RTSM
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# Pcd Section - list of all EDK II PCD Entries defined by this Platform
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
[PcdsFeatureFlag.common]
|
||||||
|
!ifdef $(EDK2_SKIP_PEICORE)
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdSystemMemoryInitializeInSec|TRUE
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdSendSgiToBringUpSecondaryCores|TRUE
|
||||||
|
!endif
|
||||||
|
|
||||||
|
## If TRUE, Graphics Output Protocol will be installed on virtual handle created by ConsplitterDxe.
|
||||||
|
# It could be set FALSE to save size.
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport|TRUE
|
||||||
|
|
||||||
|
[PcdsFixedAtBuild.common]
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdFirmwareVendor|"ARM Versatile Express"
|
||||||
|
|
||||||
|
gEmbeddedTokenSpaceGuid.PcdEmbeddedPrompt|"ArmVExpress-RTSM"
|
||||||
|
|
||||||
|
#
|
||||||
|
# NV Storage PCDs. Use base of 0x0C000000 for NOR1
|
||||||
|
#
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase|0x0FFC0000
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize|0x00010000
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0x0FFD0000
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize|0x00010000
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0x0FFE0000
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize|0x00010000
|
||||||
|
|
||||||
|
gArmTokenSpaceGuid.PcdVFPEnabled|1
|
||||||
|
|
||||||
|
# Stacks for MPCores in Secure World
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdCPUCoresSecStackBase|0x2E009000
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdCPUCoreSecPrimaryStackSize|0x1000
|
||||||
|
|
||||||
|
# Stacks for MPCores in Monitor Mode
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdCPUCoresSecMonStackBase|0x2E008000
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdCPUCoreSecMonStackSize|0x100
|
||||||
|
|
||||||
|
# Stacks for MPCores in Normal World
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdCPUCoresStackBase|0x2E000000
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdCPUCorePrimaryStackSize|0x4000
|
||||||
|
|
||||||
|
# System Memory (1GB)
|
||||||
|
gArmTokenSpaceGuid.PcdSystemMemoryBase|0x80000000
|
||||||
|
gArmTokenSpaceGuid.PcdSystemMemorySize|0x40000000
|
||||||
|
|
||||||
|
# Size of the region used by UEFI in permanent memory (Reserved 64MB)
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdSystemMemoryUefiRegionSize|0x04000000
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM Pcds
|
||||||
|
#
|
||||||
|
gArmTokenSpaceGuid.PcdArmUncachedMemoryMask|0x0000000040000000
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM PrimeCell
|
||||||
|
#
|
||||||
|
|
||||||
|
## SP805 Watchdog - Motherboard Watchdog
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdSP805WatchdogBase|0x1C0F0000
|
||||||
|
|
||||||
|
## PL011 - Serial Terminal
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdSerialRegisterBase|0x1c090000
|
||||||
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|38400
|
||||||
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits|8
|
||||||
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity|1
|
||||||
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits|1
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdUartDefaultReceiveFifoDepth|32
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdUartDefaultTimeout|1000000
|
||||||
|
|
||||||
|
## PL031 RealTimeClock
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdPL031RtcBase|0x1C170000
|
||||||
|
|
||||||
|
## PL111 Versatile Express Motherboard controller
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdPL111LcdBase|0x1C1F0000
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM PL390 General Interrupt Controller
|
||||||
|
#
|
||||||
|
gArmTokenSpaceGuid.PcdGicDistributorBase|0x2C001000
|
||||||
|
gArmTokenSpaceGuid.PcdGicInterruptInterfaceBase|0x2C002000
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM OS Loader
|
||||||
|
#
|
||||||
|
# Versatile Express machine type (ARM VERSATILE EXPRESS = 2272) required for ARM Linux:
|
||||||
|
gArmTokenSpaceGuid.PcdArmMachineType|2272
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdDefaultBootDescription|L"NorFlash"
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdDefaultBootDevicePath|L"VenHw(1F15DA3C-37FF-4070-B471-BB4AF12A724A)/MemoryMapped(0x0,0x46000000,0x46400000)"
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdDefaultBootArgument|""
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdDefaultBootType|1
|
||||||
|
|
||||||
|
# Use the serial console (ConIn & ConOut) and the Graphic driver (ConOut)
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdDefaultConOutPaths|L"VenHw(D3987D4B-971A-435F-8CAF-4967EB627241)/Uart(38400,8,N,1)/VenPcAnsi();VenHw(407B4008-BF5B-11DF-9547-CF16E0D72085)"
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdDefaultConInPaths|L"VenHw(D3987D4B-971A-435F-8CAF-4967EB627241)/Uart(38400,8,N,1)/VenPcAnsi()"
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM L2x0 PCDs
|
||||||
|
#
|
||||||
|
gArmTokenSpaceGuid.PcdL2x0ControllerBase|0x1E00A000
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM Architectual Timer Frequency
|
||||||
|
#
|
||||||
|
gArmTokenSpaceGuid.PcdArmArchTimerFreqInHz|60000000
|
||||||
|
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# Components Section - list of all EDK II Modules needed by this Platform
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
[Components.common]
|
||||||
|
|
||||||
|
#
|
||||||
|
# SEC
|
||||||
|
#
|
||||||
|
ArmPlatformPkg/Sec/Sec.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# PEI Phase modules
|
||||||
|
#
|
||||||
|
!ifdef $(EDK2_SKIP_PEICORE)
|
||||||
|
ArmPlatformPkg/PrePi/PeiUniCore.inf {
|
||||||
|
<LibraryClasses>
|
||||||
|
ArmLib|ArmPkg/Library/ArmLib/ArmV7/ArmV7Lib.inf
|
||||||
|
ArmPlatformLib|ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibRTSM/ArmVExpressLib.inf
|
||||||
|
ArmPlatformGlobalVariableLib|ArmPlatformPkg/Library/ArmPlatformGlobalVariableLib/PrePi/PrePiArmPlatformGlobalVariableLib.inf
|
||||||
|
}
|
||||||
|
!else
|
||||||
|
ArmPlatformPkg/PrePeiCore/PrePeiCoreUniCore.inf {
|
||||||
|
<LibraryClasses>
|
||||||
|
ArmPlatformGlobalVariableLib|ArmPlatformPkg/Library/ArmPlatformGlobalVariableLib/Pei/PeiArmPlatformGlobalVariableLib.inf
|
||||||
|
}
|
||||||
|
MdeModulePkg/Core/Pei/PeiMain.inf
|
||||||
|
MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
|
||||||
|
<LibraryClasses>
|
||||||
|
PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
||||||
|
}
|
||||||
|
ArmPlatformPkg/PlatformPei/PlatformPeim.inf
|
||||||
|
ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.inf
|
||||||
|
ArmPkg/Drivers/CpuPei/CpuPei.inf
|
||||||
|
IntelFrameworkModulePkg/Universal/StatusCode/Pei/StatusCodePei.inf
|
||||||
|
Nt32Pkg/BootModePei/BootModePei.inf
|
||||||
|
MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
|
||||||
|
MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf {
|
||||||
|
<LibraryClasses>
|
||||||
|
NULL|IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
|
||||||
|
}
|
||||||
|
!endif
|
||||||
|
|
||||||
|
#
|
||||||
|
# DXE
|
||||||
|
#
|
||||||
|
MdeModulePkg/Core/Dxe/DxeMain.inf {
|
||||||
|
<LibraryClasses>
|
||||||
|
PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
||||||
|
NULL|MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/DxeCrc32GuidedSectionExtractLib.inf
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Architectural Protocols
|
||||||
|
#
|
||||||
|
ArmPkg/Drivers/CpuDxe/CpuDxe.inf
|
||||||
|
MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
|
||||||
|
MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
|
||||||
|
MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
|
||||||
|
MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
|
||||||
|
MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
|
||||||
|
MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
||||||
|
EmbeddedPkg/ResetRuntimeDxe/ResetRuntimeDxe.inf
|
||||||
|
EmbeddedPkg/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf
|
||||||
|
EmbeddedPkg/MetronomeDxe/MetronomeDxe.inf
|
||||||
|
|
||||||
|
MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
|
||||||
|
MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
|
||||||
|
MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
|
||||||
|
MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
|
||||||
|
EmbeddedPkg/SerialDxe/SerialDxe.inf
|
||||||
|
|
||||||
|
MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
|
||||||
|
|
||||||
|
ArmPkg/Drivers/PL390Gic/PL390GicDxe.inf
|
||||||
|
ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashDxe.inf
|
||||||
|
ArmPkg/Drivers/TimerDxe/TimerDxe.inf
|
||||||
|
ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/PL111LcdGraphicsOutputDxe.inf
|
||||||
|
ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805WatchdogDxe.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# Semi-hosting filesystem
|
||||||
|
#
|
||||||
|
ArmPkg/Filesystem/SemihostFs/SemihostFs.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# Multimedia Card Interface
|
||||||
|
#
|
||||||
|
EmbeddedPkg/Universal/MmcDxe/MmcDxe.inf
|
||||||
|
ArmPlatformPkg/Drivers/PL180MciDxe/PL180MciDxe.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# FAT filesystem + GPT/MBR partitioning
|
||||||
|
#
|
||||||
|
MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
|
||||||
|
MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
|
||||||
|
FatPkg/EnhancedFatDxe/Fat.inf
|
||||||
|
MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# Application
|
||||||
|
#
|
||||||
|
EmbeddedPkg/Ebl/Ebl.inf
|
||||||
|
|
||||||
|
!ifdef $(EDK2_ARMVE_UEFI2_SHELL)
|
||||||
|
ShellPkg/Application/Shell/Shell.inf {
|
||||||
|
<LibraryClasses>
|
||||||
|
ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
|
||||||
|
NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf
|
||||||
|
NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf
|
||||||
|
NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
|
||||||
|
NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
|
||||||
|
NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
|
||||||
|
NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
|
||||||
|
NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
|
||||||
|
HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
|
||||||
|
FileHandleLib|ShellPkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
|
||||||
|
ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
|
||||||
|
SortLib|ShellPkg/Library/UefiSortLib/UefiSortLib.inf
|
||||||
|
|
||||||
|
<PcdsFixedAtBuild>
|
||||||
|
gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF
|
||||||
|
gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
|
||||||
|
gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|16000
|
||||||
|
}
|
||||||
|
!endif
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bds
|
||||||
|
#
|
||||||
|
MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
|
||||||
|
ArmPlatformPkg/Bds/Bds.inf
|
301
ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-RTSM-A15.fdf
Normal file
301
ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-RTSM-A15.fdf
Normal file
@ -0,0 +1,301 @@
|
|||||||
|
# FLASH layout file for ARM VE.
|
||||||
|
#
|
||||||
|
# Copyright (c) 2011, ARM Limited. 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.
|
||||||
|
#
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# FD Section
|
||||||
|
# The [FD] Section is made up of the definition statements and a
|
||||||
|
# description of what goes into the Flash Device Image. Each FD section
|
||||||
|
# defines one flash "device" image. A flash device image may be one of
|
||||||
|
# the following: Removable media bootable image (like a boot floppy
|
||||||
|
# image,) an Option ROM image (that would be "flashed" into an add-in
|
||||||
|
# card,) a System "Flash" image (that would be burned into a system's
|
||||||
|
# flash) or an Update ("Capsule") image that will be used to update and
|
||||||
|
# existing system flash.
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
[FD.RTSM_VE_Cortex-A15_EFI]
|
||||||
|
BaseAddress = 0x08000000|gArmTokenSpaceGuid.PcdFdBaseAddress # The base address of the Firmware in NOR Flash.
|
||||||
|
Size = 0x00280000|gArmTokenSpaceGuid.PcdFdSize # The size in bytes of the FLASH Device
|
||||||
|
ErasePolarity = 1
|
||||||
|
|
||||||
|
# This one is tricky, it must be: BlockSize * NumBlocks = Size
|
||||||
|
BlockSize = 0x00001000
|
||||||
|
NumBlocks = 0x280
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# Following are lists of FD Region layout which correspond to the locations of different
|
||||||
|
# images within the flash device.
|
||||||
|
#
|
||||||
|
# Regions must be defined in ascending order and may not overlap.
|
||||||
|
#
|
||||||
|
# A Layout Region start with a eight digit hex offset (leading "0x" required) followed by
|
||||||
|
# the pipe "|" character, followed by the size of the region, also in hex with the leading
|
||||||
|
# "0x" characters. Like:
|
||||||
|
# Offset|Size
|
||||||
|
# PcdOffsetCName|PcdSizeCName
|
||||||
|
# RegionType <FV, DATA, or FILE>
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
0x00000000|0x00080000
|
||||||
|
gArmTokenSpaceGuid.PcdSecureFvBaseAddress|gArmTokenSpaceGuid.PcdSecureFvBaseSize
|
||||||
|
FV = FVMAIN_SEC
|
||||||
|
|
||||||
|
0x00080000|0x00280000
|
||||||
|
gArmTokenSpaceGuid.PcdFvBaseAddress|gArmTokenSpaceGuid.PcdFvBaseSize
|
||||||
|
FV = FVMAIN_COMPACT
|
||||||
|
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# FV Section
|
||||||
|
#
|
||||||
|
# [FV] section is used to define what components or modules are placed within a flash
|
||||||
|
# device file. This section also defines order the components and modules are positioned
|
||||||
|
# within the image. The [FV] section consists of define statements, set statements and
|
||||||
|
# module statements.
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
[FV.FVMAIN_SEC]
|
||||||
|
FvAlignment = 8
|
||||||
|
ERASE_POLARITY = 1
|
||||||
|
MEMORY_MAPPED = TRUE
|
||||||
|
STICKY_WRITE = TRUE
|
||||||
|
LOCK_CAP = TRUE
|
||||||
|
LOCK_STATUS = TRUE
|
||||||
|
WRITE_DISABLED_CAP = TRUE
|
||||||
|
WRITE_ENABLED_CAP = TRUE
|
||||||
|
WRITE_STATUS = TRUE
|
||||||
|
WRITE_LOCK_CAP = TRUE
|
||||||
|
WRITE_LOCK_STATUS = TRUE
|
||||||
|
READ_DISABLED_CAP = TRUE
|
||||||
|
READ_ENABLED_CAP = TRUE
|
||||||
|
READ_STATUS = TRUE
|
||||||
|
READ_LOCK_CAP = TRUE
|
||||||
|
READ_LOCK_STATUS = TRUE
|
||||||
|
|
||||||
|
INF ArmPlatformPkg/Sec/Sec.inf
|
||||||
|
|
||||||
|
|
||||||
|
[FV.FvMain]
|
||||||
|
BlockSize = 0x40
|
||||||
|
NumBlocks = 0 # This FV gets compressed so make it just big enough
|
||||||
|
FvAlignment = 8 # FV alignment and FV attributes setting.
|
||||||
|
ERASE_POLARITY = 1
|
||||||
|
MEMORY_MAPPED = TRUE
|
||||||
|
STICKY_WRITE = TRUE
|
||||||
|
LOCK_CAP = TRUE
|
||||||
|
LOCK_STATUS = TRUE
|
||||||
|
WRITE_DISABLED_CAP = TRUE
|
||||||
|
WRITE_ENABLED_CAP = TRUE
|
||||||
|
WRITE_STATUS = TRUE
|
||||||
|
WRITE_LOCK_CAP = TRUE
|
||||||
|
WRITE_LOCK_STATUS = TRUE
|
||||||
|
READ_DISABLED_CAP = TRUE
|
||||||
|
READ_ENABLED_CAP = TRUE
|
||||||
|
READ_STATUS = TRUE
|
||||||
|
READ_LOCK_CAP = TRUE
|
||||||
|
READ_LOCK_STATUS = TRUE
|
||||||
|
|
||||||
|
INF MdeModulePkg/Core/Dxe/DxeMain.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# PI DXE Drivers producing Architectural Protocols (EFI Services)
|
||||||
|
#
|
||||||
|
INF ArmPkg/Drivers/CpuDxe/CpuDxe.inf
|
||||||
|
INF MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
||||||
|
INF EmbeddedPkg/ResetRuntimeDxe/ResetRuntimeDxe.inf
|
||||||
|
INF EmbeddedPkg/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf
|
||||||
|
INF EmbeddedPkg/MetronomeDxe/MetronomeDxe.inf
|
||||||
|
|
||||||
|
INF MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# Multiple Console IO support
|
||||||
|
#
|
||||||
|
INF MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
|
||||||
|
INF EmbeddedPkg/SerialDxe/SerialDxe.inf
|
||||||
|
|
||||||
|
INF ArmPkg/Drivers/PL390Gic/PL390GicDxe.inf
|
||||||
|
INF ArmPkg/Drivers/TimerDxe/TimerDxe.inf
|
||||||
|
INF ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashDxe.inf
|
||||||
|
INF ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/PL111LcdGraphicsOutputDxe.inf
|
||||||
|
INF ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805WatchdogDxe.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# Semi-hosting filesystem
|
||||||
|
#
|
||||||
|
INF ArmPkg/Filesystem/SemihostFs/SemihostFs.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# FAT filesystem + GPT/MBR partitioning
|
||||||
|
#
|
||||||
|
INF MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
|
||||||
|
INF FatPkg/EnhancedFatDxe/Fat.inf
|
||||||
|
INF MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# UEFI application (Shell Embedded Boot Loader)
|
||||||
|
#
|
||||||
|
INF EmbeddedPkg/Ebl/Ebl.inf
|
||||||
|
|
||||||
|
!if $(EDK2_ARMVE_UEFI2_SHELL) == 1
|
||||||
|
INF ShellPkg/Application/Shell/Shell.inf
|
||||||
|
!endif
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bds
|
||||||
|
#
|
||||||
|
INF MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
|
||||||
|
INF ArmPlatformPkg/Bds/Bds.inf
|
||||||
|
|
||||||
|
|
||||||
|
[FV.FVMAIN_COMPACT]
|
||||||
|
FvAlignment = 8
|
||||||
|
ERASE_POLARITY = 1
|
||||||
|
MEMORY_MAPPED = TRUE
|
||||||
|
STICKY_WRITE = TRUE
|
||||||
|
LOCK_CAP = TRUE
|
||||||
|
LOCK_STATUS = TRUE
|
||||||
|
WRITE_DISABLED_CAP = TRUE
|
||||||
|
WRITE_ENABLED_CAP = TRUE
|
||||||
|
WRITE_STATUS = TRUE
|
||||||
|
WRITE_LOCK_CAP = TRUE
|
||||||
|
WRITE_LOCK_STATUS = TRUE
|
||||||
|
READ_DISABLED_CAP = TRUE
|
||||||
|
READ_ENABLED_CAP = TRUE
|
||||||
|
READ_STATUS = TRUE
|
||||||
|
READ_LOCK_CAP = TRUE
|
||||||
|
READ_LOCK_STATUS = TRUE
|
||||||
|
|
||||||
|
!if $(EDK2_SKIP_PEICORE) == 1
|
||||||
|
INF ArmPlatformPkg/PrePi/PeiUniCore.inf
|
||||||
|
!else
|
||||||
|
INF ArmPlatformPkg/PrePeiCore/PrePeiCoreUniCore.inf
|
||||||
|
INF MdeModulePkg/Core/Pei/PeiMain.inf
|
||||||
|
INF ArmPlatformPkg/PlatformPei/PlatformPeim.inf
|
||||||
|
INF ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.inf
|
||||||
|
INF ArmPkg/Drivers/CpuPei/CpuPei.inf
|
||||||
|
INF MdeModulePkg/Universal/PCD/Pei/Pcd.inf
|
||||||
|
INF IntelFrameworkModulePkg/Universal/StatusCode/Pei/StatusCodePei.inf
|
||||||
|
INF MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
|
||||||
|
INF MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
|
||||||
|
!endif
|
||||||
|
|
||||||
|
FILE FV_IMAGE = 9E21FD93-9C72-4c15-8C4B-E77F1DB2D792 {
|
||||||
|
SECTION GUIDED EE4E5898-3914-4259-9D6E-DC7BD79403CF PROCESSING_REQUIRED = TRUE {
|
||||||
|
SECTION FV_IMAGE = FVMAIN
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# Rules are use with the [FV] section's module INF type to define
|
||||||
|
# how an FFS file is created for a given INF file. The following Rule are the default
|
||||||
|
# rules for the different module type. User can add the customized rules to define the
|
||||||
|
# content of the FFS file.
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
|
||||||
|
############################################################################
|
||||||
|
# Example of a DXE_DRIVER FFS file with a Checksum encapsulation section #
|
||||||
|
############################################################################
|
||||||
|
#
|
||||||
|
#[Rule.Common.DXE_DRIVER]
|
||||||
|
# FILE DRIVER = $(NAMED_GUID) {
|
||||||
|
# DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
|
||||||
|
# COMPRESS PI_STD {
|
||||||
|
# GUIDED {
|
||||||
|
# PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
# UI STRING="$(MODULE_NAME)" Optional
|
||||||
|
# VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
#
|
||||||
|
############################################################################
|
||||||
|
|
||||||
|
[Rule.Common.SEC]
|
||||||
|
FILE SEC = $(NAMED_GUID) RELOCS_STRIPPED {
|
||||||
|
TE TE Align = 32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.PEI_CORE]
|
||||||
|
FILE PEI_CORE = $(NAMED_GUID) {
|
||||||
|
TE TE $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
UI STRING ="$(MODULE_NAME)" Optional
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.PEIM]
|
||||||
|
FILE PEIM = $(NAMED_GUID) {
|
||||||
|
PEI_DEPEX PEI_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
|
||||||
|
TE TE $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
UI STRING="$(MODULE_NAME)" Optional
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.PEIM.TIANOCOMPRESSED]
|
||||||
|
FILE PEIM = $(NAMED_GUID) DEBUG_MYTOOLS_IA32 {
|
||||||
|
PEI_DEPEX PEI_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
|
||||||
|
GUIDED A31280AD-481E-41B6-95E8-127F4C984779 PROCESSING_REQUIRED = TRUE {
|
||||||
|
PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
UI STRING="$(MODULE_NAME)" Optional
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.DXE_CORE]
|
||||||
|
FILE DXE_CORE = $(NAMED_GUID) {
|
||||||
|
PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
UI STRING="$(MODULE_NAME)" Optional
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.UEFI_DRIVER]
|
||||||
|
FILE DRIVER = $(NAMED_GUID) {
|
||||||
|
DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
|
||||||
|
PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
UI STRING="$(MODULE_NAME)" Optional
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.DXE_DRIVER]
|
||||||
|
FILE DRIVER = $(NAMED_GUID) {
|
||||||
|
DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
|
||||||
|
PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
UI STRING="$(MODULE_NAME)" Optional
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.DXE_RUNTIME_DRIVER]
|
||||||
|
FILE DRIVER = $(NAMED_GUID) {
|
||||||
|
DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
|
||||||
|
PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
UI STRING="$(MODULE_NAME)" Optional
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.UEFI_APPLICATION]
|
||||||
|
FILE APPLICATION = $(NAMED_GUID) {
|
||||||
|
UI STRING ="$(MODULE_NAME)" Optional
|
||||||
|
PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
}
|
301
ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-RTSM-A15_MPCore.dsc
Normal file
301
ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-RTSM-A15_MPCore.dsc
Normal file
@ -0,0 +1,301 @@
|
|||||||
|
#
|
||||||
|
# Copyright (c) 2011, ARM Limited. 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 Section - statements that will be processed to create a Makefile.
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
[Defines]
|
||||||
|
PLATFORM_NAME = ArmVExpressPkg-RTSM-A15_MPCore
|
||||||
|
PLATFORM_GUID = 3a91a0f8-3af4-409d-a71d-a199dc134357
|
||||||
|
PLATFORM_VERSION = 0.1
|
||||||
|
DSC_SPECIFICATION = 0x00010005
|
||||||
|
OUTPUT_DIRECTORY = Build/ArmVExpress-RTSM-A15_MPCore
|
||||||
|
SUPPORTED_ARCHITECTURES = ARM
|
||||||
|
BUILD_TARGETS = DEBUG|RELEASE
|
||||||
|
SKUID_IDENTIFIER = DEFAULT
|
||||||
|
FLASH_DEFINITION = ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-RTSM-A15_MPCore.fdf
|
||||||
|
|
||||||
|
!include ArmPlatformPkg/ArmVExpressPkg/ArmVExpress.dsc.inc
|
||||||
|
|
||||||
|
[LibraryClasses.common]
|
||||||
|
ArmLib|ArmPkg/Library/ArmLib/ArmV7/ArmV7Lib.inf
|
||||||
|
ArmCpuLib|ArmPkg/Drivers/ArmCpuLib/ArmCortexA15Lib/ArmCortexA15Lib.inf
|
||||||
|
ArmPlatformLib|ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibRTSM/ArmVExpressLib.inf
|
||||||
|
|
||||||
|
ArmPlatformSysConfigLib|ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressSysConfigLib/ArmVExpressSysConfigLib.inf
|
||||||
|
NorFlashPlatformLib|ArmPlatformPkg/ArmVExpressPkg/Library/NorFlashArmVExpressLib/NorFlashArmVExpressLib.inf
|
||||||
|
LcdPlatformLib|ArmPlatformPkg/ArmVExpressPkg/Library/PL111LcdArmVExpressLib/PL111LcdArmVExpressLib.inf
|
||||||
|
|
||||||
|
#DebugAgentTimerLib|ArmPlatformPkg/ArmVExpressPkg/Library/DebugAgentTimerLib/DebugAgentTimerLib.inf
|
||||||
|
|
||||||
|
# ARM PL390 General Interrupt Driver in Secure and Non-secure
|
||||||
|
ArmGicSecLib|ArmPkg/Drivers/PL390Gic/PL390GicSecLib.inf
|
||||||
|
ArmGicLib|ArmPkg/Drivers/PL390Gic/PL390GicLib.inf
|
||||||
|
|
||||||
|
TimerLib|ArmPkg/Library/ArmArchTimerLib/ArmArchTimerLib.inf
|
||||||
|
|
||||||
|
[LibraryClasses.common.SEC]
|
||||||
|
ArmLib|ArmPkg/Library/ArmLib/ArmV7/ArmV7LibSec.inf
|
||||||
|
ArmPlatformLib|ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibRTSM/ArmVExpressSecLib.inf
|
||||||
|
[BuildOptions]
|
||||||
|
RVCT:*_*_ARM_PLATFORM_FLAGS == --cpu Cortex-A15 -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include/Platform/RTSM
|
||||||
|
|
||||||
|
GCC:*_*_ARM_PLATFORM_FLAGS == -mcpu=cortex-a15 -mfpu=neon -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include/Platform/RTSM
|
||||||
|
|
||||||
|
XCODE:*_*_ARM_PLATFORM_FLAGS = -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include/Platform/RTSM
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# Pcd Section - list of all EDK II PCD Entries defined by this Platform
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
[PcdsFeatureFlag.common]
|
||||||
|
!ifdef $(EDK2_SKIP_PEICORE)
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdSystemMemoryInitializeInSec|TRUE
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdSendSgiToBringUpSecondaryCores|TRUE
|
||||||
|
!endif
|
||||||
|
|
||||||
|
## If TRUE, Graphics Output Protocol will be installed on virtual handle created by ConsplitterDxe.
|
||||||
|
# It could be set FALSE to save size.
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport|TRUE
|
||||||
|
|
||||||
|
[PcdsFixedAtBuild.common]
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdFirmwareVendor|"ARM Versatile Express"
|
||||||
|
|
||||||
|
gEmbeddedTokenSpaceGuid.PcdEmbeddedPrompt|"ArmVExpress-RTSM"
|
||||||
|
|
||||||
|
#
|
||||||
|
# NV Storage PCDs. Use base of 0x0C000000 for NOR1
|
||||||
|
#
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase|0x0FFC0000
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize|0x00010000
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0x0FFD0000
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize|0x00010000
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0x0FFE0000
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize|0x00010000
|
||||||
|
|
||||||
|
gArmTokenSpaceGuid.PcdVFPEnabled|1
|
||||||
|
|
||||||
|
# Stacks for MPCores in Secure World
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdCPUCoresSecStackBase|0x2E009000
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdCPUCoreSecPrimaryStackSize|0x1000
|
||||||
|
|
||||||
|
# Stacks for MPCores in Monitor Mode
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdCPUCoresSecMonStackBase|0x2E008000
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdCPUCoreSecMonStackSize|0x100
|
||||||
|
|
||||||
|
# Stacks for MPCores in Normal World
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdCPUCoresStackBase|0x2E000000
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdCPUCorePrimaryStackSize|0x4000
|
||||||
|
|
||||||
|
# System Memory (1GB)
|
||||||
|
gArmTokenSpaceGuid.PcdSystemMemoryBase|0x80000000
|
||||||
|
gArmTokenSpaceGuid.PcdSystemMemorySize|0x40000000
|
||||||
|
|
||||||
|
# Size of the region used by UEFI in permanent memory (Reserved 64MB)
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdSystemMemoryUefiRegionSize|0x04000000
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM Pcds
|
||||||
|
#
|
||||||
|
gArmTokenSpaceGuid.PcdArmUncachedMemoryMask|0x0000000040000000
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM PrimeCell
|
||||||
|
#
|
||||||
|
|
||||||
|
## SP805 Watchdog - Motherboard Watchdog
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdSP805WatchdogBase|0x1C0F0000
|
||||||
|
|
||||||
|
## PL011 - Serial Terminal
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdSerialRegisterBase|0x1c090000
|
||||||
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|38400
|
||||||
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits|8
|
||||||
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity|1
|
||||||
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits|1
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdUartDefaultReceiveFifoDepth|32
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdUartDefaultTimeout|1000000
|
||||||
|
|
||||||
|
## PL031 RealTimeClock
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdPL031RtcBase|0x1C170000
|
||||||
|
|
||||||
|
## PL111 Versatile Express Motherboard controller
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdPL111LcdBase|0x1C1F0000
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM PL390 General Interrupt Controller
|
||||||
|
#
|
||||||
|
gArmTokenSpaceGuid.PcdGicDistributorBase|0x2C001000
|
||||||
|
gArmTokenSpaceGuid.PcdGicInterruptInterfaceBase|0x2C002000
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM OS Loader
|
||||||
|
#
|
||||||
|
# Versatile Express machine type (ARM VERSATILE EXPRESS = 2272) required for ARM Linux:
|
||||||
|
gArmTokenSpaceGuid.PcdArmMachineType|2272
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdDefaultBootDescription|L"NorFlash"
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdDefaultBootDevicePath|L"VenHw(1F15DA3C-37FF-4070-B471-BB4AF12A724A)/MemoryMapped(0x0,0x46000000,0x46400000)"
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdDefaultBootArgument|""
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdDefaultBootType|1
|
||||||
|
|
||||||
|
# Use the serial console (ConIn & ConOut) and the Graphic driver (ConOut)
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdDefaultConOutPaths|L"VenHw(D3987D4B-971A-435F-8CAF-4967EB627241)/Uart(38400,8,N,1)/VenPcAnsi();VenHw(407B4008-BF5B-11DF-9547-CF16E0D72085)"
|
||||||
|
gArmPlatformTokenSpaceGuid.PcdDefaultConInPaths|L"VenHw(D3987D4B-971A-435F-8CAF-4967EB627241)/Uart(38400,8,N,1)/VenPcAnsi()"
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM L2x0 PCDs
|
||||||
|
#
|
||||||
|
gArmTokenSpaceGuid.PcdL2x0ControllerBase|0x1E00A000
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM Architectual Timer Frequency
|
||||||
|
#
|
||||||
|
gArmTokenSpaceGuid.PcdArmArchTimerFreqInHz|60000000
|
||||||
|
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# Components Section - list of all EDK II Modules needed by this Platform
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
[Components.common]
|
||||||
|
|
||||||
|
#
|
||||||
|
# SEC
|
||||||
|
#
|
||||||
|
ArmPlatformPkg/Sec/Sec.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# PEI Phase modules
|
||||||
|
#
|
||||||
|
!ifdef $(EDK2_SKIP_PEICORE)
|
||||||
|
ArmPlatformPkg/PrePi/PeiMPCore.inf {
|
||||||
|
<LibraryClasses>
|
||||||
|
ArmLib|ArmPkg/Library/ArmLib/ArmV7/ArmV7Lib.inf
|
||||||
|
ArmPlatformLib|ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibRTSM/ArmVExpressLib.inf
|
||||||
|
ArmPlatformGlobalVariableLib|ArmPlatformPkg/Library/ArmPlatformGlobalVariableLib/PrePi/PrePiArmPlatformGlobalVariableLib.inf
|
||||||
|
}
|
||||||
|
!else
|
||||||
|
ArmPlatformPkg/PrePeiCore/PrePeiCoreMPCore.inf {
|
||||||
|
<LibraryClasses>
|
||||||
|
ArmPlatformGlobalVariableLib|ArmPlatformPkg/Library/ArmPlatformGlobalVariableLib/Pei/PeiArmPlatformGlobalVariableLib.inf
|
||||||
|
}
|
||||||
|
MdeModulePkg/Core/Pei/PeiMain.inf
|
||||||
|
MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
|
||||||
|
<LibraryClasses>
|
||||||
|
PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
||||||
|
}
|
||||||
|
ArmPlatformPkg/PlatformPei/PlatformPeim.inf
|
||||||
|
ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.inf
|
||||||
|
ArmPkg/Drivers/CpuPei/CpuPei.inf
|
||||||
|
IntelFrameworkModulePkg/Universal/StatusCode/Pei/StatusCodePei.inf
|
||||||
|
Nt32Pkg/BootModePei/BootModePei.inf
|
||||||
|
MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
|
||||||
|
MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf {
|
||||||
|
<LibraryClasses>
|
||||||
|
NULL|IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
|
||||||
|
}
|
||||||
|
!endif
|
||||||
|
|
||||||
|
#
|
||||||
|
# DXE
|
||||||
|
#
|
||||||
|
MdeModulePkg/Core/Dxe/DxeMain.inf {
|
||||||
|
<LibraryClasses>
|
||||||
|
PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
||||||
|
NULL|MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/DxeCrc32GuidedSectionExtractLib.inf
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Architectural Protocols
|
||||||
|
#
|
||||||
|
ArmPkg/Drivers/CpuDxe/CpuDxe.inf
|
||||||
|
MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
|
||||||
|
MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
|
||||||
|
MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
|
||||||
|
MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
|
||||||
|
MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
|
||||||
|
MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
||||||
|
EmbeddedPkg/ResetRuntimeDxe/ResetRuntimeDxe.inf
|
||||||
|
EmbeddedPkg/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf
|
||||||
|
EmbeddedPkg/MetronomeDxe/MetronomeDxe.inf
|
||||||
|
|
||||||
|
MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
|
||||||
|
MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
|
||||||
|
MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
|
||||||
|
MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
|
||||||
|
EmbeddedPkg/SerialDxe/SerialDxe.inf
|
||||||
|
|
||||||
|
MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
|
||||||
|
|
||||||
|
ArmPkg/Drivers/PL390Gic/PL390GicDxe.inf
|
||||||
|
ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashDxe.inf
|
||||||
|
ArmPkg/Drivers/TimerDxe/TimerDxe.inf
|
||||||
|
ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/PL111LcdGraphicsOutputDxe.inf
|
||||||
|
ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805WatchdogDxe.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# Semi-hosting filesystem
|
||||||
|
#
|
||||||
|
ArmPkg/Filesystem/SemihostFs/SemihostFs.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# Multimedia Card Interface
|
||||||
|
#
|
||||||
|
EmbeddedPkg/Universal/MmcDxe/MmcDxe.inf
|
||||||
|
ArmPlatformPkg/Drivers/PL180MciDxe/PL180MciDxe.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# FAT filesystem + GPT/MBR partitioning
|
||||||
|
#
|
||||||
|
MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
|
||||||
|
MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
|
||||||
|
FatPkg/EnhancedFatDxe/Fat.inf
|
||||||
|
MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# Application
|
||||||
|
#
|
||||||
|
EmbeddedPkg/Ebl/Ebl.inf
|
||||||
|
|
||||||
|
!ifdef $(EDK2_ARMVE_UEFI2_SHELL)
|
||||||
|
ShellPkg/Application/Shell/Shell.inf {
|
||||||
|
<LibraryClasses>
|
||||||
|
ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
|
||||||
|
NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf
|
||||||
|
NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf
|
||||||
|
NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
|
||||||
|
NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
|
||||||
|
NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
|
||||||
|
NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
|
||||||
|
NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
|
||||||
|
HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
|
||||||
|
FileHandleLib|ShellPkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
|
||||||
|
ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
|
||||||
|
SortLib|ShellPkg/Library/UefiSortLib/UefiSortLib.inf
|
||||||
|
|
||||||
|
<PcdsFixedAtBuild>
|
||||||
|
gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF
|
||||||
|
gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
|
||||||
|
gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|16000
|
||||||
|
}
|
||||||
|
!endif
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bds
|
||||||
|
#
|
||||||
|
MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
|
||||||
|
ArmPlatformPkg/Bds/Bds.inf
|
301
ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-RTSM-A15_MPCore.fdf
Normal file
301
ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-RTSM-A15_MPCore.fdf
Normal file
@ -0,0 +1,301 @@
|
|||||||
|
# FLASH layout file for ARM VE.
|
||||||
|
#
|
||||||
|
# Copyright (c) 2011, ARM Limited. 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.
|
||||||
|
#
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# FD Section
|
||||||
|
# The [FD] Section is made up of the definition statements and a
|
||||||
|
# description of what goes into the Flash Device Image. Each FD section
|
||||||
|
# defines one flash "device" image. A flash device image may be one of
|
||||||
|
# the following: Removable media bootable image (like a boot floppy
|
||||||
|
# image,) an Option ROM image (that would be "flashed" into an add-in
|
||||||
|
# card,) a System "Flash" image (that would be burned into a system's
|
||||||
|
# flash) or an Update ("Capsule") image that will be used to update and
|
||||||
|
# existing system flash.
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
[FD.RTSM_VE_Cortex-A15_MPCore_EFI]
|
||||||
|
BaseAddress = 0x08000000|gArmTokenSpaceGuid.PcdFdBaseAddress # The base address of the Firmware in NOR Flash.
|
||||||
|
Size = 0x00280000|gArmTokenSpaceGuid.PcdFdSize # The size in bytes of the FLASH Device
|
||||||
|
ErasePolarity = 1
|
||||||
|
|
||||||
|
# This one is tricky, it must be: BlockSize * NumBlocks = Size
|
||||||
|
BlockSize = 0x00001000
|
||||||
|
NumBlocks = 0x280
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# Following are lists of FD Region layout which correspond to the locations of different
|
||||||
|
# images within the flash device.
|
||||||
|
#
|
||||||
|
# Regions must be defined in ascending order and may not overlap.
|
||||||
|
#
|
||||||
|
# A Layout Region start with a eight digit hex offset (leading "0x" required) followed by
|
||||||
|
# the pipe "|" character, followed by the size of the region, also in hex with the leading
|
||||||
|
# "0x" characters. Like:
|
||||||
|
# Offset|Size
|
||||||
|
# PcdOffsetCName|PcdSizeCName
|
||||||
|
# RegionType <FV, DATA, or FILE>
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
0x00000000|0x00080000
|
||||||
|
gArmTokenSpaceGuid.PcdSecureFvBaseAddress|gArmTokenSpaceGuid.PcdSecureFvBaseSize
|
||||||
|
FV = FVMAIN_SEC
|
||||||
|
|
||||||
|
0x00080000|0x00280000
|
||||||
|
gArmTokenSpaceGuid.PcdFvBaseAddress|gArmTokenSpaceGuid.PcdFvBaseSize
|
||||||
|
FV = FVMAIN_COMPACT
|
||||||
|
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# FV Section
|
||||||
|
#
|
||||||
|
# [FV] section is used to define what components or modules are placed within a flash
|
||||||
|
# device file. This section also defines order the components and modules are positioned
|
||||||
|
# within the image. The [FV] section consists of define statements, set statements and
|
||||||
|
# module statements.
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
[FV.FVMAIN_SEC]
|
||||||
|
FvAlignment = 8
|
||||||
|
ERASE_POLARITY = 1
|
||||||
|
MEMORY_MAPPED = TRUE
|
||||||
|
STICKY_WRITE = TRUE
|
||||||
|
LOCK_CAP = TRUE
|
||||||
|
LOCK_STATUS = TRUE
|
||||||
|
WRITE_DISABLED_CAP = TRUE
|
||||||
|
WRITE_ENABLED_CAP = TRUE
|
||||||
|
WRITE_STATUS = TRUE
|
||||||
|
WRITE_LOCK_CAP = TRUE
|
||||||
|
WRITE_LOCK_STATUS = TRUE
|
||||||
|
READ_DISABLED_CAP = TRUE
|
||||||
|
READ_ENABLED_CAP = TRUE
|
||||||
|
READ_STATUS = TRUE
|
||||||
|
READ_LOCK_CAP = TRUE
|
||||||
|
READ_LOCK_STATUS = TRUE
|
||||||
|
|
||||||
|
INF ArmPlatformPkg/Sec/Sec.inf
|
||||||
|
|
||||||
|
|
||||||
|
[FV.FvMain]
|
||||||
|
BlockSize = 0x40
|
||||||
|
NumBlocks = 0 # This FV gets compressed so make it just big enough
|
||||||
|
FvAlignment = 8 # FV alignment and FV attributes setting.
|
||||||
|
ERASE_POLARITY = 1
|
||||||
|
MEMORY_MAPPED = TRUE
|
||||||
|
STICKY_WRITE = TRUE
|
||||||
|
LOCK_CAP = TRUE
|
||||||
|
LOCK_STATUS = TRUE
|
||||||
|
WRITE_DISABLED_CAP = TRUE
|
||||||
|
WRITE_ENABLED_CAP = TRUE
|
||||||
|
WRITE_STATUS = TRUE
|
||||||
|
WRITE_LOCK_CAP = TRUE
|
||||||
|
WRITE_LOCK_STATUS = TRUE
|
||||||
|
READ_DISABLED_CAP = TRUE
|
||||||
|
READ_ENABLED_CAP = TRUE
|
||||||
|
READ_STATUS = TRUE
|
||||||
|
READ_LOCK_CAP = TRUE
|
||||||
|
READ_LOCK_STATUS = TRUE
|
||||||
|
|
||||||
|
INF MdeModulePkg/Core/Dxe/DxeMain.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# PI DXE Drivers producing Architectural Protocols (EFI Services)
|
||||||
|
#
|
||||||
|
INF ArmPkg/Drivers/CpuDxe/CpuDxe.inf
|
||||||
|
INF MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
||||||
|
INF EmbeddedPkg/ResetRuntimeDxe/ResetRuntimeDxe.inf
|
||||||
|
INF EmbeddedPkg/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf
|
||||||
|
INF EmbeddedPkg/MetronomeDxe/MetronomeDxe.inf
|
||||||
|
|
||||||
|
INF MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# Multiple Console IO support
|
||||||
|
#
|
||||||
|
INF MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
|
||||||
|
INF EmbeddedPkg/SerialDxe/SerialDxe.inf
|
||||||
|
|
||||||
|
INF ArmPkg/Drivers/PL390Gic/PL390GicDxe.inf
|
||||||
|
INF ArmPkg/Drivers/TimerDxe/TimerDxe.inf
|
||||||
|
INF ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashDxe.inf
|
||||||
|
INF ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/PL111LcdGraphicsOutputDxe.inf
|
||||||
|
INF ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805WatchdogDxe.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# Semi-hosting filesystem
|
||||||
|
#
|
||||||
|
INF ArmPkg/Filesystem/SemihostFs/SemihostFs.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# FAT filesystem + GPT/MBR partitioning
|
||||||
|
#
|
||||||
|
INF MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
|
||||||
|
INF MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
|
||||||
|
INF FatPkg/EnhancedFatDxe/Fat.inf
|
||||||
|
INF MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# UEFI application (Shell Embedded Boot Loader)
|
||||||
|
#
|
||||||
|
INF EmbeddedPkg/Ebl/Ebl.inf
|
||||||
|
|
||||||
|
!if $(EDK2_ARMVE_UEFI2_SHELL) == 1
|
||||||
|
INF ShellPkg/Application/Shell/Shell.inf
|
||||||
|
!endif
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bds
|
||||||
|
#
|
||||||
|
INF MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
|
||||||
|
INF ArmPlatformPkg/Bds/Bds.inf
|
||||||
|
|
||||||
|
|
||||||
|
[FV.FVMAIN_COMPACT]
|
||||||
|
FvAlignment = 8
|
||||||
|
ERASE_POLARITY = 1
|
||||||
|
MEMORY_MAPPED = TRUE
|
||||||
|
STICKY_WRITE = TRUE
|
||||||
|
LOCK_CAP = TRUE
|
||||||
|
LOCK_STATUS = TRUE
|
||||||
|
WRITE_DISABLED_CAP = TRUE
|
||||||
|
WRITE_ENABLED_CAP = TRUE
|
||||||
|
WRITE_STATUS = TRUE
|
||||||
|
WRITE_LOCK_CAP = TRUE
|
||||||
|
WRITE_LOCK_STATUS = TRUE
|
||||||
|
READ_DISABLED_CAP = TRUE
|
||||||
|
READ_ENABLED_CAP = TRUE
|
||||||
|
READ_STATUS = TRUE
|
||||||
|
READ_LOCK_CAP = TRUE
|
||||||
|
READ_LOCK_STATUS = TRUE
|
||||||
|
|
||||||
|
!if $(EDK2_SKIP_PEICORE) == 1
|
||||||
|
INF ArmPlatformPkg/PrePi/PeiMPCore.inf
|
||||||
|
!else
|
||||||
|
INF ArmPlatformPkg/PrePeiCore/PrePeiCoreMPCore.inf
|
||||||
|
INF MdeModulePkg/Core/Pei/PeiMain.inf
|
||||||
|
INF ArmPlatformPkg/PlatformPei/PlatformPeim.inf
|
||||||
|
INF ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.inf
|
||||||
|
INF ArmPkg/Drivers/CpuPei/CpuPei.inf
|
||||||
|
INF MdeModulePkg/Universal/PCD/Pei/Pcd.inf
|
||||||
|
INF IntelFrameworkModulePkg/Universal/StatusCode/Pei/StatusCodePei.inf
|
||||||
|
INF MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
|
||||||
|
INF MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
|
||||||
|
!endif
|
||||||
|
|
||||||
|
FILE FV_IMAGE = 9E21FD93-9C72-4c15-8C4B-E77F1DB2D792 {
|
||||||
|
SECTION GUIDED EE4E5898-3914-4259-9D6E-DC7BD79403CF PROCESSING_REQUIRED = TRUE {
|
||||||
|
SECTION FV_IMAGE = FVMAIN
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# Rules are use with the [FV] section's module INF type to define
|
||||||
|
# how an FFS file is created for a given INF file. The following Rule are the default
|
||||||
|
# rules for the different module type. User can add the customized rules to define the
|
||||||
|
# content of the FFS file.
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
|
||||||
|
############################################################################
|
||||||
|
# Example of a DXE_DRIVER FFS file with a Checksum encapsulation section #
|
||||||
|
############################################################################
|
||||||
|
#
|
||||||
|
#[Rule.Common.DXE_DRIVER]
|
||||||
|
# FILE DRIVER = $(NAMED_GUID) {
|
||||||
|
# DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
|
||||||
|
# COMPRESS PI_STD {
|
||||||
|
# GUIDED {
|
||||||
|
# PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
# UI STRING="$(MODULE_NAME)" Optional
|
||||||
|
# VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
#
|
||||||
|
############################################################################
|
||||||
|
|
||||||
|
[Rule.Common.SEC]
|
||||||
|
FILE SEC = $(NAMED_GUID) RELOCS_STRIPPED {
|
||||||
|
TE TE Align = 32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.PEI_CORE]
|
||||||
|
FILE PEI_CORE = $(NAMED_GUID) {
|
||||||
|
TE TE $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
UI STRING ="$(MODULE_NAME)" Optional
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.PEIM]
|
||||||
|
FILE PEIM = $(NAMED_GUID) {
|
||||||
|
PEI_DEPEX PEI_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
|
||||||
|
TE TE $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
UI STRING="$(MODULE_NAME)" Optional
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.PEIM.TIANOCOMPRESSED]
|
||||||
|
FILE PEIM = $(NAMED_GUID) DEBUG_MYTOOLS_IA32 {
|
||||||
|
PEI_DEPEX PEI_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
|
||||||
|
GUIDED A31280AD-481E-41B6-95E8-127F4C984779 PROCESSING_REQUIRED = TRUE {
|
||||||
|
PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
UI STRING="$(MODULE_NAME)" Optional
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.DXE_CORE]
|
||||||
|
FILE DXE_CORE = $(NAMED_GUID) {
|
||||||
|
PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
UI STRING="$(MODULE_NAME)" Optional
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.UEFI_DRIVER]
|
||||||
|
FILE DRIVER = $(NAMED_GUID) {
|
||||||
|
DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
|
||||||
|
PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
UI STRING="$(MODULE_NAME)" Optional
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.DXE_DRIVER]
|
||||||
|
FILE DRIVER = $(NAMED_GUID) {
|
||||||
|
DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
|
||||||
|
PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
UI STRING="$(MODULE_NAME)" Optional
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.DXE_RUNTIME_DRIVER]
|
||||||
|
FILE DRIVER = $(NAMED_GUID) {
|
||||||
|
DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
|
||||||
|
PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
UI STRING="$(MODULE_NAME)" Optional
|
||||||
|
}
|
||||||
|
|
||||||
|
[Rule.Common.UEFI_APPLICATION]
|
||||||
|
FILE APPLICATION = $(NAMED_GUID) {
|
||||||
|
UI STRING ="$(MODULE_NAME)" Optional
|
||||||
|
PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
|
||||||
|
}
|
@ -34,7 +34,9 @@
|
|||||||
|
|
||||||
[Sources.common]
|
[Sources.common]
|
||||||
RTSM.c
|
RTSM.c
|
||||||
RTSMMem.c
|
RTSMMem.c
|
||||||
|
RTSMHelper.asm | RVCT
|
||||||
|
RTSMHelper.S | GCC
|
||||||
|
|
||||||
[FeaturePcd]
|
[FeaturePcd]
|
||||||
gEmbeddedTokenSpaceGuid.PcdCacheEnable
|
gEmbeddedTokenSpaceGuid.PcdCacheEnable
|
||||||
|
@ -36,6 +36,8 @@
|
|||||||
RTSM.c
|
RTSM.c
|
||||||
RTSMBoot.asm | RVCT
|
RTSMBoot.asm | RVCT
|
||||||
RTSMBoot.S | GCC
|
RTSMBoot.S | GCC
|
||||||
|
RTSMHelper.asm | RVCT
|
||||||
|
RTSMHelper.S | GCC
|
||||||
|
|
||||||
[Protocols]
|
[Protocols]
|
||||||
|
|
||||||
|
@ -148,7 +148,7 @@ PrePeiCoreGetMpCoreInfo (
|
|||||||
UINT32 ProcType;
|
UINT32 ProcType;
|
||||||
|
|
||||||
ProcType = MmioRead32 (ARM_VE_SYS_PROCID0_REG) & ARM_VE_SYS_PROC_ID_MASK;
|
ProcType = MmioRead32 (ARM_VE_SYS_PROCID0_REG) & ARM_VE_SYS_PROC_ID_MASK;
|
||||||
if (ProcType == ARM_VE_SYS_PROC_ID_CORTEX_A9) {
|
if ((ProcType == ARM_VE_SYS_PROC_ID_CORTEX_A9) || (ProcType == ARM_VE_SYS_PROC_ID_CORTEX_A15)) {
|
||||||
// Only support one cluster
|
// Only support one cluster
|
||||||
*CoreCount = ArmGetCpuCountPerCluster ();
|
*CoreCount = ArmGetCpuCountPerCluster ();
|
||||||
*ArmCoreTable = mVersatileExpressMpCoreInfoTable;
|
*ArmCoreTable = mVersatileExpressMpCoreInfoTable;
|
||||||
|
@ -0,0 +1,71 @@
|
|||||||
|
#
|
||||||
|
# Copyright (c) 2011, ARM Limited. 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.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
|
||||||
|
#include <AsmMacroIoLib.h>
|
||||||
|
#include <Base.h>
|
||||||
|
#include <Library/PcdLib.h>
|
||||||
|
#include <AutoGen.h>
|
||||||
|
#.include AsmMacroIoLib.inc
|
||||||
|
|
||||||
|
#include <Chipset/ArmCortexA9.h>
|
||||||
|
|
||||||
|
.text
|
||||||
|
.align 2
|
||||||
|
|
||||||
|
GCC_ASM_EXPORT(ArmGetCpuCountPerCluster)
|
||||||
|
|
||||||
|
# IN None
|
||||||
|
# OUT r0 = SCU Base Address
|
||||||
|
ASM_PFX(ArmGetScuBaseAddress):
|
||||||
|
# Read Configuration Base Address Register. ArmCBar cannot be called to get
|
||||||
|
# the Configuration BAR as a stack is not necessary setup. The SCU is at the
|
||||||
|
# offset 0x0000 from the Private Memory Region.
|
||||||
|
mrc p15, 4, r0, c15, c0, 0
|
||||||
|
bx lr
|
||||||
|
|
||||||
|
# IN None
|
||||||
|
# OUT r0 = number of cores present in the system
|
||||||
|
ASM_PFX(ArmGetCpuCountPerCluster):
|
||||||
|
stmfd SP!, {r1-r2}
|
||||||
|
|
||||||
|
# Read CP15 MIDR
|
||||||
|
mrc p15, 0, r1, c0, c0, 0
|
||||||
|
|
||||||
|
# Check if the CPU is A15
|
||||||
|
mov r1, r1, LSR #4
|
||||||
|
LoadConstantToReg (ARM_CPU_TYPE_MASK, r0)
|
||||||
|
and r1, r1, r0
|
||||||
|
|
||||||
|
LoadConstantToReg (ARM_CPU_TYPE_A15, r0)
|
||||||
|
cmp r1, r0
|
||||||
|
beq _Read_cp15_reg
|
||||||
|
|
||||||
|
_CPU_is_not_A15:
|
||||||
|
mov r2, lr @ Save link register
|
||||||
|
bl ArmGetScuBaseAddress @ Read SCU Base Address
|
||||||
|
mov lr, r2 @ Restore link register val
|
||||||
|
ldr r0, [r0, #A9_SCU_CONFIG_OFFSET] @ Read SCU Config reg to get CPU count
|
||||||
|
b _Return
|
||||||
|
|
||||||
|
_Read_cp15_reg:
|
||||||
|
mrc p15, 1, r0, c9, c0, 2 @ Read C9 register of CP15 to get CPU count
|
||||||
|
lsr r0, #24
|
||||||
|
|
||||||
|
_Return:
|
||||||
|
and r0, r0, #3
|
||||||
|
# Add '1' to the number of CPU on the Cluster
|
||||||
|
add r0, r0, #1
|
||||||
|
ldmfd SP!, {r1-r2}
|
||||||
|
bx lr
|
||||||
|
|
||||||
|
ASM_FUNCTION_REMOVE_IF_UNREFERENCED
|
@ -0,0 +1,73 @@
|
|||||||
|
//
|
||||||
|
// Copyright (c) 2011, ARM Limited. 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.
|
||||||
|
//
|
||||||
|
//
|
||||||
|
|
||||||
|
#include <AsmMacroIoLib.h>
|
||||||
|
#include <Base.h>
|
||||||
|
#include <Library/PcdLib.h>
|
||||||
|
|
||||||
|
#include <Chipset/ArmCortexA9.h>
|
||||||
|
|
||||||
|
#include <AutoGen.h>
|
||||||
|
|
||||||
|
INCLUDE AsmMacroIoLib.inc
|
||||||
|
|
||||||
|
EXPORT ArmGetCpuCountPerCluster
|
||||||
|
|
||||||
|
AREA RTSMHelper, CODE, READONLY
|
||||||
|
|
||||||
|
// IN None
|
||||||
|
// OUT r0 = SCU Base Address
|
||||||
|
ArmGetScuBaseAddress
|
||||||
|
// Read Configuration Base Address Register. ArmCBar cannot be called to get
|
||||||
|
// the Configuration BAR as a stack is not necessary setup. The SCU is at the
|
||||||
|
// offset 0x0000 from the Private Memory Region.
|
||||||
|
mrc p15, 4, r0, c15, c0, 0
|
||||||
|
bx lr
|
||||||
|
|
||||||
|
// IN None
|
||||||
|
// OUT r0 = number of cores present in the system
|
||||||
|
ArmGetCpuCountPerCluster
|
||||||
|
stmfd SP!, {r1-r2}
|
||||||
|
|
||||||
|
// Read CP15 MIDR
|
||||||
|
mrc p15, 0, r1, c0, c0, 0
|
||||||
|
|
||||||
|
// Check if the CPU is A15
|
||||||
|
mov r1, r1, LSR #4
|
||||||
|
mov r0, #ARM_CPU_TYPE_MASK
|
||||||
|
and r1, r1, r0
|
||||||
|
|
||||||
|
mov r0, #ARM_CPU_TYPE_A15
|
||||||
|
cmp r1, r0
|
||||||
|
beq _Read_cp15_reg
|
||||||
|
|
||||||
|
_CPU_is_not_A15
|
||||||
|
mov r2, lr ; Save link register
|
||||||
|
bl ArmGetScuBaseAddress ; Read SCU Base Address
|
||||||
|
mov lr, r2 ; Restore link register val
|
||||||
|
ldr r0, [r0, #A9_SCU_CONFIG_OFFSET] ; Read SCU Config reg to get CPU count
|
||||||
|
b _Return
|
||||||
|
|
||||||
|
_Read_cp15_reg
|
||||||
|
mrc p15, 1, r0, c9, c0, 2 ; Read C9 register of CP15 to get CPU count
|
||||||
|
lsr r0, #24
|
||||||
|
|
||||||
|
|
||||||
|
_Return
|
||||||
|
and r0, r0, #3
|
||||||
|
// Add '1' to the number of CPU on the Cluster
|
||||||
|
add r0, r0, #1
|
||||||
|
ldmfd SP!, {r1-r2}
|
||||||
|
bx lr
|
||||||
|
|
||||||
|
END
|
Loading…
x
Reference in New Issue
Block a user