Lines Matching defs:blob
102 static int spl_fit_images_find_uboot(void *blob)
107 if (!blob)
110 parent = fdt_path_offset(blob, "/fit-images");
114 for (node = fdt_next_node(blob, parent, &ndepth);
116 node = fdt_next_node(blob, node, &ndepth)) {
120 data = fdt_getprop(blob, node, FIT_OS_PROP, NULL);
131 uintptr_t spl_fit_images_get_entry(void *blob, int node)
135 val = fdt_getprop_u32(blob, node, "entry-point");
137 val = fdt_getprop_u32(blob, node, "load-addr");
146 void *blob = spl_image->fdt_addr;
147 uintptr_t platform_param = (uintptr_t)blob;
157 node = spl_fit_images_find_uboot(blob);
159 bl33_entry = spl_fit_images_get_entry(blob, node);