1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * kexec for arm64
4 *
5 * Copyright (C) Linaro.
6 * Copyright (C) Huawei Futurewei Technologies.
7 */
8
9 #include <linux/interrupt.h>
10 #include <linux/irq.h>
11 #include <linux/kernel.h>
12 #include <linux/kexec.h>
13 #include <linux/page-flags.h>
14 #include <linux/smp.h>
15
16 #include <asm/cacheflush.h>
17 #include <asm/cpu_ops.h>
18 #include <asm/daifflags.h>
19 #include <asm/memory.h>
20 #include <asm/mmu.h>
21 #include <asm/mmu_context.h>
22 #include <asm/page.h>
23
24 #include "cpu-reset.h"
25
26 /* Global variables for the arm64_relocate_new_kernel routine. */
27 extern const unsigned char arm64_relocate_new_kernel[];
28 extern const unsigned long arm64_relocate_new_kernel_size;
29
30 /**
31 * kexec_image_info - For debugging output.
32 */
33 #define kexec_image_info(_i) _kexec_image_info(__func__, __LINE__, _i)
_kexec_image_info(const char * func,int line,const struct kimage * kimage)34 static void _kexec_image_info(const char *func, int line,
35 const struct kimage *kimage)
36 {
37 unsigned long i;
38
39 pr_debug("%s:%d:\n", func, line);
40 pr_debug(" kexec kimage info:\n");
41 pr_debug(" type: %d\n", kimage->type);
42 pr_debug(" start: %lx\n", kimage->start);
43 pr_debug(" head: %lx\n", kimage->head);
44 pr_debug(" nr_segments: %lu\n", kimage->nr_segments);
45 pr_debug(" kern_reloc: %pa\n", &kimage->arch.kern_reloc);
46
47 for (i = 0; i < kimage->nr_segments; i++) {
48 pr_debug(" segment[%lu]: %016lx - %016lx, 0x%lx bytes, %lu pages\n",
49 i,
50 kimage->segment[i].mem,
51 kimage->segment[i].mem + kimage->segment[i].memsz,
52 kimage->segment[i].memsz,
53 kimage->segment[i].memsz / PAGE_SIZE);
54 }
55 }
56
machine_kexec_cleanup(struct kimage * kimage)57 void machine_kexec_cleanup(struct kimage *kimage)
58 {
59 /* Empty routine needed to avoid build errors. */
60 }
61
machine_kexec_post_load(struct kimage * kimage)62 int machine_kexec_post_load(struct kimage *kimage)
63 {
64 void *reloc_code = page_to_virt(kimage->control_code_page);
65
66 memcpy(reloc_code, arm64_relocate_new_kernel,
67 arm64_relocate_new_kernel_size);
68 kimage->arch.kern_reloc = __pa(reloc_code);
69
70 /*
71 * For execution with the MMU off, reloc_code needs to be cleaned to the
72 * PoC and invalidated from the I-cache.
73 */
74 dcache_clean_inval_poc((unsigned long)reloc_code,
75 (unsigned long)reloc_code +
76 arm64_relocate_new_kernel_size);
77 icache_inval_pou((uintptr_t)reloc_code,
78 (uintptr_t)reloc_code +
79 arm64_relocate_new_kernel_size);
80
81 return 0;
82 }
83
84 /**
85 * machine_kexec_prepare - Prepare for a kexec reboot.
86 *
87 * Called from the core kexec code when a kernel image is loaded.
88 * Forbid loading a kexec kernel if we have no way of hotplugging cpus or cpus
89 * are stuck in the kernel. This avoids a panic once we hit machine_kexec().
90 */
machine_kexec_prepare(struct kimage * kimage)91 int machine_kexec_prepare(struct kimage *kimage)
92 {
93 kexec_image_info(kimage);
94
95 if (kimage->type != KEXEC_TYPE_CRASH && cpus_are_stuck_in_kernel()) {
96 pr_err("Can't kexec: CPUs are stuck in the kernel.\n");
97 return -EBUSY;
98 }
99
100 return 0;
101 }
102
103 /**
104 * kexec_list_flush - Helper to flush the kimage list and source pages to PoC.
105 */
kexec_list_flush(struct kimage * kimage)106 static void kexec_list_flush(struct kimage *kimage)
107 {
108 kimage_entry_t *entry;
109
110 for (entry = &kimage->head; ; entry++) {
111 unsigned int flag;
112 unsigned long addr;
113
114 /* flush the list entries. */
115 dcache_clean_inval_poc((unsigned long)entry,
116 (unsigned long)entry +
117 sizeof(kimage_entry_t));
118
119 flag = *entry & IND_FLAGS;
120 if (flag == IND_DONE)
121 break;
122
123 addr = (unsigned long)phys_to_virt(*entry & PAGE_MASK);
124
125 switch (flag) {
126 case IND_INDIRECTION:
127 /* Set entry point just before the new list page. */
128 entry = (kimage_entry_t *)addr - 1;
129 break;
130 case IND_SOURCE:
131 /* flush the source pages. */
132 dcache_clean_inval_poc(addr, addr + PAGE_SIZE);
133 break;
134 case IND_DESTINATION:
135 break;
136 default:
137 BUG();
138 }
139 }
140 }
141
142 /**
143 * kexec_segment_flush - Helper to flush the kimage segments to PoC.
144 */
kexec_segment_flush(const struct kimage * kimage)145 static void kexec_segment_flush(const struct kimage *kimage)
146 {
147 unsigned long i;
148
149 pr_debug("%s:\n", __func__);
150
151 for (i = 0; i < kimage->nr_segments; i++) {
152 pr_debug(" segment[%lu]: %016lx - %016lx, 0x%lx bytes, %lu pages\n",
153 i,
154 kimage->segment[i].mem,
155 kimage->segment[i].mem + kimage->segment[i].memsz,
156 kimage->segment[i].memsz,
157 kimage->segment[i].memsz / PAGE_SIZE);
158
159 dcache_clean_inval_poc(
160 (unsigned long)phys_to_virt(kimage->segment[i].mem),
161 (unsigned long)phys_to_virt(kimage->segment[i].mem) +
162 kimage->segment[i].memsz);
163 }
164 }
165
166 /**
167 * machine_kexec - Do the kexec reboot.
168 *
169 * Called from the core kexec code for a sys_reboot with LINUX_REBOOT_CMD_KEXEC.
170 */
machine_kexec(struct kimage * kimage)171 void machine_kexec(struct kimage *kimage)
172 {
173 bool in_kexec_crash = (kimage == kexec_crash_image);
174 bool stuck_cpus = cpus_are_stuck_in_kernel();
175
176 /*
177 * New cpus may have become stuck_in_kernel after we loaded the image.
178 */
179 BUG_ON(!in_kexec_crash && (stuck_cpus || (num_online_cpus() > 1)));
180 WARN(in_kexec_crash && (stuck_cpus || smp_crash_stop_failed()),
181 "Some CPUs may be stale, kdump will be unreliable.\n");
182
183 kexec_image_info(kimage);
184
185 /* Flush the kimage list and its buffers. */
186 kexec_list_flush(kimage);
187
188 /* Flush the new image if already in place. */
189 if ((kimage != kexec_crash_image) && (kimage->head & IND_DONE))
190 kexec_segment_flush(kimage);
191
192 pr_info("Bye!\n");
193
194 local_daif_mask();
195
196 /*
197 * cpu_soft_restart will shutdown the MMU, disable data caches, then
198 * transfer control to the kern_reloc which contains a copy of
199 * the arm64_relocate_new_kernel routine. arm64_relocate_new_kernel
200 * uses physical addressing to relocate the new image to its final
201 * position and transfers control to the image entry point when the
202 * relocation is complete.
203 * In kexec case, kimage->start points to purgatory assuming that
204 * kernel entry and dtb address are embedded in purgatory by
205 * userspace (kexec-tools).
206 * In kexec_file case, the kernel starts directly without purgatory.
207 */
208 cpu_soft_restart(kimage->arch.kern_reloc, kimage->head, kimage->start,
209 kimage->arch.dtb_mem);
210
211 BUG(); /* Should never get here. */
212 }
213
machine_kexec_mask_interrupts(void)214 static void machine_kexec_mask_interrupts(void)
215 {
216 unsigned int i;
217 struct irq_desc *desc;
218
219 for_each_irq_desc(i, desc) {
220 struct irq_chip *chip;
221 int ret;
222
223 chip = irq_desc_get_chip(desc);
224 if (!chip)
225 continue;
226
227 /*
228 * First try to remove the active state. If this
229 * fails, try to EOI the interrupt.
230 */
231 ret = irq_set_irqchip_state(i, IRQCHIP_STATE_ACTIVE, false);
232
233 if (ret && irqd_irq_inprogress(&desc->irq_data) &&
234 chip->irq_eoi)
235 chip->irq_eoi(&desc->irq_data);
236
237 if (chip->irq_mask)
238 chip->irq_mask(&desc->irq_data);
239
240 if (chip->irq_disable && !irqd_irq_disabled(&desc->irq_data))
241 chip->irq_disable(&desc->irq_data);
242 }
243 }
244
245 /**
246 * machine_crash_shutdown - shutdown non-crashing cpus and save registers
247 */
machine_crash_shutdown(struct pt_regs * regs)248 void machine_crash_shutdown(struct pt_regs *regs)
249 {
250 local_irq_disable();
251
252 /* shutdown non-crashing cpus */
253 crash_smp_send_stop();
254
255 /* for crashing cpu */
256 crash_save_cpu(regs, smp_processor_id());
257 machine_kexec_mask_interrupts();
258
259 pr_info("Starting crashdump kernel...\n");
260 }
261
arch_kexec_protect_crashkres(void)262 void arch_kexec_protect_crashkres(void)
263 {
264 int i;
265
266 kexec_segment_flush(kexec_crash_image);
267
268 for (i = 0; i < kexec_crash_image->nr_segments; i++)
269 set_memory_valid(
270 __phys_to_virt(kexec_crash_image->segment[i].mem),
271 kexec_crash_image->segment[i].memsz >> PAGE_SHIFT, 0);
272 }
273
arch_kexec_unprotect_crashkres(void)274 void arch_kexec_unprotect_crashkres(void)
275 {
276 int i;
277
278 for (i = 0; i < kexec_crash_image->nr_segments; i++)
279 set_memory_valid(
280 __phys_to_virt(kexec_crash_image->segment[i].mem),
281 kexec_crash_image->segment[i].memsz >> PAGE_SHIFT, 1);
282 }
283
284 #ifdef CONFIG_HIBERNATION
285 /*
286 * To preserve the crash dump kernel image, the relevant memory segments
287 * should be mapped again around the hibernation.
288 */
crash_prepare_suspend(void)289 void crash_prepare_suspend(void)
290 {
291 if (kexec_crash_image)
292 arch_kexec_unprotect_crashkres();
293 }
294
crash_post_resume(void)295 void crash_post_resume(void)
296 {
297 if (kexec_crash_image)
298 arch_kexec_protect_crashkres();
299 }
300
301 /*
302 * crash_is_nosave
303 *
304 * Return true only if a page is part of reserved memory for crash dump kernel,
305 * but does not hold any data of loaded kernel image.
306 *
307 * Note that all the pages in crash dump kernel memory have been initially
308 * marked as Reserved as memory was allocated via memblock_reserve().
309 *
310 * In hibernation, the pages which are Reserved and yet "nosave" are excluded
311 * from the hibernation iamge. crash_is_nosave() does thich check for crash
312 * dump kernel and will reduce the total size of hibernation image.
313 */
314
crash_is_nosave(unsigned long pfn)315 bool crash_is_nosave(unsigned long pfn)
316 {
317 int i;
318 phys_addr_t addr;
319
320 if (!crashk_res.end)
321 return false;
322
323 /* in reserved memory? */
324 addr = __pfn_to_phys(pfn);
325 if ((addr < crashk_res.start) || (crashk_res.end < addr))
326 return false;
327
328 if (!kexec_crash_image)
329 return true;
330
331 /* not part of loaded kernel image? */
332 for (i = 0; i < kexec_crash_image->nr_segments; i++)
333 if (addr >= kexec_crash_image->segment[i].mem &&
334 addr < (kexec_crash_image->segment[i].mem +
335 kexec_crash_image->segment[i].memsz))
336 return false;
337
338 return true;
339 }
340
crash_free_reserved_phys_range(unsigned long begin,unsigned long end)341 void crash_free_reserved_phys_range(unsigned long begin, unsigned long end)
342 {
343 unsigned long addr;
344 struct page *page;
345
346 for (addr = begin; addr < end; addr += PAGE_SIZE) {
347 page = phys_to_page(addr);
348 free_reserved_page(page);
349 }
350 }
351 #endif /* CONFIG_HIBERNATION */
352