Searched refs:working_fdt (Results 1 - 10 of 10) sorted by relevance

/u-boot/include/linux/
H A Dlibfdt.h11 extern struct fdt_header *working_fdt; /* Pointer to the working fdt */
/u-boot/cmd/
H A Dfdt.c35 * The working_fdt points to our working flattened device tree.
37 struct fdt_header *working_fdt; variable in typeref:struct:fdt_header
44 working_fdt = buf;
126 fdt32_t *fdtp = (fdt32_t *)working_fdt;
185 blob = working_fdt;
232 * Move the working_fdt
245 working_fdt = map_sysmem(hextoul(argv[2], NULL), 0);
246 if (!fdt_valid(&working_fdt))
256 len = fdt_totalsize(working_fdt);
259 if (len < fdt_totalsize(working_fdt)) {
[all...]
H A Dkaslrseed.c41 if (!working_fdt) {
48 ret = fdt_check_header(working_fdt);
54 nodeoffset = fdt_find_or_add_subnode(working_fdt, 0, "chosen");
60 ret = fdt_setprop(working_fdt, nodeoffset, "kaslr-seed", buf, sizeof(buf));
H A Dextension_board.c25 if (!working_fdt) {
51 fdt_shrink_to_minimum(working_fdt, extrasize);
58 if (fdt_overlay_apply_verbose(working_fdt, blob))
/u-boot/test/boot/
H A Dvbe_fixup.c28 tree = oftree_from_fdt(working_fdt);
/u-boot/arch/mips/mach-octeon/
H A Docteon_fdt.c324 r = fdt_setprop_inplace(working_fdt, node, "local-mac-address", mac_addr, 6);
381 p = fdt_get_alias(working_fdt, name);
383 node = fdt_path_offset(working_fdt, p);
391 p = fdt_get_alias(working_fdt, name);
393 node = fdt_path_offset(working_fdt, p);
399 pip = fdt_node_offset_by_compatible(working_fdt, -1, "cavium,octeon-3860-pip");
404 interface = fdt_subnode_offset(working_fdt, pip, name);
409 ethernet = fdt_subnode_offset(working_fdt, interface, name);
417 fdt_for_each_node_by_compatible(node, working_fdt, -1, "cavium,octeon-7890-bgx-port")
439 fdt_for_each_node_by_compatible(node, working_fdt,
[all...]
/u-boot/boot/
H A Dpxe_utils.c326 struct fdt_header *working_fdt; local
335 working_fdt = map_sysmem(fdt_addr, 0);
336 err = fdt_check_header(working_fdt);
342 err = fdt_shrink_to_minimum(working_fdt, 512);
351 nodeoffset = fdt_find_or_add_subnode(working_fdt, 0, "chosen");
368 err = fdt_setprop(working_fdt, nodeoffset, "kaslr-seed", buf, sizeof(buf));
391 struct fdt_header *working_fdt; local
399 working_fdt = map_sysmem(fdt_addr, 0);
400 err = fdt_check_header(working_fdt);
446 fdt_shrink_to_minimum(working_fdt, 819
[all...]
/u-boot/common/
H A Dbootstage.c323 if (add_bootstages_devicetree(working_fdt))
/u-boot/drivers/net/fsl-mc/
H A Dmc.c1773 fdt_fixup_board_enet(working_fdt);
/u-boot/test/cmd/
H A Dfdt.c186 ut_asserteq(addr, map_to_sysmem(working_fdt));

Completed in 98 milliseconds