Lines Matching full:images

18 			       bootm_headers_t *images)  in do_bootm_standalone()  argument
26 env_set_hex("filesize", images->os.image_len); in do_bootm_standalone()
29 appl = (int (*)(int, char * const []))images->ep; in do_bootm_standalone()
54 bootm_headers_t *images) in do_bootm_netbsd() argument
65 if (!images->legacy_hdr_valid) { in do_bootm_netbsd()
70 hdr = images->legacy_hdr_os; in do_bootm_netbsd()
84 if (image_check_type(&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) { in do_bootm_netbsd()
104 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep; in do_bootm_netbsd()
126 bootm_headers_t *images) in do_bootm_lynxkdi() argument
128 image_header_t *hdr = &images->legacy_hdr_os_copy; in do_bootm_lynxkdi()
134 if (!images->legacy_hdr_valid) { in do_bootm_lynxkdi()
148 bootm_headers_t *images) in do_bootm_rtems() argument
156 if (!images->legacy_hdr_valid) { in do_bootm_rtems()
162 entry_point = (void (*)(bd_t *))images->ep; in do_bootm_rtems()
181 bootm_headers_t *images) in do_bootm_ose() argument
189 if (!images->legacy_hdr_valid) { in do_bootm_ose()
195 entry_point = (void (*)(void))images->ep; in do_bootm_ose()
214 bootm_headers_t *images) in do_bootm_plan9() argument
223 if (!images->legacy_hdr_valid) { in do_bootm_plan9()
243 entry_point = (void (*)(void))images->ep; in do_bootm_plan9()
263 void do_bootvx_fdt(bootm_headers_t *images) in do_bootvx_fdt() argument
268 ulong of_size = images->ft_len; in do_bootvx_fdt()
269 char **of_flat_tree = &images->ft_addr; in do_bootvx_fdt()
270 struct lmb *lmb = &images->lmb; in do_bootvx_fdt()
304 boot_prep_vxworks(images); in do_bootvx_fdt()
310 (ulong)images->ep, (ulong)*of_flat_tree); in do_bootvx_fdt()
312 printf("## Starting vxWorks at 0x%08lx\n", (ulong)images->ep); in do_bootvx_fdt()
315 boot_jump_vxworks(images); in do_bootvx_fdt()
321 bootm_headers_t *images) in do_bootm_vxworks() argument
327 if (!images->legacy_hdr_valid) { in do_bootm_vxworks()
333 do_bootvx_fdt(images); in do_bootm_vxworks()
341 bootm_headers_t *images) in do_bootm_qnxelf() argument
351 if (!images->legacy_hdr_valid) { in do_bootm_qnxelf()
357 sprintf(str, "%lx", images->ep); /* write entry-point into string */ in do_bootm_qnxelf()
362 * QNX images require the data cache is disabled. in do_bootm_qnxelf()
379 bootm_headers_t *images) in do_bootm_integrity() argument
387 if (!images->legacy_hdr_valid) { in do_bootm_integrity()
393 entry_point = (void (*)(void))images->ep; in do_bootm_integrity()
412 bootm_headers_t *images) in do_bootm_openrtos() argument
419 entry_point = (void (*)(void))images->ep; in do_bootm_openrtos()
438 bootm_headers_t *images) in do_bootm_tee() argument
443 if (images->os.os != IH_OS_TEE) { in do_bootm_tee()
448 ret = optee_verify_bootm_image(images->os.image_start, in do_bootm_tee()
449 images->os.load, in do_bootm_tee()
450 images->os.image_len); in do_bootm_tee()
460 return do_bootm_linux(flag, argc, argv, images); in do_bootm_tee()
509 bootm_headers_t *images, boot_os_fn *boot_fn) in boot_selected_os() argument
512 boot_fn(state, argc, argv, images); in boot_selected_os()
515 if (images->os.type == IH_TYPE_STANDALONE || in boot_selected_os()