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>
18 #include <linux/reboot.h>
19 #include <linux/acpi.h>
20 #include <linux/module.h>
21 #include <linux/pm_runtime.h>
25 #include <acpi/acpi_bus.h>
26 #include <acpi/acpi_drivers.h>
31 static u8 sleep_states
[ACPI_S_STATE_COUNT
];
33 static void acpi_sleep_tts_switch(u32 acpi_state
)
35 union acpi_object in_arg
= { ACPI_TYPE_INTEGER
};
36 struct acpi_object_list arg_list
= { 1, &in_arg
};
37 acpi_status status
= AE_OK
;
39 in_arg
.integer
.value
= acpi_state
;
40 status
= acpi_evaluate_object(NULL
, "\\_TTS", &arg_list
, NULL
);
41 if (ACPI_FAILURE(status
) && status
!= AE_NOT_FOUND
) {
43 * OS can't evaluate the _TTS object correctly. Some warning
44 * message will be printed. But it won't break anything.
46 printk(KERN_NOTICE
"Failure in evaluating _TTS object\n");
50 static int tts_notify_reboot(struct notifier_block
*this,
51 unsigned long code
, void *x
)
53 acpi_sleep_tts_switch(ACPI_STATE_S5
);
57 static struct notifier_block tts_notifier
= {
58 .notifier_call
= tts_notify_reboot
,
63 static int acpi_sleep_prepare(u32 acpi_state
)
65 #ifdef CONFIG_ACPI_SLEEP
66 /* do we have a wakeup address for S2 and S3? */
67 if (acpi_state
== ACPI_STATE_S3
) {
68 if (!acpi_wakeup_address
)
70 acpi_set_firmware_waking_vector(acpi_wakeup_address
);
73 ACPI_FLUSH_CPU_CACHE();
75 printk(KERN_INFO PREFIX
"Preparing to enter system sleep state S%d\n",
77 acpi_enable_wakeup_devices(acpi_state
);
78 acpi_enter_sleep_state_prep(acpi_state
);
82 #ifdef CONFIG_ACPI_SLEEP
83 static u32 acpi_target_sleep_state
= ACPI_STATE_S0
;
84 static bool pwr_btn_event_pending
;
87 * The ACPI specification wants us to save NVS memory regions during hibernation
88 * and to restore them during the subsequent resume. Windows does that also for
89 * suspend to RAM. However, it is known that this mechanism does not work on
90 * all machines, so we allow the user to disable it with the help of the
91 * 'acpi_sleep=nonvs' kernel command line option.
93 static bool nvs_nosave
;
95 void __init
acpi_nvs_nosave(void)
101 * ACPI 1.0 wants us to execute _PTS before suspending devices, so we allow the
102 * user to request that behavior by using the 'acpi_old_suspend_ordering'
103 * kernel command line option that causes the following variable to be set.
105 static bool old_suspend_ordering
;
107 void __init
acpi_old_suspend_ordering(void)
109 old_suspend_ordering
= true;
113 * acpi_pm_freeze - Disable the GPEs and suspend EC transactions.
115 static int acpi_pm_freeze(void)
117 acpi_disable_all_gpes();
118 acpi_os_wait_events_complete();
119 acpi_ec_block_transactions();
124 * acpi_pre_suspend - Enable wakeup devices, "freeze" EC and save NVS.
126 static int acpi_pm_pre_suspend(void)
129 return suspend_nvs_save();
133 * __acpi_pm_prepare - Prepare the platform to enter the target state.
135 * If necessary, set the firmware waking vector and do arch-specific
136 * nastiness to get the wakeup code to the waking vector.
138 static int __acpi_pm_prepare(void)
140 int error
= acpi_sleep_prepare(acpi_target_sleep_state
);
142 acpi_target_sleep_state
= ACPI_STATE_S0
;
148 * acpi_pm_prepare - Prepare the platform to enter the target sleep
149 * state and disable the GPEs.
151 static int acpi_pm_prepare(void)
153 int error
= __acpi_pm_prepare();
155 error
= acpi_pm_pre_suspend();
160 static int find_powerf_dev(struct device
*dev
, void *data
)
162 struct acpi_device
*device
= to_acpi_device(dev
);
163 const char *hid
= acpi_device_hid(device
);
165 return !strcmp(hid
, ACPI_BUTTON_HID_POWERF
);
169 * acpi_pm_finish - Instruct the platform to leave a sleep state.
171 * This is called after we wake back up (or if entering the sleep state
174 static void acpi_pm_finish(void)
176 struct device
*pwr_btn_dev
;
177 u32 acpi_state
= acpi_target_sleep_state
;
179 acpi_ec_unblock_transactions();
182 if (acpi_state
== ACPI_STATE_S0
)
185 printk(KERN_INFO PREFIX
"Waking up from system sleep state S%d\n",
187 acpi_disable_wakeup_devices(acpi_state
);
188 acpi_leave_sleep_state(acpi_state
);
190 /* reset firmware waking vector */
191 acpi_set_firmware_waking_vector((acpi_physical_address
) 0);
193 acpi_target_sleep_state
= ACPI_STATE_S0
;
195 /* If we were woken with the fixed power button, provide a small
196 * hint to userspace in the form of a wakeup event on the fixed power
197 * button device (if it can be found).
199 * We delay the event generation til now, as the PM layer requires
200 * timekeeping to be running before we generate events. */
201 if (!pwr_btn_event_pending
)
204 pwr_btn_event_pending
= false;
205 pwr_btn_dev
= bus_find_device(&acpi_bus_type
, NULL
, NULL
,
208 pm_wakeup_event(pwr_btn_dev
, 0);
209 put_device(pwr_btn_dev
);
214 * acpi_pm_end - Finish up suspend sequence.
216 static void acpi_pm_end(void)
219 * This is necessary in case acpi_pm_finish() is not called during a
220 * failing transition to a sleep state.
222 acpi_target_sleep_state
= ACPI_STATE_S0
;
223 acpi_sleep_tts_switch(acpi_target_sleep_state
);
225 #else /* !CONFIG_ACPI_SLEEP */
226 #define acpi_target_sleep_state ACPI_STATE_S0
227 #endif /* CONFIG_ACPI_SLEEP */
229 #ifdef CONFIG_SUSPEND
230 static u32 acpi_suspend_states
[] = {
231 [PM_SUSPEND_ON
] = ACPI_STATE_S0
,
232 [PM_SUSPEND_STANDBY
] = ACPI_STATE_S1
,
233 [PM_SUSPEND_MEM
] = ACPI_STATE_S3
,
234 [PM_SUSPEND_MAX
] = ACPI_STATE_S5
238 * acpi_suspend_begin - Set the target system sleep state to the state
239 * associated with given @pm_state, if supported.
241 static int acpi_suspend_begin(suspend_state_t pm_state
)
243 u32 acpi_state
= acpi_suspend_states
[pm_state
];
246 error
= nvs_nosave
? 0 : suspend_nvs_alloc();
250 if (sleep_states
[acpi_state
]) {
251 acpi_target_sleep_state
= acpi_state
;
252 acpi_sleep_tts_switch(acpi_target_sleep_state
);
254 printk(KERN_ERR
"ACPI does not support this state: %d\n",
262 * acpi_suspend_enter - Actually enter a sleep state.
265 * Flush caches and go to sleep. For STR we have to call arch-specific
266 * assembly, which in turn call acpi_enter_sleep_state().
267 * It's unfortunate, but it works. Please fix if you're feeling frisky.
269 static int acpi_suspend_enter(suspend_state_t pm_state
)
271 acpi_status status
= AE_OK
;
272 u32 acpi_state
= acpi_target_sleep_state
;
275 ACPI_FLUSH_CPU_CACHE();
277 switch (acpi_state
) {
280 status
= acpi_enter_sleep_state(acpi_state
);
284 error
= acpi_suspend_lowlevel();
287 pr_info(PREFIX
"Low-level resume complete\n");
291 /* This violates the spec but is required for bug compatibility. */
292 acpi_write_bit_register(ACPI_BITREG_SCI_ENABLE
, 1);
294 /* Reprogram control registers */
295 acpi_leave_sleep_state_prep(acpi_state
);
297 /* ACPI 3.0 specs (P62) says that it's the responsibility
298 * of the OSPM to clear the status bit [ implying that the
299 * POWER_BUTTON event should not reach userspace ]
301 * However, we do generate a small hint for userspace in the form of
302 * a wakeup event. We flag this condition for now and generate the
303 * event later, as we're currently too early in resume to be able to
304 * generate wakeup events.
306 if (ACPI_SUCCESS(status
) && (acpi_state
== ACPI_STATE_S3
)) {
307 acpi_event_status pwr_btn_status
;
309 acpi_get_event_status(ACPI_EVENT_POWER_BUTTON
, &pwr_btn_status
);
311 if (pwr_btn_status
& ACPI_EVENT_FLAG_SET
) {
312 acpi_clear_event(ACPI_EVENT_POWER_BUTTON
);
314 pwr_btn_event_pending
= true;
319 * Disable and clear GPE status before interrupt is enabled. Some GPEs
320 * (like wakeup GPE) haven't handler, this can avoid such GPE misfire.
321 * acpi_leave_sleep_state will reenable specific GPEs later
323 acpi_disable_all_gpes();
324 /* Allow EC transactions to happen. */
325 acpi_ec_unblock_transactions_early();
327 suspend_nvs_restore();
329 return ACPI_SUCCESS(status
) ? 0 : -EFAULT
;
332 static int acpi_suspend_state_valid(suspend_state_t pm_state
)
338 case PM_SUSPEND_STANDBY
:
340 acpi_state
= acpi_suspend_states
[pm_state
];
342 return sleep_states
[acpi_state
];
348 static const struct platform_suspend_ops acpi_suspend_ops
= {
349 .valid
= acpi_suspend_state_valid
,
350 .begin
= acpi_suspend_begin
,
351 .prepare_late
= acpi_pm_prepare
,
352 .enter
= acpi_suspend_enter
,
353 .wake
= acpi_pm_finish
,
358 * acpi_suspend_begin_old - Set the target system sleep state to the
359 * state associated with given @pm_state, if supported, and
360 * execute the _PTS control method. This function is used if the
361 * pre-ACPI 2.0 suspend ordering has been requested.
363 static int acpi_suspend_begin_old(suspend_state_t pm_state
)
365 int error
= acpi_suspend_begin(pm_state
);
367 error
= __acpi_pm_prepare();
373 * The following callbacks are used if the pre-ACPI 2.0 suspend ordering has
376 static const struct platform_suspend_ops acpi_suspend_ops_old
= {
377 .valid
= acpi_suspend_state_valid
,
378 .begin
= acpi_suspend_begin_old
,
379 .prepare_late
= acpi_pm_pre_suspend
,
380 .enter
= acpi_suspend_enter
,
381 .wake
= acpi_pm_finish
,
383 .recover
= acpi_pm_finish
,
386 static int __init
init_old_suspend_ordering(const struct dmi_system_id
*d
)
388 old_suspend_ordering
= true;
392 static int __init
init_nvs_nosave(const struct dmi_system_id
*d
)
398 static struct dmi_system_id __initdata acpisleep_dmi_table
[] = {
400 .callback
= init_old_suspend_ordering
,
401 .ident
= "Abit KN9 (nForce4 variant)",
403 DMI_MATCH(DMI_BOARD_VENDOR
, "http://www.abit.com.tw/"),
404 DMI_MATCH(DMI_BOARD_NAME
, "KN9 Series(NF-CK804)"),
408 .callback
= init_old_suspend_ordering
,
409 .ident
= "HP xw4600 Workstation",
411 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
412 DMI_MATCH(DMI_PRODUCT_NAME
, "HP xw4600 Workstation"),
416 .callback
= init_old_suspend_ordering
,
417 .ident
= "Asus Pundit P1-AH2 (M2N8L motherboard)",
419 DMI_MATCH(DMI_BOARD_VENDOR
, "ASUSTek Computer INC."),
420 DMI_MATCH(DMI_BOARD_NAME
, "M2N8L"),
424 .callback
= init_old_suspend_ordering
,
425 .ident
= "Panasonic CF51-2L",
427 DMI_MATCH(DMI_BOARD_VENDOR
,
428 "Matsushita Electric Industrial Co.,Ltd."),
429 DMI_MATCH(DMI_BOARD_NAME
, "CF51-2L"),
433 .callback
= init_nvs_nosave
,
434 .ident
= "Sony Vaio VGN-FW21E",
436 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
437 DMI_MATCH(DMI_PRODUCT_NAME
, "VGN-FW21E"),
441 .callback
= init_nvs_nosave
,
442 .ident
= "Sony Vaio VPCEB17FX",
444 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
445 DMI_MATCH(DMI_PRODUCT_NAME
, "VPCEB17FX"),
449 .callback
= init_nvs_nosave
,
450 .ident
= "Sony Vaio VGN-SR11M",
452 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
453 DMI_MATCH(DMI_PRODUCT_NAME
, "VGN-SR11M"),
457 .callback
= init_nvs_nosave
,
458 .ident
= "Everex StepNote Series",
460 DMI_MATCH(DMI_SYS_VENDOR
, "Everex Systems, Inc."),
461 DMI_MATCH(DMI_PRODUCT_NAME
, "Everex StepNote Series"),
465 .callback
= init_nvs_nosave
,
466 .ident
= "Sony Vaio VPCEB1Z1E",
468 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
469 DMI_MATCH(DMI_PRODUCT_NAME
, "VPCEB1Z1E"),
473 .callback
= init_nvs_nosave
,
474 .ident
= "Sony Vaio VGN-NW130D",
476 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
477 DMI_MATCH(DMI_PRODUCT_NAME
, "VGN-NW130D"),
481 .callback
= init_nvs_nosave
,
482 .ident
= "Sony Vaio VPCCW29FX",
484 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
485 DMI_MATCH(DMI_PRODUCT_NAME
, "VPCCW29FX"),
489 .callback
= init_nvs_nosave
,
490 .ident
= "Averatec AV1020-ED2",
492 DMI_MATCH(DMI_SYS_VENDOR
, "AVERATEC"),
493 DMI_MATCH(DMI_PRODUCT_NAME
, "1000 Series"),
497 .callback
= init_old_suspend_ordering
,
498 .ident
= "Asus A8N-SLI DELUXE",
500 DMI_MATCH(DMI_BOARD_VENDOR
, "ASUSTeK Computer INC."),
501 DMI_MATCH(DMI_BOARD_NAME
, "A8N-SLI DELUXE"),
505 .callback
= init_old_suspend_ordering
,
506 .ident
= "Asus A8N-SLI Premium",
508 DMI_MATCH(DMI_BOARD_VENDOR
, "ASUSTeK Computer INC."),
509 DMI_MATCH(DMI_BOARD_NAME
, "A8N-SLI Premium"),
513 .callback
= init_nvs_nosave
,
514 .ident
= "Sony Vaio VGN-SR26GN_P",
516 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
517 DMI_MATCH(DMI_PRODUCT_NAME
, "VGN-SR26GN_P"),
521 .callback
= init_nvs_nosave
,
522 .ident
= "Sony Vaio VGN-FW520F",
524 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
525 DMI_MATCH(DMI_PRODUCT_NAME
, "VGN-FW520F"),
529 .callback
= init_nvs_nosave
,
530 .ident
= "Asus K54C",
532 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK Computer Inc."),
533 DMI_MATCH(DMI_PRODUCT_NAME
, "K54C"),
537 .callback
= init_nvs_nosave
,
538 .ident
= "Asus K54HR",
540 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK Computer Inc."),
541 DMI_MATCH(DMI_PRODUCT_NAME
, "K54HR"),
546 #endif /* CONFIG_SUSPEND */
548 #ifdef CONFIG_HIBERNATION
549 static unsigned long s4_hardware_signature
;
550 static struct acpi_table_facs
*facs
;
551 static bool nosigcheck
;
553 void __init
acpi_no_s4_hw_signature(void)
558 static int acpi_hibernation_begin(void)
562 error
= nvs_nosave
? 0 : suspend_nvs_alloc();
564 acpi_target_sleep_state
= ACPI_STATE_S4
;
565 acpi_sleep_tts_switch(acpi_target_sleep_state
);
571 static int acpi_hibernation_enter(void)
573 acpi_status status
= AE_OK
;
575 ACPI_FLUSH_CPU_CACHE();
577 /* This shouldn't return. If it returns, we have a problem */
578 status
= acpi_enter_sleep_state(ACPI_STATE_S4
);
579 /* Reprogram control registers */
580 acpi_leave_sleep_state_prep(ACPI_STATE_S4
);
582 return ACPI_SUCCESS(status
) ? 0 : -EFAULT
;
585 static void acpi_hibernation_leave(void)
588 * If ACPI is not enabled by the BIOS and the boot kernel, we need to
592 /* Reprogram control registers */
593 acpi_leave_sleep_state_prep(ACPI_STATE_S4
);
594 /* Check the hardware signature */
595 if (facs
&& s4_hardware_signature
!= facs
->hardware_signature
) {
596 printk(KERN_EMERG
"ACPI: Hardware changed while hibernated, "
598 panic("ACPI S4 hardware signature mismatch");
600 /* Restore the NVS memory area */
601 suspend_nvs_restore();
602 /* Allow EC transactions to happen. */
603 acpi_ec_unblock_transactions_early();
606 static void acpi_pm_thaw(void)
608 acpi_ec_unblock_transactions();
609 acpi_enable_all_runtime_gpes();
612 static const struct platform_hibernation_ops acpi_hibernation_ops
= {
613 .begin
= acpi_hibernation_begin
,
615 .pre_snapshot
= acpi_pm_prepare
,
616 .finish
= acpi_pm_finish
,
617 .prepare
= acpi_pm_prepare
,
618 .enter
= acpi_hibernation_enter
,
619 .leave
= acpi_hibernation_leave
,
620 .pre_restore
= acpi_pm_freeze
,
621 .restore_cleanup
= acpi_pm_thaw
,
625 * acpi_hibernation_begin_old - Set the target system sleep state to
626 * ACPI_STATE_S4 and execute the _PTS control method. This
627 * function is used if the pre-ACPI 2.0 suspend ordering has been
630 static int acpi_hibernation_begin_old(void)
634 * The _TTS object should always be evaluated before the _PTS object.
635 * When the old_suspended_ordering is true, the _PTS object is
636 * evaluated in the acpi_sleep_prepare.
638 acpi_sleep_tts_switch(ACPI_STATE_S4
);
640 error
= acpi_sleep_prepare(ACPI_STATE_S4
);
644 error
= suspend_nvs_alloc();
646 acpi_target_sleep_state
= ACPI_STATE_S4
;
652 * The following callbacks are used if the pre-ACPI 2.0 suspend ordering has
655 static const struct platform_hibernation_ops acpi_hibernation_ops_old
= {
656 .begin
= acpi_hibernation_begin_old
,
658 .pre_snapshot
= acpi_pm_pre_suspend
,
659 .prepare
= acpi_pm_freeze
,
660 .finish
= acpi_pm_finish
,
661 .enter
= acpi_hibernation_enter
,
662 .leave
= acpi_hibernation_leave
,
663 .pre_restore
= acpi_pm_freeze
,
664 .restore_cleanup
= acpi_pm_thaw
,
665 .recover
= acpi_pm_finish
,
667 #endif /* CONFIG_HIBERNATION */
669 int acpi_suspend(u32 acpi_state
)
671 suspend_state_t states
[] = {
672 [1] = PM_SUSPEND_STANDBY
,
673 [3] = PM_SUSPEND_MEM
,
677 if (acpi_state
< 6 && states
[acpi_state
])
678 return pm_suspend(states
[acpi_state
]);
686 * acpi_pm_device_sleep_state - return preferred power state of ACPI device
687 * in the system sleep state given by %acpi_target_sleep_state
688 * @dev: device to examine; its driver model wakeup flags control
689 * whether it should be able to wake up the system
690 * @d_min_p: used to store the upper limit of allowed states range
691 * @d_max_in: specify the lowest allowed states
692 * Return value: preferred power state of the device on success, -ENODEV
693 * (ie. if there's no 'struct acpi_device' for @dev) or -EINVAL on failure
695 * Find the lowest power (highest number) ACPI device power state that
696 * device @dev can be in while the system is in the sleep state represented
697 * by %acpi_target_sleep_state. If @wake is nonzero, the device should be
698 * able to wake up the system from this sleep state. If @d_min_p is set,
699 * the highest power (lowest number) device power state of @dev allowed
700 * in this system sleep state is stored at the location pointed to by it.
702 * The caller must ensure that @dev is valid before using this function.
703 * The caller is also responsible for figuring out if the device is
704 * supposed to be able to wake up the system and passing this information
708 int acpi_pm_device_sleep_state(struct device
*dev
, int *d_min_p
, int d_max_in
)
710 acpi_handle handle
= DEVICE_ACPI_HANDLE(dev
);
711 struct acpi_device
*adev
;
712 char acpi_method
[] = "_SxD";
713 unsigned long long d_min
, d_max
;
715 if (d_max_in
< ACPI_STATE_D0
|| d_max_in
> ACPI_STATE_D3
)
717 if (!handle
|| ACPI_FAILURE(acpi_bus_get_device(handle
, &adev
))) {
718 printk(KERN_DEBUG
"ACPI handle has no context!\n");
722 acpi_method
[2] = '0' + acpi_target_sleep_state
;
724 * If the sleep state is S0, the lowest limit from ACPI is D3,
725 * but if the device has _S0W, we will use the value from _S0W
726 * as the lowest limit from ACPI. Finally, we will constrain
727 * the lowest limit with the specified one.
729 d_min
= ACPI_STATE_D0
;
730 d_max
= ACPI_STATE_D3
;
733 * If present, _SxD methods return the minimum D-state (highest power
734 * state) we can use for the corresponding S-states. Otherwise, the
735 * minimum D-state is D0 (ACPI 3.x).
737 * NOTE: We rely on acpi_evaluate_integer() not clobbering the integer
738 * provided -- that's our fault recovery, we ignore retval.
740 if (acpi_target_sleep_state
> ACPI_STATE_S0
)
741 acpi_evaluate_integer(handle
, acpi_method
, NULL
, &d_min
);
744 * If _PRW says we can wake up the system from the target sleep state,
745 * the D-state returned by _SxD is sufficient for that (we assume a
746 * wakeup-aware driver if wake is set). Still, if _SxW exists
747 * (ACPI 3.x), it should return the maximum (lowest power) D-state that
748 * can wake the system. _S0W may be valid, too.
750 if (acpi_target_sleep_state
== ACPI_STATE_S0
||
751 (device_may_wakeup(dev
) && adev
->wakeup
.flags
.valid
&&
752 adev
->wakeup
.sleep_state
>= acpi_target_sleep_state
)) {
755 acpi_method
[3] = 'W';
756 status
= acpi_evaluate_integer(handle
, acpi_method
, NULL
,
758 if (ACPI_FAILURE(status
)) {
759 if (acpi_target_sleep_state
!= ACPI_STATE_S0
||
760 status
!= AE_NOT_FOUND
)
762 } else if (d_max
< d_min
) {
763 /* Warn the user of the broken DSDT */
764 printk(KERN_WARNING
"ACPI: Wrong value from %s\n",
771 if (d_max_in
< d_min
)
775 /* constrain d_max with specified lowest limit (max number) */
776 if (d_max
> d_max_in
) {
777 for (d_max
= d_max_in
; d_max
> d_min
; d_max
--) {
778 if (adev
->power
.states
[d_max
].flags
.valid
)
784 EXPORT_SYMBOL(acpi_pm_device_sleep_state
);
785 #endif /* CONFIG_PM */
787 #ifdef CONFIG_PM_SLEEP
789 * acpi_pm_device_run_wake - Enable/disable wake-up for given device.
790 * @phys_dev: Device to enable/disable the platform to wake-up the system for.
791 * @enable: Whether enable or disable the wake-up functionality.
793 * Find the ACPI device object corresponding to @pci_dev and try to
794 * enable/disable the GPE associated with it.
796 int acpi_pm_device_run_wake(struct device
*phys_dev
, bool enable
)
798 struct acpi_device
*dev
;
801 if (!device_run_wake(phys_dev
))
804 handle
= DEVICE_ACPI_HANDLE(phys_dev
);
805 if (!handle
|| ACPI_FAILURE(acpi_bus_get_device(handle
, &dev
))) {
806 dev_dbg(phys_dev
, "ACPI handle has no context in %s!\n",
812 acpi_enable_wakeup_device_power(dev
, ACPI_STATE_S0
);
813 acpi_enable_gpe(dev
->wakeup
.gpe_device
, dev
->wakeup
.gpe_number
);
815 acpi_disable_gpe(dev
->wakeup
.gpe_device
, dev
->wakeup
.gpe_number
);
816 acpi_disable_wakeup_device_power(dev
);
821 EXPORT_SYMBOL(acpi_pm_device_run_wake
);
824 * acpi_pm_device_sleep_wake - enable or disable the system wake-up
825 * capability of given device
826 * @dev: device to handle
827 * @enable: 'true' - enable, 'false' - disable the wake-up capability
829 int acpi_pm_device_sleep_wake(struct device
*dev
, bool enable
)
832 struct acpi_device
*adev
;
835 if (!device_can_wakeup(dev
))
838 handle
= DEVICE_ACPI_HANDLE(dev
);
839 if (!handle
|| ACPI_FAILURE(acpi_bus_get_device(handle
, &adev
))) {
840 dev_dbg(dev
, "ACPI handle has no context in %s!\n", __func__
);
845 acpi_enable_wakeup_device_power(adev
, acpi_target_sleep_state
) :
846 acpi_disable_wakeup_device_power(adev
);
848 dev_info(dev
, "wake-up capability %s by ACPI\n",
849 enable
? "enabled" : "disabled");
853 #endif /* CONFIG_PM_SLEEP */
855 static void acpi_power_off_prepare(void)
857 /* Prepare to power off the system */
858 acpi_sleep_prepare(ACPI_STATE_S5
);
859 acpi_disable_all_gpes();
862 static void acpi_power_off(void)
864 /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */
865 printk(KERN_DEBUG
"%s called\n", __func__
);
867 acpi_enter_sleep_state(ACPI_STATE_S5
);
870 int __init
acpi_sleep_init(void)
874 #ifdef CONFIG_SUSPEND
877 dmi_check_system(acpisleep_dmi_table
);
883 sleep_states
[ACPI_STATE_S0
] = 1;
884 printk(KERN_INFO PREFIX
"(supports S0");
886 #ifdef CONFIG_SUSPEND
887 for (i
= ACPI_STATE_S1
; i
< ACPI_STATE_S4
; i
++) {
888 status
= acpi_get_sleep_type_data(i
, &type_a
, &type_b
);
889 if (ACPI_SUCCESS(status
)) {
891 printk(KERN_CONT
" S%d", i
);
895 suspend_set_ops(old_suspend_ordering
?
896 &acpi_suspend_ops_old
: &acpi_suspend_ops
);
899 #ifdef CONFIG_HIBERNATION
900 status
= acpi_get_sleep_type_data(ACPI_STATE_S4
, &type_a
, &type_b
);
901 if (ACPI_SUCCESS(status
)) {
902 hibernation_set_ops(old_suspend_ordering
?
903 &acpi_hibernation_ops_old
: &acpi_hibernation_ops
);
904 sleep_states
[ACPI_STATE_S4
] = 1;
905 printk(KERN_CONT
" S4");
907 acpi_get_table(ACPI_SIG_FACS
, 1,
908 (struct acpi_table_header
**)&facs
);
910 s4_hardware_signature
=
911 facs
->hardware_signature
;
915 status
= acpi_get_sleep_type_data(ACPI_STATE_S5
, &type_a
, &type_b
);
916 if (ACPI_SUCCESS(status
)) {
917 sleep_states
[ACPI_STATE_S5
] = 1;
918 printk(KERN_CONT
" S5");
919 pm_power_off_prepare
= acpi_power_off_prepare
;
920 pm_power_off
= acpi_power_off
;
922 printk(KERN_CONT
")\n");
924 * Register the tts_notifier to reboot notifier list so that the _TTS
925 * object can also be evaluated when the system enters S5.
927 register_reboot_notifier(&tts_notifier
);