Lines Matching defs:ep_info
241 entry_point_info_t *ep_info = bl31_plat_get_next_image_ep_info(SECURE);
248 if ((ep_info == NULL) && (smc_fid == SMC_YC_SET_ROT_PARAMS)) {
250 } else if (ep_info == NULL) {
309 entry_point_info_t *ep_info;
320 ep_info = bl31_plat_get_next_image_ep_info(SECURE);
321 assert(ep_info != NULL);
327 cm_init_my_context(ep_info);
335 cpu, ep_info->pc + (1U << 5));
336 cm_set_elr_el3(SECURE, ep_info->pc + (1U << 5));
428 entry_point_info_t *ep_info;
435 ep_info = bl31_plat_get_next_image_ep_info(SECURE);
436 if (ep_info == NULL) {
442 ret = mmap_add_dynamic_region(ep_info->pc, /* PA */
443 ep_info->pc, /* VA */
449 instr = *(uint32_t *)ep_info->pc;
462 (void)mmap_remove_dynamic_region(ep_info->pc, PAGE_SIZE);
464 SET_PARAM_HEAD(ep_info, PARAM_EP, VERSION_1, SECURE | EP_ST_ENABLE);
466 ep_info->spsr = SPSR_64(MODE_EL1, MODE_SP_ELX,
469 ep_info->spsr = SPSR_MODE32(MODE32_svc, SPSR_T_ARM,
474 (void)memset(&ep_info->args, 0, sizeof(ep_info->args));
475 plat_trusty_set_boot_args(&ep_info->args);