Searched refs:relocated_addr (Results 1 – 5 of 5) sorted by relevance
/openbmc/u-boot/cmd/ |
H A D | booti.c | 24 ulong relocated_addr; in booti_start() local 40 ret = booti_setup(ld, &relocated_addr, &image_size, false); in booti_start() 45 if (relocated_addr != ld) { in booti_start() 46 debug("Moving Image from 0x%lx to 0x%lx\n", ld, relocated_addr); in booti_start() 47 memmove((void *)relocated_addr, (void *)ld, image_size); in booti_start() 50 images->ep = relocated_addr; in booti_start()
|
/openbmc/u-boot/arch/arm/lib/ |
H A D | image.c | 29 int booti_setup(ulong image, ulong *relocated_addr, ulong *size, in booti_setup() argument 36 *relocated_addr = image; in booti_setup() 72 *relocated_addr = ALIGN(dst, SZ_2M) + text_offset; in booti_setup()
|
/openbmc/linux/arch/loongarch/kernel/ |
H A D | relocate.c | 33 Elf64_Addr relocated_addr = rela->r_addend; in relocate_relative() local 38 if (relocated_addr >= VMLINUX_LOAD_ADDRESS) in relocate_relative() 39 relocated_addr = (Elf64_Addr)RELOCATED(relocated_addr); in relocate_relative() 41 *(Elf64_Addr *)RELOCATED(addr) = relocated_addr; in relocate_relative()
|
/openbmc/linux/arch/riscv/mm/ |
H A D | init.c | 882 Elf64_Addr relocated_addr = rela->r_addend; in relocate_kernel() local 893 if (relocated_addr >= KERNEL_LINK_ADDR) in relocate_kernel() 894 relocated_addr += reloc_offset; in relocate_kernel() 896 *(Elf64_Addr *)addr = relocated_addr; in relocate_kernel()
|
/openbmc/u-boot/include/ |
H A D | image.h | 921 int booti_setup(ulong image, ulong *relocated_addr, ulong *size,
|