Home
last modified time | relevance | path

Searched refs:FIT_ALIGN (Results 1 – 7 of 7) sorted by relevance

/rk3399_rockchip-uboot/arch/arm/mach-rockchip/
H A Dfit.c367 blk_off = (FIT_ALIGN(fdt_totalsize(fit)) + offset) / dev_desc->blksz; in fit_image_load_one()
408 off[0] = offset + FIT_ALIGN(size); in fit_image_get_bootables_size()
411 off[1] = offset + FIT_ALIGN(size); in fit_image_get_bootables_size()
414 off[2] = offset + FIT_ALIGN(size); in fit_image_get_bootables_size()
419 return FIT_ALIGN(fdt_totalsize(fit)) + max_off; in fit_image_get_bootables_size()
489 part.start + ((FIT_ALIGN(fdt_totalsize(fit)) + offset) / dev_desc->blksz)); in fit_image_init_resource()
/rk3399_rockchip-uboot/common/
H A Dboot_fit.c65 size = FIT_ALIGN(size); in locate_dtb_in_fit()
H A Dsplash_source.c361 fit_size = FIT_ALIGN(fit_size); in splash_load_fit()
H A Dimage-fit.c941 data_off += (ulong)fit + FIT_ALIGN(fdt_totalsize(fit)); in fit_image_get_data()
/rk3399_rockchip-uboot/tools/
H A Dfit_image.c524 buf_ptr += FIT_ALIGN(len); in fit_extract_data()
533 new_size = FIT_ALIGN(new_size); in fit_extract_data()
592 data_base = FIT_ALIGN(fit_size); in fit_import_data()
/rk3399_rockchip-uboot/common/spl/
H A Dspl_fit.c505 size = FIT_ALIGN(size); in spl_fit_load_blob()
506 *base_offset = FIT_ALIGN(size); in spl_fit_load_blob()
/rk3399_rockchip-uboot/include/
H A Dimage.h963 #define FIT_ALIGN(x) (((x)+IMAGE_ALIGN_SIZE-1)&~(IMAGE_ALIGN_SIZE-1)) macro