blob: 75692c327ba0932bcceb5aa6e1e7912360982355 [file] [log] [blame]
R Sharadafce0d572005-06-25 14:58:10 -07001/*
Michael Ellerman3d1229d2005-11-14 23:35:00 +11002 * PPC64 code to handle Linux booting another kernel.
R Sharadafce0d572005-06-25 14:58:10 -07003 *
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 Sharadafce0d572005-06-25 14:58:10 -070013#include <linux/kexec.h>
14#include <linux/smp.h>
15#include <linux/thread_info.h>
Joe Perchesd200c922009-09-20 18:14:13 -040016#include <linux/init_task.h>
R Sharadafce0d572005-06-25 14:58:10 -070017#include <linux/errno.h>
Matt Evanse2f7f732010-07-29 18:47:17 +000018#include <linux/kernel.h>
Matt Evanse8e5c212010-07-29 18:49:08 +000019#include <linux/cpu.h>
Anton Blanchard79c66ce2013-05-12 15:04:53 +000020#include <linux/hardirq.h>
R Sharadafce0d572005-06-25 14:58:10 -070021
22#include <asm/page.h>
23#include <asm/current.h>
24#include <asm/machdep.h>
25#include <asm/cacheflush.h>
Benjamin Herrenschmidtb970b412016-08-19 14:22:38 +053026#include <asm/firmware.h>
R Sharadafce0d572005-06-25 14:58:10 -070027#include <asm/paca.h>
28#include <asm/mmu.h>
29#include <asm/sections.h> /* _end */
30#include <asm/prom.h>
Paul Mackerras2249ca92005-11-07 13:18:13 +110031#include <asm/smp.h>
K.Prasad5aae8a52010-06-15 11:35:19 +053032#include <asm/hw_breakpoint.h>
Daniel Axtens42f5b4c2016-05-18 11:16:50 +100033#include <asm/asm-prototypes.h>
R Sharadafce0d572005-06-25 14:58:10 -070034
Michael Ellerman3d1229d2005-11-14 23:35:00 +110035int default_machine_kexec_prepare(struct kimage *image)
R Sharadafce0d572005-06-25 14:58:10 -070036{
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 Kerra7f67bd2006-07-12 15:35:54 +100041 const unsigned long *basep;
42 const unsigned int *sizep;
R Sharadafce0d572005-06-25 14:58:10 -070043
R Sharadafce0d572005-06-25 14:58:10 -070044 /*
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 Soni72414d32005-06-25 14:58:28 -070049 for (i = 0; i < image->nr_segments; i++)
R Sharadafce0d572005-06-25 14:58:10 -070050 if (image->segment[i].mem < __pa(_end))
51 return -ETXTBSY;
52
R Sharadafce0d572005-06-25 14:58:10 -070053 /* We also should not overwrite the tce tables */
Anton Blanchard94db7c52011-08-10 20:44:22 +000054 for_each_node_by_type(node, "pci") {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100055 basep = of_get_property(node, "linux,tce-base", NULL);
56 sizep = of_get_property(node, "linux,tce-size", NULL);
R Sharadafce0d572005-06-25 14:58:10 -070057 if (basep == NULL || sizep == NULL)
58 continue;
59
60 low = *basep;
61 high = low + (*sizep);
62
Maneesh Soni72414d32005-06-25 14:58:28 -070063 for (i = 0; i < image->nr_segments; i++) {
R Sharadafce0d572005-06-25 14:58:10 -070064 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 Sharadafce0d572005-06-25 14:58:10 -070075static 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
108void 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 Ellermanb5666f72005-12-05 10:24:33 -0600129 flush_icache_range((unsigned long)__va(ranges[i].mem),
130 (unsigned long)__va(ranges[i].mem + ranges[i].memsz));
R Sharadafce0d572005-06-25 14:58:10 -0700131}
132
133#ifdef CONFIG_SMP
134
Michael Neuling1fc711f2010-05-13 19:40:11 +0000135static int kexec_all_irq_disabled = 0;
136
Michael Ellerman1c21a292008-05-08 14:27:19 +1000137static void kexec_smp_down(void *arg)
R Sharadafce0d572005-06-25 14:58:10 -0700138{
Michael Neuling1fc711f2010-05-13 19:40:11 +0000139 local_irq_disable();
Phileas Fogg8520e442013-02-23 00:32:19 +0100140 hard_irq_disable();
141
Michael Neuling1fc711f2010-05-13 19:40:11 +0000142 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.Prasad5aae8a52010-06-15 11:35:19 +0530147 hw_breakpoint_disable();
Michael Neuling1fc711f2010-05-13 19:40:11 +0000148 /*
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 Ellermanc5e24352005-11-12 00:06:05 +1100152 if (ppc_md.kexec_cpu_down)
153 ppc_md.kexec_cpu_down(0, 1);
R Sharadafce0d572005-06-25 14:58:10 -0700154
R Sharadafce0d572005-06-25 14:58:10 -0700155 kexec_smp_wait();
156 /* NOTREACHED */
157}
158
Michael Neuling1fc711f2010-05-13 19:40:11 +0000159static void kexec_prepare_cpus_wait(int wait_state)
R Sharadafce0d572005-06-25 14:58:10 -0700160{
161 int my_cpu, i, notified=-1;
162
K.Prasad5aae8a52010-06-15 11:35:19 +0530163 hw_breakpoint_disable();
R Sharadafce0d572005-06-25 14:58:10 -0700164 my_cpu = get_cpu();
Matt Evanse2f7f732010-07-29 18:47:17 +0000165 /* 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
Nicholas Piggind2e60072018-02-14 01:08:12 +1000171 * stuff, the secondary will start up (paca_ptrs[]->cpu_start was
172 * written) and get into a peculiar state.
173 * If the platform supports smp_ops->take_timebase(), the secondary CPU
174 * will probably be spinning in there. If not (i.e. pseries), the
175 * secondary will continue on and try to online itself/idle/etc. If it
176 * survives that, we need to find these
177 * possible-but-not-online-but-should-be CPUs and chaperone them into
178 * kexec_smp_wait().
Matt Evanse2f7f732010-07-29 18:47:17 +0000179 */
Matt Evansb636f132010-06-07 21:38:18 +0000180 for_each_online_cpu(i) {
R Sharadafce0d572005-06-25 14:58:10 -0700181 if (i == my_cpu)
182 continue;
183
Nicholas Piggind2e60072018-02-14 01:08:12 +1000184 while (paca_ptrs[i]->kexec_state < wait_state) {
Anton Blanchardb3ca8092005-09-27 21:45:38 -0700185 barrier();
R Sharadafce0d572005-06-25 14:58:10 -0700186 if (i != notified) {
Matt Evanse2f7f732010-07-29 18:47:17 +0000187 printk(KERN_INFO "kexec: waiting for cpu %d "
188 "(physical %d) to enter %i state\n",
Nicholas Piggind2e60072018-02-14 01:08:12 +1000189 i, paca_ptrs[i]->hw_cpu_id, wait_state);
R Sharadafce0d572005-06-25 14:58:10 -0700190 notified = i;
191 }
192 }
193 }
Michael Neuling1fc711f2010-05-13 19:40:11 +0000194 mb();
195}
196
Matt Evanse8e5c212010-07-29 18:49:08 +0000197/*
198 * We need to make sure each present CPU is online. The next kernel will scan
199 * the device tree and assume primary threads are online and query secondary
200 * threads via RTAS to online them if required. If we don't online primary
201 * threads, they will be stuck. However, we also online secondary threads as we
202 * may be using 'cede offline'. In this case RTAS doesn't see the secondary
203 * threads as offline -- and again, these CPUs will be stuck.
204 *
205 * So, we online all CPUs that should be running, including secondary threads.
206 */
207static void wake_offline_cpus(void)
208{
209 int cpu = 0;
210
211 for_each_present_cpu(cpu) {
212 if (!cpu_online(cpu)) {
213 printk(KERN_INFO "kexec: Waking offline cpu %d.\n",
214 cpu);
Srivatsa S. Bhat011e4b02014-05-27 16:25:34 +0530215 WARN_ON(cpu_up(cpu));
Matt Evanse8e5c212010-07-29 18:49:08 +0000216 }
217 }
218}
219
Michael Neuling1fc711f2010-05-13 19:40:11 +0000220static void kexec_prepare_cpus(void)
221{
Matt Evanse8e5c212010-07-29 18:49:08 +0000222 wake_offline_cpus();
Michael Neuling1fc711f2010-05-13 19:40:11 +0000223 smp_call_function(kexec_smp_down, NULL, /* wait */0);
224 local_irq_disable();
Phileas Fogg8520e442013-02-23 00:32:19 +0100225 hard_irq_disable();
226
Michael Neuling1fc711f2010-05-13 19:40:11 +0000227 mb(); /* make sure IRQs are disabled before we say they are */
228 get_paca()->kexec_state = KEXEC_STATE_IRQS_OFF;
229
230 kexec_prepare_cpus_wait(KEXEC_STATE_IRQS_OFF);
231 /* we are sure every CPU has IRQs off at this point */
232 kexec_all_irq_disabled = 1;
R Sharadafce0d572005-06-25 14:58:10 -0700233
Matt Evanse2f7f732010-07-29 18:47:17 +0000234 /*
235 * Before removing MMU mappings make sure all CPUs have entered real
236 * mode:
237 */
Michael Neuling1fc711f2010-05-13 19:40:11 +0000238 kexec_prepare_cpus_wait(KEXEC_STATE_REAL_MODE);
R Sharadafce0d572005-06-25 14:58:10 -0700239
Cédric Le Goaterd2b04b02018-05-08 09:05:14 +0200240 /* after we tell the others to go down */
241 if (ppc_md.kexec_cpu_down)
242 ppc_md.kexec_cpu_down(0, 0);
243
Michael Neuling1fc711f2010-05-13 19:40:11 +0000244 put_cpu();
R Sharadafce0d572005-06-25 14:58:10 -0700245}
246
247#else /* ! SMP */
248
249static void kexec_prepare_cpus(void)
250{
251 /*
252 * move the secondarys to us so that we can copy
253 * the new kernel 0-0x100 safely
254 *
255 * do this if kexec in setup.c ?
Olof Johansson75eedfe2005-08-04 12:53:29 -0700256 *
257 * We need to release the cpus if we are ever going from an
258 * UP to an SMP kernel.
R Sharadafce0d572005-06-25 14:58:10 -0700259 */
Olof Johansson75eedfe2005-08-04 12:53:29 -0700260 smp_release_cpus();
Michael Ellermanc5e24352005-11-12 00:06:05 +1100261 if (ppc_md.kexec_cpu_down)
262 ppc_md.kexec_cpu_down(0, 0);
R Sharadafce0d572005-06-25 14:58:10 -0700263 local_irq_disable();
Phileas Fogg8520e442013-02-23 00:32:19 +0100264 hard_irq_disable();
R Sharadafce0d572005-06-25 14:58:10 -0700265}
266
267#endif /* SMP */
268
269/*
270 * kexec thread structure and stack.
271 *
272 * We need to make sure that this is 16384-byte aligned due to the
273 * way process stacks are handled. It also must be statically allocated
274 * or allocated as part of the kimage, because everything else may be
275 * overwritten when we copy the kexec image. We piggyback on the
276 * "init_task" linker section here to statically allocate a stack.
277 *
278 * We could use a smaller stack if we don't care about anything using
279 * current, but that audit has not been performed.
280 */
Joe Perchesd200c922009-09-20 18:14:13 -0400281static union thread_union kexec_stack __init_task_data =
282 { };
R Sharadafce0d572005-06-25 14:58:10 -0700283
Matt Evansfc53b422010-07-07 21:55:37 +0000284/*
285 * For similar reasons to the stack above, the kexecing CPU needs to be on a
286 * static PACA; we switch to kexec_paca.
287 */
288struct paca_struct kexec_paca;
289
Geert Uytterhoeven07fb41a72013-10-14 09:40:16 +0200290/* Our assembly helper, in misc_64.S */
Joe Perches9402c952012-01-12 17:17:17 -0800291extern void kexec_sequence(void *newstack, unsigned long start,
292 void *image, void *control,
Benjamin Herrenschmidtb970b412016-08-19 14:22:38 +0530293 void (*clear_all)(void),
294 bool copy_with_mmu_off) __noreturn;
R Sharadafce0d572005-06-25 14:58:10 -0700295
296/* too late to fail here */
Michael Ellerman3d1229d2005-11-14 23:35:00 +1100297void default_machine_kexec(struct kimage *image)
R Sharadafce0d572005-06-25 14:58:10 -0700298{
Benjamin Herrenschmidtb970b412016-08-19 14:22:38 +0530299 bool copy_with_mmu_off;
300
R Sharadafce0d572005-06-25 14:58:10 -0700301 /* prepare control code if any */
302
Michael Ellermancc532912005-12-04 18:39:43 +1100303 /*
304 * If the kexec boot is the normal one, need to shutdown other cpus
305 * into our wait loop and quiesce interrupts.
306 * Otherwise, in the case of crashed mode (crashing_cpu >= 0),
307 * stopping other CPUs and collecting their pt_regs is done before
308 * using debugger IPI.
309 */
310
Hari Bathinic1caae32014-12-18 23:36:55 +0530311 if (!kdump_in_progress())
Mohan Kumar M54622f12008-10-21 17:38:10 +0000312 kexec_prepare_cpus();
R Sharadafce0d572005-06-25 14:58:10 -0700313
Thiago Jung Bauermann0d976312016-11-29 23:45:52 +1100314 printk("kexec: Starting switchover sequence.\n");
Matt Evanse2f7f732010-07-29 18:47:17 +0000315
R Sharadafce0d572005-06-25 14:58:10 -0700316 /* switch to a staticly allocated stack. Based on irq stack code.
Anton Blanchard79c66ce2013-05-12 15:04:53 +0000317 * We setup preempt_count to avoid using VMX in memcpy.
R Sharadafce0d572005-06-25 14:58:10 -0700318 * XXX: the task struct will likely be invalid once we do the copy!
319 */
Christophe Leroyed1cd6d2019-01-31 10:08:58 +0000320 current_thread_info()->flags = 0;
321 current_thread_info()->preempt_count = HARDIRQ_OFFSET;
R Sharadafce0d572005-06-25 14:58:10 -0700322
Matt Evansfc53b422010-07-07 21:55:37 +0000323 /* We need a static PACA, too; copy this CPU's PACA over and switch to
Nicholas Piggin499dcd42018-02-14 01:08:13 +1000324 * it. Also poison per_cpu_offset and NULL lppaca to catch anyone using
325 * non-static data.
Matt Evansfc53b422010-07-07 21:55:37 +0000326 */
327 memcpy(&kexec_paca, get_paca(), sizeof(struct paca_struct));
328 kexec_paca.data_offset = 0xedeaddeadeeeeeeeUL;
Nicholas Piggin499dcd42018-02-14 01:08:13 +1000329#ifdef CONFIG_PPC_PSERIES
330 kexec_paca.lppaca_ptr = NULL;
331#endif
Nicholas Piggind2e60072018-02-14 01:08:12 +1000332 paca_ptrs[kexec_paca.paca_index] = &kexec_paca;
Nicholas Piggin499dcd42018-02-14 01:08:13 +1000333
Matt Evansfc53b422010-07-07 21:55:37 +0000334 setup_paca(&kexec_paca);
335
Nicholas Piggin499dcd42018-02-14 01:08:13 +1000336 /*
337 * The lppaca should be unregistered at this point so the HV won't
338 * touch it. In the case of a crash, none of the lppacas are
339 * unregistered so there is not much we can do about it here.
Matt Evansfc53b422010-07-07 21:55:37 +0000340 */
Nicholas Piggin499dcd42018-02-14 01:08:13 +1000341
Benjamin Herrenschmidtb970b412016-08-19 14:22:38 +0530342 /*
343 * On Book3S, the copy must happen with the MMU off if we are either
344 * using Radix page tables or we are not in an LPAR since we can
345 * overwrite the page tables while copying.
346 *
347 * In an LPAR, we keep the MMU on otherwise we can't access beyond
348 * the RMA. On BookE there is no real MMU off mode, so we have to
349 * keep it enabled as well (but then we have bolted TLB entries).
350 */
351#ifdef CONFIG_PPC_BOOK3E
352 copy_with_mmu_off = false;
353#else
354 copy_with_mmu_off = radix_enabled() ||
355 !(firmware_has_feature(FW_FEATURE_LPAR) ||
356 firmware_has_feature(FW_FEATURE_PS3_LV1));
357#endif
Matt Evansfc53b422010-07-07 21:55:37 +0000358
R Sharadafce0d572005-06-25 14:58:10 -0700359 /* Some things are best done in assembly. Finding globals with
360 * a toc is easier in C, so pass in what we can.
361 */
362 kexec_sequence(&kexec_stack, image->start, image,
Benjamin Herrenschmidtfe036a02016-08-19 14:22:37 +0530363 page_address(image->control_code_page),
Benjamin Herrenschmidtb970b412016-08-19 14:22:38 +0530364 mmu_cleanup_all, copy_with_mmu_off);
R Sharadafce0d572005-06-25 14:58:10 -0700365 /* NOTREACHED */
366}
Michael Ellerman593e5372005-11-12 00:06:06 +1100367
Michael Ellerman4e003742017-10-19 15:08:43 +1100368#ifdef CONFIG_PPC_BOOK3S_64
Michael Ellerman593e5372005-11-12 00:06:06 +1100369/* Values we need to export to the second kernel via the device tree. */
Dale Farnsworth2e8e4f52008-12-16 06:22:59 +0000370static unsigned long htab_base;
Anton Blanchardea961a82014-01-22 08:40:28 +1100371static unsigned long htab_size;
Michael Ellerman593e5372005-11-12 00:06:06 +1100372
373static struct property htab_base_prop = {
374 .name = "linux,htab-base",
375 .length = sizeof(unsigned long),
Stephen Rothwell1a381472007-04-03 10:58:52 +1000376 .value = &htab_base,
Michael Ellerman593e5372005-11-12 00:06:06 +1100377};
378
379static struct property htab_size_prop = {
380 .name = "linux,htab-size",
381 .length = sizeof(unsigned long),
Anton Blanchardea961a82014-01-22 08:40:28 +1100382 .value = &htab_size,
Michael Ellerman593e5372005-11-12 00:06:06 +1100383};
384
Dale Farnsworth6f29c322008-12-17 10:09:06 +0000385static int __init export_htab_values(void)
Michael Ellerman593e5372005-11-12 00:06:06 +1100386{
387 struct device_node *node;
388
Dale Farnsworth2e8e4f52008-12-16 06:22:59 +0000389 /* On machines with no htab htab_address is NULL */
390 if (!htab_address)
Dale Farnsworth6f29c322008-12-17 10:09:06 +0000391 return -ENODEV;
Dale Farnsworth2e8e4f52008-12-16 06:22:59 +0000392
Michael Ellerman593e5372005-11-12 00:06:06 +1100393 node = of_find_node_by_path("/chosen");
394 if (!node)
Dale Farnsworth6f29c322008-12-17 10:09:06 +0000395 return -ENODEV;
Michael Ellerman593e5372005-11-12 00:06:06 +1100396
Milton Millered7b2142008-10-20 15:37:03 +0000397 /* remove any stale propertys so ours can be found */
Suraj Jitindar Singh925e2d12016-04-28 15:34:55 +1000398 of_remove_property(node, of_find_property(node, htab_base_prop.name, NULL));
399 of_remove_property(node, of_find_property(node, htab_size_prop.name, NULL));
Milton Millered7b2142008-10-20 15:37:03 +0000400
Anton Blanchardea961a82014-01-22 08:40:28 +1100401 htab_base = cpu_to_be64(__pa(htab_address));
Nathan Fontenot79d1c712012-10-02 16:58:46 +0000402 of_add_property(node, &htab_base_prop);
Anton Blanchardea961a82014-01-22 08:40:28 +1100403 htab_size = cpu_to_be64(htab_size_bytes);
Nathan Fontenot79d1c712012-10-02 16:58:46 +0000404 of_add_property(node, &htab_size_prop);
Michael Ellerman593e5372005-11-12 00:06:06 +1100405
Michael Ellerman593e5372005-11-12 00:06:06 +1100406 of_node_put(node);
Michael Ellermanaa98c502006-06-23 18:17:32 +1000407 return 0;
Michael Ellerman35dd5432006-05-18 11:16:11 +1000408}
Dale Farnsworth6f29c322008-12-17 10:09:06 +0000409late_initcall(export_htab_values);
Michael Ellerman4e003742017-10-19 15:08:43 +1100410#endif /* CONFIG_PPC_BOOK3S_64 */