forked from OP-TEE/build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fvp-psa-sp.mk
175 lines (142 loc) · 6.21 KB
/
fvp-psa-sp.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
FVP_USE_BASE_PLAT ?= y
FVP_VIRTFS_ENABLE ?= y
FVP_VIRTFS_AUTOMOUNT ?= y
MEASURED_BOOT ?= y
MEASURED_BOOT_FTPM ?= n
TS_SMM_GATEWAY ?= y
TS_UEFI_TESTS ?= n
TS_FW_UPDATE ?= n
TS_UEFI_AUTH_VAR ?= y
TS_UEFI_INTERNAL_CRYPTO ?= n
# Supported values: embedded, fip
SP_PACKAGING_METHOD ?= embedded
SPMC_TESTS ?= n
ifneq ($(TS_UEFI_AUTH_VAR)-$(TS_SMM_GATEWAY),y-y)
SP_SMM_GATEWAY_EXTRA_FLAGS += -DUEFI_AUTH_VAR=OFF
TS_APP_UEFI_TEST_EXTRA_FLAGS += -DUEFI_AUTH_VAR=OFF
endif
ifeq ($(TS_UEFI_INTERNAL_CRYPTO),y)
SP_SMM_GATEWAY_EXTRA_FLAGS += -DUEFI_INTERNAL_CRYPTO=ON
endif
# Enable the "HArdware Volatile Entropy Gathering and Expansion" daemon to
# overcome low-entropy conditions in the FVP
BR2_PACKAGE_HAVEGED ?= y
# Disable packages not used by this configuration
BR2_PACKAGE_HOST_E2FSPROGS ?= n
BR2_PACKAGE_KEYUTILS ?= n
BR2_PACKAGE_MMC_UTILS ?= n
BR2_PACKAGE_OPENSC ?= n
BR2_PACKAGE_OPTEE_EXAMPLES_EXT ?= n
BR2_PACKAGE_STRACE ?= n
# Building xtest is not necessary if we don't want to run the SPMC tests
ifneq ($(SPMC_TESTS),y)
BR2_PACKAGE_OPTEE_TEST_EXT ?= n
BR2_PACKAGE_LIBOPENSSL ?= n
BR2_PACKAGE_OPENSSL ?= n
endif
# TS SP configurations
DEFAULT_SP_CONFIG ?= default-opteesp
SP_BLOCK_STORAGE_CONFIG ?= $(DEFAULT_SP_CONFIG)
SP_PSA_ITS_CONFIG ?= $(DEFAULT_SP_CONFIG)
SP_PSA_PS_CONFIG ?= $(DEFAULT_SP_CONFIG)
SP_PSA_CRYPTO_CONFIG ?= $(DEFAULT_SP_CONFIG)
SP_PSA_ATTESTATION_CONFIG ?= $(DEFAULT_SP_CONFIG)
SP_SMM_GATEWAY_CONFIG ?= $(DEFAULT_SP_CONFIG)
SP_FWU_CONFIG ?= $(DEFAULT_SP_CONFIG)
TF_A_FLAGS ?= \
BL32=$(OPTEE_OS_PAGER_V2_BIN) \
BL33=$(EDK2_BIN) \
PLAT=fvp \
SPD=spmd \
SPMD_SPM_AT_SEL2=0 \
ARM_SPMC_MANIFEST_DTS=$(ROOT)/build/fvp/spmc_manifest.dts \
$(TF_A_FIP_SP_FLAGS)
LINUX_DEFCONFIG_COMMON_FILES ?= $(CURDIR)/kconfigs/fvp_trusted-services.conf
include fvp.mk
include trusted-services.mk
# The macros used in bl2_sp_list.dts and spmc_manifest.dts has to be passed to
# TF-A because it handles the preprocessing of these files.
define add-dtc-define
DTC_CPPFLAGS+=-D$1=$(subst y,1,$(subst n,0,$($1)))
endef
ifeq ($(SP_PACKAGING_METHOD),fip)
$(eval $(call add-dtc-define,SPMC_TESTS))
$(eval $(call add-dtc-define,TS_SMM_GATEWAY))
$(eval $(call add-dtc-define,TS_FW_UPDATE))
TF_A_EXPORTS += DTC_CPPFLAGS="$(DTC_CPPFLAGS)"
endif
OPTEE_OS_COMMON_EXTRA_FLAGS += \
CFG_SECURE_PARTITION=y \
CFG_CORE_SEL1_SPMC=y \
CFG_CORE_HEAP_SIZE=131072 \
CFG_DT=y \
CFG_MAP_EXT_DT_SECURE=y
# The boot order of the SPs is determined by the order of calls here. This is
# due to the SPMC not (yet) supporting the boot order field of the SP manifest.
ifeq ($(SPMC_TESTS),n)
# PSA SPs
$(eval $(call build-sp,block-storage,config/$(SP_BLOCK_STORAGE_CONFIG),63646e80-eb52-462f-ac4f-8cdf3987519c,$(SP_BLOCK_STORAGE_EXTRA_FLAGS)))
$(eval $(call build-sp,internal-trusted-storage,config/$(SP_PSA_ITS_CONFIG),dc1eef48-b17a-4ccf-ac8b-dfcff7711b14,$(SP_PSA_ITS_EXTRA_FLAGS)))
$(eval $(call build-sp,protected-storage,config/$(SP_PSA_PS_CONFIG),751bf801-3dde-4768-a514-0f10aeed1790,$(SP_PSA_PS_EXTRA_FLAGS)))
$(eval $(call build-sp,crypto,config/$(SP_PSA_CRYPTO_CONFIG),d9df52d5-16a2-4bb2-9aa4-d26d3b84e8c0,$(SP_PSA_CRYPTO_EXTRA_FLAGS)))
ifeq ($(MEASURED_BOOT),y)
$(eval $(call build-sp,attestation,config/$(SP_PSA_ATTESTATION_CONFIG),a1baf155-8876-4695-8f7c-54955e8db974,$(SP_PSA_ATTESTATION_EXTRA_FLAGS)))
endif
ifeq ($(TS_SMM_GATEWAY),y)
$(eval $(call build-sp,smm-gateway,config/$(SP_SMM_GATEWAY_CONFIG),ed32d533-99e6-4209-9cc0-2d72cdd998a7,$(SP_SMM_GATEWAY_EXTRA_FLAGS)))
endif
ifeq ($(TS_FW_UPDATE),y)
$(eval $(call build-sp,fwu,config/$(SP_FWU_CONFIG),6823a838-1b06-470e-9774-0cce8bfb53fd,$(SP_FWU_EXTRA_FLAGS)))
endif
else
# SPMC test SPs
OPTEE_OS_COMMON_EXTRA_FLAGS += CFG_SPMC_TESTS=y
$(eval $(call build-sp,spm-test1,opteesp,5c9edbc3-7b3a-4367-9f83-7c191ae86a37,$(SP_SPMC_TEST_EXTRA_FLAGS)))
$(eval $(call build-sp,spm-test2,opteesp,7817164c-c40c-4d1a-867a-9bb2278cf41a,$(SP_SPMC_TEST_EXTRA_FLAGS)))
$(eval $(call build-sp,spm-test3,opteesp,23eb0100-e32a-4497-9052-2f11e584afa6,$(SP_SPMC_TEST_EXTRA_FLAGS)))
$(eval $(call build-sp,spm-test4,opteesp,423762ed-7772-406f-99d8-0c27da0abbf8,$(SP_SPMC_TEST_EXTRA_FLAGS)))
endif
# Linux user space applications
ifeq ($(SPMC_TESTS),n)
$(eval $(call build-ts-app,libts,$(TS_APP_LIBTS_EXTRA_FLAGS)))
$(eval $(call build-ts-app,ts-service-test,$(TS_APP_TS_SERVICE_TEST_EXTRA_FLAGS)))
$(eval $(call build-ts-app,psa-api-test/internal_trusted_storage,$(TS_APP_PSA_ITS_EXTRA_FLAGS)))
$(eval $(call build-ts-app,psa-api-test/protected_storage,$(TS_APP_PSA_PS_EXTRA_FLAGS)))
$(eval $(call build-ts-app,psa-api-test/crypto,$(TS_APP_PSA_CRYPTO_EXTRA_FLAGS)))
ifeq ($(MEASURED_BOOT),y)
$(eval $(call build-ts-app,psa-api-test/initial_attestation,$(TS_APP_PSA_IAT_EXTRA_FLAGS)))
endif
ifeq ($(TS_UEFI_TESTS),y)
$(eval $(call build-ts-app,uefi-test,$(TS_APP_UEFI_TEST_EXTRA_FLAGS)))
# uefi-test uses MM Communicate via the arm-ffa-user driver and the message
# payload is forwarded in a carveout memory area. Adding reserved-memory node to
# the device tree to prevent Linux from using the carveout area for other
# purposes.
ORIGINAL_DTB := $(FVP_LINUX_DTB)
CARVEOUT_ENTRY = $(ROOT)/build/fvp/mm_communicate_carveout.dtsi
FVP_LINUX_DTB = $(ROOT)/out/fvp_with_mm_carveout.dtb
$(FVP_LINUX_DTB): $(CARVEOUT_ENTRY) | linux
{ dtc -Idtb -Odts $(ORIGINAL_DTB); cat $(CARVEOUT_ENTRY); } | dtc -Idts -Odtb -o $(FVP_LINUX_DTB)
boot-img: $(FVP_LINUX_DTB)
.PHONY: carveout-dtb-clean
carveout-dtb-clean:
rm -f $(FVP_LINUX_DTB)
boot-img-clean: carveout-dtb-clean
endif
ifeq ($(TS_FW_UPDATE),y)
# TODO: the fwu-tool is currently not needed.
$(eval $(call build-ts-host-app,fwu-tool,$(TS_HOST_UEFI_TEST_EXTRA_FLAGS)))
ffa-fwu-sp: ts-host-fwu-tool
# Copy the disk image used by FWU to the build directory to allow the FVP binary to find it.
$(BINARIES_PATH)/secure-flash.img:
mkdir -p $(BINARIES_PATH)
cp $(ROOT)/trusted-services/components/media/disk/disk_images/multi_location_fw.img $(BINARIES_PATH)/secure-flash.img
# Add a shortcut to help manually doing the copy.
ffa-fwu-fash-img: $(BINARIES_PATH)/secure-flash.img
ffa-fwu-sp: $(BINARIES_PATH)/secure-flash.img
endif
ffa-fwu-fash-img-clean:
rm -f $(BINARIES_PATH)/secure-flash.img
clean: ffa-fwu-fash-img-clean
clean: ts-host-all-clean ffa-test-all-clean ffa-sp-all-clean linux-arm-ffa-tee-clean linux-arm-ffa-user-clean
endif