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

#include <linux/module.h>
#include <linux/suspend.h>
12
#include <asm/mtrr.h>
13
#include <asm/mce.h>
L
Linus Torvalds 已提交
14 15 16 17 18 19 20 21 22 23

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;

void __save_processor_state(struct saved_context *ctxt)
{
24
	mtrr_save_fixed_ranges(NULL);
L
Linus Torvalds 已提交
25 26 27 28 29
	kernel_fpu_begin();

	/*
	 * descriptor tables
	 */
30 31
 	store_gdt(&ctxt->gdt);
 	store_idt(&ctxt->idt);
32
 	store_tr(ctxt->tr);
L
Linus Torvalds 已提交
33 34 35 36

	/*
	 * segment registers
	 */
37 38 39 40
 	savesegment(es, ctxt->es);
 	savesegment(fs, ctxt->fs);
 	savesegment(gs, ctxt->gs);
 	savesegment(ss, ctxt->ss);
L
Linus Torvalds 已提交
41 42 43 44

	/*
	 * control registers 
	 */
45 46 47 48
	ctxt->cr0 = read_cr0();
	ctxt->cr2 = read_cr2();
	ctxt->cr3 = read_cr3();
	ctxt->cr4 = read_cr4();
L
Linus Torvalds 已提交
49 50 51 52 53 54 55
}

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

56
static void do_fpu_end(void)
L
Linus Torvalds 已提交
57
{
58 59 60 61
	/*
	 * Restore FPU regs if necessary.
	 */
	kernel_fpu_end();
L
Linus Torvalds 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
}

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. */

	load_TR_desc();				/* This does ltr */
	load_LDT(&current->active_mm->context);	/* This does lldt */

	/*
	 * Now maybe reload the debug registers
	 */
	if (current->thread.debugreg[7]){
78 79 80 81 82 83 84
		set_debugreg(current->thread.debugreg[0], 0);
		set_debugreg(current->thread.debugreg[1], 1);
		set_debugreg(current->thread.debugreg[2], 2);
		set_debugreg(current->thread.debugreg[3], 3);
		/* no 4 and 5 */
		set_debugreg(current->thread.debugreg[6], 6);
		set_debugreg(current->thread.debugreg[7], 7);
L
Linus Torvalds 已提交
85 86 87 88 89 90 91 92 93
	}

}

void __restore_processor_state(struct saved_context *ctxt)
{
	/*
	 * control registers
	 */
94 95 96
	write_cr4(ctxt->cr4);
	write_cr3(ctxt->cr3);
	write_cr2(ctxt->cr2);
97
	write_cr0(ctxt->cr0);
L
Linus Torvalds 已提交
98

99 100 101 102
	/*
	 * now restore the descriptor tables to their proper values
	 * ltr is done i fix_processor_context().
	 */
103 104
 	load_gdt(&ctxt->gdt);
 	load_idt(&ctxt->idt);
105

L
Linus Torvalds 已提交
106 107 108
	/*
	 * segment registers
	 */
109 110 111 112
 	loadsegment(es, ctxt->es);
 	loadsegment(fs, ctxt->fs);
 	loadsegment(gs, ctxt->gs);
 	loadsegment(ss, ctxt->ss);
L
Linus Torvalds 已提交
113 114 115 116 117

	/*
	 * sysenter MSRs
	 */
	if (boot_cpu_has(X86_FEATURE_SEP))
L
Li Shaohua 已提交
118
		enable_sep_cpu();
L
Linus Torvalds 已提交
119 120 121

	fix_processor_context();
	do_fpu_end();
S
Shaohua Li 已提交
122
	mtrr_ap_init();
S
Shaohua Li 已提交
123
	mcheck_init(&boot_cpu_data);
L
Linus Torvalds 已提交
124 125 126 127 128 129 130 131 132 133
}

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

/* Needed by apm.c */
EXPORT_SYMBOL(save_processor_state);
EXPORT_SYMBOL(restore_processor_state);