Lines Matching refs:te
198 struct transfer_list_entry *te = NULL; in arm_bl31_early_platform_setup()
207 while ((te = transfer_list_next(secure_tl, te)) != NULL) { in arm_bl31_early_platform_setup()
208 ep = transfer_list_entry_data(te); in arm_bl31_early_platform_setup()
210 if (te->tag_id == TL_TAG_EXEC_EP_INFO64) { in arm_bl31_early_platform_setup()
393 struct transfer_list_entry *te __unused; in arm_bl31_platform_setup()
403 te = transfer_list_find(secure_tl, TL_TAG_FDT); in arm_bl31_platform_setup()
404 assert(te != NULL); in arm_bl31_platform_setup()
414 fconf_populate("HW_CONFIG", (uintptr_t)transfer_list_entry_data(te)); in arm_bl31_platform_setup()
417 te = transfer_list_add(ns_tl, TL_TAG_FDT, te->data_size, in arm_bl31_platform_setup()
418 transfer_list_entry_data(te)); in arm_bl31_platform_setup()
419 assert(te != NULL); in arm_bl31_platform_setup()
421 te = transfer_list_find(secure_tl, TL_TAG_TPM_EVLOG); in arm_bl31_platform_setup()
422 if (te != NULL) { in arm_bl31_platform_setup()
423 te = transfer_list_add(ns_tl, TL_TAG_TPM_EVLOG, te->data_size, in arm_bl31_platform_setup()
424 transfer_list_entry_data(te)); in arm_bl31_platform_setup()
425 if (te == NULL) { in arm_bl31_platform_setup()
470 struct transfer_list_entry *te __unused; in arm_bl31_plat_runtime_setup()