blob: 678ec736076b1395b4a16949cb5f595b72bdd616 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Eric W. Biedermanff319772005-07-26 11:47:32 -060012#include <linux/reboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14/*
15 * When the user hits Sys-Rq o to power down the machine this is the
16 * callback we use.
17 */
18
David Howells65f27f32006-11-22 14:55:48 +000019static void do_poweroff(struct work_struct *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070020{
Eric W. Biedermanff319772005-07-26 11:47:32 -060021 kernel_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -070022}
23
David Howells65f27f32006-11-22 14:55:48 +000024static DECLARE_WORK(poweroff_work, do_poweroff);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
David Howells7d12e782006-10-05 14:55:46 +010026static void handle_poweroff(int key, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
28 schedule_work(&poweroff_work);
29}
30
31static struct sysrq_key_op sysrq_poweroff_op = {
32 .handler = handle_poweroff,
33 .help_msg = "powerOff",
34 .action_msg = "Power Off",
35 .enable_mask = SYSRQ_ENABLE_BOOT,
36};
37
38static int pm_sysrq_init(void)
39{
40 register_sysrq_key('o', &sysrq_poweroff_op);
41 return 0;
42}
43
44subsys_initcall(pm_sysrq_init);