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