Searched refs:noff (Results 1 - 5 of 5) sorted by relevance

/u-boot/arch/arm/cpu/armv8/fsl-layerscape/
H A Dicid.c117 int noff, len, icid; local
120 fdt_for_each_node_by_compatible(noff, blob, -1, compat) {
121 prop = fdt_getprop(blob, noff, "cell-index", &len);
139 fdt_set_iommu_prop(blob, noff, smmu_ph, (u32 *)&icid, 1);
159 int noff, smmu_ph; local
161 noff = fdt_node_offset_by_compatible(blob, -1, "arm,mmu-500");
162 if (noff < 0) {
164 fdt_strerror(noff));
165 return noff;
168 smmu_ph = fdt_get_phandle(blob, noff);
[all...]
/u-boot/board/freescale/lx2160a/
H A Dlx2160a.c663 int noff; local
683 noff = fdt_subnode_offset(blob, mux_node, (const char *)
685 if (noff < 0) {
687 noff = fdt_add_subnode(blob, mux_node, channel_node_name);
688 if (noff < 0) {
692 fdt_setprop_u32 (blob, noff, "#address-cells", 1);
693 fdt_setprop_u32 (blob, noff, "#size-cells", 0);
694 fdt_setprop_u32 (blob, noff, "reg", channel);
698 offset = fdt_add_subnode(blob, noff, thermal_node_name);
704 noff
[all...]
/u-boot/drivers/net/fsl-mc/
H A Dmc.c350 int nodeoffset = fdt_path_offset(blob, "/board_info/ports"), noff; local
358 noff = fdt_subnode_offset(blob, nodeoffset, (const char *)mac_name);
359 if (noff < 0) {
366 noff = fdt_add_subnode(blob, nodeoffset, mac_name);
367 if (noff < 0) {
374 err = fdt_appendprop_string(blob, noff,
383 return mc_fixup_mac_addr(blob, noff, "port_mac_address", eth_dev,
940 int noff, ret, i; local
976 noff = fdt_node_offset_by_compatible(blob, -1, "fsl,qoriq-mc");
977 if (noff <
[all...]
/u-boot/tools/
H A Dkwboot.c1510 ssize_t nin, noff; local
1516 noff = 0;
1556 if (i > *k + noff &&
1557 kwboot_write(out, buf + noff, i - *k - noff) < 0)
1566 noff = i + 1;
1584 if (nin > noff && kwboot_write(out, buf + noff, nin - noff) < 0)
/u-boot/boot/
H A Dfdt_support.c1018 int noff, parts; local
1024 fdt_for_each_node_by_compatible(noff, blob, -1,
1028 prop = fdt_getprop(blob, noff, "status", NULL);
1033 fdt_get_name(blob, noff, 0),
1044 parts = fdt_subnode_offset(blob, noff,
1047 parts = noff;

Completed in 159 milliseconds