Nicolas Schichan | 583bb86 | 2006-10-18 15:14:55 +0200 | [diff] [blame] | 1 | /* |
| 2 | * relocate_kernel.S for kexec |
| 3 | * Created by <nschichan@corp.free.fr> on Thu Oct 12 17:49:57 2006 |
| 4 | * |
| 5 | * This source code is licensed under the GNU General Public License, |
| 6 | * Version 2. See the file COPYING for more details. |
| 7 | */ |
| 8 | |
| 9 | #include <asm/asm.h> |
| 10 | #include <asm/asmmacro.h> |
| 11 | #include <asm/regdef.h> |
| 12 | #include <asm/page.h> |
| 13 | #include <asm/mipsregs.h> |
| 14 | #include <asm/stackframe.h> |
| 15 | #include <asm/addrspace.h> |
| 16 | |
Ralf Baechle | 00be0f3 | 2007-07-31 15:17:21 +0100 | [diff] [blame] | 17 | LEAF(relocate_new_kernel) |
Ralf Baechle | 7aa1c8f | 2012-10-11 18:14:58 +0200 | [diff] [blame^] | 18 | PTR_L a0, arg0 |
| 19 | PTR_L a1, arg1 |
| 20 | PTR_L a2, arg2 |
| 21 | PTR_L a3, arg3 |
| 22 | |
Ralf Baechle | 00be0f3 | 2007-07-31 15:17:21 +0100 | [diff] [blame] | 23 | PTR_L s0, kexec_indirection_page |
| 24 | PTR_L s1, kexec_start_address |
Nicolas Schichan | 583bb86 | 2006-10-18 15:14:55 +0200 | [diff] [blame] | 25 | |
| 26 | process_entry: |
Ralf Baechle | 00be0f3 | 2007-07-31 15:17:21 +0100 | [diff] [blame] | 27 | PTR_L s2, (s0) |
| 28 | PTR_ADD s0, s0, SZREG |
Nicolas Schichan | 583bb86 | 2006-10-18 15:14:55 +0200 | [diff] [blame] | 29 | |
| 30 | /* destination page */ |
Ralf Baechle | 00be0f3 | 2007-07-31 15:17:21 +0100 | [diff] [blame] | 31 | and s3, s2, 0x1 |
| 32 | beq s3, zero, 1f |
| 33 | and s4, s2, ~0x1 /* store destination addr in s4 */ |
Ralf Baechle | 00be0f3 | 2007-07-31 15:17:21 +0100 | [diff] [blame] | 34 | b process_entry |
Nicolas Schichan | 583bb86 | 2006-10-18 15:14:55 +0200 | [diff] [blame] | 35 | |
| 36 | 1: |
| 37 | /* indirection page, update s0 */ |
Ralf Baechle | 00be0f3 | 2007-07-31 15:17:21 +0100 | [diff] [blame] | 38 | and s3, s2, 0x2 |
| 39 | beq s3, zero, 1f |
| 40 | and s0, s2, ~0x2 |
| 41 | b process_entry |
Nicolas Schichan | 583bb86 | 2006-10-18 15:14:55 +0200 | [diff] [blame] | 42 | |
| 43 | 1: |
| 44 | /* done page */ |
Ralf Baechle | 00be0f3 | 2007-07-31 15:17:21 +0100 | [diff] [blame] | 45 | and s3, s2, 0x4 |
| 46 | beq s3, zero, 1f |
| 47 | b done |
Nicolas Schichan | 583bb86 | 2006-10-18 15:14:55 +0200 | [diff] [blame] | 48 | 1: |
| 49 | /* source page */ |
Ralf Baechle | 00be0f3 | 2007-07-31 15:17:21 +0100 | [diff] [blame] | 50 | and s3, s2, 0x8 |
| 51 | beq s3, zero, process_entry |
| 52 | and s2, s2, ~0x8 |
| 53 | li s6, (1 << PAGE_SHIFT) / SZREG |
Nicolas Schichan | 583bb86 | 2006-10-18 15:14:55 +0200 | [diff] [blame] | 54 | |
| 55 | copy_word: |
| 56 | /* copy page word by word */ |
Ralf Baechle | 00be0f3 | 2007-07-31 15:17:21 +0100 | [diff] [blame] | 57 | REG_L s5, (s2) |
| 58 | REG_S s5, (s4) |
| 59 | PTR_ADD s4, s4, SZREG |
| 60 | PTR_ADD s2, s2, SZREG |
| 61 | LONG_SUB s6, s6, 1 |
| 62 | beq s6, zero, process_entry |
| 63 | b copy_word |
| 64 | b process_entry |
Nicolas Schichan | 583bb86 | 2006-10-18 15:14:55 +0200 | [diff] [blame] | 65 | |
| 66 | done: |
Ralf Baechle | 7aa1c8f | 2012-10-11 18:14:58 +0200 | [diff] [blame^] | 67 | #ifdef CONFIG_SMP |
| 68 | /* kexec_flag reset is signal to other CPUs what kernel |
| 69 | was moved to it's location. Note - we need relocated address |
| 70 | of kexec_flag. */ |
| 71 | |
| 72 | bal 1f |
| 73 | 1: move t1,ra; |
| 74 | PTR_LA t2,1b |
| 75 | PTR_LA t0,kexec_flag |
| 76 | PTR_SUB t0,t0,t2; |
| 77 | PTR_ADD t0,t1,t0; |
| 78 | LONG_S zero,(t0) |
| 79 | #endif |
| 80 | |
| 81 | sync |
Nicolas Schichan | 583bb86 | 2006-10-18 15:14:55 +0200 | [diff] [blame] | 82 | /* jump to kexec_start_address */ |
Ralf Baechle | 00be0f3 | 2007-07-31 15:17:21 +0100 | [diff] [blame] | 83 | j s1 |
| 84 | END(relocate_new_kernel) |
Nicolas Schichan | 583bb86 | 2006-10-18 15:14:55 +0200 | [diff] [blame] | 85 | |
Ralf Baechle | 7aa1c8f | 2012-10-11 18:14:58 +0200 | [diff] [blame^] | 86 | #ifdef CONFIG_SMP |
| 87 | /* |
| 88 | * Other CPUs should wait until code is relocated and |
| 89 | * then start at entry (?) point. |
| 90 | */ |
| 91 | LEAF(kexec_smp_wait) |
| 92 | PTR_L a0, s_arg0 |
| 93 | PTR_L a1, s_arg1 |
| 94 | PTR_L a2, s_arg2 |
| 95 | PTR_L a3, s_arg3 |
| 96 | PTR_L s1, kexec_start_address |
| 97 | |
| 98 | /* Non-relocated address works for args and kexec_start_address ( old |
| 99 | * kernel is not overwritten). But we need relocated address of |
| 100 | * kexec_flag. |
| 101 | */ |
| 102 | |
| 103 | bal 1f |
| 104 | 1: move t1,ra; |
| 105 | PTR_LA t2,1b |
| 106 | PTR_LA t0,kexec_flag |
| 107 | PTR_SUB t0,t0,t2; |
| 108 | PTR_ADD t0,t1,t0; |
| 109 | |
| 110 | 1: LONG_L s0, (t0) |
| 111 | bne s0, zero,1b |
| 112 | |
| 113 | sync |
| 114 | j s1 |
| 115 | END(kexec_smp_wait) |
| 116 | #endif |
| 117 | |
| 118 | #ifdef __mips64 |
| 119 | /* all PTR's must be aligned to 8 byte in 64-bit mode */ |
| 120 | .align 3 |
| 121 | #endif |
| 122 | |
| 123 | /* All parameters to new kernel are passed in registers a0-a3. |
| 124 | * kexec_args[0..3] are uses to prepare register values. |
| 125 | */ |
| 126 | |
| 127 | kexec_args: |
| 128 | EXPORT(kexec_args) |
| 129 | arg0: PTR 0x0 |
| 130 | arg1: PTR 0x0 |
| 131 | arg2: PTR 0x0 |
| 132 | arg3: PTR 0x0 |
| 133 | .size kexec_args,PTRSIZE*4 |
| 134 | |
| 135 | #ifdef CONFIG_SMP |
| 136 | /* |
| 137 | * Secondary CPUs may have different kernel parameters in |
| 138 | * their registers a0-a3. secondary_kexec_args[0..3] are used |
| 139 | * to prepare register values. |
| 140 | */ |
| 141 | secondary_kexec_args: |
| 142 | EXPORT(secondary_kexec_args) |
| 143 | s_arg0: PTR 0x0 |
| 144 | s_arg1: PTR 0x0 |
| 145 | s_arg2: PTR 0x0 |
| 146 | s_arg3: PTR 0x0 |
| 147 | .size secondary_kexec_args,PTRSIZE*4 |
| 148 | kexec_flag: |
| 149 | LONG 0x1 |
| 150 | |
| 151 | #endif |
| 152 | |
Nicolas Schichan | 583bb86 | 2006-10-18 15:14:55 +0200 | [diff] [blame] | 153 | kexec_start_address: |
Ralf Baechle | 00be0f3 | 2007-07-31 15:17:21 +0100 | [diff] [blame] | 154 | EXPORT(kexec_start_address) |
| 155 | PTR 0x0 |
| 156 | .size kexec_start_address, PTRSIZE |
Nicolas Schichan | 583bb86 | 2006-10-18 15:14:55 +0200 | [diff] [blame] | 157 | |
Nicolas Schichan | 583bb86 | 2006-10-18 15:14:55 +0200 | [diff] [blame] | 158 | kexec_indirection_page: |
Ralf Baechle | 00be0f3 | 2007-07-31 15:17:21 +0100 | [diff] [blame] | 159 | EXPORT(kexec_indirection_page) |
| 160 | PTR 0 |
| 161 | .size kexec_indirection_page, PTRSIZE |
Nicolas Schichan | 583bb86 | 2006-10-18 15:14:55 +0200 | [diff] [blame] | 162 | |
| 163 | relocate_new_kernel_end: |
| 164 | |
Nicolas Schichan | 583bb86 | 2006-10-18 15:14:55 +0200 | [diff] [blame] | 165 | relocate_new_kernel_size: |
Ralf Baechle | 00be0f3 | 2007-07-31 15:17:21 +0100 | [diff] [blame] | 166 | EXPORT(relocate_new_kernel_size) |
| 167 | PTR relocate_new_kernel_end - relocate_new_kernel |
| 168 | .size relocate_new_kernel_size, PTRSIZE |