cpu.c 8.4 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>
P
Pavel Machek 已提交
7
 * Copyright (c) 2002 Pavel Machek <pavel@ucw.cz>
L
Linus Torvalds 已提交
8 9 10 11
 * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
 */

#include <linux/suspend.h>
12
#include <linux/export.h>
13
#include <linux/smp.h>
14
#include <linux/perf_event.h>
15

16
#include <asm/pgtable.h>
17
#include <asm/proto.h>
18
#include <asm/mtrr.h>
19 20
#include <asm/page.h>
#include <asm/mce.h>
21
#include <asm/suspend.h>
22
#include <asm/fpu/internal.h>
23
#include <asm/debugreg.h>
F
Fenghua Yu 已提交
24
#include <asm/cpu.h>
25
#include <asm/mmu_context.h>
L
Linus Torvalds 已提交
26

27
#ifdef CONFIG_X86_32
28 29 30 31
__visible unsigned long saved_context_ebx;
__visible unsigned long saved_context_esp, saved_context_ebp;
__visible unsigned long saved_context_esi, saved_context_edi;
__visible unsigned long saved_context_eflags;
32
#endif
33
struct saved_context saved_context;
L
Linus Torvalds 已提交
34

35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
/**
 *	__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.
 */
50
static void __save_processor_state(struct saved_context *ctxt)
L
Linus Torvalds 已提交
51
{
52 53 54
#ifdef CONFIG_X86_32
	mtrr_save_fixed_ranges(NULL);
#endif
L
Linus Torvalds 已提交
55 56 57 58 59
	kernel_fpu_begin();

	/*
	 * descriptor tables
	 */
60 61 62 63
#ifdef CONFIG_X86_32
	store_idt(&ctxt->idt);
#else
/* CONFIG_X86_64 */
64
	store_idt((struct desc_ptr *)&ctxt->idt_limit);
65
#endif
66 67 68 69 70 71 72 73 74
	/*
	 * We save it here, but restore it only in the hibernate case.
	 * For ACPI S3 resume, this is loaded via 'early_gdt_desc' in 64-bit
	 * mode in "secondary_startup_64". In 32-bit mode it is done via
	 * 'pmode_gdt' in wakeup_start.
	 */
	ctxt->gdt_desc.size = GDT_SIZE - 1;
	ctxt->gdt_desc.address = (unsigned long)get_cpu_gdt_table(smp_processor_id());

75
	store_tr(ctxt->tr);
L
Linus Torvalds 已提交
76 77 78 79 80

	/* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
	/*
	 * segment registers
	 */
81 82 83 84 85 86 87
#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 已提交
88 89 90 91 92 93 94 95 96
	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);
97
	mtrr_save_fixed_ranges(NULL);
L
Linus Torvalds 已提交
98

99 100 101
	rdmsrl(MSR_EFER, ctxt->efer);
#endif

L
Linus Torvalds 已提交
102
	/*
103
	 * control registers
L
Linus Torvalds 已提交
104
	 */
105 106 107
	ctxt->cr0 = read_cr0();
	ctxt->cr2 = read_cr2();
	ctxt->cr3 = read_cr3();
108 109
	ctxt->cr4 = __read_cr4_safe();
#ifdef CONFIG_X86_64
110
	ctxt->cr8 = read_cr8();
111
#endif
112 113
	ctxt->misc_enable_saved = !rdmsrl_safe(MSR_IA32_MISC_ENABLE,
					       &ctxt->misc_enable);
L
Linus Torvalds 已提交
114 115
}

116
/* Needed by apm.c */
L
Linus Torvalds 已提交
117 118 119
void save_processor_state(void)
{
	__save_processor_state(&saved_context);
120
	x86_platform.save_sched_clock_state();
L
Linus Torvalds 已提交
121
}
122 123 124
#ifdef CONFIG_X86_32
EXPORT_SYMBOL(save_processor_state);
#endif
L
Linus Torvalds 已提交
125

126
static void do_fpu_end(void)
L
Linus Torvalds 已提交
127
{
128
	/*
129
	 * Restore FPU regs if necessary.
130 131
	 */
	kernel_fpu_end();
L
Linus Torvalds 已提交
132 133
}

134 135 136
static void fix_processor_context(void)
{
	int cpu = smp_processor_id();
137
	struct tss_struct *t = &per_cpu(cpu_tss, cpu);
138 139 140 141
#ifdef CONFIG_X86_64
	struct desc_struct *desc = get_cpu_gdt_table(cpu);
	tss_desc tss;
#endif
142 143 144 145 146 147 148 149
	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
150 151 152
	memcpy(&tss, &desc[GDT_ENTRY_TSS], sizeof(tss_desc));
	tss.type = 0x9; /* The available 64-bit TSS (see AMD vol 2, pg 91 */
	write_gdt_entry(desc, GDT_ENTRY_TSS, &tss, DESC_TSS);
153 154 155 156

	syscall_init();				/* This sets MSR_*STAR and related */
#endif
	load_TR_desc();				/* This does ltr */
157
	load_mm_ldt(current->active_mm);	/* This does lldt */
158 159

	fpu__resume_cpu();
160 161
}

