Lines Matching refs:fdt_hdr
41 const image_header_t *fdt_hdr = map_sysmem(fdt_addr, 0); in image_get_fdt() local
43 image_print_contents(fdt_hdr); in image_get_fdt()
46 if (!image_check_hcrc(fdt_hdr)) { in image_get_fdt()
51 if (!image_check_dcrc(fdt_hdr)) { in image_get_fdt()
57 if (!image_check_type(fdt_hdr, IH_TYPE_FLATDT)) { in image_get_fdt()
61 if (image_get_comp(fdt_hdr) != IH_COMP_NONE) { in image_get_fdt()
65 if (fdt_check_header((void *)image_get_data(fdt_hdr)) != 0) { in image_get_fdt()
69 return fdt_hdr; in image_get_fdt()
269 const image_header_t *fdt_hdr; in boot_get_fdt() local
354 fdt_hdr = image_get_fdt(fdt_addr); in boot_get_fdt()
355 if (!fdt_hdr) in boot_get_fdt()
362 image_start = (ulong)fdt_hdr; in boot_get_fdt()
363 image_data = (ulong)image_get_data(fdt_hdr); in boot_get_fdt()
364 image_end = image_get_image_end(fdt_hdr); in boot_get_fdt()
366 load = image_get_load(fdt_hdr); in boot_get_fdt()
367 load_end = load + image_get_data_size(fdt_hdr); in boot_get_fdt()
385 image_get_data_size(fdt_hdr)); in boot_get_fdt()