Merge tag 'v3.10.85' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / kernel / power / poweroff.c
CommitLineData
1da177e4
LT
1/*
2 * poweroff.c - sysrq handler to gracefully power down machine.
3 *
4 * This file is released under the GPL v2
5 */
6
7#include <linux/kernel.h>
8#include <linux/sysrq.h>
9#include <linux/init.h>
10#include <linux/pm.h>
11#include <linux/workqueue.h>
ff319777 12#include <linux/reboot.h>
2f15fc4b 13#include <linux/cpumask.h>
1da177e4
LT
14
15/*
16 * When the user hits Sys-Rq o to power down the machine this is the
17 * callback we use.
18 */
19
65f27f38 20static void do_poweroff(struct work_struct *dummy)
1da177e4 21{
ff319777 22 kernel_power_off();
1da177e4
LT
23}
24
65f27f38 25static DECLARE_WORK(poweroff_work, do_poweroff);
1da177e4 26
1495cc9d 27static void handle_poweroff(int key)
1da177e4 28{
2f15fc4b 29 /* run sysrq poweroff on boot cpu */
41c7bb95 30 schedule_work_on(cpumask_first(cpu_online_mask), &poweroff_work);
1da177e4
LT
31}
32
33static struct sysrq_key_op sysrq_poweroff_op = {
34 .handler = handle_poweroff,
28ad585e 35 .help_msg = "poweroff(o)",
1da177e4 36 .action_msg = "Power Off",
1dc492a0 37 .enable_mask = SYSRQ_ENABLE_BOOT,
1da177e4
LT
38};
39
bbdc18a3 40static int __init pm_sysrq_init(void)
1da177e4
LT
41{
42 register_sysrq_key('o', &sysrq_poweroff_op);
43 return 0;
44}
45
46subsys_initcall(pm_sysrq_init);