]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/acpi/sleep/main.c
PM: Make suspend_ops static
[net-next-2.6.git] / drivers / acpi / sleep / main.c
CommitLineData
1da177e4
LT
1/*
2 * sleep.c - ACPI sleep support.
3 *
e2a5b420 4 * Copyright (c) 2005 Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
1da177e4
LT
5 * Copyright (c) 2004 David Shaohua Li <shaohua.li@intel.com>
6 * Copyright (c) 2000-2003 Patrick Mochel
7 * Copyright (c) 2003 Open Source Development Lab
8 *
9 * This file is released under the GPLv2.
10 *
11 */
12
13#include <linux/delay.h>
14#include <linux/irq.h>
15#include <linux/dmi.h>
16#include <linux/device.h>
17#include <linux/suspend.h>
f216cc37
AS
18
19#include <asm/io.h>
20
1da177e4
LT
21#include <acpi/acpi_bus.h>
22#include <acpi/acpi_drivers.h>
23#include "sleep.h"
24
25u8 sleep_states[ACPI_S_STATE_COUNT];
26
853298bc 27#ifdef CONFIG_PM_SLEEP
296699de 28static u32 acpi_target_sleep_state = ACPI_STATE_S0;
853298bc 29#endif
296699de 30
2f3f2226
AS
31int acpi_sleep_prepare(u32 acpi_state)
32{
33#ifdef CONFIG_ACPI_SLEEP
34 /* do we have a wakeup address for S2 and S3? */
35 if (acpi_state == ACPI_STATE_S3) {
36 if (!acpi_wakeup_address) {
37 return -EFAULT;
38 }
39 acpi_set_firmware_waking_vector((acpi_physical_address)
40 virt_to_phys((void *)
41 acpi_wakeup_address));
42
43 }
44 ACPI_FLUSH_CPU_CACHE();
45 acpi_enable_wakeup_device_prep(acpi_state);
46#endif
47 acpi_gpe_sleep_prepare(acpi_state);
48 acpi_enter_sleep_state_prep(acpi_state);
49 return 0;
50}
51
296699de 52#ifdef CONFIG_SUSPEND
26398a70 53static struct platform_suspend_ops acpi_pm_ops;
1da177e4 54
1da177e4
LT
55extern void do_suspend_lowlevel(void);
56
57static u32 acpi_suspend_states[] = {
e2a5b420
AS
58 [PM_SUSPEND_ON] = ACPI_STATE_S0,
59 [PM_SUSPEND_STANDBY] = ACPI_STATE_S1,
60 [PM_SUSPEND_MEM] = ACPI_STATE_S3,
e2a5b420 61 [PM_SUSPEND_MAX] = ACPI_STATE_S5
1da177e4
LT
62};
63
64static int init_8259A_after_S1;
65
e9b3aba8
RW
66/**
67 * acpi_pm_set_target - Set the target system sleep state to the state
68 * associated with given @pm_state, if supported.
69 */
70
71static int acpi_pm_set_target(suspend_state_t pm_state)
72{
73 u32 acpi_state = acpi_suspend_states[pm_state];
74 int error = 0;
75
76 if (sleep_states[acpi_state]) {
77 acpi_target_sleep_state = acpi_state;
78 } else {
79 printk(KERN_ERR "ACPI does not support this state: %d\n",
80 pm_state);
81 error = -ENOSYS;
82 }
83 return error;
84}
85
1da177e4
LT
86/**
87 * acpi_pm_prepare - Do preliminary suspend work.
1da177e4 88 *
e9b3aba8
RW
89 * If necessary, set the firmware waking vector and do arch-specific
90 * nastiness to get the wakeup code to the waking vector.
1da177e4
LT
91 */
92
e6c5eb95 93static int acpi_pm_prepare(void)
1da177e4 94{
e9b3aba8 95 int error = acpi_sleep_prepare(acpi_target_sleep_state);
1da177e4 96
e9b3aba8
RW
97 if (error)
98 acpi_target_sleep_state = ACPI_STATE_S0;
99
100 return error;
1da177e4
LT
101}
102
1da177e4
LT
103/**
104 * acpi_pm_enter - Actually enter a sleep state.
e9b3aba8 105 * @pm_state: ignored
1da177e4 106 *
50ad147a
RW
107 * Flush caches and go to sleep. For STR we have to call arch-specific
108 * assembly, which in turn call acpi_enter_sleep_state().
1da177e4
LT
109 * It's unfortunate, but it works. Please fix if you're feeling frisky.
110 */
111
112static int acpi_pm_enter(suspend_state_t pm_state)
113{
114 acpi_status status = AE_OK;
115 unsigned long flags = 0;
e9b3aba8 116 u32 acpi_state = acpi_target_sleep_state;
1da177e4
LT
117
118 ACPI_FLUSH_CPU_CACHE();
119
120 /* Do arch specific saving of state. */
50ad147a 121 if (acpi_state == ACPI_STATE_S3) {
1da177e4 122 int error = acpi_save_state_mem();
e9b3aba8
RW
123
124 if (error) {
125 acpi_target_sleep_state = ACPI_STATE_S0;
1da177e4 126 return error;
e9b3aba8 127 }
1da177e4
LT
128 }
129
1da177e4
LT
130 local_irq_save(flags);
131 acpi_enable_wakeup_device(acpi_state);
e9b3aba8
RW
132 switch (acpi_state) {
133 case ACPI_STATE_S1:
1da177e4
LT
134 barrier();
135 status = acpi_enter_sleep_state(acpi_state);
136 break;
137
e9b3aba8 138 case ACPI_STATE_S3:
1da177e4
LT
139 do_suspend_lowlevel();
140 break;
1da177e4 141 }
872d83d0
AP
142
143 /* ACPI 3.0 specs (P62) says that it's the responsabilty
144 * of the OSPM to clear the status bit [ implying that the
145 * POWER_BUTTON event should not reach userspace ]
146 */
147 if (ACPI_SUCCESS(status) && (acpi_state == ACPI_STATE_S3))
148 acpi_clear_event(ACPI_EVENT_POWER_BUTTON);
149
1da177e4
LT
150 local_irq_restore(flags);
151 printk(KERN_DEBUG "Back to C!\n");
152
e9b3aba8 153 /* restore processor state */
50ad147a 154 if (acpi_state == ACPI_STATE_S3)
1da177e4
LT
155 acpi_restore_state_mem();
156
1da177e4
LT
157 return ACPI_SUCCESS(status) ? 0 : -EFAULT;
158}
159
1da177e4
LT
160/**
161 * acpi_pm_finish - Finish up suspend sequence.
1da177e4
LT
162 *
163 * This is called after we wake back up (or if entering the sleep state
164 * failed).
165 */
166
e6c5eb95 167static void acpi_pm_finish(void)
1da177e4 168{
e9b3aba8 169 u32 acpi_state = acpi_target_sleep_state;
1da177e4
LT
170
171 acpi_leave_sleep_state(acpi_state);
172 acpi_disable_wakeup_device(acpi_state);
173
174 /* reset firmware waking vector */
175 acpi_set_firmware_waking_vector((acpi_physical_address) 0);
176
e9b3aba8
RW
177 acpi_target_sleep_state = ACPI_STATE_S0;
178
e8b2fd01 179#ifdef CONFIG_X86
1da177e4
LT
180 if (init_8259A_after_S1) {
181 printk("Broken toshiba laptop -> kicking interrupts\n");
182 init_8259A(0);
183 }
e8b2fd01 184#endif
1da177e4
LT
185}
186
eb9289eb
SL
187static int acpi_pm_state_valid(suspend_state_t pm_state)
188{
e8c9c502 189 u32 acpi_state;
eb9289eb 190
e8c9c502
JB
191 switch (pm_state) {
192 case PM_SUSPEND_ON:
193 case PM_SUSPEND_STANDBY:
194 case PM_SUSPEND_MEM:
195 acpi_state = acpi_suspend_states[pm_state];
196
197 return sleep_states[acpi_state];
198 default:
199 return 0;
200 }
eb9289eb
SL
201}
202
26398a70 203static struct platform_suspend_ops acpi_pm_ops = {
eb9289eb 204 .valid = acpi_pm_state_valid,
e9b3aba8 205 .set_target = acpi_pm_set_target,
e2a5b420
AS
206 .prepare = acpi_pm_prepare,
207 .enter = acpi_pm_enter,
208 .finish = acpi_pm_finish,
1da177e4
LT
209};
210
296699de
RW
211/*
212 * Toshiba fails to preserve interrupts over S1, reinitialization
213 * of 8259 is needed after S1 resume.
214 */
1855256c 215static int __init init_ints_after_s1(const struct dmi_system_id *d)
296699de
RW
216{
217 printk(KERN_WARNING "%s with broken S1 detected.\n", d->ident);
218 init_8259A_after_S1 = 1;
219 return 0;
220}
221
222static struct dmi_system_id __initdata acpisleep_dmi_table[] = {
223 {
224 .callback = init_ints_after_s1,
225 .ident = "Toshiba Satellite 4030cdt",
226 .matches = {DMI_MATCH(DMI_PRODUCT_NAME, "S4030CDT/4.3"),},
227 },
228 {},
229};
230#endif /* CONFIG_SUSPEND */
231
b0cb1a19 232#ifdef CONFIG_HIBERNATION
a3d25c27
RW
233static int acpi_hibernation_prepare(void)
234{
235 return acpi_sleep_prepare(ACPI_STATE_S4);
236}
237
238static int acpi_hibernation_enter(void)
239{
240 acpi_status status = AE_OK;
241 unsigned long flags = 0;
242
243 ACPI_FLUSH_CPU_CACHE();
244
245 local_irq_save(flags);
246 acpi_enable_wakeup_device(ACPI_STATE_S4);
247 /* This shouldn't return. If it returns, we have a problem */
248 status = acpi_enter_sleep_state(ACPI_STATE_S4);
249 local_irq_restore(flags);
250
251 return ACPI_SUCCESS(status) ? 0 : -EFAULT;
252}
253
254static void acpi_hibernation_finish(void)
255{
256 acpi_leave_sleep_state(ACPI_STATE_S4);
257 acpi_disable_wakeup_device(ACPI_STATE_S4);
258
259 /* reset firmware waking vector */
260 acpi_set_firmware_waking_vector((acpi_physical_address) 0);
a3d25c27
RW
261}
262
a634cc10
RW
263static int acpi_hibernation_pre_restore(void)
264{
265 acpi_status status;
266
267 status = acpi_hw_disable_all_gpes();
268
269 return ACPI_SUCCESS(status) ? 0 : -EFAULT;
270}
271
272static void acpi_hibernation_restore_cleanup(void)
273{
274 acpi_hw_enable_all_runtime_gpes();
275}
276
a3d25c27
RW
277static struct hibernation_ops acpi_hibernation_ops = {
278 .prepare = acpi_hibernation_prepare,
279 .enter = acpi_hibernation_enter,
280 .finish = acpi_hibernation_finish,
a634cc10
RW
281 .pre_restore = acpi_hibernation_pre_restore,
282 .restore_cleanup = acpi_hibernation_restore_cleanup,
a3d25c27 283};
b0cb1a19 284#endif /* CONFIG_HIBERNATION */
a3d25c27 285
296699de
RW
286int acpi_suspend(u32 acpi_state)
287{
288 suspend_state_t states[] = {
289 [1] = PM_SUSPEND_STANDBY,
290 [3] = PM_SUSPEND_MEM,
291 [5] = PM_SUSPEND_MAX
292 };
293
294 if (acpi_state < 6 && states[acpi_state])
295 return pm_suspend(states[acpi_state]);
296 if (acpi_state == 4)
297 return hibernate();
298 return -EINVAL;
299}
300
853298bc 301#ifdef CONFIG_PM_SLEEP
fd4aff1a
SL
302/**
303 * acpi_pm_device_sleep_state - return preferred power state of ACPI device
304 * in the system sleep state given by %acpi_target_sleep_state
305 * @dev: device to examine
306 * @wake: if set, the device should be able to wake up the system
307 * @d_min_p: used to store the upper limit of allowed states range
308 * Return value: preferred power state of the device on success, -ENODEV on
309 * failure (ie. if there's no 'struct acpi_device' for @dev)
310 *
311 * Find the lowest power (highest number) ACPI device power state that
312 * device @dev can be in while the system is in the sleep state represented
313 * by %acpi_target_sleep_state. If @wake is nonzero, the device should be
314 * able to wake up the system from this sleep state. If @d_min_p is set,
315 * the highest power (lowest number) device power state of @dev allowed
316 * in this system sleep state is stored at the location pointed to by it.
317 *
318 * The caller must ensure that @dev is valid before using this function.
319 * The caller is also responsible for figuring out if the device is
320 * supposed to be able to wake up the system and passing this information
321 * via @wake.
322 */
323
324int acpi_pm_device_sleep_state(struct device *dev, int wake, int *d_min_p)
325{
326 acpi_handle handle = DEVICE_ACPI_HANDLE(dev);
327 struct acpi_device *adev;
328 char acpi_method[] = "_SxD";
329 unsigned long d_min, d_max;
330
331 if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &adev))) {
ead77594 332 printk(KERN_DEBUG "ACPI handle has no context!\n");
fd4aff1a
SL
333 return -ENODEV;
334 }
335
336 acpi_method[2] = '0' + acpi_target_sleep_state;
337 /*
338 * If the sleep state is S0, we will return D3, but if the device has
339 * _S0W, we will use the value from _S0W
340 */
341 d_min = ACPI_STATE_D0;
342 d_max = ACPI_STATE_D3;
343
344 /*
345 * If present, _SxD methods return the minimum D-state (highest power
346 * state) we can use for the corresponding S-states. Otherwise, the
347 * minimum D-state is D0 (ACPI 3.x).
348 *
349 * NOTE: We rely on acpi_evaluate_integer() not clobbering the integer
350 * provided -- that's our fault recovery, we ignore retval.
351 */
352 if (acpi_target_sleep_state > ACPI_STATE_S0)
353 acpi_evaluate_integer(handle, acpi_method, NULL, &d_min);
354
355 /*
356 * If _PRW says we can wake up the system from the target sleep state,
357 * the D-state returned by _SxD is sufficient for that (we assume a
358 * wakeup-aware driver if wake is set). Still, if _SxW exists
359 * (ACPI 3.x), it should return the maximum (lowest power) D-state that
360 * can wake the system. _S0W may be valid, too.
361 */
362 if (acpi_target_sleep_state == ACPI_STATE_S0 ||
363 (wake && adev->wakeup.state.enabled &&
364 adev->wakeup.sleep_state <= acpi_target_sleep_state)) {
365 acpi_method[3] = 'W';
366 acpi_evaluate_integer(handle, acpi_method, NULL, &d_max);
367 /* Sanity check */
368 if (d_max < d_min)
369 d_min = d_max;
370 }
371
372 if (d_min_p)
373 *d_min_p = d_min;
374 return d_max;
375}
853298bc 376#endif
fd4aff1a 377
f216cc37
AS
378static void acpi_power_off_prepare(void)
379{
380 /* Prepare to power off the system */
381 acpi_sleep_prepare(ACPI_STATE_S5);
382}
383
384static void acpi_power_off(void)
385{
386 /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */
387 printk("%s called\n", __FUNCTION__);
388 local_irq_disable();
389 acpi_enter_sleep_state(ACPI_STATE_S5);
390}
391
aafbcd16 392int __init acpi_sleep_init(void)
1da177e4 393{
296699de
RW
394 acpi_status status;
395 u8 type_a, type_b;
396#ifdef CONFIG_SUSPEND
e2a5b420 397 int i = 0;
1da177e4
LT
398
399 dmi_check_system(acpisleep_dmi_table);
296699de 400#endif
1da177e4
LT
401
402 if (acpi_disabled)
403 return 0;
404
5a50fe70
FP
405 sleep_states[ACPI_STATE_S0] = 1;
406 printk(KERN_INFO PREFIX "(supports S0");
407
296699de 408#ifdef CONFIG_SUSPEND
5a50fe70 409 for (i = ACPI_STATE_S1; i < ACPI_STATE_S4; i++) {
1da177e4
LT
410 status = acpi_get_sleep_type_data(i, &type_a, &type_b);
411 if (ACPI_SUCCESS(status)) {
412 sleep_states[i] = 1;
413 printk(" S%d", i);
414 }
1da177e4 415 }
1da177e4 416
26398a70 417 suspend_set_ops(&acpi_pm_ops);
296699de 418#endif
a3d25c27 419
b0cb1a19 420#ifdef CONFIG_HIBERNATION
296699de
RW
421 status = acpi_get_sleep_type_data(ACPI_STATE_S4, &type_a, &type_b);
422 if (ACPI_SUCCESS(status)) {
a3d25c27 423 hibernation_set_ops(&acpi_hibernation_ops);
296699de 424 sleep_states[ACPI_STATE_S4] = 1;
f216cc37 425 printk(" S4");
296699de 426 }
a3d25c27 427#endif
f216cc37
AS
428 status = acpi_get_sleep_type_data(ACPI_STATE_S5, &type_a, &type_b);
429 if (ACPI_SUCCESS(status)) {
430 sleep_states[ACPI_STATE_S5] = 1;
431 printk(" S5");
432 pm_power_off_prepare = acpi_power_off_prepare;
433 pm_power_off = acpi_power_off;
434 }
435 printk(")\n");
1da177e4
LT
436 return 0;
437}