Home
last modified time | relevance | path

Searched refs:images_noffset (Results 1 – 6 of 6) sorted by relevance

/rk3399_rockchip-uboot/common/
H A Dimage-fit.c135 int fit_get_subimage_count(const void *fit, int images_noffset) in fit_get_subimage_count() argument
143 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_get_subimage_count()
171 int images_noffset; in fit_print_contents() local
201 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in fit_print_contents()
202 if (images_noffset < 0) { in fit_print_contents()
204 FIT_IMAGES_PATH, fdt_strerror(images_noffset)); in fit_print_contents()
210 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_print_contents()
571 int noffset, images_noffset; in fit_image_get_node() local
573 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in fit_image_get_node()
574 if (images_noffset < 0) { in fit_image_get_node()
[all …]
H A Dupdate.c235 int images_noffset, ndepth, noffset; in update_tftp() local
290 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in update_tftp()
293 noffset = fdt_next_node(fit, images_noffset, &ndepth); in update_tftp()
/rk3399_rockchip-uboot/common/spl/
H A Dspl_fit.c549 static int spl_fit_get_kernel_dtb(const void *fit, int images_noffset) in spl_fit_get_kernel_dtb() argument
555 node = spl_fit_get_image_node(fit, images_noffset, in spl_fit_get_kernel_dtb()
588 int images_noffset; in spl_load_kernel_fit() local
645 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in spl_load_kernel_fit()
646 if (images_noffset < 0) { in spl_load_kernel_fit()
648 __func__, images_noffset); in spl_load_kernel_fit()
649 return images_noffset; in spl_load_kernel_fit()
654 node = spl_fit_get_kernel_dtb(fit, images_noffset); in spl_load_kernel_fit()
656 node = spl_fit_get_image_node(fit, images_noffset, in spl_load_kernel_fit()
/rk3399_rockchip-uboot/tools/
H A Dimage-host.c702 int images_noffset, confs_noffset; in fit_add_verification_data() local
707 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in fit_add_verification_data()
708 if (images_noffset < 0) { in fit_add_verification_data()
710 FIT_IMAGES_PATH, fdt_strerror(images_noffset)); in fit_add_verification_data()
711 return images_noffset; in fit_add_verification_data()
715 for (noffset = fdt_first_subnode(fit, images_noffset); in fit_add_verification_data()
H A Dfit_image.c818 int images_noffset; in fit_extract_contents() local
834 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in fit_extract_contents()
835 if (images_noffset < 0) { in fit_extract_contents()
837 FIT_IMAGES_PATH, fdt_strerror(images_noffset)); in fit_extract_contents()
842 count = fit_get_subimage_count(fit, images_noffset); in fit_extract_contents()
850 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_extract_contents()
/rk3399_rockchip-uboot/include/
H A Dimage.h975 int fit_get_subimage_count(const void *fit, int images_noffset);