diff options
Diffstat (limited to 'arch/sparc64/kernel/power.c')
-rw-r--r-- | arch/sparc64/kernel/power.c | 55 |
1 files changed, 6 insertions, 49 deletions
diff --git a/arch/sparc64/kernel/power.c b/arch/sparc64/kernel/power.c index 3bb987a6d03c..076cad7f9757 100644 --- a/arch/sparc64/kernel/power.c +++ b/arch/sparc64/kernel/power.c | |||
@@ -1,34 +1,17 @@ | |||
1 | /* power.c: Power management driver. | 1 | /* power.c: Power management driver. |
2 | * | 2 | * |
3 | * Copyright (C) 1999, 2007 David S. Miller (davem@davemloft.net) | 3 | * Copyright (C) 1999, 2007, 2008 David S. Miller (davem@davemloft.net) |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include <linux/kernel.h> | 6 | #include <linux/kernel.h> |
7 | #include <linux/module.h> | 7 | #include <linux/module.h> |
8 | #include <linux/init.h> | 8 | #include <linux/init.h> |
9 | #include <linux/sched.h> | ||
10 | #include <linux/signal.h> | ||
11 | #include <linux/delay.h> | ||
12 | #include <linux/interrupt.h> | 9 | #include <linux/interrupt.h> |
13 | #include <linux/pm.h> | ||
14 | #include <linux/syscalls.h> | ||
15 | #include <linux/reboot.h> | 10 | #include <linux/reboot.h> |
16 | #include <linux/of_device.h> | 11 | #include <linux/of_device.h> |
17 | 12 | ||
18 | #include <asm/system.h> | ||
19 | #include <asm/auxio.h> | ||
20 | #include <asm/prom.h> | 13 | #include <asm/prom.h> |
21 | #include <asm/io.h> | 14 | #include <asm/io.h> |
22 | #include <asm/sstate.h> | ||
23 | #include <asm/reboot.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 | 15 | ||
33 | static void __iomem *power_reg; | 16 | static void __iomem *power_reg; |
34 | 17 | ||
@@ -40,31 +23,6 @@ static irqreturn_t power_handler(int irq, void *dev_id) | |||
40 | return IRQ_HANDLED; | 23 | return IRQ_HANDLED; |
41 | } | 24 | } |
42 | 25 | ||
43 | static void (*poweroff_method)(void) = machine_alt_power_off; | ||
44 | |||
45 | void machine_power_off(void) | ||
46 | { | ||
47 | sstate_poweroff(); | ||
48 | if (strcmp(of_console_device->type, "serial") || scons_pwroff) { | ||
49 | if (power_reg) { | ||
50 | /* Both register bits seem to have the | ||
51 | * same effect, so until I figure out | ||
52 | * what the difference is... | ||
53 | */ | ||
54 | writel(AUXIO_PCIO_CPWR_OFF | AUXIO_PCIO_SPWR_OFF, power_reg); | ||
55 | } else { | ||
56 | if (poweroff_method != NULL) { | ||
57 | poweroff_method(); | ||
58 | /* not reached */ | ||
59 | } | ||
60 | } | ||
61 | } | ||
62 | machine_halt(); | ||
63 | } | ||
64 | |||
65 | void (*pm_power_off)(void) = machine_power_off; | ||
66 | EXPORT_SYMBOL(pm_power_off); | ||
67 | |||
68 | static int __init has_button_interrupt(unsigned int irq, struct device_node *dp) | 26 | static int __init has_button_interrupt(unsigned int irq, struct device_node *dp) |
69 | { | 27 | { |
70 | if (irq == 0xffffffff) | 28 | if (irq == 0xffffffff) |
@@ -85,8 +43,6 @@ static int __devinit power_probe(struct of_device *op, const struct of_device_id | |||
85 | printk(KERN_INFO "%s: Control reg at %lx\n", | 43 | printk(KERN_INFO "%s: Control reg at %lx\n", |
86 | op->node->name, res->start); | 44 | op->node->name, res->start); |
87 | 45 | ||
88 | poweroff_method = machine_halt; /* able to use the standard halt */ | ||
89 | |||
90 | if (has_button_interrupt(irq, op->node)) { | 46 | if (has_button_interrupt(irq, op->node)) { |
91 | if (request_irq(irq, | 47 | if (request_irq(irq, |
92 | power_handler, 0, "power", NULL) < 0) | 48 | power_handler, 0, "power", NULL) < 0) |
@@ -96,7 +52,7 @@ static int __devinit power_probe(struct of_device *op, const struct of_device_id | |||
96 | return 0; | 52 | return 0; |
97 | } | 53 | } |
98 | 54 | ||
99 | static struct of_device_id power_match[] = { | 55 | static struct of_device_id __initdata power_match[] = { |
100 | { | 56 | { |
101 | .name = "power", | 57 | .name = "power", |
102 | }, | 58 | }, |
@@ -111,8 +67,9 @@ static struct of_platform_driver power_driver = { | |||
111 | }, | 67 | }, |
112 | }; | 68 | }; |
113 | 69 | ||
114 | void __init power_init(void) | 70 | static int __init power_init(void) |
115 | { | 71 | { |
116 | of_register_driver(&power_driver, &of_platform_bus_type); | 72 | return of_register_driver(&power_driver, &of_platform_bus_type); |
117 | return; | ||
118 | } | 73 | } |
74 | |||
75 | device_initcall(power_init); | ||