machine_kexec_32.c 5.0 KB
Newer Older
1
/*
D
Dave Jones 已提交
2
 * handle transition of Linux booting another kernel
3 4 5 6 7 8 9 10 11
 * Copyright (C) 2002-2005 Eric Biederman  <ebiederm@xmission.com>
 *
 * This source code is licensed under the GNU General Public License,
 * Version 2.  See the file COPYING for more details.
 */

#include <linux/mm.h>
#include <linux/kexec.h>
#include <linux/delay.h>
12
#include <linux/init.h>
K
Ken'ichi Ohmichi 已提交
13
#include <linux/numa.h>
I
Ingo Molnar 已提交
14 15
#include <linux/ftrace.h>

16 17 18 19 20 21 22
#include <asm/pgtable.h>
#include <asm/pgalloc.h>
#include <asm/tlbflush.h>
#include <asm/mmu_context.h>
#include <asm/io.h>
#include <asm/apic.h>
#include <asm/cpufeature.h>
23
#include <asm/desc.h>
24
#include <asm/system.h>
H
Huang Ying 已提交
25
#include <asm/cacheflush.h>
26 27

#define PAGE_ALIGNED __attribute__ ((__aligned__(PAGE_SIZE)))
28 29 30 31
static u32 kexec_pgd[1024] PAGE_ALIGNED;
#ifdef CONFIG_X86_PAE
static u32 kexec_pmd0[1024] PAGE_ALIGNED;
static u32 kexec_pmd1[1024] PAGE_ALIGNED;
32
#endif
33 34
static u32 kexec_pte0[1024] PAGE_ALIGNED;
static u32 kexec_pte1[1024] PAGE_ALIGNED;
35 36 37

static void set_idt(void *newidt, __u16 limit)
{
38
	struct desc_ptr curidt;
39 40

	/* ia32 supports unaliged loads & stores */
41 42
	curidt.size    = limit;
	curidt.address = (unsigned long)newidt;
43

Z
Zachary Amsden 已提交
44
	load_idt(&curidt);
45
}
46 47 48 49


static void set_gdt(void *newgdt, __u16 limit)
{
50
	struct desc_ptr curgdt;
51 52

	/* ia32 supports unaligned loads & stores */
53 54
	curgdt.size    = limit;
	curgdt.address = (unsigned long)newgdt;
55

Z
Zachary Amsden 已提交
56
	load_gdt(&curgdt);
57
}
58 59 60 61 62 63 64 65 66

static void load_segments(void)
{
#define __STR(X) #X
#define STR(X) __STR(X)

	__asm__ __volatile__ (
		"\tljmp $"STR(__KERNEL_CS)",$1f\n"
		"\t1:\n"
M
Michael Matz 已提交
67 68 69 70 71 72 73
		"\tmovl $"STR(__KERNEL_DS)",%%eax\n"
		"\tmovl %%eax,%%ds\n"
		"\tmovl %%eax,%%es\n"
		"\tmovl %%eax,%%fs\n"
		"\tmovl %%eax,%%gs\n"
		"\tmovl %%eax,%%ss\n"
		::: "eax", "memory");
74 75 76 77 78 79 80
#undef STR
#undef __STR
}

/*
 * A architecture hook called to validate the
 * proposed image and prepare the control pages
81
 * as needed.  The pages for KEXEC_CONTROL_PAGE_SIZE
82 83 84 85 86 87 88
 * have been allocated, but the segments have yet
 * been copied into the kernel.
 *
 * Do what every setup is needed on image and the
 * reboot code buffer to allow us to avoid allocations
 * later.
 *
H
Huang Ying 已提交
89
 * Make control page executable.
90 91 92
 */
int machine_kexec_prepare(struct kimage *image)
{
H
Huang Ying 已提交
93 94
	if (nx_enabled)
		set_pages_x(image->control_code_page, 1);
95 96 97 98 99 100 101 102 103
	return 0;
}

/*
 * Undo anything leftover by machine_kexec_prepare
 * when an image is freed.
 */
void machine_kexec_cleanup(struct kimage *image)
{
H
Huang Ying 已提交
104 105
	if (nx_enabled)
		set_pages_nx(image->control_code_page, 1);
106 107 108 109 110 111
}

