Searched refs:image_start (Results 1 – 7 of 7) sorted by relevance
/u-boot/common/ |
A D | bootm.c | 99 &images, &images.os.image_start, &images.os.image_len); in bootm_find_os() 212 ret = booti_setup(images.os.image_start, &image_addr, in bootm_find_os() 221 images.os.load = images.os.image_start; in bootm_find_os() 222 images.ep += images.os.image_start; in bootm_find_os() 383 ulong image_start = os.image_start; in bootm_load_os() local 391 image_buf = map_sysmem(os.image_start, image_len); in bootm_load_os() 392 err = image_decomp(os.comp, load, os.image_start, os.type, in bootm_load_os() 408 no_overlap = (os.comp == IH_COMP_NONE && load == image_start); in bootm_load_os()
|
A D | image-fdt.c | 275 ulong image_start, image_data, image_end; in boot_get_fdt() local 367 image_start = (ulong)fdt_hdr; in boot_get_fdt() 374 if (load == image_start || in boot_get_fdt() 380 if ((load < image_end) && (load_end > image_start)) { in boot_get_fdt()
|
A D | image-fit.c | 2156 ulong image_start, image_end; in fit_image_load() local 2162 image_start = addr; in fit_image_load() 2167 load < image_end && load_end > image_start) { in fit_image_load() 2261 ulong image_start, image_end; in boot_get_fdt_fit() local 2308 image_start = addr; in boot_get_fdt_fit() 2311 if (load >= image_start && load < image_end) { in boot_get_fdt_fit()
|
A D | image.c | 442 int image_decomp(int comp, ulong load, ulong image_start, int type, in image_decomp() argument 449 print_decomp_msg(comp, type, load == image_start); in image_decomp() 458 if (load == image_start) in image_decomp()
|
A D | bootm_os.c | 492 ret = optee_verify_bootm_image(images->os.image_start, in do_bootm_tee()
|
/u-boot/test/ |
A D | compression.c | 469 const ulong image_start = 0; in run_bootm_test() local 474 compress_buff = map_sysmem(image_start, 0); in run_bootm_test() 478 err = image_decomp(comp_type, load_addr, image_start, in run_bootm_test() 483 err = image_decomp(comp_type, load_addr, image_start, in run_bootm_test() 494 err = image_decomp(comp_type, load_addr, image_start, in run_bootm_test()
|
/u-boot/include/ |
A D | image.h | 366 ulong image_start, image_len; /* start of image within blob, len of image */ member 938 int image_decomp(int comp, ulong load, ulong image_start, int type,
|
Completed in 27 milliseconds