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()
64 if (!image_check_type(fdt_hdr, IH_TYPE_FLATDT)) { in image_get_fdt()
69 if (image_get_comp(fdt_hdr) != IH_COMP_NONE) { in image_get_fdt()
73 if (fdt_check_header((void *)image_get_data(fdt_hdr)) != 0) { in image_get_fdt()
77 return fdt_hdr; in image_get_fdt()
361 const image_header_t *fdt_hdr; in boot_get_fdt() local
443 fdt_hdr = image_get_fdt(fdt_addr); in boot_get_fdt()
444 if (!fdt_hdr) in boot_get_fdt()
451 image_start = (ulong)fdt_hdr; in boot_get_fdt()
452 image_data = (ulong)image_get_data(fdt_hdr); in boot_get_fdt()
453 image_end = image_get_image_end(fdt_hdr); in boot_get_fdt()
455 load = image_get_load(fdt_hdr); in boot_get_fdt()
456 load_end = load + image_get_data_size(fdt_hdr); in boot_get_fdt()
474 image_get_data_size(fdt_hdr)); in boot_get_fdt()