Lines Matching refs:node
214 int parent, node, ndepth = 0; in spl_fit_images_find() local
224 for (node = fdt_next_node(blob, parent, &ndepth); in spl_fit_images_find()
225 (node >= 0) && (ndepth > 0); in spl_fit_images_find()
226 node = fdt_next_node(blob, node, &ndepth)) { in spl_fit_images_find()
230 data = fdt_getprop(blob, node, FIT_OS_PROP, NULL); in spl_fit_images_find()
235 return node; in spl_fit_images_find()
241 ulong spl_fit_images_get_entry(void *blob, int node) in spl_fit_images_get_entry() argument
246 ret = fit_image_get_entry(blob, node, &val); in spl_fit_images_get_entry()
248 ret = fit_image_get_load(blob, node, &val); in spl_fit_images_get_entry()
260 int node; in spl_invoke_atf() local
267 node = spl_fit_images_find(blob, IH_OS_TEE); in spl_invoke_atf()
268 if (node >= 0) in spl_invoke_atf()
269 bl32_entry = spl_fit_images_get_entry(blob, node); in spl_invoke_atf()
278 node = spl_fit_images_find(blob, IH_OS_U_BOOT); in spl_invoke_atf()
279 if (node >= 0) in spl_invoke_atf()
280 bl33_entry = spl_fit_images_get_entry(blob, node); in spl_invoke_atf()