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