Lines Matching full:phandle
71 /* Here, only fixup cru phandle, pmucru is not included */
80 int phandle, ncells; in phandles_fixup_cru() local
86 phandle = -ENODATA; in phandles_fixup_cru()
89 /* fdt points to kernel dtb, getting cru phandle and "#clock-cells" */ in phandles_fixup_cru()
100 phandle = fdt_get_phandle(fdt, offset); in phandles_fixup_cru()
107 if (phandle == -ENODATA || ncells == -ENODATA) in phandles_fixup_cru()
110 debug("%s: target cru: clock-cells:%d, phandle:0x%x\n", in phandles_fixup_cru()
111 __func__, ncells, fdt32_to_cpu(phandle)); in phandles_fixup_cru()
113 /* Try to fixup all cru phandle from U-Boot dtb nodes */ in phandles_fixup_cru()
136 /* Read "props[]" which contains cru phandle */ in phandles_fixup_cru()
144 /* Fixup with kernel cru phandle */ in phandles_fixup_cru()
147 * Check: update pmucru phandle with cru in phandles_fixup_cru()
148 * phandle by mistake. in phandles_fixup_cru()
154 debug("WARN: %s: first cru phandle=%d, this=%d\n", in phandles_fixup_cru()
160 clocks[j] = phandle; in phandles_fixup_cru()
369 * There is a phandle miss match between U-Boot and kernel dtb node, in init_kernel_dtb()