diff options
author | Dimitris Papastamos <dimitris.papastamos@arm.com> | 2018-05-25 09:47:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-25 09:47:11 +0100 |
commit | edcd266e6a9276ac0b2927301c8deec3798a6b1c (patch) | |
tree | d17687cd5c3d825812b94a382417fad29785822a /docs | |
parent | 0d018306d41a36582830e58761cba9d5b647f05b (diff) | |
parent | e829a3796fb2e66a68b60a22ebce6dca05c80a71 (diff) | |
download | platform_external_arm-trusted-firmware-edcd266e6a9276ac0b2927301c8deec3798a6b1c.tar.gz platform_external_arm-trusted-firmware-edcd266e6a9276ac0b2927301c8deec3798a6b1c.tar.bz2 platform_external_arm-trusted-firmware-edcd266e6a9276ac0b2927301c8deec3798a6b1c.zip |
Merge pull request #1395 from antonio-nino-diaz-arm/an/spm-refactor
SPM: Refactor codebase
Diffstat (limited to 'docs')
-rw-r--r-- | docs/secure-partition-manager-design.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/secure-partition-manager-design.rst b/docs/secure-partition-manager-design.rst index 3dd1e0ca2..fec7c00c7 100644 --- a/docs/secure-partition-manager-design.rst +++ b/docs/secure-partition-manager-design.rst @@ -126,8 +126,7 @@ the rest of this document. To enable SPM support in TF-A, the source code must be compiled with the build flag ``ENABLE_SPM=1``. On Arm platforms the build option ``ARM_BL31_IN_DRAM`` -can be used to select the location of BL31, both SRAM and DRAM are supported. -Also, the location of the binary that contains the BL32 image +must be set to 1. Also, the location of the binary that contains the BL32 image (``BL32=path/to/image.bin``) must be specified. First, build the Standalone MM Secure Partition. To build it, refer to the @@ -139,7 +138,7 @@ image in the FIP: :: BL32=path/to/standalone/mm/sp BL33=path/to/bl33.bin \ - make PLAT=fvp ENABLE_SPM=1 fip all + make PLAT=fvp ENABLE_SPM=1 ARM_BL31_IN_DRAM=1 fip all Describing Secure Partition resources ------------------------------------- |