cpu_64.c 4.4 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * Suspend and hibernation support for 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
 * Copyright (c) 2002 Pavel Machek <pavel@suse.cz>
 * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
 */

11
#include <linux/smp.h>
L
Linus Torvalds 已提交
12 13
#include <linux/suspend.h>
#include <asm/proto.h>
14 15
#include <asm/page.h>
#include <asm/pgtable.h>
16
#include <asm/mtrr.h>
L
Linus Torvalds 已提交
17

18 19
static void fix_processor_context(void);

L
Linus Torvalds 已提交
20 21
struct saved_context saved_context;

22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
/**
 *	__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.
 */
37
static void __save_processor_state(struct saved_context *ctxt)
L
Linus Torvalds 已提交
38 39 40 41 42 43
{
	kernel_fpu_begin();

	/*
	 * descriptor tables
	 */
44 45 46
	store_gdt((struct desc_ptr *)&ctxt->gdt_limit);
	store_idt((struct desc_ptr *)&ctxt->idt_limit);
	store_tr(ctxt->tr);
L
Linus Torvalds 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60

	/* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
	/*
	 * segment registers
	 */
	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);
61
	mtrr_save_fixed_ranges(NULL);
L
Linus Torvalds 已提交
62 63

	/*
64
	 * control registers
L
Linus Torvalds 已提交
65
	 */
66
	rdmsrl(MSR_EFER, ctxt->efer);
67 68 69 70 71
	ctxt->cr0 = read_cr0();
	ctxt->cr2 = read_cr2();
	ctxt->cr3 = read_cr3();
	ctxt->cr4 = read_cr4();
	ctxt->cr8 = read_cr8();
L
Linus Torvalds 已提交
72 73 74 75 76 77 78
}

void save_processor_state(void)
{
	__save_processor_state(&saved_context);
}

79
static void do_fpu_end(void)
L
Linus Torvalds 已提交
80
{
81 82 83 84
	/*
	 * Restore FPU regs if necessary
	 */
	kernel_fpu_end();
L
Linus Torvalds 已提交
85 86
}

87 88 89 90 91
/**
 *	__restore_processor_state - restore the contents of CPU registers saved
 *		by __save_processor_state()
 *	@ctxt - structure to load the registers contents from
 */
92
static void __restore_processor_state(struct saved_context *ctxt)
L
Linus Torvalds 已提交
93 94 95 96
{
	/*
	 * control registers
	 */
97
	wrmsrl(MSR_EFER, ctxt->efer);
98 99 100 101 102
	write_cr8(ctxt->cr8);
	write_cr4(ctxt->cr4);
	write_cr3(ctxt->cr3);
	write_cr2(ctxt->cr2);
	write_cr0(ctxt->cr0);
L
Linus Torvalds 已提交
103

104 105 106 107
	/*
	 * now restore the descriptor tables to their proper values
	 * ltr is done i fix_processor_context().
	 */
108 109 110
	load_gdt((const struct desc_ptr *)&ctxt->gdt_limit);
	load_idt((const struct desc_ptr *)&ctxt->idt_limit);

111

L
Linus Torvalds 已提交
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
	/*
	 * segment registers
	 */
	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);

	fix_processor_context();

	do_fpu_end();
S
Shaohua Li 已提交
128
	mtrr_ap_init();
L
Linus Torvalds 已提交
129 130 131 132 133 134 135
}

void restore_processor_state(void)
{
	__restore_processor_state(&saved_context);
}

136
static void fix_processor_context(void)
L
Linus Torvalds 已提交
137 138 139 140
{
	int cpu = smp_processor_id();
	struct tss_struct *t = &per_cpu(init_tss, cpu);

B
Borislav Petkov 已提交
141 142 143 144 145 146
	/*
	 * This just modifies memory; should not be necessary. But... This
	 * is necessary, because 386 hardware has concept of busy TSS or some
	 * similar stupidity.
	 */
	set_tss_desc(cpu, t);
L
Linus Torvalds 已提交
147

148
	get_cpu_gdt_table(cpu)[GDT_ENTRY_TSS].type = 9;
L
Linus Torvalds 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166

	syscall_init();                         /* This sets MSR_*STAR and related */
	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){
                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);
	}
}