Lines Matching refs:images
132 static void boot_start_lmb(bootm_headers_t *images) in boot_start_lmb() argument
134 lmb_init(&images->lmb); in boot_start_lmb()
139 lmb_add(&images->lmb, gd->bd->bi_dram[i].start, in boot_start_lmb()
148 lmb_add(&images->lmb, (phys_addr_t)mem_start, mem_size); in boot_start_lmb()
150 arch_lmb_reserve(&images->lmb); in boot_start_lmb()
151 board_lmb_reserve(&images->lmb); in boot_start_lmb()
154 static inline void boot_start_lmb(bootm_headers_t *images) { } in boot_start_lmb() argument
157 static void boot_lmb_init(bootm_headers_t *images) in boot_lmb_init() argument
159 boot_start_lmb(images); in boot_lmb_init()
160 images->state = BOOTM_STATE_OS_GO; in boot_lmb_init()
290 boot_lmb_init(&images); in boot_rockchip_image()
291 images.ep = kernel_addr_r; in boot_rockchip_image()
292 images.initrd_start = ramdisk_addr_r; in boot_rockchip_image()
293 images.initrd_end = ramdisk_addr_r + ramdisk_size; in boot_rockchip_image()
294 images.ft_addr = (void *)fdt_addr_r; in boot_rockchip_image()
295 images.ft_len = fdt_totalsize(fdt_addr_r); in boot_rockchip_image()
296 do_bootm_linux(0, 0, NULL, &images); in boot_rockchip_image()