mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-01-11 15:00:39 +00:00
The logging service provides an SPMC agonistic to create log messages. The current version will simply dump the incoming log messages to a setial line. Future versions could provide access to log messages from the NWd, could encrypt the essages and perform more efficient when logging large messages. This change enables the logging SP on the fvp_base platform. All log messages made by SPs after the boot phase will be sent to UART3. Signed-off-by: Gyorgy Szing <gyorgy.szing@arm.com> Signed-off-by: Jon Mason <jon.mason@arm.com>
37 lines
1.6 KiB
YAML
37 lines
1.6 KiB
YAML
# yaml-language-server: $schema=https://raw.githubusercontent.com/siemens/kas/master/kas/schema-kas.json
|
|
|
|
header:
|
|
version: 14
|
|
includes:
|
|
- ci/fvp-base.yml
|
|
- ci/meta-openembedded.yml
|
|
- ci/testimage.yml
|
|
|
|
local_conf_header:
|
|
trusted_services: |
|
|
# Enable the needed test suites
|
|
TEST_SUITES = " ping ssh trusted_services"
|
|
# Include all Secure Partitions into the image
|
|
MACHINE_FEATURES:append = " arm-ffa ts-crypto ts-storage ts-its"
|
|
MACHINE_FEATURES:append = " ts-attestation ts-smm-gateway optee-spmc-test"
|
|
MACHINE_FEATURES:append = " ts-block-storage ts-fwu ts-logging"
|
|
MACHINE_FEATURES:append = " arm-branch-protection"
|
|
SMMGW_AUTH_VAR = "1"
|
|
# Include TS demo/test tools into image
|
|
IMAGE_INSTALL:append = " packagegroup-ts-tests"
|
|
# Include TS PSA Arch tests into image
|
|
IMAGE_INSTALL:append = " packagegroup-ts-tests-psa"
|
|
CORE_IMAGE_EXTRA_INSTALL += "optee-test"
|
|
# Set the TS environment
|
|
TS_ENV = "sp"
|
|
# Enable and configure semihosting
|
|
FVP_CONFIG[cluster0.cpu0.semihosting-cwd] = "${DEPLOY_DIR_IMAGE}"
|
|
FVP_CONFIG[cluster0.cpu1.semihosting-cwd] = "${DEPLOY_DIR_IMAGE}"
|
|
FVP_CONFIG[cluster0.cpu2.semihosting-cwd] = "${DEPLOY_DIR_IMAGE}"
|
|
FVP_CONFIG[cluster0.cpu3.semihosting-cwd] = "${DEPLOY_DIR_IMAGE}"
|
|
FVP_CONFIG[cluster1.cpu0.semihosting-cwd] = "${DEPLOY_DIR_IMAGE}"
|
|
FVP_CONFIG[cluster1.cpu1.semihosting-cwd] = "${DEPLOY_DIR_IMAGE}"
|
|
FVP_CONFIG[cluster1.cpu2.semihosting-cwd] = "${DEPLOY_DIR_IMAGE}"
|
|
FVP_CONFIG[cluster1.cpu3.semihosting-cwd] = "${DEPLOY_DIR_IMAGE}"
|
|
FVP_CONFIG[semihosting-enable] = "True"
|