Home
last modified time | relevance | path

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

/u-boot/arch/arm/mach-nexell/
A Dcmd_boot_linux.c43 unsigned long ft_addr; in boot_go_set_os() local
45 ft_addr = simple_strtol(argv[2], NULL, 16); in boot_go_set_os()
46 images->ft_addr = (char *)ft_addr; in boot_go_set_os()
53 gd->bd->bi_boot_params = ft_addr; in boot_go_set_os()
56 "...\n", ft_addr, gd->bd->bi_boot_params, in boot_go_set_os()
100 &images->ft_addr, &images->ft_len); in do_boot_linux()
105 set_working_fdt_addr((ulong)images->ft_addr); in do_boot_linux()
/u-boot/arch/powerpc/lib/
A Dbootm.c53 char *of_flat_tree = images->ft_addr; in boot_jump_linux()
175 flush_cache((unsigned long)images->ft_addr, images->ft_len); in boot_prep_linux()
299 if (!images->ft_addr) in boot_prep_vxworks()
305 off = fdt_path_offset(images->ft_addr, "/memory"); in boot_prep_vxworks()
307 fdt_fixup_memory(images->ft_addr, base, size); in boot_prep_vxworks()
311 ft_fixup_cpu(images->ft_addr, base + size); in boot_prep_vxworks()
312 ft_fixup_num_cores(images->ft_addr); in boot_prep_vxworks()
314 off = fdt_add_mem_rsv(images->ft_addr, in boot_prep_vxworks()
318 ft_fixup_num_cores(images->ft_addr); in boot_prep_vxworks()
320 flush_cache((unsigned long)images->ft_addr, images->ft_len); in boot_prep_vxworks()
[all …]
/u-boot/cmd/
A Dspl.c125 (void *)images.ft_addr); in spl_export()
126 env_set_addr("fdtargsaddr", images.ft_addr); in spl_export()
127 env_set_hex("fdtargslen", fdt_totalsize(images.ft_addr)); in spl_export()
129 if (fdt_totalsize(images.ft_addr) > in spl_export()
/u-boot/arch/arm/lib/
A Dbootm.c329 (u64)images.ft_addr, 0, in switch_to_el1()
333 armv8_switch_to_el1((u64)images.ft_addr, 0, 0, 0, in switch_to_el1()
366 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0, in boot_jump_linux()
372 (u64)images->ft_addr, 0, in boot_jump_linux()
376 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0, in boot_jump_linux()
408 r2 = (unsigned long)images->ft_addr; in boot_jump_linux()
459 if (images->ft_addr) { in boot_prep_vxworks()
460 off = fdt_path_offset(images->ft_addr, "/memory"); in boot_prep_vxworks()
462 if (arch_fixup_fdt(images->ft_addr)) in boot_prep_vxworks()
477 ((void (*)(void *))images->ep)(images->ft_addr); in boot_jump_vxworks()
/u-boot/arch/arm/mach-socfpga/
A Dboard.c129 env_set_hex("fdt_addr", (ulong)images->ft_addr); in board_prep_linux()
130 debug("images->ft_addr = 0x%08lx\n", (ulong)images->ft_addr); in board_prep_linux()
/u-boot/arch/riscv/lib/
A Dbootm.c102 (ulong)images->ft_addr, 0, 0); in boot_jump_linux()
106 kernel(gd->arch.boot_hart, images->ft_addr); in boot_jump_linux()
/u-boot/arch/mips/lib/
A Dbootm.c235 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr); in boot_reloc_fdt()
236 return boot_relocate_fdt(&images->lmb, &images->ft_addr, in boot_reloc_fdt()
257 return image_setup_libfdt(images, images->ft_addr, images->ft_len, in boot_setup_fdt()
305 kernel(-2, (ulong)images->ft_addr, 0, 0); in boot_jump_linux()
/u-boot/common/
A Dbootm.c277 &images.ft_addr, &images.ft_len); in bootm_find_images()
284 if (images.ft_addr && in bootm_find_images()
285 (((ulong)images.ft_addr >= start && in bootm_find_images()
286 (ulong)images.ft_addr <= start + size) || in bootm_find_images()
287 ((ulong)images.ft_addr + images.ft_len >= start && in bootm_find_images()
288 (ulong)images.ft_addr + images.ft_len <= start + size))) { in bootm_find_images()
295 set_working_fdt_addr(map_to_sysmem(images.ft_addr)); in bootm_find_images()
710 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr); in do_bootm_states()
711 ret = boot_relocate_fdt(&images->lmb, &images->ft_addr, in do_bootm_states()
A Dbootm_os.c278 char **of_flat_tree = &images->ft_addr; in do_bootvx_fdt()
534 ? images->ft_addr : EFI_FDT_USE_INTERNAL); in do_bootm_efi()
A Dimage.c1722 char **of_flat_tree = &images->ft_addr; in image_setup_linux()
/u-boot/arch/nios2/lib/
A Dbootm.c27 of_flat_tree = images->ft_addr; in do_bootm_linux()
/u-boot/arch/xtensa/lib/
A Dbootm.c167 if (images->ft_addr) in do_bootm_linux()
168 params = setup_fdt_tag(params, images->ft_addr); in do_bootm_linux()
/u-boot/arch/arc/lib/
A Dbootm.c98 r2 = (unsigned int)images->ft_addr; in boot_jump_linux()
/u-boot/arch/microblaze/lib/
A Dbootm.c69 ulong dt = (ulong)images->ft_addr; in boot_jump_linux()
/u-boot/arch/nds32/lib/
A Dbootm.c122 theKernel(0, machid, (unsigned long)images->ft_addr); in do_bootm_linux()
/u-boot/board/synopsys/hsdk/
A Dhsdk.c880 ofst = fdt_path_offset(images->ft_addr, "/"); in board_prep_linux()
886 ret = fdt_setprop_string(images->ft_addr, ofst, "possible-cpus", mask); in board_prep_linux()
/u-boot/include/
A Dimage.h412 char *ft_addr; /* flat dev tree address */ member

Completed in 30 milliseconds