HomeSort by relevance Sort by last modified time
    Searched refs:of_flat_tree (Results 1 - 7 of 7) sorted by null

  /external/u-boot/arch/nios2/lib/
bootm.c 17 char *of_flat_tree = NULL; local
21 of_flat_tree = images->ft_addr;
23 if (!of_flat_tree && argc > 1)
24 of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16);
25 if (of_flat_tree)
26 initrd_end = (ulong)of_flat_tree;
  /external/u-boot/arch/microblaze/lib/
bootm.c 36 char *of_flat_tree = NULL; local
40 of_flat_tree = images->ft_addr;
53 if (!of_flat_tree && argc > 1)
54 of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16);
57 if (images->rd_start && images->rd_end && of_flat_tree) {
58 ret = fdt_initrd(of_flat_tree, images->rd_start,
68 rd_data_start, (ulong) of_flat_tree);
80 thekernel(commandline, rd_data_start, (ulong)of_flat_tree);
  /external/u-boot/common/
image-fdt.c 100 * @of_flat_tree: pointer to a char* variable, will hold fdt start address
104 * relocates the of_flat_tree into that region, even if the fdt is already in
108 * of_flat_tree and of_size are set to final (after relocation) values
114 int boot_relocate_fdt(struct lmb *lmb, char **of_flat_tree, ulong *of_size)
116 void *fdt_blob = *of_flat_tree;
193 *of_flat_tree = of_start;
196 set_working_fdt_addr((ulong)*of_flat_tree);
209 * @of_flat_tree: pointer to a char* variable, will hold fdt start address
219 * of_flat_tree and of_size are set to fdt start address and length if
223 * of_flat_tree and of_size are set to 0 if no fdt exist
    [all...]
bootm_os.c 269 char **of_flat_tree = &images->ft_addr; local
272 if (*of_flat_tree) {
273 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
275 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
280 fdt_fixup_ethernet(*of_flat_tree);
282 ret = fdt_add_subnode(*of_flat_tree, 0, "chosen");
286 ret = fdt_find_and_setprop(*of_flat_tree,
310 (ulong)images->ep, (ulong)*of_flat_tree);
image.c 1487 char **of_flat_tree = &images->ft_addr; local
    [all...]
  /external/u-boot/arch/powerpc/lib/
bootm.c 47 char *of_flat_tree = images->ft_addr; local
69 if (of_flat_tree) { /* device tree; boot new style */
82 (*kernel) ((bd_t *)of_flat_tree, 0, 0, EPAPR_MAGIC,
  /external/u-boot/include/
image.h 695 char **of_flat_tree, ulong *of_size);
697 int boot_relocate_fdt(struct lmb *lmb, char **of_flat_tree, ulong *of_size);
    [all...]

Completed in 83 milliseconds