1 // SPDX-License-Identifier: GPL-2.0-only
3 * PPC64 code to handle Linux booting another kernel.
5 * Copyright (C) 2004-2005, IBM Corp.
7 * Created by: Milton D Miller II
11 #include <linux/kexec.h>
12 #include <linux/smp.h>
13 #include <linux/thread_info.h>
14 #include <linux/init_task.h>
15 #include <linux/errno.h>
16 #include <linux/kernel.h>
17 #include <linux/cpu.h>
18 #include <linux/hardirq.h>
21 #include <asm/current.h>
22 #include <asm/machdep.h>
23 #include <asm/cacheflush.h>
24 #include <asm/firmware.h>
27 #include <asm/sections.h> /* _end */
30 #include <asm/hw_breakpoint.h>
31 #include <asm/asm-prototypes.h>
33 #include <asm/ultravisor.h>
35 int default_machine_kexec_prepare(struct kimage
*image
)
38 unsigned long begin
, end
; /* limits of segment */
39 unsigned long low
, high
; /* limits of blocked memory range */
40 struct device_node
*node
;
41 const unsigned long *basep
;
42 const unsigned int *sizep
;
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.
49 for (i
= 0; i
< image
->nr_segments
; i
++)
50 if (image
->segment
[i
].mem
< __pa(_end
))
53 /* We also should not overwrite the tce tables */
54 for_each_node_by_type(node
, "pci") {
55 basep
= of_get_property(node
, "linux,tce-base", NULL
);
56 sizep
= of_get_property(node
, "linux,tce-size", NULL
);
57 if (basep
== NULL
|| sizep
== NULL
)
61 high
= low
+ (*sizep
);
63 for (i
= 0; i
< image
->nr_segments
; i
++) {
64 begin
= image
->segment
[i
].mem
;
65 end
= begin
+ image
->segment
[i
].memsz
;
67 if ((begin
< high
) && (end
> low
))
75 static void copy_segments(unsigned long ind
)
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.
91 for (entry
= ind
; !(entry
& IND_DONE
); entry
= *ptr
++) {
92 addr
= __va(entry
& PAGE_MASK
);
94 switch (entry
& IND_FLAGS
) {
102 copy_page(dest
, addr
);
108 void kexec_copy_flush(struct kimage
*image
)
110 long i
, nr_segments
= image
->nr_segments
;
111 struct kexec_segment ranges
[KEXEC_SEGMENT_MAX
];
113 /* save the ranges on the stack to efficiently flush the icache */
114 memcpy(ranges
, image
->segment
, sizeof(ranges
));
117 * After this call we may not use anything allocated in dynamic
118 * memory, including *image.
120 * Only globals and the stack are allowed.
122 copy_segments(image
->head
);
125 * we need to clear the icache for all dest pages sometime,
126 * including ones that were in place on the original copy
128 for (i
= 0; i
< nr_segments
; i
++)
129 flush_icache_range((unsigned long)__va(ranges
[i
].mem
),
130 (unsigned long)__va(ranges
[i
].mem
+ ranges
[i
].memsz
));
135 static int kexec_all_irq_disabled
= 0;
137 static void kexec_smp_down(void *arg
)
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)
146 mb(); /* make sure all irqs are disabled before this */
147 hw_breakpoint_disable();
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.
152 if (ppc_md
.kexec_cpu_down
)
153 ppc_md
.kexec_cpu_down(0, 1);
161 static void kexec_prepare_cpus_wait(int wait_state
)
163 int my_cpu
, i
, notified
=-1;
165 hw_breakpoint_disable();
167 /* Make sure each CPU has at least made it to the state we need.
169 * FIXME: There is a (slim) chance of a problem if not all of the CPUs
170 * are correctly onlined. If somehow we start a CPU on boot with RTAS
171 * start-cpu, but somehow that CPU doesn't write callin_cpu_map[] in
172 * time, the boot CPU will timeout. If it does eventually execute
173 * stuff, the secondary will start up (paca_ptrs[]->cpu_start was
174 * written) and get into a peculiar state.
175 * If the platform supports smp_ops->take_timebase(), the secondary CPU
176 * will probably be spinning in there. If not (i.e. pseries), the
177 * secondary will continue on and try to online itself/idle/etc. If it
178 * survives that, we need to find these
179 * possible-but-not-online-but-should-be CPUs and chaperone them into
182 for_each_online_cpu(i
) {
186 while (paca_ptrs
[i
]->kexec_state
< wait_state
) {
189 printk(KERN_INFO
"kexec: waiting for cpu %d "
190 "(physical %d) to enter %i state\n",
191 i
, paca_ptrs
[i
]->hw_cpu_id
, wait_state
);
200 * We need to make sure each present CPU is online. The next kernel will scan
201 * the device tree and assume primary threads are online and query secondary
202 * threads via RTAS to online them if required. If we don't online primary
203 * threads, they will be stuck. However, we also online secondary threads as we
204 * may be using 'cede offline'. In this case RTAS doesn't see the secondary
205 * threads as offline -- and again, these CPUs will be stuck.
207 * So, we online all CPUs that should be running, including secondary threads.
209 static void wake_offline_cpus(void)
213 for_each_present_cpu(cpu
) {
214 if (!cpu_online(cpu
)) {
215 printk(KERN_INFO
"kexec: Waking offline cpu %d.\n",
217 WARN_ON(add_cpu(cpu
));
222 static void kexec_prepare_cpus(void)
225 smp_call_function(kexec_smp_down
, NULL
, /* wait */0);
229 mb(); /* make sure IRQs are disabled before we say they are */
230 get_paca()->kexec_state
= KEXEC_STATE_IRQS_OFF
;
232 kexec_prepare_cpus_wait(KEXEC_STATE_IRQS_OFF
);
233 /* we are sure every CPU has IRQs off at this point */
234 kexec_all_irq_disabled
= 1;
237 * Before removing MMU mappings make sure all CPUs have entered real
240 kexec_prepare_cpus_wait(KEXEC_STATE_REAL_MODE
);
242 /* after we tell the others to go down */
243 if (ppc_md
.kexec_cpu_down
)
244 ppc_md
.kexec_cpu_down(0, 0);
251 static void kexec_prepare_cpus(void)
254 * move the secondarys to us so that we can copy
255 * the new kernel 0-0x100 safely
257 * do this if kexec in setup.c ?
259 * We need to release the cpus if we are ever going from an
260 * UP to an SMP kernel.
263 if (ppc_md
.kexec_cpu_down
)
264 ppc_md
.kexec_cpu_down(0, 0);
272 * kexec thread structure and stack.
274 * We need to make sure that this is 16384-byte aligned due to the
275 * way process stacks are handled. It also must be statically allocated
276 * or allocated as part of the kimage, because everything else may be
277 * overwritten when we copy the kexec image. We piggyback on the
278 * "init_task" linker section here to statically allocate a stack.
280 * We could use a smaller stack if we don't care about anything using
281 * current, but that audit has not been performed.
283 static union thread_union kexec_stack __init_task_data
=
287 * For similar reasons to the stack above, the kexecing CPU needs to be on a
288 * static PACA; we switch to kexec_paca.
290 struct paca_struct kexec_paca
;
292 /* Our assembly helper, in misc_64.S */
293 extern void kexec_sequence(void *newstack
, unsigned long start
,
294 void *image
, void *control
,
295 void (*clear_all
)(void),
296 bool copy_with_mmu_off
) __noreturn
;
298 /* too late to fail here */
299 void default_machine_kexec(struct kimage
*image
)
301 bool copy_with_mmu_off
;
303 /* prepare control code if any */
306 * If the kexec boot is the normal one, need to shutdown other cpus
307 * into our wait loop and quiesce interrupts.
308 * Otherwise, in the case of crashed mode (crashing_cpu >= 0),
309 * stopping other CPUs and collecting their pt_regs is done before
310 * using debugger IPI.
313 if (!kdump_in_progress())
314 kexec_prepare_cpus();
316 printk("kexec: Starting switchover sequence.\n");
318 /* switch to a staticly allocated stack. Based on irq stack code.
319 * We setup preempt_count to avoid using VMX in memcpy.
320 * XXX: the task struct will likely be invalid once we do the copy!
322 current_thread_info()->flags
= 0;
323 current_thread_info()->preempt_count
= HARDIRQ_OFFSET
;
325 /* We need a static PACA, too; copy this CPU's PACA over and switch to
326 * it. Also poison per_cpu_offset and NULL lppaca to catch anyone using
329 memcpy(&kexec_paca
, get_paca(), sizeof(struct paca_struct
));
330 kexec_paca
.data_offset
= 0xedeaddeadeeeeeeeUL
;
331 #ifdef CONFIG_PPC_PSERIES
332 kexec_paca
.lppaca_ptr
= NULL
;
335 if (is_secure_guest() && !(image
->preserve_context
||
336 image
->type
== KEXEC_TYPE_CRASH
)) {
337 uv_unshare_all_pages();
338 printk("kexec: Unshared all shared pages.\n");
341 paca_ptrs
[kexec_paca
.paca_index
] = &kexec_paca
;
343 setup_paca(&kexec_paca
);
346 * The lppaca should be unregistered at this point so the HV won't
347 * touch it. In the case of a crash, none of the lppacas are
348 * unregistered so there is not much we can do about it here.
352 * On Book3S, the copy must happen with the MMU off if we are either
353 * using Radix page tables or we are not in an LPAR since we can
354 * overwrite the page tables while copying.
356 * In an LPAR, we keep the MMU on otherwise we can't access beyond
357 * the RMA. On BookE there is no real MMU off mode, so we have to
358 * keep it enabled as well (but then we have bolted TLB entries).
360 #ifdef CONFIG_PPC_BOOK3E
361 copy_with_mmu_off
= false;
363 copy_with_mmu_off
= radix_enabled() ||
364 !(firmware_has_feature(FW_FEATURE_LPAR
) ||
365 firmware_has_feature(FW_FEATURE_PS3_LV1
));
368 /* Some things are best done in assembly. Finding globals with
369 * a toc is easier in C, so pass in what we can.
371 kexec_sequence(&kexec_stack
, image
->start
, image
,
372 page_address(image
->control_code_page
),
373 mmu_cleanup_all
, copy_with_mmu_off
);
377 #ifdef CONFIG_PPC_BOOK3S_64
378 /* Values we need to export to the second kernel via the device tree. */
379 static unsigned long htab_base
;
380 static unsigned long htab_size
;
382 static struct property htab_base_prop
= {
383 .name
= "linux,htab-base",
384 .length
= sizeof(unsigned long),
388 static struct property htab_size_prop
= {
389 .name
= "linux,htab-size",
390 .length
= sizeof(unsigned long),
394 static int __init
export_htab_values(void)
396 struct device_node
*node
;
398 /* On machines with no htab htab_address is NULL */
402 node
= of_find_node_by_path("/chosen");
406 /* remove any stale propertys so ours can be found */
407 of_remove_property(node
, of_find_property(node
, htab_base_prop
.name
, NULL
));
408 of_remove_property(node
, of_find_property(node
, htab_size_prop
.name
, NULL
));
410 htab_base
= cpu_to_be64(__pa(htab_address
));
411 of_add_property(node
, &htab_base_prop
);
412 htab_size
= cpu_to_be64(htab_size_bytes
);
413 of_add_property(node
, &htab_size_prop
);
418 late_initcall(export_htab_values
);
419 #endif /* CONFIG_PPC_BOOK3S_64 */