Prerequisite
Please make sure you have all required software installed as explained in the software requirements.
Porting steps
Refer to the PSA-FF Test Suite Porting Guide document for porting steps.
Build steps
To build test suite for a given platform, execute the following commands:
cd api-tests
Using your secure partition build tool, parse following test suite partition manifest files and generate manifest output files. The manifest parsing tool must be compliant to manifest rules defined in the PSA FF specification.
Test suite manifest to be parsed:
- platform/targets/<platform_name>/manifests/common/driver_partition_psa.json
- platform/targets/<platform_name>/manifests/ipc/client_partition_psa.json
- platform/targets/<platform_name>/manifests/ipc/server_partition_psa.json
Compile tests
./tools/scripts/setup.sh --target <platform_name> --cpu_arch <cpu_architecture_version> --suite <suite_name> --build <build_dir> --include <include_path>
where:
- <platform_name> is the same as the name of the target specific directory created in the platform/targets/ directory.
- <cpu_architecture_version> is the Arm Architecture version name for which test binaries should be compiled. For example, Armv7M, Armv8M-Baseline and Armv8M-Mainline Architecture.
- <suite_name> is the suite name and it is same as the suite name available in test_suites/ directory.
- <include_path> is an additional directory to be included into compiler search path. Note- To compile ipc tests, include path must point to path where "psa/client.h", "psa/service.h" and test partition manifest output files(
"psa_manifest/sid.h" and "psa_manifest/<manifestfilename>.h"
) are located in your build system.
- <build_dir> is an output directory to keep build files.
Refer ./tools/scripts/setup.sh --help to know more about options.
To compile ipc tests for tgt_ff_mbedos_fvp_mps2_m4 platform
cd api-tests
./tools/scripts/setup.sh --target tgt_ff_mbedos_fvp_mps2_m4 --cpu_arch armv7m --suite ipc --build BUILD_IPC --include <include_path1> --include <include_path2>
Build output
Test suite build generates following binaries:
NSPE libraries:
- <build_dir>/BUILD/val/val_nspe.a
- <build_dir>/BUILD/platform/pal_nspe.a
- <build_dir>/BUILD/ff/<suite_name>/test_elf_combine.bin
SPE libraries:
- <build_dir>/BUILD/partition/driver_partition.a
- <build_dir>/BUILD/partition/client_partition.a
- <build_dir>/BUILD/partition/server_partition.a
Binaries integration into your platform
- Integrate test partition (SPE archives) with your software stack containing SPM so that partition code get access to PSA defined client and secure partition APIs. This forms a SPE binary.
- Integrate BUILD/val/val_nspe.a and BUILD/platform/pal_nspe.a libraries with your Non-Secure OS so that these libraries get access to PSA client APIs. This will form a NSPE binary.
- Load NSPE binary and test_elf_combine.bin to NS memory
- Load SPE binary into S memory
Test Suite Execution
The following steps describe the execution flow prior to the start of test execution:
- The target platform must load above binaries into appropriate memory.
- The System Under Test (SUT) would boot to an environment which intializes SPM and test suite partitions are ready to accept requests.
- On the non-secure side, the SUT - boot software would give control to the test suite entry point- void val_entry(void); as an application entry point.
- The tests are executed sequentially in a loop in the test_dispatcher function.
License
Arm PSA test suite is distributed under Apache v2.0 License.
Feedback, contributions, and support
- For feedback, use the GitHub Issue Tracker that is associated with this repository.
- For support, send an email to support-psa-arch-tests@arm.com with details.
- Arm licensees can contact Arm directly through their partner managers.
- Arm welcomes code contributions through GitHub pull requests.
Copyright (c) 2018-2019, Arm Limited and Contributors. All rights reserved.