Lines Matching refs:ih
37 struct Image_header *ih; in booti_setup() local
41 ih = (struct Image_header *)map_sysmem(images->ep, 0); in booti_setup()
43 if (ih->magic != le32_to_cpu(LINUX_ARM64_IMAGE_MAGIC)) { in booti_setup()
53 if (ih->image_size == 0) { in booti_setup()
58 image_size = le64_to_cpu(ih->image_size); in booti_setup()
59 text_offset = le64_to_cpu(ih->text_offset); in booti_setup()
68 if (le64_to_cpu(ih->flags) & BIT(3)) in booti_setup()
75 unmap_sysmem(ih); in booti_setup()
97 struct Image_header *ih; in booti_start() local
117 ih = (struct Image_header *)map_sysmem(images->ep, 0); in booti_start()
119 lmb_reserve(&images->lmb, images->ep, le32_to_cpu(ih->image_size)); in booti_start()
121 unmap_sysmem(ih); in booti_start()