mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-17 03:50:37 +00:00
Add support in the OP-TEE backend driver dynamic protected memory allocation with FF-A. The protected memory pools for dynamically allocated protected memory are instantiated when requested by user-space. This instantiation can fail if OP-TEE doesn't support the requested use-case of protected memory. Restricted memory pools based on a static carveout or dynamic allocation can coexist for different use-cases. We use only dynamic allocation with FF-A. Reviewed-by: Sumit Garg <sumit.garg@oss.qualcomm.com> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
15 lines
342 B
Makefile
15 lines
342 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_OPTEE) += optee.o
|
|
optee-objs += core.o
|
|
optee-objs += call.o
|
|
optee-objs += notif.o
|
|
optee-objs += rpc.o
|
|
optee-objs += protmem.o
|
|
optee-objs += supp.o
|
|
optee-objs += device.o
|
|
optee-objs += smc_abi.o
|
|
optee-objs += ffa_abi.o
|
|
|
|
# for tracing framework to find optee_trace.h
|
|
CFLAGS_smc_abi.o := -I$(src)
|