2 * relocate_kernel.S for kexec
3 * Created by <nschichan@corp.free.fr> on Thu Oct 12 17:49:57 2006
5 * This source code is licensed under the GNU General Public License,
6 * Version 2. See the file COPYING for more details.
10 #include <asm/asmmacro.h>
11 #include <asm/regdef.h>
12 #include <asm/mipsregs.h>
13 #include <asm/stackframe.h>
14 #include <asm/addrspace.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
73 /* kexec_flag reset is signal to other CPUs what kernel
74 was moved to it's location. Note - we need relocated address
86 #ifdef CONFIG_CPU_CAVIUM_OCTEON
87 /* We need to flush I-cache before jumping to new kernel.
88 * Unfortunately, this code is cpu-specific.
99 /* jump to kexec_start_address */
101 END(relocate_new_kernel)
105 * Other CPUs should wait until code is relocated and
106 * then start at entry (?) point.
113 PTR_L s1, kexec_start_address
115 /* Non-relocated address works for args and kexec_start_address ( old
116 * kernel is not overwritten). But we need relocated address of
130 #ifdef CONFIG_CPU_CAVIUM_OCTEON
143 /* all PTR's must be aligned to 8 byte in 64-bit mode */
147 /* All parameters to new kernel are passed in registers a0-a3.
148 * kexec_args[0..3] are used to prepare register values.
157 .size kexec_args,PTRSIZE*4
161 * Secondary CPUs may have different kernel parameters in
162 * their registers a0-a3. secondary_kexec_args[0..3] are used
163 * to prepare register values.
165 secondary_kexec_args:
166 EXPORT(secondary_kexec_args)
171 .size secondary_kexec_args,PTRSIZE*4
178 EXPORT(kexec_start_address)
180 .size kexec_start_address, PTRSIZE
182 kexec_indirection_page:
183 EXPORT(kexec_indirection_page)
185 .size kexec_indirection_page, PTRSIZE
187 relocate_new_kernel_end:
189 relocate_new_kernel_size:
190 EXPORT(relocate_new_kernel_size)
191 PTR relocate_new_kernel_end - relocate_new_kernel
192 .size relocate_new_kernel_size, PTRSIZE