@@ -109,6 +109,7 @@ int machine_kexec_post_load(struct kimage *image);
struct kimage_arch {
void *dtb;
phys_addr_t dtb_mem;
+ phys_addr_t param_mem;
phys_addr_t kern_reloc;
phys_addr_t el2_vectors;
phys_addr_t ttbr0;
@@ -187,7 +187,7 @@ int main(void)
BLANK();
#endif
#ifdef CONFIG_KEXEC_CORE
- DEFINE(KIMAGE_ARCH_DTB_MEM, offsetof(struct kimage, arch.dtb_mem));
+ DEFINE(KIMAGE_ARCH_PARAM_MEM, offsetof(struct kimage, arch.param_mem));
DEFINE(KIMAGE_ARCH_EL2_VECTORS, offsetof(struct kimage, arch.el2_vectors));
DEFINE(KIMAGE_ARCH_ZERO_PAGE, offsetof(struct kimage, arch.zero_page));
DEFINE(KIMAGE_ARCH_PHYS_OFFSET, offsetof(struct kimage, arch.phys_offset));
@@ -192,7 +192,7 @@ void machine_kexec(struct kimage *kimage)
cpu_install_idmap();
restart = (void *)__pa_symbol(cpu_soft_restart);
- restart(is_hyp_nvhe(), kimage->start, kimage->arch.dtb_mem,
+ restart(is_hyp_nvhe(), kimage->start, kimage->arch.param_mem,
0, 0);
} else {
void (*kernel_reloc)(struct kimage *kimage);
@@ -184,6 +184,7 @@ int load_other_segments(struct kimage *image,
goto out_err;
image->arch.dtb = dtb;
image->arch.dtb_mem = kbuf.mem;
+ image->arch.param_mem = image->arch.dtb_mem;
kexec_dprintk("Loaded dtb at 0x%lx bufsz=0x%lx memsz=0x%lx\n",
kbuf.mem, kbuf.bufsz, kbuf.memsz);
@@ -44,7 +44,7 @@ SYM_CODE_START(arm64_relocate_new_kernel)
*/
ldr x28, [x0, #KIMAGE_START]
ldr x27, [x0, #KIMAGE_ARCH_EL2_VECTORS]
- ldr x26, [x0, #KIMAGE_ARCH_DTB_MEM]
+ ldr x26, [x0, #KIMAGE_ARCH_PARAM_MEM]
/* Setup the list loop variables. */
ldr x18, [x0, #KIMAGE_ARCH_ZERO_PAGE] /* x18 = zero page for BBM */
relocate_kernel will be used either to boot vmlinux directly or PE image. In the latter case, the efi emulator needs efi_emulator_param instead of dtb as input parameter. On the other hand, dtb is still required to pass down through efi_emulator_param to the second kernel, so keep kimage_arch->dtb_mem as scratch and introduce another member 'param_mem' When booting vmlinux, param_mem equals dtb_mem. Signed-off-by: Pingfan Liu <piliu@redhat.com> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Will Deacon <will@kernel.org> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Ard Biesheuvel <ardb@kernel.org> To: linux-arm-kernel@lists.infradead.org --- arch/arm64/include/asm/kexec.h | 1 + arch/arm64/kernel/asm-offsets.c | 2 +- arch/arm64/kernel/machine_kexec.c | 2 +- arch/arm64/kernel/machine_kexec_file.c | 1 + arch/arm64/kernel/relocate_kernel.S | 2 +- 5 files changed, 5 insertions(+), 3 deletions(-)