cpu.c 6.2 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * Suspend support specific for i386/x86-64.
L
Linus Torvalds 已提交
3 4 5
 *
 * Distribute under GPLv2
 *
6
 * Copyright (c) 2007 Rafael J. Wysocki <rjw@sisk.pl>
L
Linus Torvalds 已提交
7 8 9 10 11
 * Copyright (c) 2002 Pavel Machek <pavel@suse.cz>
 * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
 */

#include <linux/suspend.h>
12 13
#include <linux/smp.h>

14
#include <asm/pgtable.h>
15
#include <asm/proto.h>
16
#include <asm/mtrr.h>
17 18
#include <asm/page.h>
#include <asm/mce.h>
19
#include <asm/xcr.h>
20
#include <asm/suspend.h>
L
Linus Torvalds 已提交
21

22 23 24 25 26 27 28 29 30
#ifdef CONFIG_X86_32
static struct saved_context saved_context;

unsigned long saved_context_ebx;
unsigned long saved_context_esp, saved_context_ebp;
unsigned long saved_context_esi, saved_context_edi;
unsigned long saved_context_eflags;
#else
/* CONFIG_X86_64 */
L
Linus Torvalds 已提交
31
struct saved_context saved_context;
32
#endif
L
Linus Torvalds 已提交
33

34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
/**
 *	__save_processor_state - save CPU registers before creating a
 *		hibernation image and before restoring the memory state from it
 *	@ctxt - structure to store the registers contents in
 *
 *	NOTE: If there is a CPU register the modification of which by the
 *	boot kernel (ie. the kernel used for loading the hibernation image)
 *	might affect the operations of the restored target kernel (ie. the one
 *	saved in the hibernation image), then its contents must be saved by this
 *	function.  In other words, if kernel A is hibernated and different
 *	kernel B is used for loading the hibernation image into memory, the
 *	kernel A's __save_processor_state() function must save all registers
 *	needed by kernel A, so that it can operate correctly after the resume
 *	regardless of what kernel B does in the meantime.
 */
49
static void __save_processor_state(struct saved_context *ctxt)
L
Linus Torvalds 已提交
50
{
51 52 53
#ifdef CONFIG_X86_32
	mtrr_save_fixed_ranges(NULL);
#endif
L
Linus Torvalds 已提交
54 55 56 57 58
	kernel_fpu_begin();

	/*
	 * descriptor tables
	 */
59 60 61 62 63
#ifdef CONFIG_X86_32
	store_gdt(&ctxt->gdt);
	store_idt(&ctxt->idt);
#else
/* CONFIG_X86_64 */
64 65
	store_gdt((struct desc_ptr *)&ctxt->gdt_limit);
	store_idt((struct desc_ptr *)&ctxt->idt_limit);
66
#endif
67
	store_tr(ctxt->tr);
L
Linus Torvalds 已提交
68 69 70 71 72

	/* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
	/*
	 * segment registers
	 */
73 74 75 76 77 78 79
#ifdef CONFIG_X86_32
	savesegment(es, ctxt->es);
	savesegment(fs, ctxt->fs);
	savesegment(gs, ctxt->gs);
	savesegment(ss, ctxt->ss);
#else
/* CONFIG_X86_64 */
L
Linus Torvalds 已提交
80 81 82 83 84 85 86 87 88
	asm volatile ("movw %%ds, %0" : "=m" (ctxt->ds));
	asm volatile ("movw %%es, %0" : "=m" (ctxt->es));
	asm volatile ("movw %%fs, %0" : "=m" (ctxt->fs));
	asm volatile ("movw %%gs, %0" : "=m" (ctxt->gs));
	asm volatile ("movw %%ss, %0" : "=m" (ctxt->ss));

	rdmsrl(MSR_FS_BASE, ctxt->fs_base);
	rdmsrl(MSR_GS_BASE, ctxt->gs_base);
	rdmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
89
	mtrr_save_fixed_ranges(NULL);
L
Linus Torvalds 已提交
90

91 92 93
	rdmsrl(MSR_EFER, ctxt->efer);
#endif

L
Linus Torvalds 已提交
94
	/*
95
	 * control registers
L
Linus Torvalds 已提交
96
	 */
97 98 99
	ctxt->cr0 = read_cr0();
	ctxt->cr2 = read_cr2();
	ctxt->cr3 = read_cr3();
100 101 102 103
#ifdef CONFIG_X86_32
	ctxt->cr4 = read_cr4_safe();
#else
/* CONFIG_X86_64 */
104 105
	ctxt->cr4 = read_cr4();
	ctxt->cr8 = read_cr8();
106
#endif
L
Linus Torvalds 已提交
107 108
}

109
/* Needed by apm.c */
L
Linus Torvalds 已提交
110 111 112 113
void save_processor_state(void)
{
	__save_processor_state(&saved_context);
}
114 115 116
#ifdef CONFIG_X86_32
EXPORT_SYMBOL(save_processor_state);
#endif
L
Linus Torvalds 已提交
117

118
static void do_fpu_end(void)
L
Linus Torvalds 已提交
119
{
120
	/*
121
	 * Restore FPU regs if necessary.
122 123
	 */
	kernel_fpu_end();
L
Linus Torvalds 已提交
124 125
}

