2 * sleep.c - ACPI sleep support.
4 * Copyright (c) 2005 Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
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
9 * This file is released under the GPLv2.
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>
21 #include <acpi/acpi_bus.h>
22 #include <acpi/acpi_drivers.h>
25 u8 sleep_states
[ACPI_S_STATE_COUNT
];
27 #ifdef CONFIG_PM_SLEEP
28 static u32 acpi_target_sleep_state
= ACPI_STATE_S0
;
29 static bool acpi_sleep_finish_wake_up
;
32 * ACPI 2.0 and later want us to execute _PTS after suspending devices, so we
33 * allow the user to request that behavior by using the 'acpi_new_pts_ordering'
34 * kernel command line option that causes the following variable to be set.
36 static bool new_pts_ordering
;
38 static int __init
acpi_new_pts_ordering(char *str
)
40 new_pts_ordering
= true;
43 __setup("acpi_new_pts_ordering", acpi_new_pts_ordering
);
46 static int acpi_sleep_prepare(u32 acpi_state
)
48 #ifdef CONFIG_ACPI_SLEEP
49 /* do we have a wakeup address for S2 and S3? */
50 if (acpi_state
== ACPI_STATE_S3
) {
51 if (!acpi_wakeup_address
) {
54 acpi_set_firmware_waking_vector((acpi_physical_address
)
56 acpi_wakeup_address
));
59 ACPI_FLUSH_CPU_CACHE();
60 acpi_enable_wakeup_device_prep(acpi_state
);
62 printk(KERN_INFO PREFIX
"Preparing to enter system sleep state S%d\n",
64 acpi_enter_sleep_state_prep(acpi_state
);
69 static struct platform_suspend_ops acpi_pm_ops
;
71 extern void do_suspend_lowlevel(void);
73 static u32 acpi_suspend_states
[] = {
74 [PM_SUSPEND_ON
] = ACPI_STATE_S0
,
75 [PM_SUSPEND_STANDBY
] = ACPI_STATE_S1
,
76 [PM_SUSPEND_MEM
] = ACPI_STATE_S3
,
77 [PM_SUSPEND_MAX
] = ACPI_STATE_S5
80 static int init_8259A_after_S1
;
83 * acpi_pm_begin - Set the target system sleep state to the state
84 * associated with given @pm_state, if supported.
87 static int acpi_pm_begin(suspend_state_t pm_state
)
89 u32 acpi_state
= acpi_suspend_states
[pm_state
];
92 if (sleep_states
[acpi_state
]) {
93 acpi_target_sleep_state
= acpi_state
;
97 error
= acpi_sleep_prepare(acpi_state
);
99 acpi_target_sleep_state
= ACPI_STATE_S0
;
101 acpi_sleep_finish_wake_up
= true;
103 printk(KERN_ERR
"ACPI does not support this state: %d\n",
111 * acpi_pm_prepare - Do preliminary suspend work.
113 * If necessary, set the firmware waking vector and do arch-specific
114 * nastiness to get the wakeup code to the waking vector.
117 static int acpi_pm_prepare(void)
119 if (new_pts_ordering
) {
120 int error
= acpi_sleep_prepare(acpi_target_sleep_state
);
123 acpi_target_sleep_state
= ACPI_STATE_S0
;
126 acpi_sleep_finish_wake_up
= true;
129 return ACPI_SUCCESS(acpi_hw_disable_all_gpes()) ? 0 : -EFAULT
;
133 * acpi_pm_enter - Actually enter a sleep state.
136 * Flush caches and go to sleep. For STR we have to call arch-specific
137 * assembly, which in turn call acpi_enter_sleep_state().
138 * It's unfortunate, but it works. Please fix if you're feeling frisky.
141 static int acpi_pm_enter(suspend_state_t pm_state
)
143 acpi_status status
= AE_OK
;
144 unsigned long flags
= 0;
145 u32 acpi_state
= acpi_target_sleep_state
;
147 ACPI_FLUSH_CPU_CACHE();
149 /* Do arch specific saving of state. */
150 if (acpi_state
== ACPI_STATE_S3
) {
151 int error
= acpi_save_state_mem();
157 local_irq_save(flags
);
158 acpi_enable_wakeup_device(acpi_state
);
159 switch (acpi_state
) {
162 status
= acpi_enter_sleep_state(acpi_state
);
166 do_suspend_lowlevel();
170 /* Reprogram control registers and execute _BFS */
171 acpi_leave_sleep_state_prep(acpi_state
);
173 /* ACPI 3.0 specs (P62) says that it's the responsibility
174 * of the OSPM to clear the status bit [ implying that the
175 * POWER_BUTTON event should not reach userspace ]
177 if (ACPI_SUCCESS(status
) && (acpi_state
== ACPI_STATE_S3
))
178 acpi_clear_event(ACPI_EVENT_POWER_BUTTON
);
181 * Disable and clear GPE status before interrupt is enabled. Some GPEs
182 * (like wakeup GPE) haven't handler, this can avoid such GPE misfire.
183 * acpi_leave_sleep_state will reenable specific GPEs later
185 acpi_hw_disable_all_gpes();
187 local_irq_restore(flags
);
188 printk(KERN_DEBUG
"Back to C!\n");
190 /* restore processor state */
191 if (acpi_state
== ACPI_STATE_S3
)
192 acpi_restore_state_mem();
194 return ACPI_SUCCESS(status
) ? 0 : -EFAULT
;
198 * acpi_pm_finish - Instruct the platform to leave a sleep state.
200 * This is called after we wake back up (or if entering the sleep state
204 static void acpi_pm_finish(void)
206 u32 acpi_state
= acpi_target_sleep_state
;
208 acpi_disable_wakeup_device(acpi_state
);
209 acpi_leave_sleep_state(acpi_state
);
211 /* reset firmware waking vector */
212 acpi_set_firmware_waking_vector((acpi_physical_address
) 0);
214 acpi_target_sleep_state
= ACPI_STATE_S0
;
215 acpi_sleep_finish_wake_up
= false;
218 if (init_8259A_after_S1
) {
219 printk("Broken toshiba laptop -> kicking interrupts\n");
226 * acpi_pm_end - Finish up suspend sequence.
229 static void acpi_pm_end(void)
232 * This is necessary in case acpi_pm_finish() is not called directly
233 * during a failing transition to a sleep state.
235 if (acpi_sleep_finish_wake_up
)
239 static int acpi_pm_state_valid(suspend_state_t pm_state
)
245 case PM_SUSPEND_STANDBY
:
247 acpi_state
= acpi_suspend_states
[pm_state
];
249 return sleep_states
[acpi_state
];
255 static struct platform_suspend_ops acpi_pm_ops
= {
256 .valid
= acpi_pm_state_valid
,
257 .begin
= acpi_pm_begin
,
258 .prepare
= acpi_pm_prepare
,
259 .enter
= acpi_pm_enter
,
260 .finish
= acpi_pm_finish
,
265 * Toshiba fails to preserve interrupts over S1, reinitialization
266 * of 8259 is needed after S1 resume.
268 static int __init
init_ints_after_s1(const struct dmi_system_id
*d
)
270 printk(KERN_WARNING
"%s with broken S1 detected.\n", d
->ident
);
271 init_8259A_after_S1
= 1;
275 static struct dmi_system_id __initdata acpisleep_dmi_table
[] = {
277 .callback
= init_ints_after_s1
,
278 .ident
= "Toshiba Satellite 4030cdt",
279 .matches
= {DMI_MATCH(DMI_PRODUCT_NAME
, "S4030CDT/4.3"),},
283 #endif /* CONFIG_SUSPEND */
285 #ifdef CONFIG_HIBERNATION
286 static int acpi_hibernation_begin(void)
290 acpi_target_sleep_state
= ACPI_STATE_S4
;
291 if (new_pts_ordering
)
294 error
= acpi_sleep_prepare(ACPI_STATE_S4
);
296 acpi_target_sleep_state
= ACPI_STATE_S0
;
298 acpi_sleep_finish_wake_up
= true;
303 static int acpi_hibernation_prepare(void)
305 if (new_pts_ordering
) {
306 int error
= acpi_sleep_prepare(ACPI_STATE_S4
);
309 acpi_target_sleep_state
= ACPI_STATE_S0
;
312 acpi_sleep_finish_wake_up
= true;
315 return ACPI_SUCCESS(acpi_hw_disable_all_gpes()) ? 0 : -EFAULT
;
318 static int acpi_hibernation_enter(void)
320 acpi_status status
= AE_OK
;
321 unsigned long flags
= 0;
323 ACPI_FLUSH_CPU_CACHE();
325 local_irq_save(flags
);
326 acpi_enable_wakeup_device(ACPI_STATE_S4
);
327 /* This shouldn't return. If it returns, we have a problem */
328 status
= acpi_enter_sleep_state(ACPI_STATE_S4
);
329 /* Reprogram control registers and execute _BFS */
330 acpi_leave_sleep_state_prep(ACPI_STATE_S4
);
331 local_irq_restore(flags
);
333 return ACPI_SUCCESS(status
) ? 0 : -EFAULT
;
336 static void acpi_hibernation_leave(void)
339 * If ACPI is not enabled by the BIOS and the boot kernel, we need to
343 /* Reprogram control registers and execute _BFS */
344 acpi_leave_sleep_state_prep(ACPI_STATE_S4
);
347 static void acpi_hibernation_finish(void)
349 acpi_disable_wakeup_device(ACPI_STATE_S4
);
350 acpi_leave_sleep_state(ACPI_STATE_S4
);
352 /* reset firmware waking vector */
353 acpi_set_firmware_waking_vector((acpi_physical_address
) 0);
355 acpi_target_sleep_state
= ACPI_STATE_S0
;
356 acpi_sleep_finish_wake_up
= false;
359 static void acpi_hibernation_end(void)
362 * This is necessary in case acpi_hibernation_finish() is not called
363 * directly during a failing transition to the sleep state.
365 if (acpi_sleep_finish_wake_up
)
366 acpi_hibernation_finish();
369 static int acpi_hibernation_pre_restore(void)
373 status
= acpi_hw_disable_all_gpes();
375 return ACPI_SUCCESS(status
) ? 0 : -EFAULT
;
378 static void acpi_hibernation_restore_cleanup(void)
380 acpi_hw_enable_all_runtime_gpes();
383 static struct platform_hibernation_ops acpi_hibernation_ops
= {
384 .begin
= acpi_hibernation_begin
,
385 .end
= acpi_hibernation_end
,
386 .pre_snapshot
= acpi_hibernation_prepare
,
387 .finish
= acpi_hibernation_finish
,
388 .prepare
= acpi_hibernation_prepare
,
389 .enter
= acpi_hibernation_enter
,
390 .leave
= acpi_hibernation_leave
,
391 .pre_restore
= acpi_hibernation_pre_restore
,
392 .restore_cleanup
= acpi_hibernation_restore_cleanup
,
394 #endif /* CONFIG_HIBERNATION */
396 int acpi_suspend(u32 acpi_state
)
398 suspend_state_t states
[] = {
399 [1] = PM_SUSPEND_STANDBY
,
400 [3] = PM_SUSPEND_MEM
,
404 if (acpi_state
< 6 && states
[acpi_state
])
405 return pm_suspend(states
[acpi_state
]);
411 #ifdef CONFIG_PM_SLEEP
413 * acpi_pm_device_sleep_state - return preferred power state of ACPI device
414 * in the system sleep state given by %acpi_target_sleep_state
415 * @dev: device to examine
416 * @wake: if set, the device should be able to wake up the system
417 * @d_min_p: used to store the upper limit of allowed states range
418 * Return value: preferred power state of the device on success, -ENODEV on
419 * failure (ie. if there's no 'struct acpi_device' for @dev)
421 * Find the lowest power (highest number) ACPI device power state that
422 * device @dev can be in while the system is in the sleep state represented
423 * by %acpi_target_sleep_state. If @wake is nonzero, the device should be
424 * able to wake up the system from this sleep state. If @d_min_p is set,
425 * the highest power (lowest number) device power state of @dev allowed
426 * in this system sleep state is stored at the location pointed to by it.
428 * The caller must ensure that @dev is valid before using this function.
429 * The caller is also responsible for figuring out if the device is
430 * supposed to be able to wake up the system and passing this information
434 int acpi_pm_device_sleep_state(struct device
*dev
, int wake
, int *d_min_p
)
436 acpi_handle handle
= DEVICE_ACPI_HANDLE(dev
);
437 struct acpi_device
*adev
;
438 char acpi_method
[] = "_SxD";
439 unsigned long d_min
, d_max
;
441 if (!handle
|| ACPI_FAILURE(acpi_bus_get_device(handle
, &adev
))) {
442 printk(KERN_DEBUG
"ACPI handle has no context!\n");
446 acpi_method
[2] = '0' + acpi_target_sleep_state
;
448 * If the sleep state is S0, we will return D3, but if the device has
449 * _S0W, we will use the value from _S0W
451 d_min
= ACPI_STATE_D0
;
452 d_max
= ACPI_STATE_D3
;
455 * If present, _SxD methods return the minimum D-state (highest power
456 * state) we can use for the corresponding S-states. Otherwise, the
457 * minimum D-state is D0 (ACPI 3.x).
459 * NOTE: We rely on acpi_evaluate_integer() not clobbering the integer
460 * provided -- that's our fault recovery, we ignore retval.
462 if (acpi_target_sleep_state
> ACPI_STATE_S0
)
463 acpi_evaluate_integer(handle
, acpi_method
, NULL
, &d_min
);
466 * If _PRW says we can wake up the system from the target sleep state,
467 * the D-state returned by _SxD is sufficient for that (we assume a
468 * wakeup-aware driver if wake is set). Still, if _SxW exists
469 * (ACPI 3.x), it should return the maximum (lowest power) D-state that
470 * can wake the system. _S0W may be valid, too.
472 if (acpi_target_sleep_state
== ACPI_STATE_S0
||
473 (wake
&& adev
->wakeup
.state
.enabled
&&
474 adev
->wakeup
.sleep_state
<= acpi_target_sleep_state
)) {
477 acpi_method
[3] = 'W';
478 status
= acpi_evaluate_integer(handle
, acpi_method
, NULL
,
480 if (ACPI_FAILURE(status
)) {
482 } else if (d_max
< d_min
) {
483 /* Warn the user of the broken DSDT */
484 printk(KERN_WARNING
"ACPI: Wrong value from %s\n",
497 static void acpi_power_off_prepare(void)
499 /* Prepare to power off the system */
500 acpi_sleep_prepare(ACPI_STATE_S5
);
501 acpi_hw_disable_all_gpes();
504 static void acpi_power_off(void)
506 /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */
507 printk("%s called\n", __func__
);
509 acpi_enable_wakeup_device(ACPI_STATE_S5
);
510 acpi_enter_sleep_state(ACPI_STATE_S5
);
513 int __init
acpi_sleep_init(void)
517 #ifdef CONFIG_SUSPEND
520 dmi_check_system(acpisleep_dmi_table
);
526 sleep_states
[ACPI_STATE_S0
] = 1;
527 printk(KERN_INFO PREFIX
"(supports S0");
529 #ifdef CONFIG_SUSPEND
530 for (i
= ACPI_STATE_S1
; i
< ACPI_STATE_S4
; i
++) {
531 status
= acpi_get_sleep_type_data(i
, &type_a
, &type_b
);
532 if (ACPI_SUCCESS(status
)) {
538 suspend_set_ops(&acpi_pm_ops
);
541 #ifdef CONFIG_HIBERNATION
542 status
= acpi_get_sleep_type_data(ACPI_STATE_S4
, &type_a
, &type_b
);
543 if (ACPI_SUCCESS(status
)) {
544 hibernation_set_ops(&acpi_hibernation_ops
);
545 sleep_states
[ACPI_STATE_S4
] = 1;
549 status
= acpi_get_sleep_type_data(ACPI_STATE_S5
, &type_a
, &type_b
);
550 if (ACPI_SUCCESS(status
)) {
551 sleep_states
[ACPI_STATE_S5
] = 1;
553 pm_power_off_prepare
= acpi_power_off_prepare
;
554 pm_power_off
= acpi_power_off
;