1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * relocate_kernel.S for kexec
4 * Created by <nschichan@corp.free.fr> on Thu Oct 12 17:49:57 2006
8 #include <asm/asmmacro.h>
9 #include <asm/regdef.h>
10 #include <asm/mipsregs.h>
11 #include <asm/stackframe.h>
12 #include <asm/addrspace.h>
14 #include <kernel-entry-init.h>
16 LEAF(relocate_new_kernel)
22 PTR_L s0, kexec_indirection_page
23 PTR_L s1, kexec_start_address
27 PTR_ADDIU s0, s0, SZREG
30 * In case of a kdump/crash kernel, the indirection page is not
31 * populated as the kernel is directly copied to a reserved location
35 /* destination page */
38 and s4, s2, ~0x1 /* store destination addr in s4 */
42 /* indirection page, update s0 */
56 beq s3, zero, process_entry
58 li s6, (1 << _PAGE_SHIFT) / SZREG
61 /* copy page word by word */
64 PTR_ADDIU s4, s4, SZREG
65 PTR_ADDIU s2, s2, SZREG
67 beq s6, zero, process_entry
72 /* kexec_flag reset is signal to other CPUs what kernel
73 was moved to its location. Note - we need relocated address
85 #ifdef CONFIG_CPU_CAVIUM_OCTEON
86 /* We need to flush I-cache before jumping to new kernel.
87 * Unfortunately, this code is cpu-specific.
98 /* jump to kexec_start_address */
100 END(relocate_new_kernel)
104 * Other CPUs should wait until code is relocated and
105 * then start at entry (?) point.
112 PTR_L s1, kexec_start_address
114 /* Non-relocated address works for args and kexec_start_address ( old
115 * kernel is not overwritten). But we need relocated address of
129 #ifdef USE_KEXEC_SMP_WAIT_FINAL
139 /* all PTR's must be aligned to 8 byte in 64-bit mode */
143 /* All parameters to new kernel are passed in registers a0-a3.
144 * kexec_args[0..3] are used to prepare register values.
152 .size kexec_args,PTRSIZE*4
156 * Secondary CPUs may have different kernel parameters in
157 * their registers a0-a3. secondary_kexec_args[0..3] are used
158 * to prepare register values.
160 EXPORT(secondary_kexec_args)
165 .size secondary_kexec_args,PTRSIZE*4
171 EXPORT(kexec_start_address)
173 .size kexec_start_address, PTRSIZE
175 EXPORT(kexec_indirection_page)
177 .size kexec_indirection_page, PTRSIZE
179 relocate_new_kernel_end:
181 EXPORT(relocate_new_kernel_size)
182 PTR_WD relocate_new_kernel_end - relocate_new_kernel
183 .size relocate_new_kernel_size, PTRSIZE