Searched refs:noff (Results 1 – 3 of 3) sorted by relevance
| /u-boot/arch/arm/cpu/armv8/fsl-layerscape/ |
| A D | icid.c | 116 int noff, len, icid; in fdt_fixup_fman_port_icid_by_compat() local 119 noff = fdt_node_offset_by_compatible(blob, -1, compat); in fdt_fixup_fman_port_icid_by_compat() 120 while (noff > 0) { in fdt_fixup_fman_port_icid_by_compat() 121 prop = fdt_getprop(blob, noff, "cell-index", &len); in fdt_fixup_fman_port_icid_by_compat() 141 noff = fdt_node_offset_by_compatible(blob, noff, compat); in fdt_fixup_fman_port_icid_by_compat() 161 int noff, smmu_ph; in fdt_get_smmu_phandle() local 164 if (noff < 0) { in fdt_get_smmu_phandle() 166 fdt_strerror(noff)); in fdt_get_smmu_phandle() 167 return noff; in fdt_get_smmu_phandle() 170 smmu_ph = fdt_get_phandle(blob, noff); in fdt_get_smmu_phandle() [all …]
|
| /u-boot/common/ |
| A D | fdt_support.c | 943 int noff; in fdt_fixup_mtdparts() local 948 noff = -1; in fdt_fixup_mtdparts() 950 while ((noff = fdt_node_offset_by_compatible(blob, noff, in fdt_fixup_mtdparts() 954 prop = fdt_getprop(blob, noff, "status", NULL); in fdt_fixup_mtdparts() 959 fdt_get_name(blob, noff, 0), in fdt_fixup_mtdparts() 970 if (fdt_node_set_part_info(blob, noff, dev)) in fdt_fixup_mtdparts() 1584 int noff; in fdt_add_edid() local 1587 noff = fdt_node_offset_by_compatible(blob, -1, compat); in fdt_add_edid() 1588 if (noff != -FDT_ERR_NOTFOUND) { in fdt_add_edid() 1589 debug("%s: %s\n", fdt_get_name(blob, noff, 0), compat); in fdt_add_edid() [all …]
|
| /u-boot/drivers/net/fsl-mc/ |
| A D | mc.c | 377 int nodeoffset = fdt_path_offset(blob, "/board_info/ports"), noff; in mc_fixup_dpc_mac_addr() local 385 noff = fdt_subnode_offset(blob, nodeoffset, (const char *)mac_name); in mc_fixup_dpc_mac_addr() 386 if (noff < 0) { in mc_fixup_dpc_mac_addr() 394 noff = fdt_add_subnode(blob, nodeoffset, mac_name); in mc_fixup_dpc_mac_addr() 395 if (noff < 0) { in mc_fixup_dpc_mac_addr() 402 err = fdt_appendprop_string(blob, noff, in mc_fixup_dpc_mac_addr() 411 return mc_fixup_mac_addr(blob, noff, "port_mac_address", eth_dev, in mc_fixup_dpc_mac_addr()
|
Completed in 14 milliseconds