suspend.c 8.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * kernel/power/suspend.c - Suspend to RAM and standby functionality.
 *
 * Copyright (c) 2003 Patrick Mochel
 * Copyright (c) 2003 Open Source Development Lab
 * Copyright (c) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
 *
 * This file is released under the GPLv2.
 */

#include <linux/string.h>
#include <linux/delay.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/console.h>
#include <linux/cpu.h>
#include <linux/syscalls.h>
18
#include <linux/gfp.h>
19 20 21 22 23
#include <linux/io.h>
#include <linux/kernel.h>
#include <linux/list.h>
#include <linux/mm.h>
#include <linux/slab.h>
24
#include <linux/export.h>
25
#include <linux/suspend.h>
26
#include <linux/syscore_ops.h>
27
#include <linux/ftrace.h>
28
#include <trace/events/power.h>
29 30 31 32

#include "power.h"

const char *const pm_states[PM_SUSPEND_MAX] = {
33
	[PM_SUSPEND_FREEZE]	= "freeze",
34 35 36 37
	[PM_SUSPEND_STANDBY]	= "standby",
	[PM_SUSPEND_MEM]	= "mem",
};

38
static const struct platform_suspend_ops *suspend_ops;
39

40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
static bool need_suspend_ops(suspend_state_t state)
{
	return !!(state > PM_SUSPEND_FREEZE);
}

static DECLARE_WAIT_QUEUE_HEAD(suspend_freeze_wait_head);
static bool suspend_freeze_wake;

static void freeze_begin(void)
{
	suspend_freeze_wake = false;
}

static void freeze_enter(void)
{
	wait_event(suspend_freeze_wait_head, suspend_freeze_wake);
}

void freeze_wake(void)
{
	suspend_freeze_wake = true;
	wake_up(&suspend_freeze_wait_head);
}
EXPORT_SYMBOL_GPL(freeze_wake);

65
/**
66 67
 * suspend_set_ops - Set the global suspend method table.
 * @ops: Suspend operations to use.
68
 */
69
void suspend_set_ops(const struct platform_suspend_ops *ops)
70
{
71
	lock_system_sleep();
72
	suspend_ops = ops;
73
	unlock_system_sleep();
74
}
75
EXPORT_SYMBOL_GPL(suspend_set_ops);
76 77 78

bool valid_state(suspend_state_t state)
{
79 80 81 82 83 84 85 86 87 88 89 90 91 92
	if (state == PM_SUSPEND_FREEZE) {
#ifdef CONFIG_PM_DEBUG
		if (pm_test_level != TEST_NONE &&
		    pm_test_level != TEST_FREEZER &&
		    pm_test_level != TEST_DEVICES &&
		    pm_test_level != TEST_PLATFORM) {
			printk(KERN_WARNING "Unsupported pm_test mode for "
					"freeze state, please choose "
					"none/freezer/devices/platform.\n");
			return false;
		}
#endif
			return true;
	}
93
	/*
94 95
	 * PM_SUSPEND_STANDBY and PM_SUSPEND_MEMORY states need lowlevel
	 * support and need to be valid to the lowlevel
96 97 98 99 100 101
	 * implementation, no valid callback implies that none are valid.
	 */
	return suspend_ops && suspend_ops->valid && suspend_ops->valid(state);
}

/**
102
 * suspend_valid_only_mem - Generic memory-only valid callback.
103
 *
104 105 106
 * Platform drivers that implement mem suspend only and only need to check for
 * that in their .valid() callback can use this instead of rolling their own
 * .valid() callback.
107 108 109 110 111
 */
int suspend_valid_only_mem(suspend_state_t state)
{
	return state == PM_SUSPEND_MEM;
}
112
EXPORT_SYMBOL_GPL(suspend_valid_only_mem);
113 114 115 116 117 118 119 120 121 122 123 124 125 126

static int suspend_test(int level)
{
#ifdef CONFIG_PM_DEBUG
	if (pm_test_level == level) {
		printk(KERN_INFO "suspend debug: Waiting for 5 seconds.\n");
		mdelay(5000);
		return 1;
	}
#endif /* !CONFIG_PM_DEBUG */
	return 0;
}

