1 /* 2 * (C) Copyright 2019 Rockchip Electronics Co., Ltd 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #ifndef __ROCKCHIP_FIT_H_ 8 #define __ROCKCHIP_FIT_H_ 9 10 #define FIT_I(fmt, args...) printf("FIT: "fmt, ##args) 11 12 ulong fit_image_get_bootables_size(const void *fit); 13 void *fit_image_load_bootables(ulong *size); 14 15 int fit_image_pre_process(const void *fit); 16 int fit_image_fail_process(const void *fit); 17 int fit_image_read_dtb(void *fdt_addr); 18 ulong fit_image_init_resource(struct blk_desc *dev_desc); 19 20 #endif 21