diff options
author | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-09-27 16:29:07 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-09-27 16:29:07 +0000 |
commit | 12c5ae238ed1f6fcf2c29fa38d5ff77b15da12c9 (patch) | |
tree | edee36af3a7d9fc452a576edb70b8ea85deaa097 /ArmPlatformPkg/Include | |
parent | 4103bc94fb2b8eefccd34bfc33ef7d7b9a51df74 (diff) | |
download | edk2-12c5ae238ed1f6fcf2c29fa38d5ff77b15da12c9.tar.gz edk2-12c5ae238ed1f6fcf2c29fa38d5ff77b15da12c9.tar.bz2 edk2-12c5ae238ed1f6fcf2c29fa38d5ff77b15da12c9.zip |
ArmPlatformPkg: Replaced 'ArmPlatformTrustzoneSupported' by the fixed Pcd gArmTokenSpaceGuid.PcdTrustzoneSupport
This change does not make possible to disable Trustzone from the firmware.
The firmware has to be built for Trustzone support enabled or disabled.
The memory page table are now defined as 'Normal Memory' in any case.
Except for RTSM Device Memory which as to be Secure Device Memory due
to a RTSM bug.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12452 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPlatformPkg/Include')
-rw-r--r-- | ArmPlatformPkg/Include/Library/ArmPlatformLib.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/ArmPlatformPkg/Include/Library/ArmPlatformLib.h b/ArmPlatformPkg/Include/Library/ArmPlatformLib.h index 864c2c7c92..4362760c73 100644 --- a/ArmPlatformPkg/Include/Library/ArmPlatformLib.h +++ b/ArmPlatformPkg/Include/Library/ArmPlatformLib.h @@ -144,22 +144,6 @@ ArmPlatformBootRemapping ( ); /** - Return if Trustzone is supported by your platform - - A non-zero value must be returned if you want to support a Secure World on your platform. - ArmPlatformTrustzoneInit() will later set up the secure regions. - This function can return 0 even if Trustzone is supported by your processor. In this case, - the platform will continue to run in Secure World. - - @return A non-zero value if Trustzone supported. - -**/ -UINTN -ArmPlatformTrustzoneSupported ( - VOID - ); - -/** Initialize the Secure peripherals and memory regions If Trustzone is supported by your platform then this function makes the required initialization |