Lines Matching refs:fdt_hdr
45 const image_header_t *fdt_hdr = map_sysmem(fdt_addr, 0); in image_get_fdt() local
47 image_print_contents(fdt_hdr); in image_get_fdt()
50 if (!image_check_hcrc(fdt_hdr)) { in image_get_fdt()
55 if (!image_check_dcrc(fdt_hdr)) { in image_get_fdt()
61 if (!image_check_type(fdt_hdr, IH_TYPE_FLATDT)) { in image_get_fdt()
65 if (image_get_comp(fdt_hdr) != IH_COMP_NONE) { in image_get_fdt()
69 if (fdt_check_header((void *)image_get_data(fdt_hdr)) != 0) { in image_get_fdt()
73 return fdt_hdr; in image_get_fdt()
273 const image_header_t *fdt_hdr; in boot_get_fdt() local
359 fdt_hdr = image_get_fdt(fdt_addr); in boot_get_fdt()
360 if (!fdt_hdr) in boot_get_fdt()
367 image_start = (ulong)fdt_hdr; in boot_get_fdt()
368 image_data = (ulong)image_get_data(fdt_hdr); in boot_get_fdt()
369 image_end = image_get_image_end(fdt_hdr); in boot_get_fdt()
371 load = image_get_load(fdt_hdr); in boot_get_fdt()
372 load_end = load + image_get_data_size(fdt_hdr); in boot_get_fdt()
390 image_get_data_size(fdt_hdr)); in boot_get_fdt()