Lines Matching refs:images
55 __weak int board_prep_linux(bootm_headers_t *images) { return 0; } in board_prep_linux() argument
58 static int boot_prep_linux(bootm_headers_t *images) in boot_prep_linux() argument
62 ret = image_setup_linux(images); in boot_prep_linux()
66 return board_prep_linux(images); in boot_prep_linux()
80 static void boot_jump_linux(bootm_headers_t *images, int flag) in boot_jump_linux() argument
86 kernel_entry = images->ep; in boot_jump_linux()
96 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) { in boot_jump_linux()
98 r2 = (unsigned int)images->ft_addr; in boot_jump_linux()
110 int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images) in do_bootm_linux() argument
117 return boot_prep_linux(images); in do_bootm_linux()
120 boot_jump_linux(images, flag); in do_bootm_linux()