Home | History | Annotate | Download | only in mt6795

Lines Matching refs:next_image_info

156 	entry_point_info_t *next_image_info;
158 next_image_info = (type == NON_SECURE) ?
162 if (next_image_info->pc)
163 return next_image_info;
338 entry_point_info_t *next_image_info;
344 next_image_info = &bl33_image_ep_info;
356 next_image_info->spsr =
358 next_image_info->pc = get_kernel_info_pc();
359 next_image_info->args.arg0 = get_kernel_info_r0();
360 next_image_info->args.arg1 = get_kernel_info_r1();
363 next_image_info->pc,
364 next_image_info->args.arg0,
365 next_image_info->args.arg1);
368 SET_SECURITY_STATE(next_image_info->h.attr, NON_SECURE);
371 if (next_image_info->pc)
372 return next_image_info;
382 entry_point_info_t *next_image_info;
388 next_image_info = &bl33_image_ep_info;
399 next_image_info->spsr =
402 next_image_info->pc = get_kernel_info_pc();
403 next_image_info->args.arg0 = get_kernel_info_r0();
404 next_image_info->args.arg1 = get_kernel_info_r1();
405 next_image_info->args.arg2 = get_kernel_info_r2();
408 next_image_info->pc,
409 next_image_info->args.arg0,
410 next_image_info->args.arg1,
411 next_image_info->args.arg2);
414 SET_SECURITY_STATE(next_image_info->h.attr, NON_SECURE);
417 if (next_image_info->pc)
418 return next_image_info;
428 entry_point_info_t *next_image_info;
437 next_image_info = bl31_plat_get_next_kernel32_ep_info();
439 next_image_info = bl31_plat_get_next_kernel64_ep_info();
441 assert(next_image_info);
442 assert(image_type == GET_SECURITY_STATE(next_image_info->h.attr));
447 (unsigned long long) next_image_info->pc);
448 INFO("BL3-1: Next image spsr = 0x%x\n", next_image_info->spsr);
449 cm_init_context(read_mpidr_el1(), next_image_info);