1srcs-y += tee_ta_manager.c 2srcs-y += user_ta.c 3srcs-y += static_ta.c 4srcs-y += elf_load.c 5srcs-y += tee_time.c 6 7srcs-$(CFG_SECURE_TIME_SOURCE_CNTPCT) += tee_time_arm_cntpct.c 8srcs-$(CFG_SECURE_TIME_SOURCE_REE) += tee_time_ree.c 9 10srcs-$(CFG_ARM32_core) += proc_a32.S 11srcs-$(CFG_ARM64_core) += proc_a64.S 12srcs-$(CFG_ARM64_core) += spin_lock_a64.S 13srcs-$(CFG_ARM32_core) += ssvce_a32.S 14srcs-$(CFG_ARM64_core) += ssvce_a64.S 15srcs-$(CFG_ARM64_core) += cache_helpers_a64.S 16srcs-$(CFG_PL310) += tz_ssvce_pl310_a32.S 17srcs-$(CFG_PL310) += tee_l2cc_mutex.c 18 19srcs-$(CFG_ARM32_core) += thread_a32.S 20srcs-$(CFG_ARM64_core) += thread_a64.S 21srcs-y += thread.c 22srcs-$(CFG_WITH_VFP) += vfp.c 23ifeq ($(CFG_WITH_VFP),y) 24srcs-$(CFG_ARM32_core) += vfp_a32.S 25srcs-$(CFG_ARM64_core) += vfp_a64.S 26endif 27srcs-y += trace_ext.c 28srcs-$(CFG_ARM32_core) += misc_a32.S 29srcs-$(CFG_ARM64_core) += misc_a64.S 30srcs-y += mutex.c 31srcs-y += wait_queue.c 32srcs-$(CFG_PM_STUBS) += pm_stubs.c 33 34srcs-$(CFG_GENERIC_BOOT) += generic_boot.c 35srcs-$(CFG_GENERIC_BOOT) += generic_core_bootcfg.c 36ifeq ($(CFG_GENERIC_BOOT),y) 37srcs-$(CFG_ARM32_core) += generic_entry_a32.S 38srcs-$(CFG_ARM64_core) += generic_entry_a64.S 39endif 40