2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* poweroff.c - sysrq handler to gracefully power down machine.
|
|
|
|
*
|
|
|
|
* This file is released under the GPL v2
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/sysrq.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/pm.h>
|
|
|
|
#include <linux/workqueue.h>
|
2005-07-26 17:47:32 +00:00
|
|
|
#include <linux/reboot.h>
|
2008-07-24 04:28:40 +00:00
|
|
|
#include <linux/cpumask.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* When the user hits Sys-Rq o to power down the machine this is the
|
|
|
|
* callback we use.
|
|
|
|
*/
|
|
|
|
|
2006-11-22 14:55:48 +00:00
|
|
|
static void do_poweroff(struct work_struct *dummy)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-07-26 17:47:32 +00:00
|
|
|
kernel_power_off();
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-11-22 14:55:48 +00:00
|
|
|
static DECLARE_WORK(poweroff_work, do_poweroff);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-08-18 04:15:46 +00:00
|
|
|
static void handle_poweroff(int key)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-07-24 04:28:40 +00:00
|
|
|
/* run sysrq poweroff on boot cpu */
|
2008-12-31 23:42:28 +00:00
|
|
|
schedule_work_on(cpumask_first(cpu_online_mask), &poweroff_work);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct sysrq_key_op sysrq_poweroff_op = {
|
|
|
|
.handler = handle_poweroff,
|
|
|
|
.help_msg = "powerOff",
|
|
|
|
.action_msg = "Power Off",
|
2009-02-22 04:54:27 +00:00
|
|
|
.enable_mask = SYSRQ_ENABLE_BOOT,
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int pm_sysrq_init(void)
|
|
|
|
{
|
|
|
|
register_sysrq_key('o', &sysrq_poweroff_op);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
subsys_initcall(pm_sysrq_init);
|