summaryrefslogtreecommitdiff
path: root/bl31
diff options
context:
space:
mode:
authorjohpow01 <john.powell@arm.com>2022-03-11 17:50:58 -0600
committerManish V Badarkhe <Manish.Badarkhe@arm.com>2022-10-05 15:25:28 +0100
commit2a1cdee4f5e6fe0b90399e442075880acad1869e (patch)
treefcad28db94567a95dd811092c4df89e812b4cff3 /bl31
parente6381f9cf8c0c62c32d5a4765aaf166f50786914 (diff)
downloadarm-trusted-firmware-2a1cdee4f5e6fe0b90399e442075880acad1869e.tar.gz
feat(drtm): add platform functions for DRTM
Added platform hooks to retrieve DRTM features and address map. Additionally, implemented these hooks for the FVP platform. Signed-off-by: John Powell <john.powell@arm.com> Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com> Change-Id: I5621cc9807ffff8139ae8876250147f7b2c76759
Diffstat (limited to 'bl31')
-rw-r--r--bl31/bl31.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/bl31/bl31.mk b/bl31/bl31.mk
index ec7062755..f435815ce 100644
--- a/bl31/bl31.mk
+++ b/bl31/bl31.mk
@@ -148,8 +148,9 @@ BL31_SOURCES += common/feat_detect.c
endif
ifeq (${DRTM_SUPPORT},1)
-BL31_SOURCES += services/std_svc/drtm/drtm_main.c \
- services/std_svc/drtm/drtm_dma_prot.c \
+BL31_SOURCES += services/std_svc/drtm/drtm_main.c \
+ services/std_svc/drtm/drtm_dma_prot.c \
+ services/std_svc/drtm/drtm_res_address_map.c \
${MBEDTLS_SOURCES}
endif