[PATCH] ipc: replace kmalloc and memset in get_undo_list with kzalloc
[deliverable/linux.git] / arch / sparc64 / kernel / power.c
CommitLineData
1da177e4
LT
1/* $Id: power.c,v 1.10 2001/12/11 01:57:16 davem Exp $
2 * power.c: Power management driver.
3 *
4 * Copyright (C) 1999 David S. Miller (davem@redhat.com)
5 */
6
bb49bcda
DM
7#define __KERNEL_SYSCALLS__
8
1da177e4
LT
9#include <linux/kernel.h>
10#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/sched.h>
13#include <linux/signal.h>
14#include <linux/delay.h>
15#include <linux/interrupt.h>
90bf8116 16#include <linux/pm.h>
1da177e4
LT
17
18#include <asm/system.h>
1da177e4 19#include <asm/auxio.h>
abbce6e2
DM
20#include <asm/prom.h>
21#include <asm/of_device.h>
22#include <asm/io.h>
1da177e4 23
1da177e4
LT
24#include <linux/unistd.h>
25
26/*
27 * sysctl - toggle power-off restriction for serial console
28 * systems in machine_power_off()
29 */
30int scons_pwroff = 1;
31
32#ifdef CONFIG_PCI
abbce6e2 33#include <linux/pci.h>
1da177e4
LT
34static void __iomem *power_reg;
35
36static DECLARE_WAIT_QUEUE_HEAD(powerd_wait);
37static int button_pressed;
38
39static irqreturn_t power_handler(int irq, void *dev_id, struct pt_regs *regs)
40{
41 if (button_pressed == 0) {
42 button_pressed = 1;
43 wake_up(&powerd_wait);
44 }
45
46 /* FIXME: Check registers for status... */
47 return IRQ_HANDLED;
48}
49#endif /* CONFIG_PCI */
50
51extern void machine_halt(void);
52extern void machine_alt_power_off(void);
53static void (*poweroff_method)(void) = machine_alt_power_off;
54
55void machine_power_off(void)
56{
57 if (!serial_console || scons_pwroff) {
58#ifdef CONFIG_PCI
59 if (power_reg) {
60 /* Both register bits seem to have the
61 * same effect, so until I figure out
62 * what the difference is...
63 */
64 writel(AUXIO_PCIO_CPWR_OFF | AUXIO_PCIO_SPWR_OFF, power_reg);
65 } else
66#endif /* CONFIG_PCI */
67 if (poweroff_method != NULL) {
68 poweroff_method();
69 /* not reached */
70 }
71 }
72 machine_halt();
73}
74
90bf8116
DM
75void (*pm_power_off)(void) = machine_power_off;
76EXPORT_SYMBOL(pm_power_off);
77
1da177e4
LT
78#ifdef CONFIG_PCI
79static int powerd(void *__unused)
80{
81 static char *envp[] = { "HOME=/", "TERM=linux", "PATH=/sbin:/usr/sbin:/bin:/usr/bin", NULL };
82 char *argv[] = { "/sbin/shutdown", "-h", "now", NULL };
83 DECLARE_WAITQUEUE(wait, current);
84
85 daemonize("powerd");
86
87 add_wait_queue(&powerd_wait, &wait);
88again:
89 for (;;) {
90 set_task_state(current, TASK_INTERRUPTIBLE);
91 if (button_pressed)
92 break;
93 flush_signals(current);
94 schedule();
95 }
96 __set_current_state(TASK_RUNNING);
97 remove_wait_queue(&powerd_wait, &wait);
98
99 /* Ok, down we go... */
100 button_pressed = 0;
101 if (execve("/sbin/shutdown", argv, envp) < 0) {
102 printk("powerd: shutdown execution failed\n");
103 add_wait_queue(&powerd_wait, &wait);
104 goto again;
105 }
106 return 0;
107}
108
690c8fd3 109static int __init has_button_interrupt(unsigned int irq, struct device_node *dp)
1da177e4 110{
2256c13b 111 if (irq == PCI_IRQ_NONE)
1da177e4 112 return 0;
690c8fd3 113 if (!of_find_property(dp, "button", NULL))
1da177e4
LT
114 return 0;
115
116 return 1;
117}
118
abbce6e2 119static int __devinit power_probe(struct of_device *op, const struct of_device_id *match)
1da177e4 120{
abbce6e2
DM
121 struct resource *res = &op->resource[0];
122 unsigned int irq= op->irqs[0];
a2bd4fd1 123
abbce6e2
DM
124 power_reg = of_ioremap(res, 0, 0x4, "power");
125
126 printk("%s: Control reg at %lx ... ",
127 op->node->name, res->start);
a2bd4fd1 128
1da177e4 129 poweroff_method = machine_halt; /* able to use the standard halt */
a2bd4fd1 130
abbce6e2 131 if (has_button_interrupt(irq, op->node)) {
1da177e4
LT
132 if (kernel_thread(powerd, NULL, CLONE_FS) < 0) {
133 printk("Failed to start power daemon.\n");
abbce6e2 134 return 0;
1da177e4
LT
135 }
136 printk("powerd running.\n");
137
2256c13b 138 if (request_irq(irq,
00cde674 139 power_handler, 0, "power", NULL) < 0)
1da177e4
LT
140 printk("power: Error, cannot register IRQ handler.\n");
141 } else {
142 printk("not using powerd.\n");
143 }
abbce6e2
DM
144
145 return 0;
1da177e4 146}
a2bd4fd1
DM
147
148static struct of_device_id power_match[] = {
149 {
150 .name = "power",
151 },
152 {},
153};
154
abbce6e2 155static struct of_platform_driver power_driver = {
a2bd4fd1
DM
156 .name = "power",
157 .match_table = power_match,
abbce6e2 158 .probe = power_probe,
a2bd4fd1
DM
159};
160
161void __init power_init(void)
162{
abbce6e2 163 of_register_driver(&power_driver, &of_bus_type);
a2bd4fd1
DM
164 return;
165}
1da177e4 166#endif /* CONFIG_PCI */
This page took 0.260255 seconds and 5 git commands to generate.