162 163 164 165 166
/**
 *	__restore_processor_state - restore the contents of CPU registers saved
 *		by __save_processor_state()
 *	@ctxt - structure to load the registers contents from
 */
167
static void notrace __restore_processor_state(struct saved_context *ctxt)
L
Linus Torvalds 已提交
168
{
169 170
	if (ctxt->misc_enable_saved)
		wrmsrl(MSR_IA32_MISC_ENABLE, ctxt->misc_enable);
L
Linus Torvalds 已提交
171 172 173
	/*
	 * control registers
	 */
174 175 176
	/* cr4 was introduced in the Pentium CPU */
#ifdef CONFIG_X86_32
	if (ctxt->cr4)
177
		__write_cr4(ctxt->cr4);
178 179
#else
/* CONFIG X86_64 */
180
	wrmsrl(MSR_EFER, ctxt->efer);
181
	write_cr8(ctxt->cr8);
182
	__write_cr4(ctxt->cr4);
183
#endif
184 185 186
	write_cr3(ctxt->cr3);
	write_cr2(ctxt->cr2);
	write_cr0(ctxt->cr0);
L
Linus Torvalds 已提交
187

188 189 190 191
	/*
	 * now restore the descriptor tables to their proper values
	 * ltr is done i fix_processor_context().
	 */
192 193 194 195
#ifdef CONFIG_X86_32
	load_idt(&ctxt->idt);
#else
/* CONFIG_X86_64 */
196
	load_idt((const struct desc_ptr *)&ctxt->idt_limit);
197
#endif
198

L
Linus Torvalds 已提交
199 200 201
	/*
	 * segment registers
	 */
202 203 204 205 206 207 208 209 210 211 212 213 214
#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 已提交
215 216 217 218 219 220 221 222 223
	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);
224
#endif
L
Linus Torvalds 已提交
225 226 227 228

	fix_processor_context();

	do_fpu_end();
229
	x86_platform.restore_sched_clock_state();
230
	mtrr_bp_restore();
231
	perf_restore_debug_store();
L
Linus Torvalds 已提交
232 233
}

234
/* Needed by apm.c */
235
void notrace restore_processor_state(void)
L
Linus Torvalds 已提交
236 237 238
{
	__restore_processor_state(&saved_context);
}
239 240 241
#ifdef CONFIG_X86_32
EXPORT_SYMBOL(restore_processor_state);
#endif
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267

/*
 * When bsp_check() is called in hibernate and suspend, cpu hotplug
 * is disabled already. So it's unnessary to handle race condition between
 * cpumask query and cpu hotplug.
 */
static int bsp_check(void)
{
	if (cpumask_first(cpu_online_mask) != 0) {
		pr_warn("CPU0 is offline.\n");
		return -ENODEV;
	}

	return 0;
}

static int bsp_pm_callback(struct notifier_block *nb, unsigned long action,
			   void *ptr)
{
	int ret = 0;

	switch (action) {
	case PM_SUSPEND_PREPARE:
	case PM_HIBERNATION_PREPARE:
		ret = bsp_check();
		break;
F
Fenghua Yu 已提交
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
#ifdef CONFIG_DEBUG_HOTPLUG_CPU0
	case PM_RESTORE_PREPARE:
		/*
		 * When system resumes from hibernation, online CPU0 because
		 * 1. it's required for resume and
		 * 2. the CPU was online before hibernation
		 */
		if (!cpu_online(0))
			_debug_hotplug_cpu(0, 1);
		break;
	case PM_POST_RESTORE:
		/*
		 * When a resume really happens, this code won't be called.
		 *
		 * This code is called only when user space hibernation software
		 * prepares for snapshot device during boot time. So we just
		 * call _debug_hotplug_cpu() to restore to CPU0's state prior to
		 * preparing the snapshot device.
		 *
		 * This works for normal boot case in our CPU0 hotplug debug
		 * mode, i.e. CPU0 is offline and user mode hibernation
		 * software initializes during boot time.
		 *
		 * If CPU0 is online and user application accesses snapshot
		 * device after boot time, this will offline CPU0 and user may
		 * see different CPU0 state before and after accessing
		 * the snapshot device. But hopefully this is not a case when
		 * user debugging CPU0 hotplug. Even if users hit this case,
		 * they can easily online CPU0 back.
		 *
		 * To simplify this debug code, we only consider normal boot
		 * case. Otherwise we need to remember CPU0's state and restore
		 * to that state and resolve racy conditions etc.
		 */
		_debug_hotplug_cpu(0, 0);
		break;
#endif
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
	default:
		break;
	}
	return notifier_from_errno(ret);
}

static int __init bsp_pm_check_init(void)
{
	/*
	 * Set this bsp_pm_callback as lower priority than
	 * cpu_hotplug_pm_callback. So cpu_hotplug_pm_callback will be called
	 * earlier to disable cpu hotplug before bsp online check.
	 */
	pm_notifier(bsp_pm_callback, -INT_MAX);
	return 0;
}

core_initcall(bsp_pm_check_init);