Skip to content

Commit

Permalink
core: imx: disable ELE support on imx8ulp, imx93 by default
Browse files Browse the repository at this point in the history
On imx8ulp and imx93, there is only one MU to communicate with
ELE, which cannot be dedicated on OP-TEE side all the time.
There may be ELE services running on Linux side, which can
cause conflict with OP-TEE.
So disablig ELE by default for now.

Signed-off-by: Sahil Malhotra <[email protected]>
Acked-by: Jerome Forissier <[email protected]>
Acked-by: Clement Faure <[email protected]>
  • Loading branch information
sahilnxp authored and jforissier committed Jan 18, 2024
1 parent 5d3112c commit 29b4cb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/arch/arm/plat-imx/conf.mk
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ CFG_TEE_CORE_NB_CORE ?= 2
$(call force,CFG_NXP_SNVS,n)
$(call force,CFG_IMX_OCOTP,n)
CFG_IMX_MU ?= y
CFG_IMX_ELE ?= y
CFG_IMX_ELE ?= n
else ifneq (,$(filter $(PLATFORM_FLAVOR),$(mx93-flavorlist)))
$(call force,CFG_MX93,y)
$(call force,CFG_ARM64_core,y)
Expand All @@ -230,7 +230,7 @@ $(call force,CFG_TZC380,n)
$(call force,CFG_CRYPTO_DRIVER,n)
$(call force,CFG_NXP_CAAM,n)
CFG_IMX_MU ?= y
CFG_IMX_ELE ?= y
CFG_IMX_ELE ?= n
else
$(error Unsupported PLATFORM_FLAVOR "$(PLATFORM_FLAVOR)")
endif
Expand Down

0 comments on commit 29b4cb6

Please sign in to comment.