Home
last modified time | relevance | path

Searched refs:ft_addr (Results 1 – 17 of 17) sorted by relevance

/openbmc/u-boot/arch/powerpc/lib/
H A Dbootm.c47 char *of_flat_tree = images->ft_addr; in boot_jump_linux()
169 flush_cache((unsigned long)images->ft_addr, images->ft_len); in boot_prep_linux()
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()
[all …]
/openbmc/u-boot/arch/arm/lib/
H A Dbootm.c310 (u64)images.ft_addr, 0, in switch_to_el1()
314 armv8_switch_to_el1((u64)images.ft_addr, 0, 0, 0, in switch_to_el1()
347 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0, in boot_jump_linux()
353 (u64)images->ft_addr, 0, in boot_jump_linux()
357 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0, in boot_jump_linux()
389 r2 = (unsigned long)images->ft_addr; in boot_jump_linux()
440 if (images->ft_addr) { in boot_prep_vxworks()
441 off = fdt_path_offset(images->ft_addr, "/memory"); in boot_prep_vxworks()
443 if (arch_fixup_fdt(images->ft_addr)) in boot_prep_vxworks()
458 ((void (*)(void *))images->ep)(images->ft_addr); in boot_jump_vxworks()
/openbmc/linux/arch/powerpc/boot/
H A Dmain.c231 unsigned long ft_addr = 0; in start() local
262 ft_addr = dt_ops.finalize(); in start()
263 if (ft_addr) in start()
264 printf(" flat tree at 0x%lx\n\r", ft_addr); in start()
272 if (ft_addr) { in start()
274 platform_ops.kentry(ft_addr, vmlinux.addr); in start()
276 kentry(ft_addr, 0, NULL); in start()
H A Dps3.c107 unsigned long ft_addr; in platform_init() local
130 ft_addr = dt_ops.finalize(); in platform_init()
134 printf(" flat tree at 0x%lx\n\r", ft_addr); in platform_init()
136 ((kernel_entry_t)0)(ft_addr, 0, NULL); in platform_init()
/openbmc/u-boot/cmd/
H A Dspl.c120 (void *)images.ft_addr); in spl_export()
121 env_set_addr("fdtargsaddr", images.ft_addr); in spl_export()
122 env_set_hex("fdtargslen", fdt_totalsize(images.ft_addr)); in spl_export()
124 if (fdt_totalsize(images.ft_addr) > in spl_export()
/openbmc/u-boot/arch/mips/lib/
H A Dbootm.c247 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr); in boot_reloc_fdt()
248 return boot_relocate_fdt(&images->lmb, &images->ft_addr, in boot_reloc_fdt()
267 return image_setup_libfdt(images, images->ft_addr, images->ft_len, in boot_setup_fdt()
314 kernel(-2, (ulong)images->ft_addr, 0, 0); in boot_jump_linux()
/openbmc/u-boot/arch/xtensa/lib/
H A Dbootm.c164 if (images->ft_addr) in do_bootm_linux()
165 params = setup_fdt_tag(params, images->ft_addr); in do_bootm_linux()
/openbmc/u-boot/arch/nios2/lib/
H A Dbootm.c21 of_flat_tree = images->ft_addr; in do_bootm_linux()
/openbmc/u-boot/common/
H A Dbootm.c257 &images.ft_addr, &images.ft_len); in bootm_find_images()
263 set_working_fdt_addr(map_to_sysmem(images.ft_addr)); in bootm_find_images()
640 (u8 *)images->ft_addr, in bootm_measure()
742 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr); in do_bootm_states()
743 ret = boot_relocate_fdt(&images->lmb, &images->ft_addr, in do_bootm_states()
H A Dbootm_os.c269 char **of_flat_tree = &images->ft_addr; in do_bootvx_fdt()
H A Dimage.c1490 char **of_flat_tree = &images->ft_addr; in image_setup_linux()
/openbmc/u-boot/arch/microblaze/lib/
H A Dbootm.c40 of_flat_tree = images->ft_addr; in do_bootm_linux()
/openbmc/u-boot/arch/riscv/lib/
H A Dbootm.c96 kernel(gd->arch.boot_hart, images->ft_addr); in boot_jump_linux()
/openbmc/u-boot/arch/arc/lib/
H A Dbootm.c91 r2 = (unsigned int)images->ft_addr; in boot_jump_linux()
/openbmc/u-boot/arch/nds32/lib/
H A Dbootm.c116 theKernel(0, machid, (unsigned long)images->ft_addr); in do_bootm_linux()
/openbmc/u-boot/board/synopsys/hsdk/
H A Dhsdk.c694 ofst = fdt_path_offset(images->ft_addr, "/"); in board_prep_linux()
700 ret = fdt_setprop_string(images->ft_addr, ofst, "possible-cpus", mask); in board_prep_linux()
/openbmc/u-boot/include/
H A Dimage.h400 char *ft_addr; /* flat dev tree address */ member