Searched refs:nodeoff (Results 1 - 15 of 15) sorted by relevance

/u-boot/arch/arm/lib/
H A Dpsci-dt.c21 int nodeoff; local
25 nodeoff = fdt_path_offset(fdt, "/cpus");
26 if (nodeoff < 0) {
28 return nodeoff;
32 for (tmp = fdt_first_subnode(fdt, nodeoff);
54 nodeoff = fdt_path_offset(fdt, "/psci");
55 if (nodeoff >= 0)
58 nodeoff = fdt_path_offset(fdt, "/");
59 if (nodeoff < 0)
60 return nodeoff;
[all...]
/u-boot/board/freescale/mx7ulp_evk/
H A Dmx7ulp_evk.c57 int rc, nodeoff; local
66 nodeoff = fdt_path_offset(blob, path);
67 if (nodeoff < 0)
71 if (fdt_get_property(blob, nodeoff, "vqmmc-supply",
73 rc = fdt_delprop(blob, nodeoff, "vqmmc-supply");
77 rc = fdt_setprop(blob, nodeoff,
/u-boot/drivers/pci/
H A Dpcie_layerscape_gen4_fixup.c63 int nodeoff; local
66 nodeoff = fdt_node_offset_by_compat_reg(blob, CONFIG_FSL_PCIE_COMPAT,
71 if (nodeoff < 0) {
77 prop = (u32 *)fdt_getprop(blob, nodeoff, "msi-parent", 0);
86 fdt_appendprop_u32(blob, nodeoff, "msi-map", devid);
87 fdt_appendprop_u32(blob, nodeoff, "msi-map", phandle);
88 fdt_appendprop_u32(blob, nodeoff, "msi-map", streamid);
89 fdt_appendprop_u32(blob, nodeoff, "msi-map", 1);
106 int nodeoff; local
110 nodeoff
[all...]
/u-boot/board/freescale/ls1046afrwy/
H A Deth.c71 int offset, nodeoff; local
96 nodeoff = fdt_path_offset(blob, path);
101 fdt_status_disabled(blob, nodeoff);
103 fdt_status_disabled(blob, nodeoff);
105 fdt_status_disabled(blob, nodeoff);
107 fdt_status_disabled(blob, nodeoff);
/u-boot/arch/arm/mach-imx/imx8m/
H A Dsoc.c783 int nodeoff; local
785 nodeoff = fdt_path_offset(blob, soc_path);
786 if (nodeoff < 0)
796 int nodeoff; local
800 nodeoff = fdt_path_offset(blob, nodes_path[i]);
801 if (nodeoff < 0)
807 rc = fdt_setprop(blob, nodeoff, "status", status, strlen(status) + 1);
895 int nodeoff; local
899 nodeoff = fdt_path_offset(blob, lcdif_path[i]);
900 if (nodeoff <
978 int nodeoff, cnt, i; local
1010 int nodeoff; local
1144 int nodeoff, cnt, i, ret, j; local
1180 int nodeoff, cnt, i, ret, j; local
1220 int nodeoff; local
1257 int nodeoff, i, rc; local
1403 int nodeoff; local
[all...]
/u-boot/board/freescale/ls1046ardb/
H A Deth.c85 int offset, nodeoff; local
110 nodeoff = fdt_path_offset(blob, path);
115 fdt_status_disabled(blob, nodeoff);
118 fdt_status_disabled(blob, nodeoff);
/u-boot/board/Marvell/octeontx2/
H A Dboard-fdt.c149 int nodeoff, node, ret, i; local
168 nodeoff = fdt_path_offset(blob, "/cavium,bdk");
169 if (nodeoff < 0) {
171 return nodeoff;
176 temp = fdt_getprop(blob, nodeoff,
182 ret = fdt_del_node(blob, nodeoff);
/u-boot/board/freescale/p1010rdb/
H A Dp1010rdb.c484 int nodeoff = 0; local
486 while ((nodeoff = fdt_node_offset_by_compatible(blob, 0,
488 fdt_del_node(blob, nodeoff);
494 int nodeoff = 0; local
496 while ((nodeoff = fdt_node_offset_by_compatible(blob, 0,
498 fdt_del_node(blob, nodeoff);
504 int nodeoff = 0; local
506 while ((nodeoff = fdt_node_offset_by_compatible(blob, 0,
508 fdt_del_node(blob, nodeoff);
514 int nodeoff local
524 int nodeoff = 0; local
534 int nodeoff = 0; local
544 int nodeoff; local
[all...]
/u-boot/lib/efi_loader/
H A Defi_dt_fixup.c59 int nodeoff = 0; local
66 nodeoff = fdt_path_offset(fdt, "/chosen");
67 if (nodeoff < 0)
70 err = fdt_delprop(fdt, nodeoff, "kaslr-seed");
/u-boot/arch/arm/mach-k3/
H A Dcommon_fdt.c101 int nodeoff; local
103 nodeoff = fdt_path_offset(blob, path);
104 if (nodeoff < 0)
107 ret = fdt_del_node(blob, nodeoff);
/u-boot/board/friendlyarm/nanopi2/
H A Dboard.c541 int nodeoff; local
549 nodeoff = fdt_find_or_add_subnode(blob, 0, "chosen");
550 if (nodeoff >= 0)
551 fdt_setprop_u32(blob, nodeoff, "linux,rootdev",
558 nodeoff = fdt_path_offset(blob, "/reserved-memory");
559 if (nodeoff < 0)
560 return nodeoff;
562 nodeoff = fdt_add_subnode(blob, nodeoff, "display_reserved");
563 if (nodeoff >
[all...]
/u-boot/board/freescale/ls1043ardb/
H A Dls1043ardb.c261 int nodeoff = 0; local
263 while ((nodeoff = fdt_node_offset_by_compatible(blob, 0,
265 fdt_del_node(blob, nodeoff);
/u-boot/arch/powerpc/cpu/mpc85xx/
H A Dfdt.c532 int nodeoff; local
556 nodeoff = fdt_node_offset_by_compat_reg(blob, "fsl,elo3-dma",
558 if (nodeoff > 0)
559 fdt_status_disabled(blob, nodeoff);
840 int nodeoff = 0; local
842 while ((nodeoff = fdt_node_offset_by_compatible(blob, 0,
844 fdt_del_node(blob, nodeoff);
/u-boot/board/freescale/t102xrdb/
H A Dt102xrdb.c225 int nodeoff = fdt_node_offset_by_compatible(blob, 0, "cfi-flash"); local
227 if (nodeoff >= 0)
228 fdt_status_okay(blob, nodeoff);
/u-boot/boot/
H A Dfdt_support.c99 int nodeoff = fdt_path_offset(fdt, node); local
101 if (nodeoff < 0)
102 return nodeoff;
104 if ((!create) && (fdt_get_property(fdt, nodeoff, prop, NULL) == NULL))
107 return fdt_setprop(fdt, nodeoff, prop, val, len);
569 int nodeoff; local
612 nodeoff = fdt_path_offset(fdt, path);
613 fdt_prop = fdt_get_property(fdt, nodeoff, "status",

Completed in 129 milliseconds