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/numa.h>
13 #include <linux/ftrace.h>
14 #include <linux/suspend.h>
15 #include <linux/gfp.h>
18 #include <asm/pgtable.h>
19 #include <asm/pgalloc.h>
20 #include <asm/tlbflush.h>
21 #include <asm/mmu_context.h>
23 #include <asm/io_apic.h>
24 #include <asm/cpufeature.h>
26 #include <asm/set_memory.h>
27 #include <asm/debugreg.h>
29 static void set_gdt(void *newgdt
, __u16 limit
)
31 struct desc_ptr curgdt
;
33 /* ia32 supports unaligned loads & stores */
35 curgdt
.address
= (unsigned long)newgdt
;
40 static void load_segments(void)
43 #define STR(X) __STR(X)
45 __asm__
__volatile__ (
46 "\tljmp $"STR(__KERNEL_CS
)",$1f\n"
48 "\tmovl $"STR(__KERNEL_DS
)",%%eax\n"
52 : : : "eax", "memory");
57 static void machine_kexec_free_page_tables(struct kimage
*image
)
59 free_page((unsigned long)image
->arch
.pgd
);
60 image
->arch
.pgd
= NULL
;
62 free_page((unsigned long)image
->arch
.pmd0
);
63 image
->arch
.pmd0
= NULL
;
64 free_page((unsigned long)image
->arch
.pmd1
);
65 image
->arch
.pmd1
= NULL
;
67 free_page((unsigned long)image
->arch
.pte0
);
68 image
->arch
.pte0
= NULL
;
69 free_page((unsigned long)image
->arch
.pte1
);
70 image
->arch
.pte1
= NULL
;
73 static int machine_kexec_alloc_page_tables(struct kimage
*image
)
75 image
->arch
.pgd
= (pgd_t
*)get_zeroed_page(GFP_KERNEL
);
77 image
->arch
.pmd0
= (pmd_t
*)get_zeroed_page(GFP_KERNEL
);
78 image
->arch
.pmd1
= (pmd_t
*)get_zeroed_page(GFP_KERNEL
);
80 image
->arch
.pte0
= (pte_t
*)get_zeroed_page(GFP_KERNEL
);
81 image
->arch
.pte1
= (pte_t
*)get_zeroed_page(GFP_KERNEL
);
82 if (!image
->arch
.pgd
||
84 !image
->arch
.pmd0
|| !image
->arch
.pmd1
||
86 !image
->arch
.pte0
|| !image
->arch
.pte1
) {
92 static void machine_kexec_page_table_set_one(
93 pgd_t
*pgd
, pmd_t
*pmd
, pte_t
*pte
,
94 unsigned long vaddr
, unsigned long paddr
)
99 pgd
+= pgd_index(vaddr
);
100 #ifdef CONFIG_X86_PAE
101 if (!(pgd_val(*pgd
) & _PAGE_PRESENT
))
102 set_pgd(pgd
, __pgd(__pa(pmd
) | _PAGE_PRESENT
));
104 p4d
= p4d_offset(pgd
, vaddr
);
105 pud
= pud_offset(p4d
, vaddr
);
106 pmd
= pmd_offset(pud
, vaddr
);
107 if (!(pmd_val(*pmd
) & _PAGE_PRESENT
))
108 set_pmd(pmd
, __pmd(__pa(pte
) | _PAGE_TABLE
));
109 pte
= pte_offset_kernel(pmd
, vaddr
);
110 set_pte(pte
, pfn_pte(paddr
>> PAGE_SHIFT
, PAGE_KERNEL_EXEC
));
113 static void machine_kexec_prepare_page_tables(struct kimage
*image
)
118 control_page
= page_address(image
->control_code_page
);
119 #ifdef CONFIG_X86_PAE
120 pmd
= image
->arch
.pmd0
;
122 machine_kexec_page_table_set_one(
123 image
->arch
.pgd
, pmd
, image
->arch
.pte0
,
124 (unsigned long)control_page
, __pa(control_page
));
125 #ifdef CONFIG_X86_PAE
126 pmd
= image
->arch
.pmd1
;
128 machine_kexec_page_table_set_one(
129 image
->arch
.pgd
, pmd
, image
->arch
.pte1
,
130 __pa(control_page
), __pa(control_page
));
134 * A architecture hook called to validate the
135 * proposed image and prepare the control pages
136 * as needed. The pages for KEXEC_CONTROL_PAGE_SIZE
137 * have been allocated, but the segments have yet
138 * been copied into the kernel.
140 * Do what every setup is needed on image and the
141 * reboot code buffer to allow us to avoid allocations
144 * - Make control page executable.
145 * - Allocate page tables
146 * - Setup page tables
148 int machine_kexec_prepare(struct kimage
*image
)
152 set_pages_x(image
->control_code_page
, 1);
153 error
= machine_kexec_alloc_page_tables(image
);
156 machine_kexec_prepare_page_tables(image
);
161 * Undo anything leftover by machine_kexec_prepare
162 * when an image is freed.
164 void machine_kexec_cleanup(struct kimage
*image
)
166 set_pages_nx(image
->control_code_page
, 1);
167 machine_kexec_free_page_tables(image
);
171 * Do not allocate memory (or fail in any way) in machine_kexec().
172 * We are past the point of no return, committed to rebooting now.
174 void machine_kexec(struct kimage
*image
)
176 unsigned long page_list
[PAGES_NR
];
178 int save_ftrace_enabled
;
179 asmlinkage
unsigned long
180 (*relocate_kernel_ptr
)(unsigned long indirection_page
,
181 unsigned long control_page
,
182 unsigned long start_address
,
183 unsigned int has_pae
,
184 unsigned int preserve_context
);
186 #ifdef CONFIG_KEXEC_JUMP
187 if (image
->preserve_context
)
188 save_processor_state();
191 save_ftrace_enabled
= __ftrace_enabled_save();
193 /* Interrupts aren't acceptable while we reboot */
195 hw_breakpoint_disable();
197 if (image
->preserve_context
) {
198 #ifdef CONFIG_X86_IO_APIC
200 * We need to put APICs in legacy mode so that we can
201 * get timer interrupts in second kernel. kexec/kdump
202 * paths already have calls to disable_IO_APIC() in
203 * one form or other. kexec jump path also need
210 control_page
= page_address(image
->control_code_page
);
211 memcpy(control_page
, relocate_kernel
, KEXEC_CONTROL_CODE_MAX_SIZE
);
213 relocate_kernel_ptr
= control_page
;
214 page_list
[PA_CONTROL_PAGE
] = __pa(control_page
);
215 page_list
[VA_CONTROL_PAGE
] = (unsigned long)control_page
;
216 page_list
[PA_PGD
] = __pa(image
->arch
.pgd
);
218 if (image
->type
== KEXEC_TYPE_DEFAULT
)
219 page_list
[PA_SWAP_PAGE
] = (page_to_pfn(image
->swap_page
)
223 * The segment registers are funny things, they have both a
224 * visible and an invisible part. Whenever the visible part is
225 * set to a specific selector, the invisible part is loaded
226 * with from a table in memory. At no other time is the
227 * descriptor table in memory accessed.
229 * I take advantage of this here by force loading the
230 * segments, before I zap the gdt with an invalid value.
234 * The gdt & idt are now invalid.
235 * If you want to load them you must set up your own idt & gdt.
237 idt_invalidate(phys_to_virt(0));
238 set_gdt(phys_to_virt(0), 0);
241 image
->start
= relocate_kernel_ptr((unsigned long)image
->head
,
242 (unsigned long)page_list
,
244 boot_cpu_has(X86_FEATURE_PAE
),
245 image
->preserve_context
);
247 #ifdef CONFIG_KEXEC_JUMP
248 if (image
->preserve_context
)
249 restore_processor_state();
252 __ftrace_enabled_restore(save_ftrace_enabled
);
255 void arch_crash_save_vmcoreinfo(void)
258 VMCOREINFO_SYMBOL(node_data
);
259 VMCOREINFO_LENGTH(node_data
, MAX_NUMNODES
);
261 #ifdef CONFIG_X86_PAE
262 VMCOREINFO_CONFIG(X86_PAE
);