Lines Matching full:images

43 static void boot_jump_linux(bootm_headers_t *images)  in boot_jump_linux()  argument
48 char *of_flat_tree = images->ft_addr; in boot_jump_linux()
52 ulong, ulong, ulong))images->ep; in boot_jump_linux()
99 ulong cmd_start = images->cmdline_start; in boot_jump_linux()
100 ulong cmd_end = images->cmdline_end; in boot_jump_linux()
101 ulong initrd_start = images->initrd_start; in boot_jump_linux()
102 ulong initrd_end = images->initrd_end; in boot_jump_linux()
103 bd_t *kbd = images->kbd; in boot_jump_linux()
162 static void boot_prep_linux(bootm_headers_t *images) in boot_prep_linux() argument
170 flush_cache((unsigned long)images->ft_addr, images->ft_len); in boot_prep_linux()
174 static int boot_cmdline_linux(bootm_headers_t *images) in boot_cmdline_linux() argument
176 ulong of_size = images->ft_len; in boot_cmdline_linux()
177 struct lmb *lmb = &images->lmb; in boot_cmdline_linux()
178 ulong *cmd_start = &images->cmdline_start; in boot_cmdline_linux()
179 ulong *cmd_end = &images->cmdline_end; in boot_cmdline_linux()
195 static int boot_bd_t_linux(bootm_headers_t *images) in boot_bd_t_linux() argument
197 ulong of_size = images->ft_len; in boot_bd_t_linux()
198 struct lmb *lmb = &images->lmb; in boot_bd_t_linux()
199 bd_t **kbd = &images->kbd; in boot_bd_t_linux()
216 static int boot_body_linux(bootm_headers_t *images) in boot_body_linux() argument
221 ret = boot_bd_t_linux(images); in boot_body_linux()
225 ret = image_setup_linux(images); in boot_body_linux()
233 int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images) in do_bootm_linux() argument
238 boot_cmdline_linux(images); in do_bootm_linux()
243 boot_bd_t_linux(images); in do_bootm_linux()
248 boot_prep_linux(images); in do_bootm_linux()
252 boot_prep_linux(images); in do_bootm_linux()
253 ret = boot_body_linux(images); in do_bootm_linux()
256 boot_jump_linux(images); in do_bootm_linux()
288 void boot_prep_vxworks(bootm_headers_t *images) in boot_prep_vxworks() argument
294 if (!images->ft_addr) in boot_prep_vxworks()
300 off = fdt_path_offset(images->ft_addr, "/memory"); in boot_prep_vxworks()
302 fdt_fixup_memory(images->ft_addr, base, size); in boot_prep_vxworks()
306 ft_fixup_cpu(images->ft_addr, base + size); in boot_prep_vxworks()
307 ft_fixup_num_cores(images->ft_addr); in boot_prep_vxworks()
309 off = fdt_add_mem_rsv(images->ft_addr, in boot_prep_vxworks()
313 ft_fixup_num_cores(images->ft_addr); in boot_prep_vxworks()
315 flush_cache((unsigned long)images->ft_addr, images->ft_len); in boot_prep_vxworks()
320 void boot_jump_vxworks(bootm_headers_t *images) in boot_jump_vxworks() argument
337 ulong, ulong, ulong))images->ep)(images->ft_addr, in boot_jump_vxworks()