blob: 223c14f44af7e43f4ca4e48a7c34a685b86cdc89 [file] [log] [blame]
Kuninori Morimoto5933f6d2018-12-28 00:32:24 -08001// SPDX-License-Identifier: GPL-2.0
kogiidena9d441902006-01-16 22:14:10 -08002/*
3 * machine_kexec.c - handle transition of Linux booting another kernel
4 * Copyright (C) 2002-2003 Eric Biederman <ebiederm@xmission.com>
5 *
6 * GameCube/ppc32 port Copyright (C) 2004 Albert Herranz
7 * LANDISK/sh4 supported by kogiidena
kogiidena9d441902006-01-16 22:14:10 -08008 */
kogiidena9d441902006-01-16 22:14:10 -08009#include <linux/mm.h>
10#include <linux/kexec.h>
11#include <linux/delay.h>
12#include <linux/reboot.h>
Paul Mundtc3b4adf2008-08-04 13:42:49 +090013#include <linux/numa.h>
Paul Mundt7e6b6f22009-03-18 19:07:16 +090014#include <linux/ftrace.h>
Magnus Dammb7cf6dd2009-03-18 08:51:29 +000015#include <linux/suspend.h>
Yinghai Lu95f72d12010-07-12 14:36:09 +100016#include <linux/memblock.h>
kogiidena9d441902006-01-16 22:14:10 -080017#include <asm/mmu_context.h>
18#include <asm/io.h>
19#include <asm/cacheflush.h>
Paul Mundt191d0d22010-01-12 14:50:43 +090020#include <asm/sh_bios.h>
Paul Mundtfbb82b02010-01-20 16:42:52 +090021#include <asm/reboot.h>
kogiidena9d441902006-01-16 22:14:10 -080022
Magnus Dammb7cf6dd2009-03-18 08:51:29 +000023typedef void (*relocate_new_kernel_t)(unsigned long indirection_page,
24 unsigned long reboot_code_buffer,
25 unsigned long start_address);
kogiidena9d441902006-01-16 22:14:10 -080026
Tobias Klauser2efe55a2006-06-26 18:57:34 +020027extern const unsigned char relocate_new_kernel[];
28extern const unsigned int relocate_new_kernel_size;
Magnus Dammb7cf6dd2009-03-18 08:51:29 +000029extern void *vbr_base;
kogiidena9d441902006-01-16 22:14:10 -080030
Paul Mundtfbb82b02010-01-20 16:42:52 +090031void native_machine_crash_shutdown(struct pt_regs *regs)
kogiidena9d441902006-01-16 22:14:10 -080032{
Paul Mundtfbb82b02010-01-20 16:42:52 +090033 /* Nothing to do for UP, but definitely broken for SMP.. */
kogiidena9d441902006-01-16 22:14:10 -080034}
35
36/*
37 * Do what every setup is needed on image and the
38 * reboot code buffer to allow us to avoid allocations
39 * later.
40 */
41int machine_kexec_prepare(struct kimage *image)
42{
43 return 0;
44}
45
46void machine_kexec_cleanup(struct kimage *image)
47{
48}
49
50static void kexec_info(struct kimage *image)
51{
52 int i;
53 printk("kexec information\n");
54 for (i = 0; i < image->nr_segments; i++) {
55 printk(" segment[%d]: 0x%08x - 0x%08x (0x%08x)\n",
56 i,
57 (unsigned int)image->segment[i].mem,
Paul Mundt4d5ade52007-04-27 11:25:57 +090058 (unsigned int)image->segment[i].mem +
59 image->segment[i].memsz,
kogiidena9d441902006-01-16 22:14:10 -080060 (unsigned int)image->segment[i].memsz);
Paul Mundt4d5ade52007-04-27 11:25:57 +090061 }
kogiidena9d441902006-01-16 22:14:10 -080062 printk(" start : 0x%08x\n\n", (unsigned int)image->start);
63}
64
kogiidena9d441902006-01-16 22:14:10 -080065/*
66 * Do not allocate memory (or fail in any way) in machine_kexec().
67 * We are past the point of no return, committed to rebooting now.
68 */
Huang Ying3ab83522008-07-25 19:45:07 -070069void machine_kexec(struct kimage *image)
kogiidena9d441902006-01-16 22:14:10 -080070{
kogiidena9d441902006-01-16 22:14:10 -080071 unsigned long page_list;
72 unsigned long reboot_code_buffer;
kogiidena9d441902006-01-16 22:14:10 -080073 relocate_new_kernel_t rnk;
Magnus Damme4e063d2009-03-18 08:49:45 +000074 unsigned long entry;
75 unsigned long *ptr;
Paul Mundt7e6b6f22009-03-18 19:07:16 +090076 int save_ftrace_enabled;
Magnus Damme4e063d2009-03-18 08:49:45 +000077
78 /*
79 * Nicked from the mips version of machine_kexec():
80 * The generic kexec code builds a page list with physical
81 * addresses. Use phys_to_virt() to convert them to virtual.
82 */
83 for (ptr = &image->head; (entry = *ptr) && !(entry & IND_DONE);
84 ptr = (entry & IND_INDIRECTION) ?
85 phys_to_virt(entry & PAGE_MASK) : ptr + 1) {
86 if (*ptr & IND_SOURCE || *ptr & IND_INDIRECTION ||
87 *ptr & IND_DESTINATION)
88 *ptr = (unsigned long) phys_to_virt(*ptr);
89 }
kogiidena9d441902006-01-16 22:14:10 -080090
Magnus Dammb7cf6dd2009-03-18 08:51:29 +000091#ifdef CONFIG_KEXEC_JUMP
92 if (image->preserve_context)
93 save_processor_state();
94#endif
95
Paul Mundt7e6b6f22009-03-18 19:07:16 +090096 save_ftrace_enabled = __ftrace_enabled_save();
97
kogiidena9d441902006-01-16 22:14:10 -080098 /* Interrupts aren't acceptable while we reboot */
99 local_irq_disable();
100
101 page_list = image->head;
102
103 /* we need both effective and real address here */
104 reboot_code_buffer =
105 (unsigned long)page_address(image->control_code_page);
106
107 /* copy our kernel relocation code to the control code page */
108 memcpy((void *)reboot_code_buffer, relocate_new_kernel,
109 relocate_new_kernel_size);
110
Paul Mundta6bab7b2009-03-18 19:06:15 +0900111 kexec_info(image);
kogiidena9d441902006-01-16 22:14:10 -0800112 flush_cache_all();
113
Paul Mundt191d0d22010-01-12 14:50:43 +0900114 sh_bios_vbr_reload();
Paul Mundta6bab7b2009-03-18 19:06:15 +0900115
kogiidena9d441902006-01-16 22:14:10 -0800116 /* now call it */
117 rnk = (relocate_new_kernel_t) reboot_code_buffer;
Magnus Damm615e73b2009-03-19 10:04:29 +0000118 (*rnk)(page_list, reboot_code_buffer,
119 (unsigned long)phys_to_virt(image->start));
Magnus Dammb7cf6dd2009-03-18 08:51:29 +0000120
121#ifdef CONFIG_KEXEC_JUMP
122 asm volatile("ldc %0, vbr" : : "r" (&vbr_base) : "memory");
Paul Mundta6bab7b2009-03-18 19:06:15 +0900123
Magnus Dammb7cf6dd2009-03-18 08:51:29 +0000124 if (image->preserve_context)
125 restore_processor_state();
126
127 /* Convert page list back to physical addresses, what a mess. */
128 for (ptr = &image->head; (entry = *ptr) && !(entry & IND_DONE);
129 ptr = (*ptr & IND_INDIRECTION) ?
130 phys_to_virt(*ptr & PAGE_MASK) : ptr + 1) {
131 if (*ptr & IND_SOURCE || *ptr & IND_INDIRECTION ||
132 *ptr & IND_DESTINATION)
133 *ptr = virt_to_phys(*ptr);
134 }
135#endif
Paul Mundt7e6b6f22009-03-18 19:07:16 +0900136
137 __ftrace_enabled_restore(save_ftrace_enabled);
kogiidena9d441902006-01-16 22:14:10 -0800138}
139
Paul Mundtc3b4adf2008-08-04 13:42:49 +0900140void arch_crash_save_vmcoreinfo(void)
141{
142#ifdef CONFIG_NUMA
143 VMCOREINFO_SYMBOL(node_data);
144 VMCOREINFO_LENGTH(node_data, MAX_NUMNODES);
145#endif
Paul Mundtaa424bb2010-05-07 17:14:00 +0900146#ifdef CONFIG_X2TLB
147 VMCOREINFO_CONFIG(X2TLB);
148#endif
Paul Mundtc3b4adf2008-08-04 13:42:49 +0900149}
Paul Mundta5ec3952010-05-07 14:54:55 +0900150
151void __init reserve_crashkernel(void)
152{
153 unsigned long long crash_size, crash_base;
154 int ret;
155
Yinghai Lu95f72d12010-07-12 14:36:09 +1000156 ret = parse_crashkernel(boot_command_line, memblock_phys_mem_size(),
Paul Mundta5ec3952010-05-07 14:54:55 +0900157 &crash_size, &crash_base);
158 if (ret == 0 && crash_size > 0) {
159 crashk_res.start = crash_base;
160 crashk_res.end = crash_base + crash_size - 1;
161 }
162
163 if (crashk_res.end == crashk_res.start)
164 goto disable;
165
Joe Perches28f65c112011-06-09 09:13:32 -0700166 crash_size = PAGE_ALIGN(resource_size(&crashk_res));
Paul Mundta5ec3952010-05-07 14:54:55 +0900167 if (!crashk_res.start) {
Yinghai Lu95f72d12010-07-12 14:36:09 +1000168 unsigned long max = memblock_end_of_DRAM() - memory_limit;
Mike Rapoport42b46ae2019-03-11 23:29:31 -0700169 crashk_res.start = memblock_phys_alloc_range(crash_size,
170 PAGE_SIZE, 0, max);
Paul Mundta5ec3952010-05-07 14:54:55 +0900171 if (!crashk_res.start) {
172 pr_err("crashkernel allocation failed\n");
173 goto disable;
174 }
175 } else {
Yinghai Lu95f72d12010-07-12 14:36:09 +1000176 ret = memblock_reserve(crashk_res.start, crash_size);
Paul Mundta5ec3952010-05-07 14:54:55 +0900177 if (unlikely(ret < 0)) {
178 pr_err("crashkernel reservation failed - "
179 "memory is in use\n");
180 goto disable;
181 }
182 }
183
Paul Mundt5e2ff322010-05-10 20:17:25 +0900184 crashk_res.end = crashk_res.start + crash_size - 1;
185
186 /*
187 * Crash kernel trumps memory limit
188 */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000189 if ((memblock_end_of_DRAM() - memory_limit) <= crashk_res.end) {
Paul Mundt5e2ff322010-05-10 20:17:25 +0900190 memory_limit = 0;
191 pr_info("Disabled memory limit for crashkernel\n");
192 }
193
194 pr_info("Reserving %ldMB of memory at 0x%08lx "
Paul Mundta5ec3952010-05-07 14:54:55 +0900195 "for crashkernel (System RAM: %ldMB)\n",
196 (unsigned long)(crash_size >> 20),
Paul Mundt5e2ff322010-05-10 20:17:25 +0900197 (unsigned long)(crashk_res.start),
Yinghai Lu95f72d12010-07-12 14:36:09 +1000198 (unsigned long)(memblock_phys_mem_size() >> 20));
Paul Mundta5ec3952010-05-07 14:54:55 +0900199
Paul Mundta5ec3952010-05-07 14:54:55 +0900200 return;
201
202disable:
203 crashk_res.start = crashk_res.end = 0;
204}