2 * handle transition of Linux booting another kernel
3 * Copyright (C) 2002-2005 Eric Biederman <ebiederm@xmission.com>
5 * This source code is licensed under the GNU General Public License,
6 * Version 2. See the file COPYING for more details.
10 #include <linux/kexec.h>
11 #include <linux/delay.h>
12 #include <linux/init.h>
13 #include <linux/numa.h>
14 #include <linux/ftrace.h>
15 #include <linux/suspend.h>
16 #include <linux/gfp.h>
19 #include <asm/pgtable.h>
20 #include <asm/pgalloc.h>
21 #include <asm/tlbflush.h>
22 #include <asm/mmu_context.h>
24 #include <asm/cpufeature.h>
26 #include <asm/system.h>
27 #include <asm/cacheflush.h>
28 #include <asm/debugreg.h>
30 static void set_idt(void *newidt
, __u16 limit
)
32 struct desc_ptr curidt
;
34 /* ia32 supports unaliged loads & stores */
36 curidt
.address
= (unsigned long)newidt
;
42 static void set_gdt(void *newgdt
, __u16 limit
)
44 struct desc_ptr curgdt
;
46 /* ia32 supports unaligned loads & stores */
48 curgdt
.address
= (unsigned long)newgdt
;
53 static void load_segments(void)
56 #define STR(X) __STR(X)
58 __asm__
__volatile__ (
59 "\tljmp $"STR(__KERNEL_CS
)",$1f\n"
61 "\tmovl $"STR(__KERNEL_DS
)",%%eax\n"
67 : : : "eax", "memory");
72 static void machine_kexec_free_page_tables(struct kimage
*image
)
74 free_page((unsigned long)image
->arch
.pgd
);
76 free_page((unsigned long)image
->arch
.pmd0
);
77 free_page((unsigned long)image
->arch
.pmd1
);
79 free_page((unsigned long)image
->arch
.pte0
);
80 free_page((unsigned long)image
->arch
.pte1
);
83 static int machine_kexec_alloc_page_tables(struct kimage
*image
)
85 image
->arch
.pgd
= (pgd_t
*)get_zeroed_page(GFP_KERNEL
);
87 image
->arch
.pmd0
= (pmd_t
*)get_zeroed_page(GFP_KERNEL
);
88 image
->arch
.pmd1
= (pmd_t
*)get_zeroed_page(GFP_KERNEL
);
90 image
->arch
.pte0
= (pte_t
*)get_zeroed_page(GFP_KERNEL
);
91 image
->arch
.pte1
= (pte_t
*)get_zeroed_page(GFP_KERNEL
);
92 if (!image
->arch
.pgd
||
94 !image
->arch
.pmd0
|| !image
->arch
.pmd1
||
96 !image
->arch
.pte0
|| !image
->arch
.pte1
) {
97 machine_kexec_free_page_tables(image
);
103 static void machine_kexec_page_table_set_one(
104 pgd_t
*pgd
, pmd_t
*pmd
, pte_t
*pte
,
105 unsigned long vaddr
, unsigned long paddr
)
109 pgd
+= pgd_index(vaddr
);
110 #ifdef CONFIG_X86_PAE
111 if (!(pgd_val(*pgd
) & _PAGE_PRESENT
))
112 set_pgd(pgd
, __pgd(__pa(pmd
) | _PAGE_PRESENT
));
114 pud
= pud_offset(pgd
, vaddr
);
115 pmd
= pmd_offset(pud
, vaddr
);
116 if (!(pmd_val(*pmd
) & _PAGE_PRESENT
))
117 set_pmd(pmd
, __pmd(__pa(pte
) | _PAGE_TABLE
));
118 pte
= pte_offset_kernel(pmd
, vaddr
);
119 set_pte(pte
, pfn_pte(paddr
>> PAGE_SHIFT
, PAGE_KERNEL_EXEC
));
122 static void machine_kexec_prepare_page_tables(struct kimage
*image
)
127 control_page
= page_address(image
->control_code_page
);
128 #ifdef CONFIG_X86_PAE
129 pmd
= image
->arch
.pmd0
;
131 machine_kexec_page_table_set_one(
132 image
->arch
.pgd
, pmd
, image
->arch
.pte0
,
133 (unsigned long)control_page
, __pa(control_page
));
134 #ifdef CONFIG_X86_PAE
135 pmd
= image
->arch
.pmd1
;
137 machine_kexec_page_table_set_one(
138 image
->arch
.pgd
, pmd
, image
->arch
.pte1
,
139 __pa(control_page
), __pa(control_page
));
143 * A architecture hook called to validate the
144 * proposed image and prepare the control pages
145 * as needed. The pages for KEXEC_CONTROL_PAGE_SIZE
146 * have been allocated, but the segments have yet
147 * been copied into the kernel.
149 * Do what every setup is needed on image and the
150 * reboot code buffer to allow us to avoid allocations
153 * - Make control page executable.
154 * - Allocate page tables
155 * - Setup page tables
157 int machine_kexec_prepare(struct kimage
*image
)
161 set_pages_x(image
->control_code_page
, 1);
162 error
= machine_kexec_alloc_page_tables(image
);
165 machine_kexec_prepare_page_tables(image
);
170 * Undo anything leftover by machine_kexec_prepare
171 * when an image is freed.
173 void machine_kexec_cleanup(struct kimage
*image
)
175 set_pages_nx(image
->control_code_page
, 1);
176 machine_kexec_free_page_tables(image
);
180 * Do not allocate memory (or fail in any way) in machine_kexec().
181 * We are past the point of no return, committed to rebooting now.
183 void machine_kexec(struct kimage
*image
)
185 unsigned long page_list
[PAGES_NR
];
187 int save_ftrace_enabled
;
188 asmlinkage
unsigned long
189 (*relocate_kernel_ptr
)(unsigned long indirection_page
,
190 unsigned long control_page
,
191 unsigned long start_address
,
192 unsigned int has_pae
,
193 unsigned int preserve_context
);
195 #ifdef CONFIG_KEXEC_JUMP
196 if (image
->preserve_context
)
197 save_processor_state();
200 save_ftrace_enabled
= __ftrace_enabled_save();
202 /* Interrupts aren't acceptable while we reboot */
204 hw_breakpoint_disable();
206 if (image
->preserve_context
) {
207 #ifdef CONFIG_X86_IO_APIC
209 * We need to put APICs in legacy mode so that we can
210 * get timer interrupts in second kernel. kexec/kdump
211 * paths already have calls to disable_IO_APIC() in
212 * one form or other. kexec jump path also need
219 control_page
= page_address(image
->control_code_page
);
220 memcpy(control_page
, relocate_kernel
, KEXEC_CONTROL_CODE_MAX_SIZE
);
222 relocate_kernel_ptr
= control_page
;
223 page_list
[PA_CONTROL_PAGE
] = __pa(control_page
);
224 page_list
[VA_CONTROL_PAGE
] = (unsigned long)control_page
;
225 page_list
[PA_PGD
] = __pa(image
->arch
.pgd
);
227 if (image
->type
== KEXEC_TYPE_DEFAULT
)
228 page_list
[PA_SWAP_PAGE
] = (page_to_pfn(image
->swap_page
)
232 * The segment registers are funny things, they have both a
233 * visible and an invisible part. Whenever the visible part is
234 * set to a specific selector, the invisible part is loaded
235 * with from a table in memory. At no other time is the
236 * descriptor table in memory accessed.
238 * I take advantage of this here by force loading the
239 * segments, before I zap the gdt with an invalid value.
243 * The gdt & idt are now invalid.
244 * If you want to load them you must set up your own idt & gdt.
246 set_gdt(phys_to_virt(0), 0);
247 set_idt(phys_to_virt(0), 0);
250 image
->start
= relocate_kernel_ptr((unsigned long)image
->head
,
251 (unsigned long)page_list
,
252 image
->start
, cpu_has_pae
,
253 image
->preserve_context
);
255 #ifdef CONFIG_KEXEC_JUMP
256 if (image
->preserve_context
)
257 restore_processor_state();
260 __ftrace_enabled_restore(save_ftrace_enabled
);
263 void arch_crash_save_vmcoreinfo(void)
266 VMCOREINFO_SYMBOL(node_data
);
267 VMCOREINFO_LENGTH(node_data
, MAX_NUMNODES
);
269 #ifdef CONFIG_X86_PAE
270 VMCOREINFO_CONFIG(X86_PAE
);