Lines Matching full:node
104 int parent, node, ndepth; in spl_fit_images_find_uboot() local
114 for (node = fdt_next_node(blob, parent, &ndepth); in spl_fit_images_find_uboot()
115 (node >= 0) && (ndepth > 0); in spl_fit_images_find_uboot()
116 node = fdt_next_node(blob, node, &ndepth)) { in spl_fit_images_find_uboot()
120 data = fdt_getprop(blob, node, FIT_OS_PROP, NULL); in spl_fit_images_find_uboot()
125 return node; in spl_fit_images_find_uboot()
131 uintptr_t spl_fit_images_get_entry(void *blob, int node) in spl_fit_images_get_entry() argument
135 val = fdt_getprop_u32(blob, node, "entry-point"); in spl_fit_images_get_entry()
137 val = fdt_getprop_u32(blob, node, "load-addr"); in spl_fit_images_get_entry()
148 int node; in spl_invoke_atf() local
157 node = spl_fit_images_find_uboot(blob); in spl_invoke_atf()
158 if (node >= 0) in spl_invoke_atf()
159 bl33_entry = spl_fit_images_get_entry(blob, node); in spl_invoke_atf()