R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 1 | /* |
Michael Ellerman | 3d1229d | 2005-11-14 23:35:00 +1100 | [diff] [blame] | 2 | * PPC64 code to handle Linux booting another kernel. |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2004-2005, IBM Corp. |
| 5 | * |
| 6 | * Created by: Milton D Miller II |
| 7 | * |
| 8 | * This source code is licensed under the GNU General Public License, |
| 9 | * Version 2. See the file COPYING for more details. |
| 10 | */ |
| 11 | |
| 12 | |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 13 | #include <linux/kexec.h> |
| 14 | #include <linux/smp.h> |
| 15 | #include <linux/thread_info.h> |
Joe Perches | d200c92 | 2009-09-20 18:14:13 -0400 | [diff] [blame] | 16 | #include <linux/init_task.h> |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 17 | #include <linux/errno.h> |
Matt Evans | e2f7f73 | 2010-07-29 18:47:17 +0000 | [diff] [blame] | 18 | #include <linux/kernel.h> |
Matt Evans | e8e5c21 | 2010-07-29 18:49:08 +0000 | [diff] [blame] | 19 | #include <linux/cpu.h> |
Anton Blanchard | 79c66ce | 2013-05-12 15:04:53 +0000 | [diff] [blame] | 20 | #include <linux/hardirq.h> |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 21 | |
| 22 | #include <asm/page.h> |
| 23 | #include <asm/current.h> |
| 24 | #include <asm/machdep.h> |
| 25 | #include <asm/cacheflush.h> |
Benjamin Herrenschmidt | b970b41 | 2016-08-19 14:22:38 +0530 | [diff] [blame] | 26 | #include <asm/firmware.h> |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 27 | #include <asm/paca.h> |
| 28 | #include <asm/mmu.h> |
| 29 | #include <asm/sections.h> /* _end */ |
| 30 | #include <asm/prom.h> |
Paul Mackerras | 2249ca9 | 2005-11-07 13:18:13 +1100 | [diff] [blame] | 31 | #include <asm/smp.h> |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 32 | #include <asm/hw_breakpoint.h> |
Daniel Axtens | 42f5b4c | 2016-05-18 11:16:50 +1000 | [diff] [blame] | 33 | #include <asm/asm-prototypes.h> |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 34 | |
Michael Ellerman | 3d1229d | 2005-11-14 23:35:00 +1100 | [diff] [blame] | 35 | int default_machine_kexec_prepare(struct kimage *image) |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 36 | { |
| 37 | int i; |
| 38 | unsigned long begin, end; /* limits of segment */ |
| 39 | unsigned long low, high; /* limits of blocked memory range */ |
| 40 | struct device_node *node; |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 41 | const unsigned long *basep; |
| 42 | const unsigned int *sizep; |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 43 | |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 44 | /* |
| 45 | * Since we use the kernel fault handlers and paging code to |
| 46 | * handle the virtual mode, we must make sure no destination |
| 47 | * overlaps kernel static data or bss. |
| 48 | */ |
Maneesh Soni | 72414d3 | 2005-06-25 14:58:28 -0700 | [diff] [blame] | 49 | for (i = 0; i < image->nr_segments; i++) |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 50 | if (image->segment[i].mem < __pa(_end)) |
| 51 | return -ETXTBSY; |
| 52 | |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 53 | /* We also should not overwrite the tce tables */ |
Anton Blanchard | 94db7c5 | 2011-08-10 20:44:22 +0000 | [diff] [blame] | 54 | for_each_node_by_type(node, "pci") { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 55 | basep = of_get_property(node, "linux,tce-base", NULL); |
| 56 | sizep = of_get_property(node, "linux,tce-size", NULL); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 57 | if (basep == NULL || sizep == NULL) |
| 58 | continue; |
| 59 | |
| 60 | low = *basep; |
| 61 | high = low + (*sizep); |
| 62 | |
Maneesh Soni | 72414d3 | 2005-06-25 14:58:28 -0700 | [diff] [blame] | 63 | for (i = 0; i < image->nr_segments; i++) { |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 64 | begin = image->segment[i].mem; |
| 65 | end = begin + image->segment[i].memsz; |
| 66 | |
| 67 | if ((begin < high) && (end > low)) |
| 68 | return -ETXTBSY; |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | return 0; |
| 73 | } |
| 74 | |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 75 | static void copy_segments(unsigned long ind) |
| 76 | { |
| 77 | unsigned long entry; |
| 78 | unsigned long *ptr; |
| 79 | void *dest; |
| 80 | void *addr; |
| 81 | |
| 82 | /* |
| 83 | * We rely on kexec_load to create a lists that properly |
| 84 | * initializes these pointers before they are used. |
| 85 | * We will still crash if the list is wrong, but at least |
| 86 | * the compiler will be quiet. |
| 87 | */ |
| 88 | ptr = NULL; |
| 89 | dest = NULL; |
| 90 | |
| 91 | for (entry = ind; !(entry & IND_DONE); entry = *ptr++) { |
| 92 | addr = __va(entry & PAGE_MASK); |
| 93 | |
| 94 | switch (entry & IND_FLAGS) { |
| 95 | case IND_DESTINATION: |
| 96 | dest = addr; |
| 97 | break; |
| 98 | case IND_INDIRECTION: |
| 99 | ptr = addr; |
| 100 | break; |
| 101 | case IND_SOURCE: |
| 102 | copy_page(dest, addr); |
| 103 | dest += PAGE_SIZE; |
| 104 | } |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | void kexec_copy_flush(struct kimage *image) |
| 109 | { |
| 110 | long i, nr_segments = image->nr_segments; |
| 111 | struct kexec_segment ranges[KEXEC_SEGMENT_MAX]; |
| 112 | |
| 113 | /* save the ranges on the stack to efficiently flush the icache */ |
| 114 | memcpy(ranges, image->segment, sizeof(ranges)); |
| 115 | |
| 116 | /* |
| 117 | * After this call we may not use anything allocated in dynamic |
| 118 | * memory, including *image. |
| 119 | * |
| 120 | * Only globals and the stack are allowed. |
| 121 | */ |
| 122 | copy_segments(image->head); |
| 123 | |
| 124 | /* |
| 125 | * we need to clear the icache for all dest pages sometime, |
| 126 | * including ones that were in place on the original copy |
| 127 | */ |
| 128 | for (i = 0; i < nr_segments; i++) |
Michael Ellerman | b5666f7 | 2005-12-05 10:24:33 -0600 | [diff] [blame] | 129 | flush_icache_range((unsigned long)__va(ranges[i].mem), |
| 130 | (unsigned long)__va(ranges[i].mem + ranges[i].memsz)); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | #ifdef CONFIG_SMP |
| 134 | |
Michael Neuling | 1fc711f | 2010-05-13 19:40:11 +0000 | [diff] [blame] | 135 | static int kexec_all_irq_disabled = 0; |
| 136 | |
Michael Ellerman | 1c21a29 | 2008-05-08 14:27:19 +1000 | [diff] [blame] | 137 | static void kexec_smp_down(void *arg) |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 138 | { |
Michael Neuling | 1fc711f | 2010-05-13 19:40:11 +0000 | [diff] [blame] | 139 | local_irq_disable(); |
Phileas Fogg | 8520e443 | 2013-02-23 00:32:19 +0100 | [diff] [blame] | 140 | hard_irq_disable(); |
| 141 | |
Michael Neuling | 1fc711f | 2010-05-13 19:40:11 +0000 | [diff] [blame] | 142 | mb(); /* make sure our irqs are disabled before we say they are */ |
| 143 | get_paca()->kexec_state = KEXEC_STATE_IRQS_OFF; |
| 144 | while(kexec_all_irq_disabled == 0) |
| 145 | cpu_relax(); |
| 146 | mb(); /* make sure all irqs are disabled before this */ |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 147 | hw_breakpoint_disable(); |
Michael Neuling | 1fc711f | 2010-05-13 19:40:11 +0000 | [diff] [blame] | 148 | /* |
| 149 | * Now every CPU has IRQs off, we can clear out any pending |
| 150 | * IPIs and be sure that no more will come in after this. |
| 151 | */ |
Michael Ellerman | c5e2435 | 2005-11-12 00:06:05 +1100 | [diff] [blame] | 152 | if (ppc_md.kexec_cpu_down) |
| 153 | ppc_md.kexec_cpu_down(0, 1); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 154 | |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 155 | kexec_smp_wait(); |
| 156 | /* NOTREACHED */ |
| 157 | } |
| 158 | |
Michael Neuling | 1fc711f | 2010-05-13 19:40:11 +0000 | [diff] [blame] | 159 | static void kexec_prepare_cpus_wait(int wait_state) |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 160 | { |
| 161 | int my_cpu, i, notified=-1; |
| 162 | |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 163 | hw_breakpoint_disable(); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 164 | my_cpu = get_cpu(); |
Matt Evans | e2f7f73 | 2010-07-29 18:47:17 +0000 | [diff] [blame] | 165 | /* Make sure each CPU has at least made it to the state we need. |
| 166 | * |
| 167 | * FIXME: There is a (slim) chance of a problem if not all of the CPUs |
| 168 | * are correctly onlined. If somehow we start a CPU on boot with RTAS |
| 169 | * start-cpu, but somehow that CPU doesn't write callin_cpu_map[] in |
| 170 | * time, the boot CPU will timeout. If it does eventually execute |
| 171 | * stuff, the secondary will start up (paca[].cpu_start was written) and |
| 172 | * get into a peculiar state. If the platform supports |
| 173 | * smp_ops->take_timebase(), the secondary CPU will probably be spinning |
| 174 | * in there. If not (i.e. pseries), the secondary will continue on and |
| 175 | * try to online itself/idle/etc. If it survives that, we need to find |
| 176 | * these possible-but-not-online-but-should-be CPUs and chaperone them |
| 177 | * into kexec_smp_wait(). |
| 178 | */ |
Matt Evans | b636f13 | 2010-06-07 21:38:18 +0000 | [diff] [blame] | 179 | for_each_online_cpu(i) { |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 180 | if (i == my_cpu) |
| 181 | continue; |
| 182 | |
Michael Neuling | 1fc711f | 2010-05-13 19:40:11 +0000 | [diff] [blame] | 183 | while (paca[i].kexec_state < wait_state) { |
Anton Blanchard | b3ca809 | 2005-09-27 21:45:38 -0700 | [diff] [blame] | 184 | barrier(); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 185 | if (i != notified) { |
Matt Evans | e2f7f73 | 2010-07-29 18:47:17 +0000 | [diff] [blame] | 186 | printk(KERN_INFO "kexec: waiting for cpu %d " |
| 187 | "(physical %d) to enter %i state\n", |
| 188 | i, paca[i].hw_cpu_id, wait_state); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 189 | notified = i; |
| 190 | } |
| 191 | } |
| 192 | } |
Michael Neuling | 1fc711f | 2010-05-13 19:40:11 +0000 | [diff] [blame] | 193 | mb(); |
| 194 | } |
| 195 | |
Matt Evans | e8e5c21 | 2010-07-29 18:49:08 +0000 | [diff] [blame] | 196 | /* |
| 197 | * We need to make sure each present CPU is online. The next kernel will scan |
| 198 | * the device tree and assume primary threads are online and query secondary |
| 199 | * threads via RTAS to online them if required. If we don't online primary |
| 200 | * threads, they will be stuck. However, we also online secondary threads as we |
| 201 | * may be using 'cede offline'. In this case RTAS doesn't see the secondary |
| 202 | * threads as offline -- and again, these CPUs will be stuck. |
| 203 | * |
| 204 | * So, we online all CPUs that should be running, including secondary threads. |
| 205 | */ |
| 206 | static void wake_offline_cpus(void) |
| 207 | { |
| 208 | int cpu = 0; |
| 209 | |
| 210 | for_each_present_cpu(cpu) { |
| 211 | if (!cpu_online(cpu)) { |
| 212 | printk(KERN_INFO "kexec: Waking offline cpu %d.\n", |
| 213 | cpu); |
Srivatsa S. Bhat | 011e4b0 | 2014-05-27 16:25:34 +0530 | [diff] [blame] | 214 | WARN_ON(cpu_up(cpu)); |
Matt Evans | e8e5c21 | 2010-07-29 18:49:08 +0000 | [diff] [blame] | 215 | } |
| 216 | } |
| 217 | } |
| 218 | |
Michael Neuling | 1fc711f | 2010-05-13 19:40:11 +0000 | [diff] [blame] | 219 | static void kexec_prepare_cpus(void) |
| 220 | { |
Matt Evans | e8e5c21 | 2010-07-29 18:49:08 +0000 | [diff] [blame] | 221 | wake_offline_cpus(); |
Michael Neuling | 1fc711f | 2010-05-13 19:40:11 +0000 | [diff] [blame] | 222 | smp_call_function(kexec_smp_down, NULL, /* wait */0); |
| 223 | local_irq_disable(); |
Phileas Fogg | 8520e443 | 2013-02-23 00:32:19 +0100 | [diff] [blame] | 224 | hard_irq_disable(); |
| 225 | |
Michael Neuling | 1fc711f | 2010-05-13 19:40:11 +0000 | [diff] [blame] | 226 | mb(); /* make sure IRQs are disabled before we say they are */ |
| 227 | get_paca()->kexec_state = KEXEC_STATE_IRQS_OFF; |
| 228 | |
| 229 | kexec_prepare_cpus_wait(KEXEC_STATE_IRQS_OFF); |
| 230 | /* we are sure every CPU has IRQs off at this point */ |
| 231 | kexec_all_irq_disabled = 1; |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 232 | |
| 233 | /* after we tell the others to go down */ |
Michael Ellerman | c5e2435 | 2005-11-12 00:06:05 +1100 | [diff] [blame] | 234 | if (ppc_md.kexec_cpu_down) |
| 235 | ppc_md.kexec_cpu_down(0, 0); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 236 | |
Matt Evans | e2f7f73 | 2010-07-29 18:47:17 +0000 | [diff] [blame] | 237 | /* |
| 238 | * Before removing MMU mappings make sure all CPUs have entered real |
| 239 | * mode: |
| 240 | */ |
Michael Neuling | 1fc711f | 2010-05-13 19:40:11 +0000 | [diff] [blame] | 241 | kexec_prepare_cpus_wait(KEXEC_STATE_REAL_MODE); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 242 | |
Michael Neuling | 1fc711f | 2010-05-13 19:40:11 +0000 | [diff] [blame] | 243 | put_cpu(); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | #else /* ! SMP */ |
| 247 | |
| 248 | static void kexec_prepare_cpus(void) |
| 249 | { |
| 250 | /* |
| 251 | * move the secondarys to us so that we can copy |
| 252 | * the new kernel 0-0x100 safely |
| 253 | * |
| 254 | * do this if kexec in setup.c ? |
Olof Johansson | 75eedfe | 2005-08-04 12:53:29 -0700 | [diff] [blame] | 255 | * |
| 256 | * We need to release the cpus if we are ever going from an |
| 257 | * UP to an SMP kernel. |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 258 | */ |
Olof Johansson | 75eedfe | 2005-08-04 12:53:29 -0700 | [diff] [blame] | 259 | smp_release_cpus(); |
Michael Ellerman | c5e2435 | 2005-11-12 00:06:05 +1100 | [diff] [blame] | 260 | if (ppc_md.kexec_cpu_down) |
| 261 | ppc_md.kexec_cpu_down(0, 0); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 262 | local_irq_disable(); |
Phileas Fogg | 8520e443 | 2013-02-23 00:32:19 +0100 | [diff] [blame] | 263 | hard_irq_disable(); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | #endif /* SMP */ |
| 267 | |
| 268 | /* |
| 269 | * kexec thread structure and stack. |
| 270 | * |
| 271 | * We need to make sure that this is 16384-byte aligned due to the |
| 272 | * way process stacks are handled. It also must be statically allocated |
| 273 | * or allocated as part of the kimage, because everything else may be |
| 274 | * overwritten when we copy the kexec image. We piggyback on the |
| 275 | * "init_task" linker section here to statically allocate a stack. |
| 276 | * |
| 277 | * We could use a smaller stack if we don't care about anything using |
| 278 | * current, but that audit has not been performed. |
| 279 | */ |
Joe Perches | d200c92 | 2009-09-20 18:14:13 -0400 | [diff] [blame] | 280 | static union thread_union kexec_stack __init_task_data = |
| 281 | { }; |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 282 | |
Matt Evans | fc53b42 | 2010-07-07 21:55:37 +0000 | [diff] [blame] | 283 | /* |
| 284 | * For similar reasons to the stack above, the kexecing CPU needs to be on a |
| 285 | * static PACA; we switch to kexec_paca. |
| 286 | */ |
| 287 | struct paca_struct kexec_paca; |
| 288 | |
Geert Uytterhoeven | 07fb41a7 | 2013-10-14 09:40:16 +0200 | [diff] [blame] | 289 | /* Our assembly helper, in misc_64.S */ |
Joe Perches | 9402c95 | 2012-01-12 17:17:17 -0800 | [diff] [blame] | 290 | extern void kexec_sequence(void *newstack, unsigned long start, |
| 291 | void *image, void *control, |
Benjamin Herrenschmidt | b970b41 | 2016-08-19 14:22:38 +0530 | [diff] [blame] | 292 | void (*clear_all)(void), |
| 293 | bool copy_with_mmu_off) __noreturn; |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 294 | |
| 295 | /* too late to fail here */ |
Michael Ellerman | 3d1229d | 2005-11-14 23:35:00 +1100 | [diff] [blame] | 296 | void default_machine_kexec(struct kimage *image) |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 297 | { |
Benjamin Herrenschmidt | b970b41 | 2016-08-19 14:22:38 +0530 | [diff] [blame] | 298 | bool copy_with_mmu_off; |
| 299 | |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 300 | /* prepare control code if any */ |
| 301 | |
Michael Ellerman | cc53291 | 2005-12-04 18:39:43 +1100 | [diff] [blame] | 302 | /* |
| 303 | * If the kexec boot is the normal one, need to shutdown other cpus |
| 304 | * into our wait loop and quiesce interrupts. |
| 305 | * Otherwise, in the case of crashed mode (crashing_cpu >= 0), |
| 306 | * stopping other CPUs and collecting their pt_regs is done before |
| 307 | * using debugger IPI. |
| 308 | */ |
| 309 | |
Hari Bathini | c1caae3 | 2014-12-18 23:36:55 +0530 | [diff] [blame] | 310 | if (!kdump_in_progress()) |
Mohan Kumar M | 54622f1 | 2008-10-21 17:38:10 +0000 | [diff] [blame] | 311 | kexec_prepare_cpus(); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 312 | |
Thiago Jung Bauermann | 0d97631 | 2016-11-29 23:45:52 +1100 | [diff] [blame] | 313 | printk("kexec: Starting switchover sequence.\n"); |
Matt Evans | e2f7f73 | 2010-07-29 18:47:17 +0000 | [diff] [blame] | 314 | |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 315 | /* switch to a staticly allocated stack. Based on irq stack code. |
Anton Blanchard | 79c66ce | 2013-05-12 15:04:53 +0000 | [diff] [blame] | 316 | * We setup preempt_count to avoid using VMX in memcpy. |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 317 | * XXX: the task struct will likely be invalid once we do the copy! |
| 318 | */ |
| 319 | kexec_stack.thread_info.task = current_thread_info()->task; |
| 320 | kexec_stack.thread_info.flags = 0; |
Anton Blanchard | 79c66ce | 2013-05-12 15:04:53 +0000 | [diff] [blame] | 321 | kexec_stack.thread_info.preempt_count = HARDIRQ_OFFSET; |
| 322 | kexec_stack.thread_info.cpu = current_thread_info()->cpu; |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 323 | |
Matt Evans | fc53b42 | 2010-07-07 21:55:37 +0000 | [diff] [blame] | 324 | /* We need a static PACA, too; copy this CPU's PACA over and switch to |
| 325 | * it. Also poison per_cpu_offset to catch anyone using non-static |
| 326 | * data. |
| 327 | */ |
| 328 | memcpy(&kexec_paca, get_paca(), sizeof(struct paca_struct)); |
| 329 | kexec_paca.data_offset = 0xedeaddeadeeeeeeeUL; |
| 330 | paca = (struct paca_struct *)RELOC_HIDE(&kexec_paca, 0) - |
| 331 | kexec_paca.paca_index; |
| 332 | setup_paca(&kexec_paca); |
| 333 | |
| 334 | /* XXX: If anyone does 'dynamic lppacas' this will also need to be |
| 335 | * switched to a static version! |
| 336 | */ |
Benjamin Herrenschmidt | b970b41 | 2016-08-19 14:22:38 +0530 | [diff] [blame] | 337 | /* |
| 338 | * On Book3S, the copy must happen with the MMU off if we are either |
| 339 | * using Radix page tables or we are not in an LPAR since we can |
| 340 | * overwrite the page tables while copying. |
| 341 | * |
| 342 | * In an LPAR, we keep the MMU on otherwise we can't access beyond |
| 343 | * the RMA. On BookE there is no real MMU off mode, so we have to |
| 344 | * keep it enabled as well (but then we have bolted TLB entries). |
| 345 | */ |
| 346 | #ifdef CONFIG_PPC_BOOK3E |
| 347 | copy_with_mmu_off = false; |
| 348 | #else |
| 349 | copy_with_mmu_off = radix_enabled() || |
| 350 | !(firmware_has_feature(FW_FEATURE_LPAR) || |
| 351 | firmware_has_feature(FW_FEATURE_PS3_LV1)); |
| 352 | #endif |
Matt Evans | fc53b42 | 2010-07-07 21:55:37 +0000 | [diff] [blame] | 353 | |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 354 | /* Some things are best done in assembly. Finding globals with |
| 355 | * a toc is easier in C, so pass in what we can. |
| 356 | */ |
| 357 | kexec_sequence(&kexec_stack, image->start, image, |
Benjamin Herrenschmidt | fe036a0 | 2016-08-19 14:22:37 +0530 | [diff] [blame] | 358 | page_address(image->control_code_page), |
Benjamin Herrenschmidt | b970b41 | 2016-08-19 14:22:38 +0530 | [diff] [blame] | 359 | mmu_cleanup_all, copy_with_mmu_off); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 360 | /* NOTREACHED */ |
| 361 | } |
Michael Ellerman | 593e537 | 2005-11-12 00:06:06 +1100 | [diff] [blame] | 362 | |
Aneesh Kumar K.V | caca285 | 2016-04-29 23:26:07 +1000 | [diff] [blame] | 363 | #ifdef CONFIG_PPC_STD_MMU_64 |
Michael Ellerman | 593e537 | 2005-11-12 00:06:06 +1100 | [diff] [blame] | 364 | /* Values we need to export to the second kernel via the device tree. */ |
Dale Farnsworth | 2e8e4f5 | 2008-12-16 06:22:59 +0000 | [diff] [blame] | 365 | static unsigned long htab_base; |
Anton Blanchard | ea961a8 | 2014-01-22 08:40:28 +1100 | [diff] [blame] | 366 | static unsigned long htab_size; |
Michael Ellerman | 593e537 | 2005-11-12 00:06:06 +1100 | [diff] [blame] | 367 | |
| 368 | static struct property htab_base_prop = { |
| 369 | .name = "linux,htab-base", |
| 370 | .length = sizeof(unsigned long), |
Stephen Rothwell | 1a38147 | 2007-04-03 10:58:52 +1000 | [diff] [blame] | 371 | .value = &htab_base, |
Michael Ellerman | 593e537 | 2005-11-12 00:06:06 +1100 | [diff] [blame] | 372 | }; |
| 373 | |
| 374 | static struct property htab_size_prop = { |
| 375 | .name = "linux,htab-size", |
| 376 | .length = sizeof(unsigned long), |
Anton Blanchard | ea961a8 | 2014-01-22 08:40:28 +1100 | [diff] [blame] | 377 | .value = &htab_size, |
Michael Ellerman | 593e537 | 2005-11-12 00:06:06 +1100 | [diff] [blame] | 378 | }; |
| 379 | |
Dale Farnsworth | 6f29c32 | 2008-12-17 10:09:06 +0000 | [diff] [blame] | 380 | static int __init export_htab_values(void) |
Michael Ellerman | 593e537 | 2005-11-12 00:06:06 +1100 | [diff] [blame] | 381 | { |
| 382 | struct device_node *node; |
| 383 | |
Dale Farnsworth | 2e8e4f5 | 2008-12-16 06:22:59 +0000 | [diff] [blame] | 384 | /* On machines with no htab htab_address is NULL */ |
| 385 | if (!htab_address) |
Dale Farnsworth | 6f29c32 | 2008-12-17 10:09:06 +0000 | [diff] [blame] | 386 | return -ENODEV; |
Dale Farnsworth | 2e8e4f5 | 2008-12-16 06:22:59 +0000 | [diff] [blame] | 387 | |
Michael Ellerman | 593e537 | 2005-11-12 00:06:06 +1100 | [diff] [blame] | 388 | node = of_find_node_by_path("/chosen"); |
| 389 | if (!node) |
Dale Farnsworth | 6f29c32 | 2008-12-17 10:09:06 +0000 | [diff] [blame] | 390 | return -ENODEV; |
Michael Ellerman | 593e537 | 2005-11-12 00:06:06 +1100 | [diff] [blame] | 391 | |
Milton Miller | ed7b214 | 2008-10-20 15:37:03 +0000 | [diff] [blame] | 392 | /* remove any stale propertys so ours can be found */ |
Suraj Jitindar Singh | 925e2d1 | 2016-04-28 15:34:55 +1000 | [diff] [blame] | 393 | of_remove_property(node, of_find_property(node, htab_base_prop.name, NULL)); |
| 394 | of_remove_property(node, of_find_property(node, htab_size_prop.name, NULL)); |
Milton Miller | ed7b214 | 2008-10-20 15:37:03 +0000 | [diff] [blame] | 395 | |
Anton Blanchard | ea961a8 | 2014-01-22 08:40:28 +1100 | [diff] [blame] | 396 | htab_base = cpu_to_be64(__pa(htab_address)); |
Nathan Fontenot | 79d1c71 | 2012-10-02 16:58:46 +0000 | [diff] [blame] | 397 | of_add_property(node, &htab_base_prop); |
Anton Blanchard | ea961a8 | 2014-01-22 08:40:28 +1100 | [diff] [blame] | 398 | htab_size = cpu_to_be64(htab_size_bytes); |
Nathan Fontenot | 79d1c71 | 2012-10-02 16:58:46 +0000 | [diff] [blame] | 399 | of_add_property(node, &htab_size_prop); |
Michael Ellerman | 593e537 | 2005-11-12 00:06:06 +1100 | [diff] [blame] | 400 | |
Michael Ellerman | 593e537 | 2005-11-12 00:06:06 +1100 | [diff] [blame] | 401 | of_node_put(node); |
Michael Ellerman | aa98c50 | 2006-06-23 18:17:32 +1000 | [diff] [blame] | 402 | return 0; |
Michael Ellerman | 35dd543 | 2006-05-18 11:16:11 +1000 | [diff] [blame] | 403 | } |
Dale Farnsworth | 6f29c32 | 2008-12-17 10:09:06 +0000 | [diff] [blame] | 404 | late_initcall(export_htab_values); |
Aneesh Kumar K.V | caca285 | 2016-04-29 23:26:07 +1000 | [diff] [blame] | 405 | #endif /* CONFIG_PPC_STD_MMU_64 */ |