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

  /external/u-boot/arch/arm/lib/
psci-dt.c 20 int nodeoff; local
24 nodeoff = fdt_path_offset(fdt, "/cpus");
25 if (nodeoff < 0) {
27 return nodeoff;
31 for (tmp = fdt_first_subnode(fdt, nodeoff);
53 nodeoff = fdt_path_offset(fdt, "/psci");
54 if (nodeoff >= 0)
57 nodeoff = fdt_path_offset(fdt, "/");
58 if (nodeoff < 0)
59 return nodeoff;
    [all...]
  /external/u-boot/board/freescale/p1010rdb/
p1010rdb.c 372 int nodeoff = 0; local
374 while ((nodeoff = fdt_node_offset_by_compatible(blob, 0,
376 fdt_del_node(blob, nodeoff);
382 int nodeoff = 0; local
384 while ((nodeoff = fdt_node_offset_by_compatible(blob, 0,
386 fdt_del_node(blob, nodeoff);
392 int nodeoff = 0; local
394 while ((nodeoff = fdt_node_offset_by_compatible(blob, 0,
396 fdt_del_node(blob, nodeoff);
402 int nodeoff = 0 local
412 int nodeoff = 0; local
422 int nodeoff = 0; local
432 int nodeoff; local
    [all...]
  /external/u-boot/board/freescale/ls1046ardb/
eth.c 83 int offset, nodeoff; local
108 nodeoff = fdt_path_offset(blob, path);
113 fdt_status_disabled(blob, nodeoff);
116 fdt_status_disabled(blob, nodeoff);
  /external/u-boot/board/freescale/c29xpcie/
c29xpcie.c 120 int nodeoff = 0; local
122 while ((nodeoff = fdt_node_offset_by_compat_reg(blob, "fsl,sec-v6.0",
125 fdt_del_node(blob, nodeoff);
  /external/u-boot/arch/arm/mach-imx/mx8m/
soc.c 180 int nodeoff; local
192 nodeoff = fdt_path_offset(blob, nodes_path[i]);
193 if (nodeoff < 0)
198 rc = fdt_delprop(blob, nodeoff, "cpu-idle-states");
  /external/u-boot/board/freescale/mpc8569mds/
mpc8569mds.c 520 int nodeoff, off, err; local
526 nodeoff = -1;
527 while ((nodeoff = fdt_node_offset_by_compatible(blob, nodeoff,
529 err = fdt_setprop_string(blob, nodeoff, "tx-clock-name",
537 err = fdt_fixup_phy_connection(blob, nodeoff,
546 index = fdt_getprop(blob, nodeoff, "cell-index", 0);
552 ph = fdt_getprop(blob, nodeoff, "phy-handle", 0);
  /external/u-boot/board/freescale/t102xqds/
t102xqds.c 342 int nodeoff = 0; local
345 while ((nodeoff = fdt_node_offset_by_compatible(blob, 0,
347 fdt_del_node(blob, nodeoff);
351 while ((nodeoff = fdt_node_offset_by_compatible(blob, 0,
353 fdt_del_node(blob, nodeoff);
  /external/u-boot/board/freescale/ls1043ardb/
ls1043ardb.c 154 int nodeoff = 0; local
156 while ((nodeoff = fdt_node_offset_by_compatible(blob, 0,
158 fdt_del_node(blob, nodeoff);
  /external/u-boot/board/freescale/t102xrdb/
t102xrdb.c 217 int nodeoff = fdt_node_offset_by_compatible(blob, 0, "cfi-flash"); local
219 if (nodeoff >= 0)
220 fdt_status_okay(blob, nodeoff);
  /external/u-boot/arch/powerpc/cpu/mpc85xx/
fdt.c 531 int nodeoff; local
555 nodeoff = fdt_node_offset_by_compat_reg(blob, "fsl,elo3-dma",
557 if (nodeoff > 0)
558 fdt_status_disabled(blob, nodeoff);
847 int nodeoff = 0; local
849 while ((nodeoff = fdt_node_offset_by_compatible(blob, 0,
851 fdt_del_node(blob, nodeoff);
  /external/u-boot/board/BuR/common/
common.c 123 int nodeoff; local
164 nodeoff = fdt_path_offset(gd->fdt_blob, "/factory-settings");
165 if (nodeoff >= 0) {
166 nodep = fdt_getprop(gd->fdt_blob, nodeoff, "rotation", NULL);
  /external/u-boot/common/
fdt_support.c 89 int nodeoff = fdt_path_offset(fdt, node); local
91 if (nodeoff < 0)
92 return nodeoff;
94 if ((!create) && (fdt_get_property(fdt, nodeoff, prop, NULL) == NULL))
97 return fdt_setprop(fdt, nodeoff, prop, val, len);
491 int nodeoff; local
534 nodeoff = fdt_path_offset(fdt, path);
535 fdt_prop = fdt_get_property(fdt, nodeoff, "status",
    [all...]

Completed in 151 milliseconds