/*
 * Do not allocate memory (or fail in any way) in machine_kexec().
 * We are past the point of no return, committed to rebooting now.
 */
H
Huang Ying 已提交
112
void machine_kexec(struct kimage *image)
113
{
114 115
	unsigned long page_list[PAGES_NR];
	void *control_page;
H
Huang Ying 已提交
116 117 118 119 120 121
	asmlinkage unsigned long
		(*relocate_kernel_ptr)(unsigned long indirection_page,
				       unsigned long control_page,
				       unsigned long start_address,
				       unsigned int has_pae,
				       unsigned int preserve_context);
122

I
Ingo Molnar 已提交
123 124
	tracer_disable();

125 126 127
	/* Interrupts aren't acceptable while we reboot */
	local_irq_disable();

128 129 130 131 132 133 134 135 136 137 138 139
	if (image->preserve_context) {
#ifdef CONFIG_X86_IO_APIC
		/* We need to put APICs in legacy mode so that we can
		 * get timer interrupts in second kernel. kexec/kdump
		 * paths already have calls to disable_IO_APIC() in
		 * one form or other. kexec jump path also need
		 * one.
		 */
		disable_IO_APIC();
#endif
	}

140
	control_page = page_address(image->control_code_page);
141
	memcpy(control_page, relocate_kernel, KEXEC_CONTROL_CODE_MAX_SIZE);
142

H
Huang Ying 已提交
143
	relocate_kernel_ptr = control_page;
144
	page_list[PA_CONTROL_PAGE] = __pa(control_page);
H
Huang Ying 已提交
145
	page_list[VA_CONTROL_PAGE] = (unsigned long)control_page;
146 147 148 149 150 151 152 153 154 155 156 157
	page_list[PA_PGD] = __pa(kexec_pgd);
	page_list[VA_PGD] = (unsigned long)kexec_pgd;
#ifdef CONFIG_X86_PAE
	page_list[PA_PMD_0] = __pa(kexec_pmd0);
	page_list[VA_PMD_0] = (unsigned long)kexec_pmd0;
	page_list[PA_PMD_1] = __pa(kexec_pmd1);
	page_list[VA_PMD_1] = (unsigned long)kexec_pmd1;
#endif
	page_list[PA_PTE_0] = __pa(kexec_pte0);
	page_list[VA_PTE_0] = (unsigned long)kexec_pte0;
	page_list[PA_PTE_1] = __pa(kexec_pte1);
	page_list[VA_PTE_1] = (unsigned long)kexec_pte1;
H
Huang Ying 已提交
158
	page_list[PA_SWAP_PAGE] = (page_to_pfn(image->swap_page) << PAGE_SHIFT);
159

160 161 162 163 164
	/* The segment registers are funny things, they have both a
	 * visible and an invisible part.  Whenever the visible part is
	 * set to a specific selector, the invisible part is loaded
	 * with from a table in memory.  At no other time is the
	 * descriptor table in memory accessed.
165 166 167 168 169 170 171 172 173 174 175 176
	 *
	 * I take advantage of this here by force loading the
	 * segments, before I zap the gdt with an invalid value.
	 */
	load_segments();
	/* The gdt & idt are now invalid.
	 * If you want to load them you must set up your own idt & gdt.
	 */
	set_gdt(phys_to_virt(0),0);
	set_idt(phys_to_virt(0),0);

	/* now call it */
H
Huang Ying 已提交
177 178 179 180
	image->start = relocate_kernel_ptr((unsigned long)image->head,
					   (unsigned long)page_list,
					   image->start, cpu_has_pae,
					   image->preserve_context);
181
}
182

K
Ken'ichi Ohmichi 已提交
183 184
void arch_crash_save_vmcoreinfo(void)
{
185
#ifdef CONFIG_NUMA
186 187
	VMCOREINFO_SYMBOL(node_data);
	VMCOREINFO_LENGTH(node_data, MAX_NUMNODES);
K
Ken'ichi Ohmichi 已提交
188 189
#endif
#ifdef CONFIG_X86_PAE
190
	VMCOREINFO_CONFIG(X86_PAE);
K
Ken'ichi Ohmichi 已提交
191 192 193
#endif
}