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_RTT) += tee_time_rtt.c 6srcs-$(CFG_SECURE_TIME_SOURCE_REE) += tee_time_ree.c 7 8srcs-y += tee_time_unpg.c 9srcs-$(CFG_ARM32_core) += proc_a32.S 10srcs-$(CFG_ARM64_core) += proc_a64.S 11srcs-$(CFG_ARM64_core) += spin_lock_a64.S 12srcs-$(CFG_ARM32_core) += ssvce_a32.S 13srcs-$(CFG_ARM64_core) += ssvce_a64.S 14srcs-$(CFG_ARM64_core) += cache_helpers_a64.S 15srcs-$(CFG_PL310) += tz_ssvce_pl310_a32.S 16srcs-$(CFG_PL310) += tee_l2cc_mutex.c 17 18srcs-$(CFG_ARM32_core) += thread_a32.S 19srcs-$(CFG_ARM64_core) += thread_a64.S 20srcs-y += thread.c 21srcs-$(CFG_WITH_VFP) += vfp.c 22srcs-$(CFG_WITH_VFP) += vfp_a32.S 23srcs-y += trace_ext.c 24srcs-$(CFG_ARM32_core) += misc_a32.S 25srcs-$(CFG_ARM64_core) += misc_a64.S 26srcs-y += mutex.c 27srcs-$(CFG_PM_STUBS) += pm_stubs.c 28 29srcs-$(CFG_GENERIC_BOOT) += generic_boot.c 30srcs-$(CFG_GENERIC_BOOT) += generic_core_bootcfg.c 31ifeq ($(CFG_GENERIC_BOOT),y) 32srcs-$(CFG_ARM32_core) += generic_entry_a32.S 33srcs-$(CFG_ARM64_core) += generic_entry_a64.S 34endif 35