Lines Matching refs:images
20 bootm_headers_t *images) in do_bootm_standalone() argument
28 env_set_hex("filesize", images->os.image_len); in do_bootm_standalone()
31 appl = (int (*)(int, char * const []))images->ep; in do_bootm_standalone()
56 bootm_headers_t *images) in do_bootm_netbsd() argument
67 if (!images->legacy_hdr_valid) { in do_bootm_netbsd()
72 hdr = images->legacy_hdr_os; in do_bootm_netbsd()
86 if (image_check_type(&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) { in do_bootm_netbsd()
106 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep; in do_bootm_netbsd()
128 bootm_headers_t *images) in do_bootm_lynxkdi() argument
130 image_header_t *hdr = &images->legacy_hdr_os_copy; in do_bootm_lynxkdi()
136 if (!images->legacy_hdr_valid) { in do_bootm_lynxkdi()
150 bootm_headers_t *images) in do_bootm_rtems() argument
158 if (!images->legacy_hdr_valid) { in do_bootm_rtems()
164 entry_point = (void (*)(bd_t *))images->ep; in do_bootm_rtems()
183 bootm_headers_t *images) in do_bootm_ose() argument
191 if (!images->legacy_hdr_valid) { in do_bootm_ose()
197 entry_point = (void (*)(void))images->ep; in do_bootm_ose()
216 bootm_headers_t *images) in do_bootm_plan9() argument
225 if (!images->legacy_hdr_valid) { in do_bootm_plan9()
245 entry_point = (void (*)(void))images->ep; in do_bootm_plan9()
265 static void do_bootvx_fdt(bootm_headers_t *images) in do_bootvx_fdt() argument
270 ulong of_size = images->ft_len; in do_bootvx_fdt()
271 char **of_flat_tree = &images->ft_addr; in do_bootvx_fdt()
272 struct lmb *lmb = &images->lmb; in do_bootvx_fdt()
306 boot_prep_vxworks(images); in do_bootvx_fdt()
312 (ulong)images->ep, (ulong)*of_flat_tree); in do_bootvx_fdt()
314 printf("## Starting vxWorks at 0x%08lx\n", (ulong)images->ep); in do_bootvx_fdt()
317 boot_jump_vxworks(images); in do_bootvx_fdt()
323 bootm_headers_t *images) in do_bootm_vxworks_legacy() argument
329 if (!images->legacy_hdr_valid) { in do_bootm_vxworks_legacy()
335 do_bootvx_fdt(images); in do_bootm_vxworks_legacy()
341 bootm_headers_t *images) in do_bootm_vxworks() argument
367 return do_bootm_linux(flag, argc, argv, images); in do_bootm_vxworks()
371 return do_bootm_vxworks_legacy(flag, argc, argv, images); in do_bootm_vxworks()
378 bootm_headers_t *images) in do_bootm_qnxelf() argument
388 if (!images->legacy_hdr_valid) { in do_bootm_qnxelf()
394 sprintf(str, "%lx", images->ep); /* write entry-point into string */ in do_bootm_qnxelf()
416 bootm_headers_t *images) in do_bootm_integrity() argument
424 if (!images->legacy_hdr_valid) { in do_bootm_integrity()
430 entry_point = (void (*)(void))images->ep; in do_bootm_integrity()
449 bootm_headers_t *images) in do_bootm_openrtos() argument
456 entry_point = (void (*)(void))images->ep; in do_bootm_openrtos()
475 bootm_headers_t *images) in do_bootm_tee() argument
480 if (images->os.os != IH_OS_TEE) { in do_bootm_tee()
485 ret = optee_verify_bootm_image(images->os.image_start, in do_bootm_tee()
486 images->os.load, in do_bootm_tee()
487 images->os.image_len); in do_bootm_tee()
497 return do_bootm_linux(flag, argc, argv, images); in do_bootm_tee()
552 bootm_headers_t *images, boot_os_fn *boot_fn) in boot_selected_os() argument
556 boot_fn(state, argc, argv, images); in boot_selected_os()
559 if (images->os.type == IH_TYPE_STANDALONE || in boot_selected_os()