/**
127
 * suspend_prepare - Prepare for entering system sleep state.
128
 *
129 130 131
 * Common code run for every system sleep state that can be entered (except for
 * hibernation).  Run suspend notifiers, allocate the "suspend" console and
 * freeze processes.
132
 */
133
static int suspend_prepare(suspend_state_t state)
134 135 136
{
	int error;

137
	if (need_suspend_ops(state) && (!suspend_ops || !suspend_ops->enter))
138 139 140 141 142 143 144 145 146
		return -EPERM;

	pm_prepare_console();

	error = pm_notifier_call_chain(PM_SUSPEND_PREPARE);
	if (error)
		goto Finish;

	error = suspend_freeze_processes();
147
	if (!error)
148 149
		return 0;

150 151
	suspend_stats.failed_freeze++;
	dpm_save_failed_step(SUSPEND_FREEZE);
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
 Finish:
	pm_notifier_call_chain(PM_POST_SUSPEND);
	pm_restore_console();
	return error;
}

/* default implementation */
void __attribute__ ((weak)) arch_suspend_disable_irqs(void)
{
	local_irq_disable();
}

/* default implementation */
void __attribute__ ((weak)) arch_suspend_enable_irqs(void)
{
	local_irq_enable();
}

/**
171 172 173
 * suspend_enter - Make the system enter the given sleep state.
 * @state: System sleep state to enter.
 * @wakeup: Returns information that the sleep state should not be re-entered.
174
 *
175
 * This function should be called after devices have been suspended.
176
 */
177
static int suspend_enter(suspend_state_t state, bool *wakeup)
178 179 180
{
	int error;

181
	if (need_suspend_ops(state) && suspend_ops->prepare) {
182 183
		error = suspend_ops->prepare();
		if (error)
184
			goto Platform_finish;
185 186
	}

187
	error = dpm_suspend_end(PMSG_SUSPEND);
188 189
	if (error) {
		printk(KERN_ERR "PM: Some devices failed to power down\n");
190
		goto Platform_finish;
191 192
	}

193
	if (need_suspend_ops(state) && suspend_ops->prepare_late) {
194 195
		error = suspend_ops->prepare_late();
		if (error)
196
			goto Platform_wake;
197 198
	}

199 200 201
	if (suspend_test(TEST_PLATFORM))
		goto Platform_wake;

202 203 204 205 206 207 208 209 210 211 212
	/*
	 * PM_SUSPEND_FREEZE equals
	 * frozen processes + suspended devices + idle processors.
	 * Thus we should invoke freeze_enter() soon after
	 * all the devices are suspended.
	 */
	if (state == PM_SUSPEND_FREEZE) {
		freeze_enter();
		goto Platform_wake;
	}

213 214 215 216 217 218 219
	error = disable_nonboot_cpus();
	if (error || suspend_test(TEST_CPUS))
		goto Enable_cpus;

	arch_suspend_disable_irqs();
	BUG_ON(!irqs_disabled());

220
	error = syscore_suspend();
221
	if (!error) {
222 223
		*wakeup = pm_wakeup_pending();
		if (!(suspend_test(TEST_CORE) || *wakeup)) {
224
			error = suspend_ops->enter(state);
225 226
			events_check_enabled = false;
		}
227
		syscore_resume();
228 229 230 231 232 233 234 235 236
	}

	arch_suspend_enable_irqs();
	BUG_ON(irqs_disabled());

 Enable_cpus:
	enable_nonboot_cpus();

 Platform_wake:
237
	if (need_suspend_ops(state) && suspend_ops->wake)
238 239
		suspend_ops->wake();

240
	dpm_resume_start(PMSG_RESUME);
241

242
 Platform_finish:
243
	if (need_suspend_ops(state) && suspend_ops->finish)
244 245 246 247 248 249
		suspend_ops->finish();

	return error;
}

/**
250 251
 * suspend_devices_and_enter - Suspend devices and enter system sleep state.
 * @state: System sleep state to enter.
252 253 254 255
 */
