Lines Matching full:images

77 static void linux_cmdline_legacy(bootm_headers_t *images)  in linux_cmdline_legacy()  argument
117 static void linux_cmdline_append(bootm_headers_t *images) in linux_cmdline_append() argument
128 rd_start = images->initrd_start; in linux_cmdline_append()
129 rd_size = images->initrd_end - images->initrd_start; in linux_cmdline_append()
170 static void linux_env_legacy(bootm_headers_t *images) in linux_env_legacy() argument
186 rd_start = UNCACHED_SDRAM(images->initrd_start); in linux_env_legacy()
187 rd_size = images->initrd_end - images->initrd_start; in linux_env_legacy()
219 static int boot_reloc_ramdisk(bootm_headers_t *images) in boot_reloc_ramdisk() argument
221 ulong rd_len = images->rd_end - images->rd_start; in boot_reloc_ramdisk()
227 if (images->state & BOOTM_STATE_RAMDISK) { in boot_reloc_ramdisk()
232 return boot_ramdisk_high(&images->lmb, images->rd_start, in boot_reloc_ramdisk()
233 rd_len, &images->initrd_start, &images->initrd_end); in boot_reloc_ramdisk()
236 static int boot_reloc_fdt(bootm_headers_t *images) in boot_reloc_fdt() argument
242 if (images->state & BOOTM_STATE_FDT) { in boot_reloc_fdt()
248 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr); in boot_reloc_fdt()
249 return boot_relocate_fdt(&images->lmb, &images->ft_addr, in boot_reloc_fdt()
250 &images->ft_len); in boot_reloc_fdt()
266 static int boot_setup_fdt(bootm_headers_t *images) in boot_setup_fdt() argument
268 return image_setup_libfdt(images, images->ft_addr, images->ft_len, in boot_setup_fdt()
269 &images->lmb); in boot_setup_fdt()
272 static void boot_prep_linux(bootm_headers_t *images) in boot_prep_linux() argument
274 boot_reloc_ramdisk(images); in boot_prep_linux()
276 if (CONFIG_IS_ENABLED(MIPS_BOOT_FDT) && images->ft_len) { in boot_prep_linux()
277 boot_reloc_fdt(images); in boot_prep_linux()
278 boot_setup_fdt(images); in boot_prep_linux()
281 linux_cmdline_legacy(images); in boot_prep_linux()
284 linux_cmdline_append(images); in boot_prep_linux()
290 linux_env_legacy(images); in boot_prep_linux()
294 static void boot_jump_linux(bootm_headers_t *images) in boot_jump_linux() argument
297 kernel_entry_t kernel = (kernel_entry_t) images->ep; in boot_jump_linux()
314 if (images->ft_len) in boot_jump_linux()
315 kernel(-2, (ulong)images->ft_addr, 0, 0); in boot_jump_linux()
322 bootm_headers_t *images) in do_bootm_linux() argument
337 boot_prep_linux(images); in do_bootm_linux()
342 boot_jump_linux(images); in do_bootm_linux()