mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
e95b3a850f
PD#SWPL-136287 Problem: The configuration name in kernel 5.15 is starting with "AMLOGIC_", in order to unify configuration name, modify AML_TEE,AML_OPTEE to AMLOGIC_AMLTEE,AMLOGIC_OPTEE. Solution: rename AMLTEE,AMLOGIC_OPTEE to AMLOGIC_AMLTEE,AMLOGIC_OPTEE Verify: Android + Kernel 5.15 Change-Id: I25be69bb990b7e86026790a9a64f64a473e9adfc Signed-off-by: Hangyu Li <hangyu.li@amlogic.com>
22 lines
522 B
Plaintext
22 lines
522 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Generic Trusted Execution Environment Configuration
|
|
config AMLOGIC_AMLTEE
|
|
tristate "Trusted Execution Environment support"
|
|
depends on HAVE_ARM_SMCCC || COMPILE_TEST || CPU_SUP_AMD
|
|
select CRYPTO
|
|
select CRYPTO_SHA1
|
|
select DMA_SHARED_BUFFER
|
|
select GENERIC_ALLOCATOR
|
|
help
|
|
This implements a generic interface towards a Trusted Execution
|
|
Environment (TEE).
|
|
|
|
if AMLOGIC_AMLTEE
|
|
|
|
menu "TEE drivers"
|
|
|
|
source "$(COMMON_DRIVERS_DIR)/drivers/aml_tee/optee/Kconfig"
|
|
endmenu
|
|
|
|
endif
|