ArmPlatformPkg/PrePi: avoid global variable write to mSystemMemoryEnd
The global variable mSystemMemoryEnd is initialized by PrePi only if it has not been initialized by ArmPlatformPeiBootAction(). This allows platforms executing under, e.g., ARM Trusted Firmware to dynamically reserve a window at the top of memory that will be used by the secure firmware. However, PrePi is a SEC module, and writing to a global variable violates the SEC constraints, since SEC and PEI may execute from NOR flash. So instead, initialize mSystemMemoryEnd statically. This will ensure it holds the correct value for all implementations where the value is not overridden, but still allows it to be overridden during the call to ArmPlatformPeiBootAction(). Note that this patch also fixes a latent bug on 32-bit platforms where a value of mSystemMemoryEnd exceeding 4 GB would be truncated to 32-bits rather than limited to (4 GB - 1) Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Acked-by: Laszlo Ersek <lersek@redhat.com> Tested-by: Ryan Harkin <ryan.harkin@linaro.org> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
This commit is contained in:
@ -15,8 +15,6 @@
|
||||
|
||||
#include <Chipset/ArmV7.h>
|
||||
|
||||
GCC_ASM_EXPORT(mSystemMemoryEnd)
|
||||
|
||||
ASM_FUNC(_ModuleEntryPoint)
|
||||
// Do early platform specific actions
|
||||
bl ASM_PFX(ArmPlatformPeiBootAction)
|
||||
@ -35,17 +33,11 @@ _SetSVCMode:
|
||||
// to install the stacks at the bottom of the Firmware Device (case the FD is located
|
||||
// at the top of the DRAM)
|
||||
_SystemMemoryEndInit:
|
||||
ldr r1, mSystemMemoryEnd
|
||||
|
||||
// Is mSystemMemoryEnd initialized?
|
||||
cmp r1, #0
|
||||
bne _SetupStackPosition
|
||||
|
||||
MOV32 (r1, FixedPcdGet32(PcdSystemMemoryBase) + FixedPcdGet32(PcdSystemMemorySize) - 1)
|
||||
|
||||
// Update the global variable
|
||||
adr r2, mSystemMemoryEnd
|
||||
str r1, [r2]
|
||||
ADRL (r1, mSystemMemoryEnd)
|
||||
ldrd r2, r3, [r1]
|
||||
teq r3, #0
|
||||
moveq r1, r2
|
||||
mvnne r1, #0
|
||||
|
||||
_SetupStackPosition:
|
||||
// r1 = SystemMemoryTop
|
||||
@ -136,5 +128,3 @@ _PrepareArguments:
|
||||
|
||||
_NeverReturn:
|
||||
b _NeverReturn
|
||||
|
||||
ASM_PFX(mSystemMemoryEnd): .8byte 0
|
||||
|
Reference in New Issue
Block a user