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>
24 #include <acpi/acpi_bus.h>
25 #include <acpi/acpi_drivers.h>
30 static u8 sleep_states
[ACPI_S_STATE_COUNT
];
32 static void acpi_sleep_tts_switch(u32 acpi_state
)
36 status
= acpi_execute_simple_method(NULL
, "\\_TTS", acpi_state
);
37 if (ACPI_FAILURE(status
) && status
!= AE_NOT_FOUND
) {
39 * OS can't evaluate the _TTS object correctly. Some warning
40 * message will be printed. But it won't break anything.
42 printk(KERN_NOTICE
"Failure in evaluating _TTS object\n");
46 static int tts_notify_reboot(struct notifier_block
*this,
47 unsigned long code
, void *x
)
49 acpi_sleep_tts_switch(ACPI_STATE_S5
);
53 static struct notifier_block tts_notifier
= {
54 .notifier_call
= tts_notify_reboot
,
59 static int acpi_sleep_prepare(u32 acpi_state
)
61 #ifdef CONFIG_ACPI_SLEEP
62 /* do we have a wakeup address for S2 and S3? */
63 if (acpi_state
== ACPI_STATE_S3
) {
64 if (!acpi_wakeup_address
)
66 acpi_set_firmware_waking_vector(acpi_wakeup_address
);
69 ACPI_FLUSH_CPU_CACHE();
71 printk(KERN_INFO PREFIX
"Preparing to enter system sleep state S%d\n",
73 acpi_enable_wakeup_devices(acpi_state
);
74 acpi_enter_sleep_state_prep(acpi_state
);
78 #ifdef CONFIG_ACPI_SLEEP
79 static u32 acpi_target_sleep_state
= ACPI_STATE_S0
;
81 u32
acpi_target_system_state(void)
83 return acpi_target_sleep_state
;
86 static bool pwr_btn_event_pending
;
89 * The ACPI specification wants us to save NVS memory regions during hibernation
90 * and to restore them during the subsequent resume. Windows does that also for
91 * suspend to RAM. However, it is known that this mechanism does not work on
92 * all machines, so we allow the user to disable it with the help of the
93 * 'acpi_sleep=nonvs' kernel command line option.
95 static bool nvs_nosave
;
97 void __init
acpi_nvs_nosave(void)
103 * The ACPI specification wants us to save NVS memory regions during hibernation
104 * but says nothing about saving NVS during S3. Not all versions of Windows
105 * save NVS on S3 suspend either, and it is clear that not all systems need
106 * NVS to be saved at S3 time. To improve suspend/resume time, allow the
107 * user to disable saving NVS on S3 if their system does not require it, but
108 * continue to save/restore NVS for S4 as specified.
110 static bool nvs_nosave_s3
;
112 void __init
acpi_nvs_nosave_s3(void)
114 nvs_nosave_s3
= true;
118 * ACPI 1.0 wants us to execute _PTS before suspending devices, so we allow the
119 * user to request that behavior by using the 'acpi_old_suspend_ordering'
120 * kernel command line option that causes the following variable to be set.
122 static bool old_suspend_ordering
;
124 void __init
acpi_old_suspend_ordering(void)
126 old_suspend_ordering
= true;
129 static int __init
init_old_suspend_ordering(const struct dmi_system_id
*d
)
131 acpi_old_suspend_ordering();
135 static int __init
init_nvs_nosave(const struct dmi_system_id
*d
)
141 static struct dmi_system_id acpisleep_dmi_table
[] __initdata
= {
143 .callback
= init_old_suspend_ordering
,
144 .ident
= "Abit KN9 (nForce4 variant)",
146 DMI_MATCH(DMI_BOARD_VENDOR
, "http://www.abit.com.tw/"),
147 DMI_MATCH(DMI_BOARD_NAME
, "KN9 Series(NF-CK804)"),
151 .callback
= init_old_suspend_ordering
,
152 .ident
= "HP xw4600 Workstation",
154 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
155 DMI_MATCH(DMI_PRODUCT_NAME
, "HP xw4600 Workstation"),
159 .callback
= init_old_suspend_ordering
,
160 .ident
= "Asus Pundit P1-AH2 (M2N8L motherboard)",
162 DMI_MATCH(DMI_BOARD_VENDOR
, "ASUSTek Computer INC."),
163 DMI_MATCH(DMI_BOARD_NAME
, "M2N8L"),
167 .callback
= init_old_suspend_ordering
,
168 .ident
= "Panasonic CF51-2L",
170 DMI_MATCH(DMI_BOARD_VENDOR
,
171 "Matsushita Electric Industrial Co.,Ltd."),
172 DMI_MATCH(DMI_BOARD_NAME
, "CF51-2L"),
176 .callback
= init_nvs_nosave
,
177 .ident
= "Sony Vaio VGN-FW41E_H",
179 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
180 DMI_MATCH(DMI_PRODUCT_NAME
, "VGN-FW41E_H"),
184 .callback
= init_nvs_nosave
,
185 .ident
= "Sony Vaio VGN-FW21E",
187 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
188 DMI_MATCH(DMI_PRODUCT_NAME
, "VGN-FW21E"),
192 .callback
= init_nvs_nosave
,
193 .ident
= "Sony Vaio VGN-FW21M",
195 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
196 DMI_MATCH(DMI_PRODUCT_NAME
, "VGN-FW21M"),
200 .callback
= init_nvs_nosave
,
201 .ident
= "Sony Vaio VPCEB17FX",
203 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
204 DMI_MATCH(DMI_PRODUCT_NAME
, "VPCEB17FX"),
208 .callback
= init_nvs_nosave
,
209 .ident
= "Sony Vaio VGN-SR11M",
211 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
212 DMI_MATCH(DMI_PRODUCT_NAME
, "VGN-SR11M"),
216 .callback
= init_nvs_nosave
,
217 .ident
= "Everex StepNote Series",
219 DMI_MATCH(DMI_SYS_VENDOR
, "Everex Systems, Inc."),
220 DMI_MATCH(DMI_PRODUCT_NAME
, "Everex StepNote Series"),
224 .callback
= init_nvs_nosave
,
225 .ident
= "Sony Vaio VPCEB1Z1E",
227 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
228 DMI_MATCH(DMI_PRODUCT_NAME
, "VPCEB1Z1E"),
232 .callback
= init_nvs_nosave
,
233 .ident
= "Sony Vaio VGN-NW130D",
235 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
236 DMI_MATCH(DMI_PRODUCT_NAME
, "VGN-NW130D"),
240 .callback
= init_nvs_nosave
,
241 .ident
= "Sony Vaio VPCCW29FX",
243 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
244 DMI_MATCH(DMI_PRODUCT_NAME
, "VPCCW29FX"),
248 .callback
= init_nvs_nosave
,
249 .ident
= "Averatec AV1020-ED2",
251 DMI_MATCH(DMI_SYS_VENDOR
, "AVERATEC"),
252 DMI_MATCH(DMI_PRODUCT_NAME
, "1000 Series"),
256 .callback
= init_old_suspend_ordering
,
257 .ident
= "Asus A8N-SLI DELUXE",
259 DMI_MATCH(DMI_BOARD_VENDOR
, "ASUSTeK Computer INC."),
260 DMI_MATCH(DMI_BOARD_NAME
, "A8N-SLI DELUXE"),
264 .callback
= init_old_suspend_ordering
,
265 .ident
= "Asus A8N-SLI Premium",
267 DMI_MATCH(DMI_BOARD_VENDOR
, "ASUSTeK Computer INC."),
268 DMI_MATCH(DMI_BOARD_NAME
, "A8N-SLI Premium"),
272 .callback
= init_nvs_nosave
,
273 .ident
= "Sony Vaio VGN-SR26GN_P",
275 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
276 DMI_MATCH(DMI_PRODUCT_NAME
, "VGN-SR26GN_P"),
280 .callback
= init_nvs_nosave
,
281 .ident
= "Sony Vaio VPCEB1S1E",
283 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
284 DMI_MATCH(DMI_PRODUCT_NAME
, "VPCEB1S1E"),
288 .callback
= init_nvs_nosave
,
289 .ident
= "Sony Vaio VGN-FW520F",
291 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
292 DMI_MATCH(DMI_PRODUCT_NAME
, "VGN-FW520F"),
296 .callback
= init_nvs_nosave
,
297 .ident
= "Asus K54C",
299 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK Computer Inc."),
300 DMI_MATCH(DMI_PRODUCT_NAME
, "K54C"),
304 .callback
= init_nvs_nosave
,
305 .ident
= "Asus K54HR",
307 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK Computer Inc."),
308 DMI_MATCH(DMI_PRODUCT_NAME
, "K54HR"),
314 static void acpi_sleep_dmi_check(void)
316 dmi_check_system(acpisleep_dmi_table
);
320 * acpi_pm_freeze - Disable the GPEs and suspend EC transactions.
322 static int acpi_pm_freeze(void)
324 acpi_disable_all_gpes();
325 acpi_os_wait_events_complete();
326 acpi_ec_block_transactions();
331 * acpi_pre_suspend - Enable wakeup devices, "freeze" EC and save NVS.
333 static int acpi_pm_pre_suspend(void)
336 return suspend_nvs_save();
340 * __acpi_pm_prepare - Prepare the platform to enter the target state.
342 * If necessary, set the firmware waking vector and do arch-specific
343 * nastiness to get the wakeup code to the waking vector.
345 static int __acpi_pm_prepare(void)
347 int error
= acpi_sleep_prepare(acpi_target_sleep_state
);
349 acpi_target_sleep_state
= ACPI_STATE_S0
;
355 * acpi_pm_prepare - Prepare the platform to enter the target sleep
356 * state and disable the GPEs.
358 static int acpi_pm_prepare(void)
360 int error
= __acpi_pm_prepare();
362 error
= acpi_pm_pre_suspend();
367 static int find_powerf_dev(struct device
*dev
, void *data
)
369 struct acpi_device
*device
= to_acpi_device(dev
);
370 const char *hid
= acpi_device_hid(device
);
372 return !strcmp(hid
, ACPI_BUTTON_HID_POWERF
);
376 * acpi_pm_finish - Instruct the platform to leave a sleep state.
378 * This is called after we wake back up (or if entering the sleep state
381 static void acpi_pm_finish(void)
383 struct device
*pwr_btn_dev
;
384 u32 acpi_state
= acpi_target_sleep_state
;
386 acpi_ec_unblock_transactions();
389 if (acpi_state
== ACPI_STATE_S0
)
392 printk(KERN_INFO PREFIX
"Waking up from system sleep state S%d\n",
394 acpi_disable_wakeup_devices(acpi_state
);
395 acpi_leave_sleep_state(acpi_state
);
397 /* reset firmware waking vector */
398 acpi_set_firmware_waking_vector((acpi_physical_address
) 0);
400 acpi_target_sleep_state
= ACPI_STATE_S0
;
402 acpi_resume_power_resources();
404 /* If we were woken with the fixed power button, provide a small
405 * hint to userspace in the form of a wakeup event on the fixed power
406 * button device (if it can be found).
408 * We delay the event generation til now, as the PM layer requires
409 * timekeeping to be running before we generate events. */
410 if (!pwr_btn_event_pending
)
413 pwr_btn_event_pending
= false;
414 pwr_btn_dev
= bus_find_device(&acpi_bus_type
, NULL
, NULL
,
417 pm_wakeup_event(pwr_btn_dev
, 0);
418 put_device(pwr_btn_dev
);
423 * acpi_pm_start - Start system PM transition.
425 static void acpi_pm_start(u32 acpi_state
)
427 acpi_target_sleep_state
= acpi_state
;
428 acpi_sleep_tts_switch(acpi_target_sleep_state
);
429 acpi_scan_lock_acquire();
433 * acpi_pm_end - Finish up system PM transition.
435 static void acpi_pm_end(void)
437 acpi_scan_lock_release();
439 * This is necessary in case acpi_pm_finish() is not called during a
440 * failing transition to a sleep state.
442 acpi_target_sleep_state
= ACPI_STATE_S0
;
443 acpi_sleep_tts_switch(acpi_target_sleep_state
);
445 #else /* !CONFIG_ACPI_SLEEP */
446 #define acpi_target_sleep_state ACPI_STATE_S0
447 static inline void acpi_sleep_dmi_check(void) {}
448 #endif /* CONFIG_ACPI_SLEEP */
450 #ifdef CONFIG_SUSPEND
451 static u32 acpi_suspend_states
[] = {
452 [PM_SUSPEND_ON
] = ACPI_STATE_S0
,
453 [PM_SUSPEND_STANDBY
] = ACPI_STATE_S1
,
454 [PM_SUSPEND_MEM
] = ACPI_STATE_S3
,
455 [PM_SUSPEND_MAX
] = ACPI_STATE_S5
459 * acpi_suspend_begin - Set the target system sleep state to the state
460 * associated with given @pm_state, if supported.
462 static int acpi_suspend_begin(suspend_state_t pm_state
)
464 u32 acpi_state
= acpi_suspend_states
[pm_state
];
467 error
= (nvs_nosave
|| nvs_nosave_s3
) ? 0 : suspend_nvs_alloc();
471 if (!sleep_states
[acpi_state
]) {
472 pr_err("ACPI does not support sleep state S%u\n", acpi_state
);
476 acpi_pm_start(acpi_state
);
481 * acpi_suspend_enter - Actually enter a sleep state.
484 * Flush caches and go to sleep. For STR we have to call arch-specific
485 * assembly, which in turn call acpi_enter_sleep_state().
486 * It's unfortunate, but it works. Please fix if you're feeling frisky.
488 static int acpi_suspend_enter(suspend_state_t pm_state
)
490 acpi_status status
= AE_OK
;
491 u32 acpi_state
= acpi_target_sleep_state
;
494 ACPI_FLUSH_CPU_CACHE();
496 switch (acpi_state
) {
499 status
= acpi_enter_sleep_state(acpi_state
);
503 if (!acpi_suspend_lowlevel
)
505 error
= acpi_suspend_lowlevel();
508 pr_info(PREFIX
"Low-level resume complete\n");
512 /* This violates the spec but is required for bug compatibility. */
513 acpi_write_bit_register(ACPI_BITREG_SCI_ENABLE
, 1);
515 /* Reprogram control registers */
516 acpi_leave_sleep_state_prep(acpi_state
);
518 /* ACPI 3.0 specs (P62) says that it's the responsibility
519 * of the OSPM to clear the status bit [ implying that the
520 * POWER_BUTTON event should not reach userspace ]
522 * However, we do generate a small hint for userspace in the form of
523 * a wakeup event. We flag this condition for now and generate the
524 * event later, as we're currently too early in resume to be able to
525 * generate wakeup events.
527 if (ACPI_SUCCESS(status
) && (acpi_state
== ACPI_STATE_S3
)) {
528 acpi_event_status pwr_btn_status
;
530 acpi_get_event_status(ACPI_EVENT_POWER_BUTTON
, &pwr_btn_status
);
532 if (pwr_btn_status
& ACPI_EVENT_FLAG_SET
) {
533 acpi_clear_event(ACPI_EVENT_POWER_BUTTON
);
535 pwr_btn_event_pending
= true;
540 * Disable and clear GPE status before interrupt is enabled. Some GPEs
541 * (like wakeup GPE) haven't handler, this can avoid such GPE misfire.
542 * acpi_leave_sleep_state will reenable specific GPEs later
544 acpi_disable_all_gpes();
545 /* Allow EC transactions to happen. */
546 acpi_ec_unblock_transactions_early();
548 suspend_nvs_restore();
550 return ACPI_SUCCESS(status
) ? 0 : -EFAULT
;
553 static int acpi_suspend_state_valid(suspend_state_t pm_state
)
559 case PM_SUSPEND_STANDBY
:
561 acpi_state
= acpi_suspend_states
[pm_state
];
563 return sleep_states
[acpi_state
];
569 static const struct platform_suspend_ops acpi_suspend_ops
= {
570 .valid
= acpi_suspend_state_valid
,
571 .begin
= acpi_suspend_begin
,
572 .prepare_late
= acpi_pm_prepare
,
573 .enter
= acpi_suspend_enter
,
574 .wake
= acpi_pm_finish
,
579 * acpi_suspend_begin_old - Set the target system sleep state to the
580 * state associated with given @pm_state, if supported, and
581 * execute the _PTS control method. This function is used if the
582 * pre-ACPI 2.0 suspend ordering has been requested.
584 static int acpi_suspend_begin_old(suspend_state_t pm_state
)
586 int error
= acpi_suspend_begin(pm_state
);
588 error
= __acpi_pm_prepare();
594 * The following callbacks are used if the pre-ACPI 2.0 suspend ordering has
597 static const struct platform_suspend_ops acpi_suspend_ops_old
= {
598 .valid
= acpi_suspend_state_valid
,
599 .begin
= acpi_suspend_begin_old
,
600 .prepare_late
= acpi_pm_pre_suspend
,
601 .enter
= acpi_suspend_enter
,
602 .wake
= acpi_pm_finish
,
604 .recover
= acpi_pm_finish
,
607 static void acpi_sleep_suspend_setup(void)
611 for (i
= ACPI_STATE_S1
; i
< ACPI_STATE_S4
; i
++) {
615 status
= acpi_get_sleep_type_data(i
, &type_a
, &type_b
);
616 if (ACPI_SUCCESS(status
)) {
621 suspend_set_ops(old_suspend_ordering
?
622 &acpi_suspend_ops_old
: &acpi_suspend_ops
);
624 #else /* !CONFIG_SUSPEND */
625 static inline void acpi_sleep_suspend_setup(void) {}
626 #endif /* !CONFIG_SUSPEND */
628 #ifdef CONFIG_HIBERNATION
629 static unsigned long s4_hardware_signature
;
630 static struct acpi_table_facs
*facs
;
631 static bool nosigcheck
;
633 void __init
acpi_no_s4_hw_signature(void)
638 static int acpi_hibernation_begin(void)
642 error
= nvs_nosave
? 0 : suspend_nvs_alloc();
644 acpi_pm_start(ACPI_STATE_S4
);
649 static int acpi_hibernation_enter(void)
651 acpi_status status
= AE_OK
;
653 ACPI_FLUSH_CPU_CACHE();
655 /* This shouldn't return. If it returns, we have a problem */
656 status
= acpi_enter_sleep_state(ACPI_STATE_S4
);
657 /* Reprogram control registers */
658 acpi_leave_sleep_state_prep(ACPI_STATE_S4
);
660 return ACPI_SUCCESS(status
) ? 0 : -EFAULT
;
663 static void acpi_hibernation_leave(void)
666 * If ACPI is not enabled by the BIOS and the boot kernel, we need to
670 /* Reprogram control registers */
671 acpi_leave_sleep_state_prep(ACPI_STATE_S4
);
672 /* Check the hardware signature */
673 if (facs
&& s4_hardware_signature
!= facs
->hardware_signature
) {
674 printk(KERN_EMERG
"ACPI: Hardware changed while hibernated, "
676 panic("ACPI S4 hardware signature mismatch");
678 /* Restore the NVS memory area */
679 suspend_nvs_restore();
680 /* Allow EC transactions to happen. */
681 acpi_ec_unblock_transactions_early();
684 static void acpi_pm_thaw(void)
686 acpi_ec_unblock_transactions();
687 acpi_enable_all_runtime_gpes();
690 static const struct platform_hibernation_ops acpi_hibernation_ops
= {
691 .begin
= acpi_hibernation_begin
,
693 .pre_snapshot
= acpi_pm_prepare
,
694 .finish
= acpi_pm_finish
,
695 .prepare
= acpi_pm_prepare
,
696 .enter
= acpi_hibernation_enter
,
697 .leave
= acpi_hibernation_leave
,
698 .pre_restore
= acpi_pm_freeze
,
699 .restore_cleanup
= acpi_pm_thaw
,
703 * acpi_hibernation_begin_old - Set the target system sleep state to
704 * ACPI_STATE_S4 and execute the _PTS control method. This
705 * function is used if the pre-ACPI 2.0 suspend ordering has been
708 static int acpi_hibernation_begin_old(void)
712 * The _TTS object should always be evaluated before the _PTS object.
713 * When the old_suspended_ordering is true, the _PTS object is
714 * evaluated in the acpi_sleep_prepare.
716 acpi_sleep_tts_switch(ACPI_STATE_S4
);
718 error
= acpi_sleep_prepare(ACPI_STATE_S4
);
722 error
= suspend_nvs_alloc();
724 acpi_target_sleep_state
= ACPI_STATE_S4
;
725 acpi_scan_lock_acquire();
732 * The following callbacks are used if the pre-ACPI 2.0 suspend ordering has
735 static const struct platform_hibernation_ops acpi_hibernation_ops_old
= {
736 .begin
= acpi_hibernation_begin_old
,
738 .pre_snapshot
= acpi_pm_pre_suspend
,
739 .prepare
= acpi_pm_freeze
,
740 .finish
= acpi_pm_finish
,
741 .enter
= acpi_hibernation_enter
,
742 .leave
= acpi_hibernation_leave
,
743 .pre_restore
= acpi_pm_freeze
,
744 .restore_cleanup
= acpi_pm_thaw
,
745 .recover
= acpi_pm_finish
,
748 static void acpi_sleep_hibernate_setup(void)
753 status
= acpi_get_sleep_type_data(ACPI_STATE_S4
, &type_a
, &type_b
);
754 if (ACPI_FAILURE(status
))
757 hibernation_set_ops(old_suspend_ordering
?
758 &acpi_hibernation_ops_old
: &acpi_hibernation_ops
);
759 sleep_states
[ACPI_STATE_S4
] = 1;
763 acpi_get_table(ACPI_SIG_FACS
, 1, (struct acpi_table_header
**)&facs
);
765 s4_hardware_signature
= facs
->hardware_signature
;
767 #else /* !CONFIG_HIBERNATION */
768 static inline void acpi_sleep_hibernate_setup(void) {}
769 #endif /* !CONFIG_HIBERNATION */
771 int acpi_suspend(u32 acpi_state
)
773 suspend_state_t states
[] = {
774 [1] = PM_SUSPEND_STANDBY
,
775 [3] = PM_SUSPEND_MEM
,
779 if (acpi_state
< 6 && states
[acpi_state
])
780 return pm_suspend(states
[acpi_state
]);
786 static void acpi_power_off_prepare(void)
788 /* Prepare to power off the system */
789 acpi_sleep_prepare(ACPI_STATE_S5
);
790 acpi_disable_all_gpes();
793 static void acpi_power_off(void)
795 /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */
796 printk(KERN_DEBUG
"%s called\n", __func__
);
798 acpi_enter_sleep_state(ACPI_STATE_S5
);
801 int __init
acpi_sleep_init(void)
805 char supported
[ACPI_S_STATE_COUNT
* 3 + 1];
806 char *pos
= supported
;
812 acpi_sleep_dmi_check();
814 sleep_states
[ACPI_STATE_S0
] = 1;
816 acpi_sleep_suspend_setup();
817 acpi_sleep_hibernate_setup();
819 status
= acpi_get_sleep_type_data(ACPI_STATE_S5
, &type_a
, &type_b
);
820 if (ACPI_SUCCESS(status
)) {
821 sleep_states
[ACPI_STATE_S5
] = 1;
822 pm_power_off_prepare
= acpi_power_off_prepare
;
823 pm_power_off
= acpi_power_off
;
827 for (i
= 0; i
< ACPI_S_STATE_COUNT
; i
++) {
829 pos
+= sprintf(pos
, " S%d", i
);
831 pr_info(PREFIX
"(supports%s)\n", supported
);
834 * Register the tts_notifier to reboot notifier list so that the _TTS
835 * object can also be evaluated when the system enters S5.
837 register_reboot_notifier(&tts_notifier
);