Lines Matching full:images

42 static void boot_jump_linux(bootm_headers_t *images)  in boot_jump_linux()  argument
47 char *of_flat_tree = images->ft_addr; in boot_jump_linux()
51 ulong, ulong, ulong))images->ep; in boot_jump_linux()
98 ulong cmd_start = images->cmdline_start; in boot_jump_linux()
99 ulong cmd_end = images->cmdline_end; in boot_jump_linux()
100 ulong initrd_start = images->initrd_start; in boot_jump_linux()
101 ulong initrd_end = images->initrd_end; in boot_jump_linux()
102 bd_t *kbd = images->kbd; in boot_jump_linux()
161 static void boot_prep_linux(bootm_headers_t *images) in boot_prep_linux() argument
169 flush_cache((unsigned long)images->ft_addr, images->ft_len); in boot_prep_linux()
173 static int boot_cmdline_linux(bootm_headers_t *images) in boot_cmdline_linux() argument
175 ulong of_size = images->ft_len; in boot_cmdline_linux()
176 struct lmb *lmb = &images->lmb; in boot_cmdline_linux()
177 ulong *cmd_start = &images->cmdline_start; in boot_cmdline_linux()
178 ulong *cmd_end = &images->cmdline_end; in boot_cmdline_linux()
194 static int boot_bd_t_linux(bootm_headers_t *images) in boot_bd_t_linux() argument
196 ulong of_size = images->ft_len; in boot_bd_t_linux()
197 struct lmb *lmb = &images->lmb; in boot_bd_t_linux()
198 bd_t **kbd = &images->kbd; in boot_bd_t_linux()
215 static int boot_body_linux(bootm_headers_t *images) in boot_body_linux() argument
220 ret = boot_bd_t_linux(images); in boot_body_linux()
224 ret = image_setup_linux(images); in boot_body_linux()
232 int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images) in do_bootm_linux() argument
237 boot_cmdline_linux(images); in do_bootm_linux()
242 boot_bd_t_linux(images); in do_bootm_linux()
247 boot_prep_linux(images); in do_bootm_linux()
251 boot_prep_linux(images); in do_bootm_linux()
252 ret = boot_body_linux(images); in do_bootm_linux()
255 boot_jump_linux(images); in do_bootm_linux()
287 void boot_prep_vxworks(bootm_headers_t *images) in boot_prep_vxworks() argument
293 if (!images->ft_addr) in boot_prep_vxworks()
299 off = fdt_path_offset(images->ft_addr, "/memory"); in boot_prep_vxworks()
301 fdt_fixup_memory(images->ft_addr, base, size); in boot_prep_vxworks()
305 ft_fixup_cpu(images->ft_addr, base + size); in boot_prep_vxworks()
306 ft_fixup_num_cores(images->ft_addr); in boot_prep_vxworks()
308 off = fdt_add_mem_rsv(images->ft_addr, in boot_prep_vxworks()
312 ft_fixup_num_cores(images->ft_addr); in boot_prep_vxworks()
314 flush_cache((unsigned long)images->ft_addr, images->ft_len); in boot_prep_vxworks()
319 void boot_jump_vxworks(bootm_headers_t *images) in boot_jump_vxworks() argument
336 ulong, ulong, ulong))images->ep)(images->ft_addr, in boot_jump_vxworks()