Skip to content

Commit

Permalink
core: ffa: remove AArch32 support
Browse files Browse the repository at this point in the history
The FF-A and AArch32 configuration was prior to this patch not compile
tested and not used upstream. So remove the AArch32 support for FF-A
configurations so save maintenance effort.

Signed-off-by: Jens Wiklander <[email protected]>
Acked-by: Etienne Carriere <[email protected]>
  • Loading branch information
jenswi-linaro authored and jforissier committed Nov 3, 2023
1 parent 51889a6 commit ea4cafa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 137 deletions.
3 changes: 3 additions & 0 deletions core/arch/arm/arm.mk
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ ifeq ($(CFG_CORE_FFA),y)
ifneq ($(CFG_DT),y)
$(error CFG_CORE_FFA depends on CFG_DT)
endif
ifneq ($(CFG_ARM64_core),y)
$(error CFG_CORE_FFA depends on CFG_ARM64_core)
endif
endif

ifeq ($(CFG_CORE_PHYS_RELOCATABLE)-$(CFG_WITH_PAGER),y-y)
Expand Down
1 change: 0 additions & 1 deletion core/arch/arm/kernel/sub.mk
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ endif
ifeq ($(CFG_CORE_FFA),y)
srcs-y += thread_spmc.c
cppflags-thread_spmc.c-y += -DTEE_IMPL_GIT_SHA1=$(TEE_IMPL_GIT_SHA1)
srcs-$(CFG_ARM32_core) += thread_spmc_a32.S
srcs-$(CFG_ARM64_core) += thread_spmc_a64.S
else
srcs-y += thread_optee_smc.c
Expand Down
136 changes: 0 additions & 136 deletions core/arch/arm/kernel/thread_spmc_a32.S

This file was deleted.

0 comments on commit ea4cafa

Please sign in to comment.