xref: /linux/drivers/acpi/sleep.c (revision 761afb869f649ea23e2dea7bfe9b550d3a1b7631)
1d08ca2caSLen Brown /*
2d08ca2caSLen Brown  * sleep.c - ACPI sleep support.
3d08ca2caSLen Brown  *
4d08ca2caSLen Brown  * Copyright (c) 2005 Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
5d08ca2caSLen Brown  * Copyright (c) 2004 David Shaohua Li <shaohua.li@intel.com>
6d08ca2caSLen Brown  * Copyright (c) 2000-2003 Patrick Mochel
7d08ca2caSLen Brown  * Copyright (c) 2003 Open Source Development Lab
8d08ca2caSLen Brown  *
9d08ca2caSLen Brown  * This file is released under the GPLv2.
10d08ca2caSLen Brown  *
11d08ca2caSLen Brown  */
12d08ca2caSLen Brown 
13d08ca2caSLen Brown #include <linux/delay.h>
14d08ca2caSLen Brown #include <linux/irq.h>
15d08ca2caSLen Brown #include <linux/dmi.h>
16d08ca2caSLen Brown #include <linux/device.h>
17d08ca2caSLen Brown #include <linux/suspend.h>
18d08ca2caSLen Brown #include <linux/reboot.h>
19d08ca2caSLen Brown 
20d08ca2caSLen Brown #include <asm/io.h>
21d08ca2caSLen Brown 
22d08ca2caSLen Brown #include <acpi/acpi_bus.h>
23d08ca2caSLen Brown #include <acpi/acpi_drivers.h>
24e60cc7a6SBjorn Helgaas 
25e60cc7a6SBjorn Helgaas #include "internal.h"
26d08ca2caSLen Brown #include "sleep.h"
27d08ca2caSLen Brown 
28d08ca2caSLen Brown u8 sleep_states[ACPI_S_STATE_COUNT];
29d08ca2caSLen Brown 
30*761afb86SRafael J. Wysocki static u32 acpi_target_sleep_state = ACPI_STATE_S0;
31*761afb86SRafael J. Wysocki 
32d08ca2caSLen Brown static void acpi_sleep_tts_switch(u32 acpi_state)
33d08ca2caSLen Brown {
34d08ca2caSLen Brown 	union acpi_object in_arg = { ACPI_TYPE_INTEGER };
35d08ca2caSLen Brown 	struct acpi_object_list arg_list = { 1, &in_arg };
36d08ca2caSLen Brown 	acpi_status status = AE_OK;
37d08ca2caSLen Brown 
38d08ca2caSLen Brown 	in_arg.integer.value = acpi_state;
39d08ca2caSLen Brown 	status = acpi_evaluate_object(NULL, "\\_TTS", &arg_list, NULL);
40d08ca2caSLen Brown 	if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
41d08ca2caSLen Brown 		/*
42d08ca2caSLen Brown 		 * OS can't evaluate the _TTS object correctly. Some warning
43d08ca2caSLen Brown 		 * message will be printed. But it won't break anything.
44d08ca2caSLen Brown 		 */
45d08ca2caSLen Brown 		printk(KERN_NOTICE "Failure in evaluating _TTS object\n");
46d08ca2caSLen Brown 	}
47d08ca2caSLen Brown }
48d08ca2caSLen Brown 
49d08ca2caSLen Brown static int tts_notify_reboot(struct notifier_block *this,
50d08ca2caSLen Brown 			unsigned long code, void *x)
51d08ca2caSLen Brown {
52d08ca2caSLen Brown 	acpi_sleep_tts_switch(ACPI_STATE_S5);
53d08ca2caSLen Brown 	return NOTIFY_DONE;
54d08ca2caSLen Brown }
55d08ca2caSLen Brown 
56d08ca2caSLen Brown static struct notifier_block tts_notifier = {
57d08ca2caSLen Brown 	.notifier_call	= tts_notify_reboot,
58d08ca2caSLen Brown 	.next		= NULL,
59d08ca2caSLen Brown 	.priority	= 0,
60d08ca2caSLen Brown };
61d08ca2caSLen Brown 
62d08ca2caSLen Brown static int acpi_sleep_prepare(u32 acpi_state)
63d08ca2caSLen Brown {
64d08ca2caSLen Brown #ifdef CONFIG_ACPI_SLEEP
65d08ca2caSLen Brown 	/* do we have a wakeup address for S2 and S3? */
66d08ca2caSLen Brown 	if (acpi_state == ACPI_STATE_S3) {
67d08ca2caSLen Brown 		if (!acpi_wakeup_address) {
68d08ca2caSLen Brown 			return -EFAULT;
69d08ca2caSLen Brown 		}
70d08ca2caSLen Brown 		acpi_set_firmware_waking_vector(
71d08ca2caSLen Brown 				(acpi_physical_address)acpi_wakeup_address);
72d08ca2caSLen Brown 
73d08ca2caSLen Brown 	}
74d08ca2caSLen Brown 	ACPI_FLUSH_CPU_CACHE();
75d08ca2caSLen Brown #endif
76d08ca2caSLen Brown 	printk(KERN_INFO PREFIX "Preparing to enter system sleep state S%d\n",
77d08ca2caSLen Brown 		acpi_state);
7878f5f023SRafael J. Wysocki 	acpi_enable_wakeup_devices(acpi_state);
79d08ca2caSLen Brown 	acpi_enter_sleep_state_prep(acpi_state);
80d08ca2caSLen Brown 	return 0;
81d08ca2caSLen Brown }
82d08ca2caSLen Brown 
83d08ca2caSLen Brown #ifdef CONFIG_ACPI_SLEEP
84d7f0eea9SZhang Rui /*
8572ad5d77SRafael J. Wysocki  * The ACPI specification wants us to save NVS memory regions during hibernation
8672ad5d77SRafael J. Wysocki  * and to restore them during the subsequent resume.  Windows does that also for
8772ad5d77SRafael J. Wysocki  * suspend to RAM.  However, it is known that this mechanism does not work on
8872ad5d77SRafael J. Wysocki  * all machines, so we allow the user to disable it with the help of the
8972ad5d77SRafael J. Wysocki  * 'acpi_sleep=nonvs' kernel command line option.
9072ad5d77SRafael J. Wysocki  */
9172ad5d77SRafael J. Wysocki static bool nvs_nosave;
9272ad5d77SRafael J. Wysocki 
9372ad5d77SRafael J. Wysocki void __init acpi_nvs_nosave(void)
9472ad5d77SRafael J. Wysocki {
9572ad5d77SRafael J. Wysocki 	nvs_nosave = true;
9672ad5d77SRafael J. Wysocki }
9772ad5d77SRafael J. Wysocki 
9872ad5d77SRafael J. Wysocki /*
99d08ca2caSLen Brown  * ACPI 1.0 wants us to execute _PTS before suspending devices, so we allow the
100d08ca2caSLen Brown  * user to request that behavior by using the 'acpi_old_suspend_ordering'
101d08ca2caSLen Brown  * kernel command line option that causes the following variable to be set.
102d08ca2caSLen Brown  */
103d08ca2caSLen Brown static bool old_suspend_ordering;
104d08ca2caSLen Brown 
105d08ca2caSLen Brown void __init acpi_old_suspend_ordering(void)
106d08ca2caSLen Brown {
107d08ca2caSLen Brown 	old_suspend_ordering = true;
108d08ca2caSLen Brown }
109d08ca2caSLen Brown 
110d08ca2caSLen Brown /**
111d5a64513SRafael J. Wysocki  * acpi_pm_freeze - Disable the GPEs and suspend EC transactions.
112d08ca2caSLen Brown  */
113d5a64513SRafael J. Wysocki static int acpi_pm_freeze(void)
114d08ca2caSLen Brown {
115d08ca2caSLen Brown 	acpi_disable_all_gpes();
116d5a64513SRafael J. Wysocki 	acpi_os_wait_events_complete(NULL);
117fe955682SRafael J. Wysocki 	acpi_ec_block_transactions();
118d08ca2caSLen Brown 	return 0;
119d08ca2caSLen Brown }
120d08ca2caSLen Brown 
121d08ca2caSLen Brown /**
122c5f7a1bbSRafael J. Wysocki  * acpi_pre_suspend - Enable wakeup devices, "freeze" EC and save NVS.
123c5f7a1bbSRafael J. Wysocki  */
124c5f7a1bbSRafael J. Wysocki static int acpi_pm_pre_suspend(void)
125c5f7a1bbSRafael J. Wysocki {
126c5f7a1bbSRafael J. Wysocki 	acpi_pm_freeze();
127c5f7a1bbSRafael J. Wysocki 	suspend_nvs_save();
128c5f7a1bbSRafael J. Wysocki 	return 0;
129c5f7a1bbSRafael J. Wysocki }
130c5f7a1bbSRafael J. Wysocki 
131c5f7a1bbSRafael J. Wysocki /**
132d08ca2caSLen Brown  *	__acpi_pm_prepare - Prepare the platform to enter the target state.
133d08ca2caSLen Brown  *
134d08ca2caSLen Brown  *	If necessary, set the firmware waking vector and do arch-specific
135d08ca2caSLen Brown  *	nastiness to get the wakeup code to the waking vector.
136d08ca2caSLen Brown  */
137d08ca2caSLen Brown static int __acpi_pm_prepare(void)
138d08ca2caSLen Brown {
139d08ca2caSLen Brown 	int error = acpi_sleep_prepare(acpi_target_sleep_state);
140d08ca2caSLen Brown 	if (error)
141d08ca2caSLen Brown 		acpi_target_sleep_state = ACPI_STATE_S0;
142c5f7a1bbSRafael J. Wysocki 
143d08ca2caSLen Brown 	return error;
144d08ca2caSLen Brown }
145d08ca2caSLen Brown 
146d08ca2caSLen Brown /**
147d08ca2caSLen Brown  *	acpi_pm_prepare - Prepare the platform to enter the target sleep
148d08ca2caSLen Brown  *		state and disable the GPEs.
149d08ca2caSLen Brown  */
150d08ca2caSLen Brown static int acpi_pm_prepare(void)
151d08ca2caSLen Brown {
152d08ca2caSLen Brown 	int error = __acpi_pm_prepare();
153d08ca2caSLen Brown 	if (!error)
154c5f7a1bbSRafael J. Wysocki 		acpi_pm_pre_suspend();
155d5a64513SRafael J. Wysocki 
156d08ca2caSLen Brown 	return error;
157d08ca2caSLen Brown }
158d08ca2caSLen Brown 
159d08ca2caSLen Brown /**
160d08ca2caSLen Brown  *	acpi_pm_finish - Instruct the platform to leave a sleep state.
161d08ca2caSLen Brown  *
162d08ca2caSLen Brown  *	This is called after we wake back up (or if entering the sleep state
163d08ca2caSLen Brown  *	failed).
164d08ca2caSLen Brown  */
165d08ca2caSLen Brown static void acpi_pm_finish(void)
166d08ca2caSLen Brown {
167d08ca2caSLen Brown 	u32 acpi_state = acpi_target_sleep_state;
168d08ca2caSLen Brown 
16942de5532SLen Brown 	acpi_ec_unblock_transactions();
1702a6b6976SMatthew Garrett 
171d08ca2caSLen Brown 	if (acpi_state == ACPI_STATE_S0)
172d08ca2caSLen Brown 		return;
173d08ca2caSLen Brown 
174d08ca2caSLen Brown 	printk(KERN_INFO PREFIX "Waking up from system sleep state S%d\n",
175d08ca2caSLen Brown 		acpi_state);
17678f5f023SRafael J. Wysocki 	acpi_disable_wakeup_devices(acpi_state);
177d08ca2caSLen Brown 	acpi_leave_sleep_state(acpi_state);
178d08ca2caSLen Brown 
179d08ca2caSLen Brown 	/* reset firmware waking vector */
180d08ca2caSLen Brown 	acpi_set_firmware_waking_vector((acpi_physical_address) 0);
181d08ca2caSLen Brown 
182d08ca2caSLen Brown 	acpi_target_sleep_state = ACPI_STATE_S0;
183d08ca2caSLen Brown }
184d08ca2caSLen Brown 
185d08ca2caSLen Brown /**
186d08ca2caSLen Brown  *	acpi_pm_end - Finish up suspend sequence.
187d08ca2caSLen Brown  */
188d08ca2caSLen Brown static void acpi_pm_end(void)
189d08ca2caSLen Brown {
190e96c4b08SRafael J. Wysocki 	suspend_nvs_free();
191d08ca2caSLen Brown 	/*
192d08ca2caSLen Brown 	 * This is necessary in case acpi_pm_finish() is not called during a
193d08ca2caSLen Brown 	 * failing transition to a sleep state.
194d08ca2caSLen Brown 	 */
195d08ca2caSLen Brown 	acpi_target_sleep_state = ACPI_STATE_S0;
196d08ca2caSLen Brown 	acpi_sleep_tts_switch(acpi_target_sleep_state);
197d08ca2caSLen Brown }
198d08ca2caSLen Brown #else /* !CONFIG_ACPI_SLEEP */
199d08ca2caSLen Brown #define acpi_target_sleep_state	ACPI_STATE_S0
200d08ca2caSLen Brown #endif /* CONFIG_ACPI_SLEEP */
201d08ca2caSLen Brown 
202d08ca2caSLen Brown #ifdef CONFIG_SUSPEND
203d08ca2caSLen Brown extern void do_suspend_lowlevel(void);
204d08ca2caSLen Brown 
205d08ca2caSLen Brown static u32 acpi_suspend_states[] = {
206d08ca2caSLen Brown 	[PM_SUSPEND_ON] = ACPI_STATE_S0,
207d08ca2caSLen Brown 	[PM_SUSPEND_STANDBY] = ACPI_STATE_S1,
208d08ca2caSLen Brown 	[PM_SUSPEND_MEM] = ACPI_STATE_S3,
209d08ca2caSLen Brown 	[PM_SUSPEND_MAX] = ACPI_STATE_S5
210d08ca2caSLen Brown };
211d08ca2caSLen Brown 
212d08ca2caSLen Brown /**
213d08ca2caSLen Brown  *	acpi_suspend_begin - Set the target system sleep state to the state
214d08ca2caSLen Brown  *		associated with given @pm_state, if supported.
215d08ca2caSLen Brown  */
216d08ca2caSLen Brown static int acpi_suspend_begin(suspend_state_t pm_state)
217d08ca2caSLen Brown {
218d08ca2caSLen Brown 	u32 acpi_state = acpi_suspend_states[pm_state];
219d08ca2caSLen Brown 	int error = 0;
220d08ca2caSLen Brown 
22172ad5d77SRafael J. Wysocki 	error = nvs_nosave ? 0 : suspend_nvs_alloc();
2222a6b6976SMatthew Garrett 	if (error)
2232a6b6976SMatthew Garrett 		return error;
2242a6b6976SMatthew Garrett 
225d08ca2caSLen Brown 	if (sleep_states[acpi_state]) {
226d08ca2caSLen Brown 		acpi_target_sleep_state = acpi_state;
227d08ca2caSLen Brown 		acpi_sleep_tts_switch(acpi_target_sleep_state);
228d08ca2caSLen Brown 	} else {
229d08ca2caSLen Brown 		printk(KERN_ERR "ACPI does not support this state: %d\n",
230d08ca2caSLen Brown 			pm_state);
231d08ca2caSLen Brown 		error = -ENOSYS;
232d08ca2caSLen Brown 	}
233d08ca2caSLen Brown 	return error;
234d08ca2caSLen Brown }
235d08ca2caSLen Brown 
236d08ca2caSLen Brown /**
237d08ca2caSLen Brown  *	acpi_suspend_enter - Actually enter a sleep state.
238d08ca2caSLen Brown  *	@pm_state: ignored
239d08ca2caSLen Brown  *
240d08ca2caSLen Brown  *	Flush caches and go to sleep. For STR we have to call arch-specific
241d08ca2caSLen Brown  *	assembly, which in turn call acpi_enter_sleep_state().
242d08ca2caSLen Brown  *	It's unfortunate, but it works. Please fix if you're feeling frisky.
243d08ca2caSLen Brown  */
244d08ca2caSLen Brown static int acpi_suspend_enter(suspend_state_t pm_state)
245d08ca2caSLen Brown {
246d08ca2caSLen Brown 	acpi_status status = AE_OK;
247d08ca2caSLen Brown 	unsigned long flags = 0;
248d08ca2caSLen Brown 	u32 acpi_state = acpi_target_sleep_state;
249d08ca2caSLen Brown 
250d08ca2caSLen Brown 	ACPI_FLUSH_CPU_CACHE();
251d08ca2caSLen Brown 
252d08ca2caSLen Brown 	/* Do arch specific saving of state. */
253d08ca2caSLen Brown 	if (acpi_state == ACPI_STATE_S3) {
254d08ca2caSLen Brown 		int error = acpi_save_state_mem();
255d08ca2caSLen Brown 
256d08ca2caSLen Brown 		if (error)
257d08ca2caSLen Brown 			return error;
258d08ca2caSLen Brown 	}
259d08ca2caSLen Brown 
260d08ca2caSLen Brown 	local_irq_save(flags);
261d08ca2caSLen Brown 	switch (acpi_state) {
262d08ca2caSLen Brown 	case ACPI_STATE_S1:
263d08ca2caSLen Brown 		barrier();
264d08ca2caSLen Brown 		status = acpi_enter_sleep_state(acpi_state);
265d08ca2caSLen Brown 		break;
266d08ca2caSLen Brown 
267d08ca2caSLen Brown 	case ACPI_STATE_S3:
268d08ca2caSLen Brown 		do_suspend_lowlevel();
269d08ca2caSLen Brown 		break;
270d08ca2caSLen Brown 	}
271d08ca2caSLen Brown 
272b6dacf63SMatthew Garrett 	/* This violates the spec but is required for bug compatibility. */
27350ffba1bSBob Moore 	acpi_write_bit_register(ACPI_BITREG_SCI_ENABLE, 1);
274d08ca2caSLen Brown 
275d08ca2caSLen Brown 	/* Reprogram control registers and execute _BFS */
276d08ca2caSLen Brown 	acpi_leave_sleep_state_prep(acpi_state);
277d08ca2caSLen Brown 
278d08ca2caSLen Brown 	/* ACPI 3.0 specs (P62) says that it's the responsibility
279d08ca2caSLen Brown 	 * of the OSPM to clear the status bit [ implying that the
280d08ca2caSLen Brown 	 * POWER_BUTTON event should not reach userspace ]
281d08ca2caSLen Brown 	 */
282d08ca2caSLen Brown 	if (ACPI_SUCCESS(status) && (acpi_state == ACPI_STATE_S3))
283d08ca2caSLen Brown 		acpi_clear_event(ACPI_EVENT_POWER_BUTTON);
284d08ca2caSLen Brown 
285d08ca2caSLen Brown 	/*
286d08ca2caSLen Brown 	 * Disable and clear GPE status before interrupt is enabled. Some GPEs
287d08ca2caSLen Brown 	 * (like wakeup GPE) haven't handler, this can avoid such GPE misfire.
288d08ca2caSLen Brown 	 * acpi_leave_sleep_state will reenable specific GPEs later
289d08ca2caSLen Brown 	 */
290d08ca2caSLen Brown 	acpi_disable_all_gpes();
291d5a64513SRafael J. Wysocki 	/* Allow EC transactions to happen. */
292fe955682SRafael J. Wysocki 	acpi_ec_unblock_transactions_early();
293d08ca2caSLen Brown 
294d08ca2caSLen Brown 	local_irq_restore(flags);
295d08ca2caSLen Brown 	printk(KERN_DEBUG "Back to C!\n");
296d08ca2caSLen Brown 
297d08ca2caSLen Brown 	/* restore processor state */
298d08ca2caSLen Brown 	if (acpi_state == ACPI_STATE_S3)
299d08ca2caSLen Brown 		acpi_restore_state_mem();
300d08ca2caSLen Brown 
3012a6b6976SMatthew Garrett 	suspend_nvs_restore();
3022a6b6976SMatthew Garrett 
303d08ca2caSLen Brown 	return ACPI_SUCCESS(status) ? 0 : -EFAULT;
304d08ca2caSLen Brown }
305d08ca2caSLen Brown 
306d08ca2caSLen Brown static int acpi_suspend_state_valid(suspend_state_t pm_state)
307d08ca2caSLen Brown {
308d08ca2caSLen Brown 	u32 acpi_state;
309d08ca2caSLen Brown 
310d08ca2caSLen Brown 	switch (pm_state) {
311d08ca2caSLen Brown 	case PM_SUSPEND_ON:
312d08ca2caSLen Brown 	case PM_SUSPEND_STANDBY:
313d08ca2caSLen Brown 	case PM_SUSPEND_MEM:
314d08ca2caSLen Brown 		acpi_state = acpi_suspend_states[pm_state];
315d08ca2caSLen Brown 
316d08ca2caSLen Brown 		return sleep_states[acpi_state];
317d08ca2caSLen Brown 	default:
318d08ca2caSLen Brown 		return 0;
319d08ca2caSLen Brown 	}
320d08ca2caSLen Brown }
321d08ca2caSLen Brown 
322d08ca2caSLen Brown static struct platform_suspend_ops acpi_suspend_ops = {
323d08ca2caSLen Brown 	.valid = acpi_suspend_state_valid,
324d08ca2caSLen Brown 	.begin = acpi_suspend_begin,
3256a7c7eafSRafael J. Wysocki 	.prepare_late = acpi_pm_prepare,
326d08ca2caSLen Brown 	.enter = acpi_suspend_enter,
327618d7fd0SRafael J. Wysocki 	.wake = acpi_pm_finish,
328d08ca2caSLen Brown 	.end = acpi_pm_end,
329d08ca2caSLen Brown };
330d08ca2caSLen Brown 
331d08ca2caSLen Brown /**
332d08ca2caSLen Brown  *	acpi_suspend_begin_old - Set the target system sleep state to the
333d08ca2caSLen Brown  *		state associated with given @pm_state, if supported, and
334d08ca2caSLen Brown  *		execute the _PTS control method.  This function is used if the
335d08ca2caSLen Brown  *		pre-ACPI 2.0 suspend ordering has been requested.
336d08ca2caSLen Brown  */
337d08ca2caSLen Brown static int acpi_suspend_begin_old(suspend_state_t pm_state)
338d08ca2caSLen Brown {
339d08ca2caSLen Brown 	int error = acpi_suspend_begin(pm_state);
340d08ca2caSLen Brown 	if (!error)
341d08ca2caSLen Brown 		error = __acpi_pm_prepare();
342c5f7a1bbSRafael J. Wysocki 
343d08ca2caSLen Brown 	return error;
344d08ca2caSLen Brown }
345d08ca2caSLen Brown 
346d08ca2caSLen Brown /*
347d08ca2caSLen Brown  * The following callbacks are used if the pre-ACPI 2.0 suspend ordering has
348d08ca2caSLen Brown  * been requested.
349d08ca2caSLen Brown  */
350d08ca2caSLen Brown static struct platform_suspend_ops acpi_suspend_ops_old = {
351d08ca2caSLen Brown 	.valid = acpi_suspend_state_valid,
352d08ca2caSLen Brown 	.begin = acpi_suspend_begin_old,
353c5f7a1bbSRafael J. Wysocki 	.prepare_late = acpi_pm_pre_suspend,
354d08ca2caSLen Brown 	.enter = acpi_suspend_enter,
355618d7fd0SRafael J. Wysocki 	.wake = acpi_pm_finish,
356d08ca2caSLen Brown 	.end = acpi_pm_end,
357d08ca2caSLen Brown 	.recover = acpi_pm_finish,
358d08ca2caSLen Brown };
359d08ca2caSLen Brown 
360d08ca2caSLen Brown static int __init init_old_suspend_ordering(const struct dmi_system_id *d)
361d08ca2caSLen Brown {
362d08ca2caSLen Brown 	old_suspend_ordering = true;
363d08ca2caSLen Brown 	return 0;
364d08ca2caSLen Brown }
365d08ca2caSLen Brown 
36653998648SRafael J. Wysocki static int __init init_nvs_nosave(const struct dmi_system_id *d)
36753998648SRafael J. Wysocki {
36853998648SRafael J. Wysocki 	acpi_nvs_nosave();
36953998648SRafael J. Wysocki 	return 0;
37053998648SRafael J. Wysocki }
37153998648SRafael J. Wysocki 
372d08ca2caSLen Brown static struct dmi_system_id __initdata acpisleep_dmi_table[] = {
373d08ca2caSLen Brown 	{
374d08ca2caSLen Brown 	.callback = init_old_suspend_ordering,
375d08ca2caSLen Brown 	.ident = "Abit KN9 (nForce4 variant)",
376d08ca2caSLen Brown 	.matches = {
377d08ca2caSLen Brown 		DMI_MATCH(DMI_BOARD_VENDOR, "http://www.abit.com.tw/"),
378d08ca2caSLen Brown 		DMI_MATCH(DMI_BOARD_NAME, "KN9 Series(NF-CK804)"),
379d08ca2caSLen Brown 		},
380d08ca2caSLen Brown 	},
381d08ca2caSLen Brown 	{
382d08ca2caSLen Brown 	.callback = init_old_suspend_ordering,
383d08ca2caSLen Brown 	.ident = "HP xw4600 Workstation",
384d08ca2caSLen Brown 	.matches = {
385d08ca2caSLen Brown 		DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
386d08ca2caSLen Brown 		DMI_MATCH(DMI_PRODUCT_NAME, "HP xw4600 Workstation"),
387d08ca2caSLen Brown 		},
388d08ca2caSLen Brown 	},
389d08ca2caSLen Brown 	{
390a1404495SAndy Whitcroft 	.callback = init_old_suspend_ordering,
391a1404495SAndy Whitcroft 	.ident = "Asus Pundit P1-AH2 (M2N8L motherboard)",
392a1404495SAndy Whitcroft 	.matches = {
393a1404495SAndy Whitcroft 		DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTek Computer INC."),
394a1404495SAndy Whitcroft 		DMI_MATCH(DMI_BOARD_NAME, "M2N8L"),
395a1404495SAndy Whitcroft 		},
396a1404495SAndy Whitcroft 	},
39745e77988SZhang Rui 	{
3982a9ef8e1SZhao Yakui 	.callback = init_old_suspend_ordering,
3992a9ef8e1SZhao Yakui 	.ident = "Panasonic CF51-2L",
4002a9ef8e1SZhao Yakui 	.matches = {
4012a9ef8e1SZhao Yakui 		DMI_MATCH(DMI_BOARD_VENDOR,
4022a9ef8e1SZhao Yakui 				"Matsushita Electric Industrial Co.,Ltd."),
4032a9ef8e1SZhao Yakui 		DMI_MATCH(DMI_BOARD_NAME, "CF51-2L"),
4042a9ef8e1SZhao Yakui 		},
4052a9ef8e1SZhao Yakui 	},
40653998648SRafael J. Wysocki 	{
40753998648SRafael J. Wysocki 	.callback = init_nvs_nosave,
40853998648SRafael J. Wysocki 	.ident = "Sony Vaio VGN-SR11M",
40953998648SRafael J. Wysocki 	.matches = {
41053998648SRafael J. Wysocki 		DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
41153998648SRafael J. Wysocki 		DMI_MATCH(DMI_PRODUCT_NAME, "VGN-SR11M"),
41253998648SRafael J. Wysocki 		},
41353998648SRafael J. Wysocki 	},
41453998648SRafael J. Wysocki 	{
41553998648SRafael J. Wysocki 	.callback = init_nvs_nosave,
41653998648SRafael J. Wysocki 	.ident = "Everex StepNote Series",
41753998648SRafael J. Wysocki 	.matches = {
41853998648SRafael J. Wysocki 		DMI_MATCH(DMI_SYS_VENDOR, "Everex Systems, Inc."),
41953998648SRafael J. Wysocki 		DMI_MATCH(DMI_PRODUCT_NAME, "Everex StepNote Series"),
42053998648SRafael J. Wysocki 		},
42153998648SRafael J. Wysocki 	},
422d08ca2caSLen Brown 	{},
423d08ca2caSLen Brown };
424d08ca2caSLen Brown #endif /* CONFIG_SUSPEND */
425d08ca2caSLen Brown 
426d08ca2caSLen Brown #ifdef CONFIG_HIBERNATION
427d08ca2caSLen Brown static unsigned long s4_hardware_signature;
428d08ca2caSLen Brown static struct acpi_table_facs *facs;
429d08ca2caSLen Brown static bool nosigcheck;
430d08ca2caSLen Brown 
431d08ca2caSLen Brown void __init acpi_no_s4_hw_signature(void)
432d08ca2caSLen Brown {
433d08ca2caSLen Brown 	nosigcheck = true;
434d08ca2caSLen Brown }
435d08ca2caSLen Brown 
436d08ca2caSLen Brown static int acpi_hibernation_begin(void)
437d08ca2caSLen Brown {
438d08ca2caSLen Brown 	int error;
439d08ca2caSLen Brown 
44072ad5d77SRafael J. Wysocki 	error = nvs_nosave ? 0 : suspend_nvs_alloc();
441d08ca2caSLen Brown 	if (!error) {
442d08ca2caSLen Brown 		acpi_target_sleep_state = ACPI_STATE_S4;
443d08ca2caSLen Brown 		acpi_sleep_tts_switch(acpi_target_sleep_state);
444d08ca2caSLen Brown 	}
445d08ca2caSLen Brown 
446d08ca2caSLen Brown 	return error;
447d08ca2caSLen Brown }
448d08ca2caSLen Brown 
449d08ca2caSLen Brown static int acpi_hibernation_enter(void)
450d08ca2caSLen Brown {
451d08ca2caSLen Brown 	acpi_status status = AE_OK;
452d08ca2caSLen Brown 	unsigned long flags = 0;
453d08ca2caSLen Brown 
454d08ca2caSLen Brown 	ACPI_FLUSH_CPU_CACHE();
455d08ca2caSLen Brown 
456d08ca2caSLen Brown 	local_irq_save(flags);
457d08ca2caSLen Brown 	/* This shouldn't return.  If it returns, we have a problem */
458d08ca2caSLen Brown 	status = acpi_enter_sleep_state(ACPI_STATE_S4);
459d08ca2caSLen Brown 	/* Reprogram control registers and execute _BFS */
460d08ca2caSLen Brown 	acpi_leave_sleep_state_prep(ACPI_STATE_S4);
461d08ca2caSLen Brown 	local_irq_restore(flags);
462d08ca2caSLen Brown 
463d08ca2caSLen Brown 	return ACPI_SUCCESS(status) ? 0 : -EFAULT;
464d08ca2caSLen Brown }
465d08ca2caSLen Brown 
466d08ca2caSLen Brown static void acpi_hibernation_leave(void)
467d08ca2caSLen Brown {
468d08ca2caSLen Brown 	/*
469d08ca2caSLen Brown 	 * If ACPI is not enabled by the BIOS and the boot kernel, we need to
470d08ca2caSLen Brown 	 * enable it here.
471d08ca2caSLen Brown 	 */
472d08ca2caSLen Brown 	acpi_enable();
473d08ca2caSLen Brown 	/* Reprogram control registers and execute _BFS */
474d08ca2caSLen Brown 	acpi_leave_sleep_state_prep(ACPI_STATE_S4);
475d08ca2caSLen Brown 	/* Check the hardware signature */
476d08ca2caSLen Brown 	if (facs && s4_hardware_signature != facs->hardware_signature) {
477d08ca2caSLen Brown 		printk(KERN_EMERG "ACPI: Hardware changed while hibernated, "
478d08ca2caSLen Brown 			"cannot resume!\n");
479d08ca2caSLen Brown 		panic("ACPI S4 hardware signature mismatch");
480d08ca2caSLen Brown 	}
481d08ca2caSLen Brown 	/* Restore the NVS memory area */
482dd4c4f17SMatthew Garrett 	suspend_nvs_restore();
483d5a64513SRafael J. Wysocki 	/* Allow EC transactions to happen. */
484fe955682SRafael J. Wysocki 	acpi_ec_unblock_transactions_early();
485d08ca2caSLen Brown }
486d08ca2caSLen Brown 
487d5a64513SRafael J. Wysocki static void acpi_pm_thaw(void)
488f6bb13aaSRafael J. Wysocki {
489fe955682SRafael J. Wysocki 	acpi_ec_unblock_transactions();
490d08ca2caSLen Brown 	acpi_enable_all_runtime_gpes();
491d08ca2caSLen Brown }
492d08ca2caSLen Brown 
493d08ca2caSLen Brown static struct platform_hibernation_ops acpi_hibernation_ops = {
494d08ca2caSLen Brown 	.begin = acpi_hibernation_begin,
495d08ca2caSLen Brown 	.end = acpi_pm_end,
496c5f7a1bbSRafael J. Wysocki 	.pre_snapshot = acpi_pm_prepare,
4972a6b6976SMatthew Garrett 	.finish = acpi_pm_finish,
498d08ca2caSLen Brown 	.prepare = acpi_pm_prepare,
499d08ca2caSLen Brown 	.enter = acpi_hibernation_enter,
500d08ca2caSLen Brown 	.leave = acpi_hibernation_leave,
501d5a64513SRafael J. Wysocki 	.pre_restore = acpi_pm_freeze,
502d5a64513SRafael J. Wysocki 	.restore_cleanup = acpi_pm_thaw,
503d08ca2caSLen Brown };
504d08ca2caSLen Brown 
505d08ca2caSLen Brown /**
506d08ca2caSLen Brown  *	acpi_hibernation_begin_old - Set the target system sleep state to
507d08ca2caSLen Brown  *		ACPI_STATE_S4 and execute the _PTS control method.  This
508d08ca2caSLen Brown  *		function is used if the pre-ACPI 2.0 suspend ordering has been
509d08ca2caSLen Brown  *		requested.
510d08ca2caSLen Brown  */
511d08ca2caSLen Brown static int acpi_hibernation_begin_old(void)
512d08ca2caSLen Brown {
513d08ca2caSLen Brown 	int error;
514d08ca2caSLen Brown 	/*
515d08ca2caSLen Brown 	 * The _TTS object should always be evaluated before the _PTS object.
516d08ca2caSLen Brown 	 * When the old_suspended_ordering is true, the _PTS object is
517d08ca2caSLen Brown 	 * evaluated in the acpi_sleep_prepare.
518d08ca2caSLen Brown 	 */
519d08ca2caSLen Brown 	acpi_sleep_tts_switch(ACPI_STATE_S4);
520d08ca2caSLen Brown 
521d08ca2caSLen Brown 	error = acpi_sleep_prepare(ACPI_STATE_S4);
522d08ca2caSLen Brown 
523d08ca2caSLen Brown 	if (!error) {
52472ad5d77SRafael J. Wysocki 		if (!nvs_nosave)
525dd4c4f17SMatthew Garrett 			error = suspend_nvs_alloc();
526d08ca2caSLen Brown 		if (!error)
527d08ca2caSLen Brown 			acpi_target_sleep_state = ACPI_STATE_S4;
528d08ca2caSLen Brown 	}
529d08ca2caSLen Brown 	return error;
530d08ca2caSLen Brown }
531d08ca2caSLen Brown 
532d08ca2caSLen Brown /*
533d08ca2caSLen Brown  * The following callbacks are used if the pre-ACPI 2.0 suspend ordering has
534d08ca2caSLen Brown  * been requested.
535d08ca2caSLen Brown  */
536d08ca2caSLen Brown static struct platform_hibernation_ops acpi_hibernation_ops_old = {
537d08ca2caSLen Brown 	.begin = acpi_hibernation_begin_old,
538d08ca2caSLen Brown 	.end = acpi_pm_end,
539c5f7a1bbSRafael J. Wysocki 	.pre_snapshot = acpi_pm_pre_suspend,
540d5a64513SRafael J. Wysocki 	.prepare = acpi_pm_freeze,
5412a6b6976SMatthew Garrett 	.finish = acpi_pm_finish,
542d08ca2caSLen Brown 	.enter = acpi_hibernation_enter,
543d08ca2caSLen Brown 	.leave = acpi_hibernation_leave,
544d5a64513SRafael J. Wysocki 	.pre_restore = acpi_pm_freeze,
545d5a64513SRafael J. Wysocki 	.restore_cleanup = acpi_pm_thaw,
546d08ca2caSLen Brown 	.recover = acpi_pm_finish,
547d08ca2caSLen Brown };
548d08ca2caSLen Brown #endif /* CONFIG_HIBERNATION */
549d08ca2caSLen Brown 
550d08ca2caSLen Brown int acpi_suspend(u32 acpi_state)
551d08ca2caSLen Brown {
552d08ca2caSLen Brown 	suspend_state_t states[] = {
553d08ca2caSLen Brown 		[1] = PM_SUSPEND_STANDBY,
554d08ca2caSLen Brown 		[3] = PM_SUSPEND_MEM,
555d08ca2caSLen Brown 		[5] = PM_SUSPEND_MAX
556d08ca2caSLen Brown 	};
557d08ca2caSLen Brown 
558d08ca2caSLen Brown 	if (acpi_state < 6 && states[acpi_state])
559d08ca2caSLen Brown 		return pm_suspend(states[acpi_state]);
560d08ca2caSLen Brown 	if (acpi_state == 4)
561d08ca2caSLen Brown 		return hibernate();
562d08ca2caSLen Brown 	return -EINVAL;
563d08ca2caSLen Brown }
564d08ca2caSLen Brown 
565*761afb86SRafael J. Wysocki #ifdef CONFIG_PM_OPS
566d08ca2caSLen Brown /**
567d08ca2caSLen Brown  *	acpi_pm_device_sleep_state - return preferred power state of ACPI device
568d08ca2caSLen Brown  *		in the system sleep state given by %acpi_target_sleep_state
569d08ca2caSLen Brown  *	@dev: device to examine; its driver model wakeup flags control
570d08ca2caSLen Brown  *		whether it should be able to wake up the system
571d08ca2caSLen Brown  *	@d_min_p: used to store the upper limit of allowed states range
572d08ca2caSLen Brown  *	Return value: preferred power state of the device on success, -ENODEV on
573d08ca2caSLen Brown  *		failure (ie. if there's no 'struct acpi_device' for @dev)
574d08ca2caSLen Brown  *
575d08ca2caSLen Brown  *	Find the lowest power (highest number) ACPI device power state that
576d08ca2caSLen Brown  *	device @dev can be in while the system is in the sleep state represented
577d08ca2caSLen Brown  *	by %acpi_target_sleep_state.  If @wake is nonzero, the device should be
578d08ca2caSLen Brown  *	able to wake up the system from this sleep state.  If @d_min_p is set,
579d08ca2caSLen Brown  *	the highest power (lowest number) device power state of @dev allowed
580d08ca2caSLen Brown  *	in this system sleep state is stored at the location pointed to by it.
581d08ca2caSLen Brown  *
582d08ca2caSLen Brown  *	The caller must ensure that @dev is valid before using this function.
583d08ca2caSLen Brown  *	The caller is also responsible for figuring out if the device is
584d08ca2caSLen Brown  *	supposed to be able to wake up the system and passing this information
585d08ca2caSLen Brown  *	via @wake.
586d08ca2caSLen Brown  */
587d08ca2caSLen Brown 
588d08ca2caSLen Brown int acpi_pm_device_sleep_state(struct device *dev, int *d_min_p)
589d08ca2caSLen Brown {
590d08ca2caSLen Brown 	acpi_handle handle = DEVICE_ACPI_HANDLE(dev);
591d08ca2caSLen Brown 	struct acpi_device *adev;
592d08ca2caSLen Brown 	char acpi_method[] = "_SxD";
593d08ca2caSLen Brown 	unsigned long long d_min, d_max;
594d08ca2caSLen Brown 
595d08ca2caSLen Brown 	if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &adev))) {
596d08ca2caSLen Brown 		printk(KERN_DEBUG "ACPI handle has no context!\n");
597d08ca2caSLen Brown 		return -ENODEV;
598d08ca2caSLen Brown 	}
599d08ca2caSLen Brown 
600d08ca2caSLen Brown 	acpi_method[2] = '0' + acpi_target_sleep_state;
601d08ca2caSLen Brown 	/*
602d08ca2caSLen Brown 	 * If the sleep state is S0, we will return D3, but if the device has
603d08ca2caSLen Brown 	 * _S0W, we will use the value from _S0W
604d08ca2caSLen Brown 	 */
605d08ca2caSLen Brown 	d_min = ACPI_STATE_D0;
606d08ca2caSLen Brown 	d_max = ACPI_STATE_D3;
607d08ca2caSLen Brown 
608d08ca2caSLen Brown 	/*
609d08ca2caSLen Brown 	 * If present, _SxD methods return the minimum D-state (highest power
610d08ca2caSLen Brown 	 * state) we can use for the corresponding S-states.  Otherwise, the
611d08ca2caSLen Brown 	 * minimum D-state is D0 (ACPI 3.x).
612d08ca2caSLen Brown 	 *
613d08ca2caSLen Brown 	 * NOTE: We rely on acpi_evaluate_integer() not clobbering the integer
614d08ca2caSLen Brown 	 * provided -- that's our fault recovery, we ignore retval.
615d08ca2caSLen Brown 	 */
616d08ca2caSLen Brown 	if (acpi_target_sleep_state > ACPI_STATE_S0)
617d08ca2caSLen Brown 		acpi_evaluate_integer(handle, acpi_method, NULL, &d_min);
618d08ca2caSLen Brown 
619d08ca2caSLen Brown 	/*
620d08ca2caSLen Brown 	 * If _PRW says we can wake up the system from the target sleep state,
621d08ca2caSLen Brown 	 * the D-state returned by _SxD is sufficient for that (we assume a
622d08ca2caSLen Brown 	 * wakeup-aware driver if wake is set).  Still, if _SxW exists
623d08ca2caSLen Brown 	 * (ACPI 3.x), it should return the maximum (lowest power) D-state that
624d08ca2caSLen Brown 	 * can wake the system.  _S0W may be valid, too.
625d08ca2caSLen Brown 	 */
626d08ca2caSLen Brown 	if (acpi_target_sleep_state == ACPI_STATE_S0 ||
627*761afb86SRafael J. Wysocki 	    (device_may_wakeup(dev) &&
628d08ca2caSLen Brown 	     adev->wakeup.sleep_state <= acpi_target_sleep_state)) {
629d08ca2caSLen Brown 		acpi_status status;
630d08ca2caSLen Brown 
631d08ca2caSLen Brown 		acpi_method[3] = 'W';
632d08ca2caSLen Brown 		status = acpi_evaluate_integer(handle, acpi_method, NULL,
633d08ca2caSLen Brown 						&d_max);
634d08ca2caSLen Brown 		if (ACPI_FAILURE(status)) {
635*761afb86SRafael J. Wysocki 			if (acpi_target_sleep_state != ACPI_STATE_S0 ||
636*761afb86SRafael J. Wysocki 			    status != AE_NOT_FOUND)
637d08ca2caSLen Brown 				d_max = d_min;
638d08ca2caSLen Brown 		} else if (d_max < d_min) {
639d08ca2caSLen Brown 			/* Warn the user of the broken DSDT */
640d08ca2caSLen Brown 			printk(KERN_WARNING "ACPI: Wrong value from %s\n",
641d08ca2caSLen Brown 				acpi_method);
642d08ca2caSLen Brown 			/* Sanitize it */
643d08ca2caSLen Brown 			d_min = d_max;
644d08ca2caSLen Brown 		}
645d08ca2caSLen Brown 	}
646d08ca2caSLen Brown 
647d08ca2caSLen Brown 	if (d_min_p)
648d08ca2caSLen Brown 		*d_min_p = d_min;
649d08ca2caSLen Brown 	return d_max;
650d08ca2caSLen Brown }
651*761afb86SRafael J. Wysocki #endif /* CONFIG_PM_OPS */
652d08ca2caSLen Brown 
653*761afb86SRafael J. Wysocki #ifdef CONFIG_PM_SLEEP
654d08ca2caSLen Brown /**
655d08ca2caSLen Brown  *	acpi_pm_device_sleep_wake - enable or disable the system wake-up
656d08ca2caSLen Brown  *                                  capability of given device
657d08ca2caSLen Brown  *	@dev: device to handle
658d08ca2caSLen Brown  *	@enable: 'true' - enable, 'false' - disable the wake-up capability
659d08ca2caSLen Brown  */
660d08ca2caSLen Brown int acpi_pm_device_sleep_wake(struct device *dev, bool enable)
661d08ca2caSLen Brown {
662d08ca2caSLen Brown 	acpi_handle handle;
663d08ca2caSLen Brown 	struct acpi_device *adev;
664df8db91fSRafael J. Wysocki 	int error;
665d08ca2caSLen Brown 
6660baed8daSRafael J. Wysocki 	if (!device_can_wakeup(dev))
667d08ca2caSLen Brown 		return -EINVAL;
668d08ca2caSLen Brown 
669d08ca2caSLen Brown 	handle = DEVICE_ACPI_HANDLE(dev);
670d08ca2caSLen Brown 	if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &adev))) {
671df8db91fSRafael J. Wysocki 		dev_dbg(dev, "ACPI handle has no context in %s!\n", __func__);
672d08ca2caSLen Brown 		return -ENODEV;
673d08ca2caSLen Brown 	}
674d08ca2caSLen Brown 
675e8b6f970SRafael J. Wysocki 	error = enable ?
676e8b6f970SRafael J. Wysocki 		acpi_enable_wakeup_device_power(adev, acpi_target_sleep_state) :
677e8b6f970SRafael J. Wysocki 		acpi_disable_wakeup_device_power(adev);
678df8db91fSRafael J. Wysocki 	if (!error)
679df8db91fSRafael J. Wysocki 		dev_info(dev, "wake-up capability %s by ACPI\n",
680df8db91fSRafael J. Wysocki 				enable ? "enabled" : "disabled");
681df8db91fSRafael J. Wysocki 
682df8db91fSRafael J. Wysocki 	return error;
683d08ca2caSLen Brown }
684*761afb86SRafael J. Wysocki #endif  /* CONFIG_PM_SLEEP */
685d08ca2caSLen Brown 
686d08ca2caSLen Brown static void acpi_power_off_prepare(void)
687d08ca2caSLen Brown {
688d08ca2caSLen Brown 	/* Prepare to power off the system */
689d08ca2caSLen Brown 	acpi_sleep_prepare(ACPI_STATE_S5);
690d08ca2caSLen Brown 	acpi_disable_all_gpes();
691d08ca2caSLen Brown }
692d08ca2caSLen Brown 
693d08ca2caSLen Brown static void acpi_power_off(void)
694d08ca2caSLen Brown {
695d08ca2caSLen Brown 	/* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */
6964d939155SFrank Seidel 	printk(KERN_DEBUG "%s called\n", __func__);
697d08ca2caSLen Brown 	local_irq_disable();
698d08ca2caSLen Brown 	acpi_enter_sleep_state(ACPI_STATE_S5);
699d08ca2caSLen Brown }
700d08ca2caSLen Brown 
70196f15efcSLen Brown /*
70296f15efcSLen Brown  * ACPI 2.0 created the optional _GTS and _BFS,
70396f15efcSLen Brown  * but industry adoption has been neither rapid nor broad.
70496f15efcSLen Brown  *
70596f15efcSLen Brown  * Linux gets into trouble when it executes poorly validated
70696f15efcSLen Brown  * paths through the BIOS, so disable _GTS and _BFS by default,
70796f15efcSLen Brown  * but do speak up and offer the option to enable them.
70896f15efcSLen Brown  */
70996f15efcSLen Brown void __init acpi_gts_bfs_check(void)
71096f15efcSLen Brown {
71196f15efcSLen Brown 	acpi_handle dummy;
71296f15efcSLen Brown 
71396f15efcSLen Brown 	if (ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT, METHOD_NAME__GTS, &dummy)))
71496f15efcSLen Brown 	{
71596f15efcSLen Brown 		printk(KERN_NOTICE PREFIX "BIOS offers _GTS\n");
71696f15efcSLen Brown 		printk(KERN_NOTICE PREFIX "If \"acpi.gts=1\" improves suspend, "
71796f15efcSLen Brown 			"please notify linux-acpi@vger.kernel.org\n");
71896f15efcSLen Brown 	}
71996f15efcSLen Brown 	if (ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT, METHOD_NAME__BFS, &dummy)))
72096f15efcSLen Brown 	{
72196f15efcSLen Brown 		printk(KERN_NOTICE PREFIX "BIOS offers _BFS\n");
72296f15efcSLen Brown 		printk(KERN_NOTICE PREFIX "If \"acpi.bfs=1\" improves resume, "
72396f15efcSLen Brown 			"please notify linux-acpi@vger.kernel.org\n");
72496f15efcSLen Brown 	}
72596f15efcSLen Brown }
72696f15efcSLen Brown 
727d08ca2caSLen Brown int __init acpi_sleep_init(void)
728d08ca2caSLen Brown {
729d08ca2caSLen Brown 	acpi_status status;
730d08ca2caSLen Brown 	u8 type_a, type_b;
731d08ca2caSLen Brown #ifdef CONFIG_SUSPEND
732d08ca2caSLen Brown 	int i = 0;
733d08ca2caSLen Brown 
734d08ca2caSLen Brown 	dmi_check_system(acpisleep_dmi_table);
735d08ca2caSLen Brown #endif
736d08ca2caSLen Brown 
737d08ca2caSLen Brown 	if (acpi_disabled)
738d08ca2caSLen Brown 		return 0;
739d08ca2caSLen Brown 
740d08ca2caSLen Brown 	sleep_states[ACPI_STATE_S0] = 1;
741d08ca2caSLen Brown 	printk(KERN_INFO PREFIX "(supports S0");
742d08ca2caSLen Brown 
743d08ca2caSLen Brown #ifdef CONFIG_SUSPEND
744d08ca2caSLen Brown 	for (i = ACPI_STATE_S1; i < ACPI_STATE_S4; i++) {
745d08ca2caSLen Brown 		status = acpi_get_sleep_type_data(i, &type_a, &type_b);
746d08ca2caSLen Brown 		if (ACPI_SUCCESS(status)) {
747d08ca2caSLen Brown 			sleep_states[i] = 1;
748d08ca2caSLen Brown 			printk(" S%d", i);
749d08ca2caSLen Brown 		}
750d08ca2caSLen Brown 	}
751d08ca2caSLen Brown 
752d08ca2caSLen Brown 	suspend_set_ops(old_suspend_ordering ?
753d08ca2caSLen Brown 		&acpi_suspend_ops_old : &acpi_suspend_ops);
754d08ca2caSLen Brown #endif
755d08ca2caSLen Brown 
756d08ca2caSLen Brown #ifdef CONFIG_HIBERNATION
757d08ca2caSLen Brown 	status = acpi_get_sleep_type_data(ACPI_STATE_S4, &type_a, &type_b);
758d08ca2caSLen Brown 	if (ACPI_SUCCESS(status)) {
759d08ca2caSLen Brown 		hibernation_set_ops(old_suspend_ordering ?
760d08ca2caSLen Brown 			&acpi_hibernation_ops_old : &acpi_hibernation_ops);
761d08ca2caSLen Brown 		sleep_states[ACPI_STATE_S4] = 1;
762d08ca2caSLen Brown 		printk(" S4");
763d08ca2caSLen Brown 		if (!nosigcheck) {
764d08ca2caSLen Brown 			acpi_get_table(ACPI_SIG_FACS, 1,
765d08ca2caSLen Brown 				(struct acpi_table_header **)&facs);
766d08ca2caSLen Brown 			if (facs)
767d08ca2caSLen Brown 				s4_hardware_signature =
768d08ca2caSLen Brown 					facs->hardware_signature;
769d08ca2caSLen Brown 		}
770d08ca2caSLen Brown 	}
771d08ca2caSLen Brown #endif
772d08ca2caSLen Brown 	status = acpi_get_sleep_type_data(ACPI_STATE_S5, &type_a, &type_b);
773d08ca2caSLen Brown 	if (ACPI_SUCCESS(status)) {
774d08ca2caSLen Brown 		sleep_states[ACPI_STATE_S5] = 1;
775d08ca2caSLen Brown 		printk(" S5");
776d08ca2caSLen Brown 		pm_power_off_prepare = acpi_power_off_prepare;
777d08ca2caSLen Brown 		pm_power_off = acpi_power_off;
778d08ca2caSLen Brown 	}
779d08ca2caSLen Brown 	printk(")\n");
780d08ca2caSLen Brown 	/*
781d08ca2caSLen Brown 	 * Register the tts_notifier to reboot notifier list so that the _TTS
782d08ca2caSLen Brown 	 * object can also be evaluated when the system enters S5.
783d08ca2caSLen Brown 	 */
784d08ca2caSLen Brown 	register_reboot_notifier(&tts_notifier);
78596f15efcSLen Brown 	acpi_gts_bfs_check();
786d08ca2caSLen Brown 	return 0;
787d08ca2caSLen Brown }
788