Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/test/
H A Dcompression.c414 const ulong image_start = 0; in run_bootm_test() local
419 compress_buff = map_sysmem(image_start, 0); in run_bootm_test()
423 err = bootm_decomp_image(comp_type, load_addr, image_start, in run_bootm_test()
429 err = bootm_decomp_image(comp_type, load_addr, image_start, in run_bootm_test()
441 err = bootm_decomp_image(comp_type, load_addr, image_start, in run_bootm_test()
/rk3399_rockchip-uboot/common/
H A Dbootm.c115 &images, &images.os.image_start, &images.os.image_len); in bootm_find_os()
223 images.os.load = images.os.image_start; in bootm_find_os()
409 int bootm_decomp_image(int comp, ulong load, ulong image_start, int type, in bootm_decomp_image() argument
416 print_decomp_msg(comp, type, load == image_start, in bootm_decomp_image()
426 if (load == image_start) in bootm_decomp_image()
508 ulong image_start = os.image_start; in bootm_load_os() local
515 image_buf = map_sysmem(os.image_start, image_len); in bootm_load_os()
516 err = bootm_decomp_image(os.comp, load, os.image_start, os.type, in bootm_load_os()
528 no_overlap = (os.comp == IH_COMP_NONE && load == image_start); in bootm_load_os()
H A Dimage-fdt.c384 ulong image_start, image_data, image_end; in boot_get_fdt() local
472 image_start = (ulong)fdt_hdr; in boot_get_fdt()
479 if (load == image_start || in boot_get_fdt()
485 if ((load < image_end) && (load_end > image_start)) { in boot_get_fdt()
H A Dimage-fit.c2419 ulong image_start, image_end; in fit_image_load_index() local
2427 image_start = addr; in fit_image_load_index()
2432 load < image_end && load_end > image_start) { in fit_image_load_index()
2500 ulong image_start, image_end; in boot_get_fdt_fit() local
2547 image_start = addr; in boot_get_fdt_fit()
2550 if (load >= image_start && load < image_end) { in boot_get_fdt_fit()
/rk3399_rockchip-uboot/include/
H A Dbootm.h74 int bootm_decomp_image(int comp, ulong load, ulong image_start, int type,
H A Dimage.h328 ulong image_start, image_len; /* start of image within blob, len of image */ member