Home
last modified time | relevance | path

Searched refs:image_start (Results 1 – 7 of 7) sorted by relevance

/openbmc/u-boot/common/
H A Dbootm.c94 &images, &images.os.image_start, &images.os.image_len); in bootm_find_os()
207 ret = booti_setup(images.os.image_start, &image_addr, in bootm_find_os()
216 images.os.load = images.os.image_start; in bootm_find_os()
217 images.ep += images.os.image_start; in bootm_find_os()
356 int bootm_decomp_image(int comp, ulong load, ulong image_start, int type, in bootm_decomp_image() argument
363 print_decomp_msg(comp, type, load == image_start); in bootm_decomp_image()
372 if (load == image_start) in bootm_decomp_image()
451 ulong image_start = os.image_start; in bootm_load_os() local
460 image_buf = map_sysmem(os.image_start, image_len); in bootm_load_os()
461 err = bootm_decomp_image(os.comp, load, os.image_start, os.type, in bootm_load_os()
[all …]
H A Dimage-fdt.c269 ulong image_start, image_data, image_end; in boot_get_fdt() local
361 image_start = (ulong)fdt_hdr; in boot_get_fdt()
368 if (load == image_start || in boot_get_fdt()
374 if ((load < image_end) && (load_end > image_start)) { in boot_get_fdt()
H A Dimage-fit.c1975 ulong image_start, image_end; in fit_image_load() local
1983 image_start = addr; in fit_image_load()
1988 load < image_end && load_end > image_start) { in fit_image_load()
2046 ulong image_start, image_end; in boot_get_fdt_fit() local
2093 image_start = addr; in boot_get_fdt_fit()
2096 if (load >= image_start && load < image_end) { in boot_get_fdt_fit()
H A Dbootm_os.c448 ret = optee_verify_bootm_image(images->os.image_start, in do_bootm_tee()
/openbmc/u-boot/test/
H A Dcompression.c465 const ulong image_start = 0; in run_bootm_test() local
470 compress_buff = map_sysmem(image_start, 0); in run_bootm_test()
474 err = bootm_decomp_image(comp_type, load_addr, image_start, in run_bootm_test()
479 err = bootm_decomp_image(comp_type, load_addr, image_start, in run_bootm_test()
490 err = bootm_decomp_image(comp_type, load_addr, image_start, in run_bootm_test()
/openbmc/u-boot/include/
H A Dbootm.h84 int bootm_decomp_image(int comp, ulong load, ulong image_start, int type,
H A Dimage.h354 ulong image_start, image_len; /* start of image within blob, len of image */ member