Lines Matching refs:load
130 images.os.load = image_get_load(os_hdr); in bootm_find_os()
169 &images.os.load)) { in bootm_find_os()
183 images.os.load = android_image_get_kload(os_hdr); in bootm_find_os()
184 images.ep = images.os.load; in bootm_find_os()
223 images.os.load = images.os.image_start; in bootm_find_os()
224 images.ep += images.os.load; in bootm_find_os()
409 int bootm_decomp_image(int comp, ulong load, ulong image_start, int type, in bootm_decomp_image() argument
415 *load_end = load; in bootm_decomp_image()
416 print_decomp_msg(comp, type, load == image_start, in bootm_decomp_image()
426 if (load == image_start) in bootm_decomp_image()
490 *load_end = load + image_len; in bootm_decomp_image()
505 ulong load = os.load; in bootm_load_os() local
514 load_buf = map_sysmem(load, 0); in bootm_load_os()
516 err = bootm_decomp_image(os.comp, load, os.image_start, os.type, in bootm_load_os()
523 flush_cache(load, ALIGN(*load_end - load, ARCH_DMA_MINALIGN)); in bootm_load_os()
525 printf(" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end); in bootm_load_os()
528 no_overlap = (os.comp == IH_COMP_NONE && load == image_start); in bootm_load_os()
530 if (!no_overlap && (load < blob_end) && (*load_end > blob_start)) { in bootm_load_os()
533 printf("images.os.load = 0x%lx, load_end = 0x%lx\n", load, in bootm_load_os()
550 images->os.image_len = *load_end - load; in bootm_load_os()
720 lmb_reserve(&images->lmb, images->os.load, in do_bootm_states()
721 (load_end - images->os.load)); in do_bootm_states()