126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
static void fix_processor_context(void)
{
	int cpu = smp_processor_id();
	struct tss_struct *t = &per_cpu(init_tss, cpu);

	set_tss_desc(cpu, t);	/*
				 * This just modifies memory; should not be
				 * necessary. But... This is necessary, because
				 * 386 hardware has concept of busy TSS or some
				 * similar stupidity.
				 */

#ifdef CONFIG_X86_64
	get_cpu_gdt_table(cpu)[GDT_ENTRY_TSS].type = 9;

	syscall_init();				/* This sets MSR_*STAR and related */
#endif
	load_TR_desc();				/* This does ltr */
	load_LDT(&current->active_mm->context);	/* This does lldt */

	/*
	 * Now maybe reload the debug registers
	 */
	if (current->thread.debugreg7) {
#ifdef CONFIG_X86_32
		set_debugreg(current->thread.debugreg0, 0);
		set_debugreg(current->thread.debugreg1, 1);
		set_debugreg(current->thread.debugreg2, 2);
		set_debugreg(current->thread.debugreg3, 3);
		/* no 4 and 5 */
		set_debugreg(current->thread.debugreg6, 6);
		set_debugreg(current->thread.debugreg7, 7);
#else
		/* CONFIG_X86_64 */
		loaddebug(&current->thread, 0);
		loaddebug(&current->thread, 1);
		loaddebug(&current->thread, 2);
		loaddebug(&current->thread, 3);
		/* no 4 and 5 */
		loaddebug(&current->thread, 6);
		loaddebug(&current->thread, 7);
#endif
	}

}

172 173 174 175 176
/**
 *	__restore_processor_state - restore the contents of CPU registers saved
 *		by __save_processor_state()
 *	@ctxt - structure to load the registers contents from
 */
177
static void __restore_processor_state(struct saved_context *ctxt)
L
Linus Torvalds 已提交
178 179 180 181
{
	/*
	 * control registers
	 */
182 183 184 185 186 187
	/* cr4 was introduced in the Pentium CPU */
#ifdef CONFIG_X86_32
	if (ctxt->cr4)
		write_cr4(ctxt->cr4);
#else
/* CONFIG X86_64 */
188
	wrmsrl(MSR_EFER, ctxt->efer);
189 190
	write_cr8(ctxt->cr8);
	write_cr4(ctxt->cr4);
191
#endif
192 193 194
	write_cr3(ctxt->cr3);
	write_cr2(ctxt->cr2);
	write_cr0(ctxt->cr0);
L
Linus Torvalds 已提交
195

196 197 198 199
	/*
	 * now restore the descriptor tables to their proper values
	 * ltr is done i fix_processor_context().
	 */
200 201 202 203 204
#ifdef CONFIG_X86_32
	load_gdt(&ctxt->gdt);
	load_idt(&ctxt->idt);
#else
/* CONFIG_X86_64 */
205 206
	load_gdt((const struct desc_ptr *)&ctxt->gdt_limit);
	load_idt((const struct desc_ptr *)&ctxt->idt_limit);
207
#endif
208

L
Linus Torvalds 已提交
209 210 211
	/*
	 * segment registers
	 */
212 213 214 215 216 217 218 219 220 221 222 223 224
#ifdef CONFIG_X86_32
	loadsegment(es, ctxt->es);
	loadsegment(fs, ctxt->fs);
	loadsegment(gs, ctxt->gs);
	loadsegment(ss, ctxt->ss);

	/*
	 * sysenter MSRs
	 */
	if (boot_cpu_has(X86_FEATURE_SEP))
		enable_sep_cpu();
#else
/* CONFIG_X86_64 */
L
Linus Torvalds 已提交
225 226 227 228 229 230 231 232 233
	asm volatile ("movw %0, %%ds" :: "r" (ctxt->ds));
	asm volatile ("movw %0, %%es" :: "r" (ctxt->es));
	asm volatile ("movw %0, %%fs" :: "r" (ctxt->fs));
	load_gs_index(ctxt->gs);
	asm volatile ("movw %0, %%ss" :: "r" (ctxt->ss));

	wrmsrl(MSR_FS_BASE, ctxt->fs_base);
	wrmsrl(MSR_GS_BASE, ctxt->gs_base);
	wrmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
234
#endif
L
Linus Torvalds 已提交
235

236 237 238 239 240 241
	/*
	 * restore XCR0 for xsave capable cpu's.
	 */
	if (cpu_has_xsave)
		xsetbv(XCR_XFEATURE_ENABLED_MASK, pcntxt_mask);

L
Linus Torvalds 已提交
242 243 244
	fix_processor_context();

	do_fpu_end();
S
Shaohua Li 已提交
245
	mtrr_ap_init();
246 247 248 249

#ifdef CONFIG_X86_32
	mcheck_init(&boot_cpu_data);
#endif
L
Linus Torvalds 已提交
250 251
}

252
/* Needed by apm.c */
L
Linus Torvalds 已提交
253 254 255 256
void restore_processor_state(void)
{
	__restore_processor_state(&saved_context);
}
257 258 259
#ifdef CONFIG_X86_32
EXPORT_SYMBOL(restore_processor_state);
#endif