Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/arch/arm/mach-rockchip/
H A Dfit.c310 blk_off = (FIT_ALIGN(fdt_totalsize(fit)) + offset) / dev_desc->blksz; in fit_image_load_one()
351 off[0] = offset + FIT_ALIGN(size); in fit_image_get_bootables_size()
354 off[1] = offset + FIT_ALIGN(size); in fit_image_get_bootables_size()
357 off[2] = offset + FIT_ALIGN(size); in fit_image_get_bootables_size()
362 return FIT_ALIGN(fdt_totalsize(fit)) + max_off; in fit_image_get_bootables_size()
432 part.start + ((FIT_ALIGN(fdt_totalsize(fit)) + offset) / dev_desc->blksz)); in fit_image_init_resource()
/OK3568_Linux_fs/u-boot/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.c920 data_off += (ulong)fit + FIT_ALIGN(fdt_totalsize(fit)); in fit_image_get_data()
/OK3568_Linux_fs/u-boot/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()
/OK3568_Linux_fs/u-boot/common/spl/
H A Dspl_fit.c404 size = FIT_ALIGN(size); in spl_fit_load_blob()
405 *base_offset = FIT_ALIGN(size); in spl_fit_load_blob()
/OK3568_Linux_fs/u-boot/include/
H A Dimage.h958 #define FIT_ALIGN(x) (((x)+IMAGE_ALIGN_SIZE-1)&~(IMAGE_ALIGN_SIZE-1)) macro