Lines Matching full:images
35 static int booti_setup(bootm_headers_t *images) in booti_setup() argument
41 ih = (struct Image_header *)map_sysmem(images->ep, 0); in booti_setup()
65 * images->ep. Otherwise, relocate the image to the base of RAM in booti_setup()
69 dst = images->ep - text_offset; in booti_setup()
77 if (images->ep != dst) { in booti_setup()
80 debug("Moving Image from 0x%lx to 0x%llx\n", images->ep, dst); in booti_setup()
82 src = (void *)images->ep; in booti_setup()
83 images->ep = dst; in booti_setup()
94 char * const argv[], bootm_headers_t *images) in booti_start() argument
100 images, 1); in booti_start()
104 images->ep = load_addr; in booti_start()
108 images->ep = simple_strtoul(argv[0], NULL, 16); in booti_start()
110 images->ep); in booti_start()
113 ret = booti_setup(images); in booti_start()
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()
140 if (booti_start(cmdtp, flag, argc, argv, &images)) in do_booti()
149 images.os.os = IH_OS_LINUX; in do_booti()
150 images.os.arch = IH_ARCH_ARM64; in do_booti()
157 &images, 1); in do_booti()