int suspend_devices_and_enter(suspend_state_t state)
{
	int error;
256
	bool wakeup = false;
257

258
	if (need_suspend_ops(state) && !suspend_ops)
259 260
		return -ENOSYS;

261
	trace_machine_suspend(state);
262
	if (need_suspend_ops(state) && suspend_ops->begin) {
263 264 265 266 267
		error = suspend_ops->begin(state);
		if (error)
			goto Close;
	}
	suspend_console();
268
	ftrace_stop();
269 270 271
	suspend_test_start();
	error = dpm_suspend_start(PMSG_SUSPEND);
	if (error) {
272
		pr_err("PM: Some devices failed to suspend, or early wake event detected\n");
273 274 275 276 277 278
		goto Recover_platform;
	}
	suspend_test_finish("suspend devices");
	if (suspend_test(TEST_DEVICES))
		goto Recover_platform;

279 280
	do {
		error = suspend_enter(state, &wakeup);
281
	} while (!error && !wakeup && need_suspend_ops(state)
282
		&& suspend_ops->suspend_again && suspend_ops->suspend_again());
283 284 285 286 287

 Resume_devices:
	suspend_test_start();
	dpm_resume_end(PMSG_RESUME);
	suspend_test_finish("resume devices");
288
	ftrace_start();
289 290
	resume_console();
 Close:
291
	if (need_suspend_ops(state) && suspend_ops->end)
292
		suspend_ops->end();
293
	trace_machine_suspend(PWR_EVENT_EXIT);
294 295 296
	return error;

 Recover_platform:
297
	if (need_suspend_ops(state) && suspend_ops->recover)
298 299 300 301 302
		suspend_ops->recover();
	goto Resume_devices;
}

/**
303
 * suspend_finish - Clean up before finishing the suspend sequence.
304
 *
305 306
 * Call platform code to clean up, restart processes, and free the console that
 * we've allocated. This routine is not called for hibernation.
307 308 309 310 311 312 313 314 315
 */
static void suspend_finish(void)
{
	suspend_thaw_processes();
	pm_notifier_call_chain(PM_POST_SUSPEND);
	pm_restore_console();
}

/**
316 317
 * enter_state - Do common work needed to enter system sleep state.
 * @state: System sleep state to enter.
318
 *
319 320 321
 * Make sure that no one else is trying to put the system into a sleep state.
 * Fail if that's not the case.  Otherwise, prepare for system suspend, make the
 * system enter the given sleep state and clean up after wakeup.
322
 */
323
static int enter_state(suspend_state_t state)
324 325 326 327 328 329 330 331 332
{
	int error;

	if (!valid_state(state))
		return -ENODEV;

	if (!mutex_trylock(&pm_mutex))
		return -EBUSY;

333 334 335
	if (state == PM_SUSPEND_FREEZE)
		freeze_begin();

336 337 338 339 340
	printk(KERN_INFO "PM: Syncing filesystems ... ");
	sys_sync();
	printk("done.\n");

	pr_debug("PM: Preparing system for %s sleep\n", pm_states[state]);
341
	error = suspend_prepare(state);
342 343 344 345 346 347 348
	if (error)
		goto Unlock;

	if (suspend_test(TEST_FREEZER))
		goto Finish;

	pr_debug("PM: Entering %s sleep\n", pm_states[state]);
349
	pm_restrict_gfp_mask();
350
	error = suspend_devices_and_enter(state);
351
	pm_restore_gfp_mask();
352 353 354 355 356 357 358 359 360 361

 Finish:
	pr_debug("PM: Finishing wakeup.\n");
	suspend_finish();
 Unlock:
	mutex_unlock(&pm_mutex);
	return error;
}

/**
362 363
 * pm_suspend - Externally visible function for suspending the system.
 * @state: System sleep state to enter.
364
 *
365 366
 * Check if the value of @state represents one of the supported states,
 * execute enter_state() and update system suspend statistics.
367 368 369
 */
int pm_suspend(suspend_state_t state)
{
370 371 372 373 374 375 376 377 378 379 380
	int error;

	if (state <= PM_SUSPEND_ON || state >= PM_SUSPEND_MAX)
		return -EINVAL;

	error = enter_state(state);
	if (error) {
		suspend_stats.fail++;
		dpm_save_failed_errno(error);
	} else {
		suspend_stats.success++;
381
	}
382
	return error;
383 384
}
EXPORT_SYMBOL(pm_suspend);