blob: 9fea49f6e667c9b4093bfaa6c59f725375b9760d [file] [log] [blame]
kogiidena9d441902006-01-16 22:14:10 -08001/*
2 * machine_kexec.c - handle transition of Linux booting another kernel
3 * Copyright (C) 2002-2003 Eric Biederman <ebiederm@xmission.com>
4 *
5 * GameCube/ppc32 port Copyright (C) 2004 Albert Herranz
6 * LANDISK/sh4 supported by kogiidena
7 *
8 * This source code is licensed under the GNU General Public License,
9 * Version 2. See the file COPYING for more details.
10 */
kogiidena9d441902006-01-16 22:14:10 -080011#include <linux/mm.h>
12#include <linux/kexec.h>
13#include <linux/delay.h>
14#include <linux/reboot.h>
Paul Mundtc3b4adf2008-08-04 13:42:49 +090015#include <linux/numa.h>
Paul Mundt7e6b6f22009-03-18 19:07:16 +090016#include <linux/ftrace.h>
Magnus Dammb7cf6dd2009-03-18 08:51:29 +000017#include <linux/suspend.h>
Yinghai Lu95f72d12010-07-12 14:36:09 +100018#include <linux/memblock.h>
kogiidena9d441902006-01-16 22:14:10 -080019#include <asm/pgtable.h>
20#include <asm/pgalloc.h>
21#include <asm/mmu_context.h>
22#include <asm/io.h>
23#include <asm/cacheflush.h>
Paul Mundt191d0d22010-01-12 14:50:43 +090024#include <asm/sh_bios.h>
Paul Mundtfbb82b02010-01-20 16:42:52 +090025#include <asm/reboot.h>
kogiidena9d441902006-01-16 22:14:10 -080026
Magnus Dammb7cf6dd2009-03-18 08:51:29 +000027typedef void (*relocate_new_kernel_t)(unsigned long indirection_page,
28 unsigned long reboot_code_buffer,
29 unsigned long start_address);
kogiidena9d441902006-01-16 22:14:10 -080030
Tobias Klauser2efe55a2006-06-26 18:57:34 +020031extern const unsigned char relocate_new_kernel[];
32extern const unsigned int relocate_new_kernel_size;
Magnus Dammb7cf6dd2009-03-18 08:51:29 +000033extern void *vbr_base;
kogiidena9d441902006-01-16 22:14:10 -080034
Paul Mundtfbb82b02010-01-20 16:42:52 +090035void native_machine_crash_shutdown(struct pt_regs *regs)
kogiidena9d441902006-01-16 22:14:10 -080036{
Paul Mundtfbb82b02010-01-20 16:42:52 +090037 /* Nothing to do for UP, but definitely broken for SMP.. */
kogiidena9d441902006-01-16 22:14:10 -080038}
39
40/*
41 * Do what every setup is needed on image and the
42 * reboot code buffer to allow us to avoid allocations
43 * later.
44 */
45int machine_kexec_prepare(struct kimage *image)
46{
47 return 0;
48}
49
50void machine_kexec_cleanup(struct kimage *image)
51{
52}
53
54static void kexec_info(struct kimage *image)
55{
56 int i;
57 printk("kexec information\n");
58 for (i = 0; i < image->nr_segments; i++) {
59 printk(" segment[%d]: 0x%08x - 0x%08x (0x%08x)\n",
60 i,
61 (unsigned int)image->segment[i].mem,
Paul Mundt4d5ade52007-04-27 11:25:57 +090062 (unsigned int)image->segment[i].mem +
63 image->segment[i].memsz,
kogiidena9d441902006-01-16 22:14:10 -080064 (unsigned int)image->segment[i].memsz);
Paul Mundt4d5ade52007-04-27 11:25:57 +090065 }
kogiidena9d441902006-01-16 22:14:10 -080066 printk(" start : 0x%08x\n\n", (unsigned int)image->start);
67}
68
kogiidena9d441902006-01-16 22:14:10 -080069/*
70 * Do not allocate memory (or fail in any way) in machine_kexec().
71 * We are past the point of no return, committed to rebooting now.
72 */
Huang Ying3ab83522008-07-25 19:45:07 -070073void machine_kexec(struct kimage *image)
kogiidena9d441902006-01-16 22:14:10 -080074{
kogiidena9d441902006-01-16 22:14:10 -080075 unsigned long page_list;
76 unsigned long reboot_code_buffer;
kogiidena9d441902006-01-16 22:14:10 -080077 relocate_new_kernel_t rnk;
Magnus Damme4e063d2009-03-18 08:49:45 +000078 unsigned long entry;
79 unsigned long *ptr;
Paul Mundt7e6b6f22009-03-18 19:07:16 +090080 int save_ftrace_enabled;
Magnus Damme4e063d2009-03-18 08:49:45 +000081
82 /*
83 * Nicked from the mips version of machine_kexec():
84 * The generic kexec code builds a page list with physical
85 * addresses. Use phys_to_virt() to convert them to virtual.
86 */
87 for (ptr = &image->head; (entry = *ptr) && !(entry & IND_DONE);
88 ptr = (entry & IND_INDIRECTION) ?
89 phys_to_virt(entry & PAGE_MASK) : ptr + 1) {
90 if (*ptr & IND_SOURCE || *ptr & IND_INDIRECTION ||
91 *ptr & IND_DESTINATION)
92 *ptr = (unsigned long) phys_to_virt(*ptr);
93 }
kogiidena9d441902006-01-16 22:14:10 -080094
Magnus Dammb7cf6dd2009-03-18 08:51:29 +000095#ifdef CONFIG_KEXEC_JUMP
96 if (image->preserve_context)
97 save_processor_state();
98#endif
99
Paul Mundt7e6b6f22009-03-18 19:07:16 +0900100 save_ftrace_enabled = __ftrace_enabled_save();
101
kogiidena9d441902006-01-16 22:14:10 -0800102 /* Interrupts aren't acceptable while we reboot */
103 local_irq_disable();
104
105 page_list = image->head;
106
107 /* we need both effective and real address here */
108 reboot_code_buffer =
109 (unsigned long)page_address(image->control_code_page);
110
111 /* copy our kernel relocation code to the control code page */
112 memcpy((void *)reboot_code_buffer, relocate_new_kernel,
113 relocate_new_kernel_size);
114
Paul Mundta6bab7b2009-03-18 19:06:15 +0900115 kexec_info(image);
kogiidena9d441902006-01-16 22:14:10 -0800116 flush_cache_all();
117
Paul Mundt191d0d22010-01-12 14:50:43 +0900118 sh_bios_vbr_reload();
Paul Mundta6bab7b2009-03-18 19:06:15 +0900119
kogiidena9d441902006-01-16 22:14:10 -0800120 /* now call it */
121 rnk = (relocate_new_kernel_t) reboot_code_buffer;
Magnus Damm615e73b2009-03-19 10:04:29 +0000122 (*rnk)(page_list, reboot_code_buffer,
123 (unsigned long)phys_to_virt(image->start));
Magnus Dammb7cf6dd2009-03-18 08:51:29 +0000124
125#ifdef CONFIG_KEXEC_JUMP
126 asm volatile("ldc %0, vbr" : : "r" (&vbr_base) : "memory");
Paul Mundta6bab7b2009-03-18 19:06:15 +0900127
Magnus Dammb7cf6dd2009-03-18 08:51:29 +0000128 if (image->preserve_context)
129 restore_processor_state();
130
131 /* Convert page list back to physical addresses, what a mess. */
132 for (ptr = &image->head; (entry = *ptr) && !(entry & IND_DONE);
133 ptr = (*ptr & IND_INDIRECTION) ?
134 phys_to_virt(*ptr & PAGE_MASK) : ptr + 1) {
135 if (*ptr & IND_SOURCE || *ptr & IND_INDIRECTION ||
136 *ptr & IND_DESTINATION)
137 *ptr = virt_to_phys(*ptr);
138 }
139#endif
Paul Mundt7e6b6f22009-03-18 19:07:16 +0900140
141 __ftrace_enabled_restore(save_ftrace_enabled);
kogiidena9d441902006-01-16 22:14:10 -0800142}
143
Paul Mundtc3b4adf2008-08-04 13:42:49 +0900144void arch_crash_save_vmcoreinfo(void)
145{
146#ifdef CONFIG_NUMA
147 VMCOREINFO_SYMBOL(node_data);
148 VMCOREINFO_LENGTH(node_data, MAX_NUMNODES);
149#endif
Paul Mundtaa424bb2010-05-07 17:14:00 +0900150#ifdef CONFIG_X2TLB
151 VMCOREINFO_CONFIG(X2TLB);
152#endif
Paul Mundtc3b4adf2008-08-04 13:42:49 +0900153}
Paul Mundta5ec3952010-05-07 14:54:55 +0900154
155void __init reserve_crashkernel(void)
156{
157 unsigned long long crash_size, crash_base;
158 int ret;
159
Yinghai Lu95f72d12010-07-12 14:36:09 +1000160 ret = parse_crashkernel(boot_command_line, memblock_phys_mem_size(),
Paul Mundta5ec3952010-05-07 14:54:55 +0900161 &crash_size, &crash_base);
162 if (ret == 0 && crash_size > 0) {
163 crashk_res.start = crash_base;
164 crashk_res.end = crash_base + crash_size - 1;
165 }
166
167 if (crashk_res.end == crashk_res.start)
168 goto disable;
169
Joe Perches28f65c112011-06-09 09:13:32 -0700170 crash_size = PAGE_ALIGN(resource_size(&crashk_res));
Paul Mundta5ec3952010-05-07 14:54:55 +0900171 if (!crashk_res.start) {
Yinghai Lu95f72d12010-07-12 14:36:09 +1000172 unsigned long max = memblock_end_of_DRAM() - memory_limit;
173 crashk_res.start = __memblock_alloc_base(crash_size, PAGE_SIZE, max);
Paul Mundta5ec3952010-05-07 14:54:55 +0900174 if (!crashk_res.start) {
175 pr_err("crashkernel allocation failed\n");
176 goto disable;
177 }
178 } else {
Yinghai Lu95f72d12010-07-12 14:36:09 +1000179 ret = memblock_reserve(crashk_res.start, crash_size);
Paul Mundta5ec3952010-05-07 14:54:55 +0900180 if (unlikely(ret < 0)) {
181 pr_err("crashkernel reservation failed - "
182 "memory is in use\n");
183 goto disable;
184 }
185 }
186
Paul Mundt5e2ff322010-05-10 20:17:25 +0900187 crashk_res.end = crashk_res.start + crash_size - 1;
188
189 /*
190 * Crash kernel trumps memory limit
191 */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000192 if ((memblock_end_of_DRAM() - memory_limit) <= crashk_res.end) {
Paul Mundt5e2ff322010-05-10 20:17:25 +0900193 memory_limit = 0;
194 pr_info("Disabled memory limit for crashkernel\n");
195 }
196
197 pr_info("Reserving %ldMB of memory at 0x%08lx "
Paul Mundta5ec3952010-05-07 14:54:55 +0900198 "for crashkernel (System RAM: %ldMB)\n",
199 (unsigned long)(crash_size >> 20),
Paul Mundt5e2ff322010-05-10 20:17:25 +0900200 (unsigned long)(crashk_res.start),
Yinghai Lu95f72d12010-07-12 14:36:09 +1000201 (unsigned long)(memblock_phys_mem_size() >> 20));
Paul Mundta5ec3952010-05-07 14:54:55 +0900202
Paul Mundta5ec3952010-05-07 14:54:55 +0900203 return;
204
205disable:
206 crashk_res.start = crashk_res.end = 0;
207}