1 /* $Id: power.c,v 1.10 2001/12/11 01:57:16 davem Exp $
2 * power.c: Power management driver.
4 * Copyright (C) 1999 David S. Miller (davem@redhat.com)
7 #define __KERNEL_SYSCALLS__
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>
18 #include <asm/system.h>
19 #include <asm/auxio.h>
21 #include <asm/of_device.h>
24 #include <linux/unistd.h>
27 * sysctl - toggle power-off restriction for serial console
28 * systems in machine_power_off()
33 #include <linux/pci.h>
34 static void __iomem
*power_reg
;
36 static DECLARE_WAIT_QUEUE_HEAD(powerd_wait
);
37 static int button_pressed
;
39 static irqreturn_t
power_handler(int irq
, void *dev_id
, struct pt_regs
*regs
)
41 if (button_pressed
== 0) {
43 wake_up(&powerd_wait
);
46 /* FIXME: Check registers for status... */
49 #endif /* CONFIG_PCI */
51 extern void machine_halt(void);
52 extern void machine_alt_power_off(void);
53 static void (*poweroff_method
)(void) = machine_alt_power_off
;
55 void machine_power_off(void)
57 if (!serial_console
|| scons_pwroff
) {
60 /* Both register bits seem to have the
61 * same effect, so until I figure out
62 * what the difference is...
64 writel(AUXIO_PCIO_CPWR_OFF
| AUXIO_PCIO_SPWR_OFF
, power_reg
);
66 #endif /* CONFIG_PCI */
67 if (poweroff_method
!= NULL
) {
75 void (*pm_power_off
)(void) = machine_power_off
;
76 EXPORT_SYMBOL(pm_power_off
);
79 static int powerd(void *__unused
)
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
);
87 add_wait_queue(&powerd_wait
, &wait
);
90 set_task_state(current
, TASK_INTERRUPTIBLE
);
93 flush_signals(current
);
96 __set_current_state(TASK_RUNNING
);
97 remove_wait_queue(&powerd_wait
, &wait
);
99 /* Ok, down we go... */
101 if (execve("/sbin/shutdown", argv
, envp
) < 0) {
102 printk("powerd: shutdown execution failed\n");
103 add_wait_queue(&powerd_wait
, &wait
);
109 static int __init
has_button_interrupt(unsigned int irq
, struct device_node
*dp
)
111 if (irq
== PCI_IRQ_NONE
)
113 if (!of_find_property(dp
, "button", NULL
))
119 static int __devinit
power_probe(struct of_device
*op
, const struct of_device_id
*match
)
121 struct resource
*res
= &op
->resource
[0];
122 unsigned int irq
= op
->irqs
[0];
124 power_reg
= of_ioremap(res
, 0, 0x4, "power");
126 printk("%s: Control reg at %lx ... ",
127 op
->node
->name
, res
->start
);
129 poweroff_method
= machine_halt
; /* able to use the standard halt */
131 if (has_button_interrupt(irq
, op
->node
)) {
132 if (kernel_thread(powerd
, NULL
, CLONE_FS
) < 0) {
133 printk("Failed to start power daemon.\n");
136 printk("powerd running.\n");
139 power_handler
, 0, "power", NULL
) < 0)
140 printk("power: Error, cannot register IRQ handler.\n");
142 printk("not using powerd.\n");
148 static struct of_device_id power_match
[] = {
155 static struct of_platform_driver power_driver
= {
157 .match_table
= power_match
,
158 .probe
= power_probe
,
161 void __init
power_init(void)
163 of_register_driver(&power_driver
, &of_bus_type
);
166 #endif /* CONFIG_PCI */