blob: 3fddde056a5e1774e2e208f2478ce07d53fa5bf5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
Bob Moore70958572012-02-14 18:47:42 +08003 * Name: hwsleep.c - ACPI Hardware Sleep/Wake Support functions for the
4 * original/legacy sleep/PM registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 *****************************************************************************/
7
8/*
Bob Moore77848132012-01-12 13:27:23 +08009 * Copyright (C) 2000 - 2012, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
26 *
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
30 *
31 * NO WARRANTY
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <acpi/acpi.h>
Tang Liang09f98a82011-12-09 10:05:54 +080046#include <linux/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050047#include "accommon.h"
Paul Gortmakercc4b8592011-07-01 14:30:49 -040048#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define _COMPONENT ACPI_HARDWARE
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("hwsleep")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Bob Moore70958572012-02-14 18:47:42 +080053#if (!ACPI_REDUCED_HARDWARE) /* Entire module */
Bob Moore2feec472012-02-14 15:00:53 +080054/*******************************************************************************
55 *
56 * FUNCTION: acpi_hw_legacy_sleep
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 *
58 * PARAMETERS: sleep_state - Which sleep state to enter
59 *
60 * RETURN: Status
61 *
Bob Moore2feec472012-02-14 15:00:53 +080062 * DESCRIPTION: Enter a system sleep state via the legacy FADT PM registers
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
64 *
65 ******************************************************************************/
Len Brown3f6f49c2012-07-26 20:08:54 -040066acpi_status acpi_hw_legacy_sleep(u8 sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Len Brown4be44fc2005-08-05 00:44:28 -040068 struct acpi_bit_register_info *sleep_type_reg_info;
69 struct acpi_bit_register_info *sleep_enable_reg_info;
Bob Moore2feec472012-02-14 15:00:53 +080070 u32 pm1a_control;
71 u32 pm1b_control;
Len Brown4be44fc2005-08-05 00:44:28 -040072 u32 in_value;
73 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Bob Moore2feec472012-02-14 15:00:53 +080075 ACPI_FUNCTION_TRACE(hw_legacy_sleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Len Brown4be44fc2005-08-05 00:44:28 -040077 sleep_type_reg_info =
Bob Moore82d79b82009-02-18 14:31:05 +080078 acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_TYPE);
Len Brown4be44fc2005-08-05 00:44:28 -040079 sleep_enable_reg_info =
80 acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 /* Clear wake status */
83
Bob Moore768aaaf2009-03-06 09:49:25 +080084 status =
85 acpi_write_bit_register(ACPI_BITREG_WAKE_STATUS, ACPI_CLEAR_STATUS);
Len Brown4be44fc2005-08-05 00:44:28 -040086 if (ACPI_FAILURE(status)) {
87 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 }
89
90 /* Clear all fixed and general purpose status bits */
91
Bob Moored8c71b62007-02-02 19:48:21 +030092 status = acpi_hw_clear_acpi_status();
Len Brown4be44fc2005-08-05 00:44:28 -040093 if (ACPI_FAILURE(status)) {
94 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
96
97 /*
Pavel Machek23b168d2008-02-05 19:27:12 +010098 * 1) Disable/Clear all GPEs
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 * 2) Enable all wakeup GPEs
100 */
Alexey Starikovskiy1d999672007-03-12 14:49:26 -0400101 status = acpi_hw_disable_all_gpes();
102 if (ACPI_FAILURE(status)) {
103 return_ACPI_STATUS(status);
104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 acpi_gbl_system_awake_and_running = FALSE;
106
Len Brown4be44fc2005-08-05 00:44:28 -0400107 status = acpi_hw_enable_all_wakeup_gpes();
108 if (ACPI_FAILURE(status)) {
109 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111
112 /* Get current value of PM1A control */
113
Bob Moore32c9ef92009-02-18 14:36:05 +0800114 status = acpi_hw_register_read(ACPI_REGISTER_PM1_CONTROL,
115 &pm1a_control);
Len Brown4be44fc2005-08-05 00:44:28 -0400116 if (ACPI_FAILURE(status)) {
117 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
Len Brown4be44fc2005-08-05 00:44:28 -0400119 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
Bob Mooreb27d6592010-05-26 11:47:13 +0800120 "Entering sleep state [S%u]\n", sleep_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Bob Moore32c9ef92009-02-18 14:36:05 +0800122 /* Clear the SLP_EN and SLP_TYP fields */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Bob Moore32c9ef92009-02-18 14:36:05 +0800124 pm1a_control &= ~(sleep_type_reg_info->access_bit_mask |
125 sleep_enable_reg_info->access_bit_mask);
126 pm1b_control = pm1a_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Bob Moore32c9ef92009-02-18 14:36:05 +0800128 /* Insert the SLP_TYP bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Bob Moore32c9ef92009-02-18 14:36:05 +0800130 pm1a_control |=
Len Brown4be44fc2005-08-05 00:44:28 -0400131 (acpi_gbl_sleep_type_a << sleep_type_reg_info->bit_position);
Bob Moore32c9ef92009-02-18 14:36:05 +0800132 pm1b_control |=
Len Brown4be44fc2005-08-05 00:44:28 -0400133 (acpi_gbl_sleep_type_b << sleep_type_reg_info->bit_position);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 /*
136 * We split the writes of SLP_TYP and SLP_EN to workaround
137 * poorly implemented hardware.
138 */
139
Bob Moore32c9ef92009-02-18 14:36:05 +0800140 /* Write #1: write the SLP_TYP data to the PM1 Control registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Bob Moore32c9ef92009-02-18 14:36:05 +0800142 status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control);
Len Brown4be44fc2005-08-05 00:44:28 -0400143 if (ACPI_FAILURE(status)) {
144 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
146
Bob Moore32c9ef92009-02-18 14:36:05 +0800147 /* Insert the sleep enable (SLP_EN) bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Bob Moore32c9ef92009-02-18 14:36:05 +0800149 pm1a_control |= sleep_enable_reg_info->access_bit_mask;
150 pm1b_control |= sleep_enable_reg_info->access_bit_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Bob Moore32c9ef92009-02-18 14:36:05 +0800152 /* Flush caches, as per ACPI specification */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Len Brown4be44fc2005-08-05 00:44:28 -0400154 ACPI_FLUSH_CPU_CACHE();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Tang Liang09f98a82011-12-09 10:05:54 +0800156 status = acpi_os_prepare_sleep(sleep_state, pm1a_control,
157 pm1b_control);
158 if (ACPI_SKIP(status))
159 return_ACPI_STATUS(AE_OK);
160 if (ACPI_FAILURE(status))
161 return_ACPI_STATUS(status);
Bob Moore32c9ef92009-02-18 14:36:05 +0800162 /* Write #2: Write both SLP_TYP + SLP_EN */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Bob Moore32c9ef92009-02-18 14:36:05 +0800164 status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control);
Len Brown4be44fc2005-08-05 00:44:28 -0400165 if (ACPI_FAILURE(status)) {
166 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
168
169 if (sleep_state > ACPI_STATE_S3) {
170 /*
Robert Moore44f6c012005-04-18 22:49:35 -0400171 * We wanted to sleep > S3, but it didn't happen (by virtue of the
172 * fact that we are still executing!)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 *
Robert Moore44f6c012005-04-18 22:49:35 -0400174 * Wait ten seconds, then try again. This is to get S4/S5 to work on
175 * all machines.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 *
Bob Moored4913dc2009-03-06 10:05:18 +0800177 * We wait so long to allow chipsets that poll this reg very slowly
178 * to still read the right value. Ideally, this block would go
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 * away entirely.
180 */
Len Brown4be44fc2005-08-05 00:44:28 -0400181 acpi_os_stall(10000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Alexey Starikovskiyd30dc9ab2007-09-30 22:39:36 +0400183 status = acpi_hw_register_write(ACPI_REGISTER_PM1_CONTROL,
Len Brown4be44fc2005-08-05 00:44:28 -0400184 sleep_enable_reg_info->
185 access_bit_mask);
186 if (ACPI_FAILURE(status)) {
187 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189 }
190
Bob Moore2feec472012-02-14 15:00:53 +0800191 /* Wait for transition back to Working State */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 do {
Bob Moore50ffba12009-02-23 15:02:07 +0800194 status =
195 acpi_read_bit_register(ACPI_BITREG_WAKE_STATUS, &in_value);
Len Brown4be44fc2005-08-05 00:44:28 -0400196 if (ACPI_FAILURE(status)) {
197 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
Bob Moore2feec472012-02-14 15:00:53 +0800199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 } while (!in_value);
201
Len Brown4be44fc2005-08-05 00:44:28 -0400202 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Robert Moore44f6c012005-04-18 22:49:35 -0400205/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 *
Bob Moore2feec472012-02-14 15:00:53 +0800207 * FUNCTION: acpi_hw_legacy_wake_prep
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 *
Bob Moore2feec472012-02-14 15:00:53 +0800209 * PARAMETERS: sleep_state - Which sleep state we just exited
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 *
211 * RETURN: Status
212 *
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100213 * DESCRIPTION: Perform the first state of OS-independent ACPI cleanup after a
214 * sleep.
Bob Moore2feec472012-02-14 15:00:53 +0800215 * Called with interrupts ENABLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 *
217 ******************************************************************************/
Bob Moore2feec472012-02-14 15:00:53 +0800218
Len Brown3f6f49c2012-07-26 20:08:54 -0400219acpi_status acpi_hw_legacy_wake_prep(u8 sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Len Brown4be44fc2005-08-05 00:44:28 -0400221 acpi_status status;
222 struct acpi_bit_register_info *sleep_type_reg_info;
223 struct acpi_bit_register_info *sleep_enable_reg_info;
Bob Moore32c9ef92009-02-18 14:36:05 +0800224 u32 pm1a_control;
225 u32 pm1b_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Bob Moore2feec472012-02-14 15:00:53 +0800227 ACPI_FUNCTION_TRACE(hw_legacy_wake_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /*
230 * Set SLP_TYPE and SLP_EN to state S0.
231 * This is unclear from the ACPI Spec, but it is required
232 * by some machines.
233 */
Len Brown4be44fc2005-08-05 00:44:28 -0400234 status = acpi_get_sleep_type_data(ACPI_STATE_S0,
235 &acpi_gbl_sleep_type_a,
236 &acpi_gbl_sleep_type_b);
237 if (ACPI_SUCCESS(status)) {
238 sleep_type_reg_info =
Bob Moore82d79b82009-02-18 14:31:05 +0800239 acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_TYPE);
Len Brown4be44fc2005-08-05 00:44:28 -0400240 sleep_enable_reg_info =
241 acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 /* Get current value of PM1A control */
244
Alexey Starikovskiyd30dc9ab2007-09-30 22:39:36 +0400245 status = acpi_hw_register_read(ACPI_REGISTER_PM1_CONTROL,
Bob Moore32c9ef92009-02-18 14:36:05 +0800246 &pm1a_control);
Len Brown4be44fc2005-08-05 00:44:28 -0400247 if (ACPI_SUCCESS(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400248
Bob Moore32c9ef92009-02-18 14:36:05 +0800249 /* Clear the SLP_EN and SLP_TYP fields */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Bob Moore32c9ef92009-02-18 14:36:05 +0800251 pm1a_control &= ~(sleep_type_reg_info->access_bit_mask |
252 sleep_enable_reg_info->
253 access_bit_mask);
254 pm1b_control = pm1a_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Bob Moore32c9ef92009-02-18 14:36:05 +0800256 /* Insert the SLP_TYP bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Bob Moored4913dc2009-03-06 10:05:18 +0800258 pm1a_control |= (acpi_gbl_sleep_type_a <<
259 sleep_type_reg_info->bit_position);
260 pm1b_control |= (acpi_gbl_sleep_type_b <<
261 sleep_type_reg_info->bit_position);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Bob Moore32c9ef92009-02-18 14:36:05 +0800263 /* Write the control registers and ignore any errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Bob Moore32c9ef92009-02-18 14:36:05 +0800265 (void)acpi_hw_write_pm1_control(pm1a_control,
266 pm1b_control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268 }
269
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100270 return_ACPI_STATUS(status);
271}
272
273/*******************************************************************************
274 *
Bob Moore2feec472012-02-14 15:00:53 +0800275 * FUNCTION: acpi_hw_legacy_wake
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100276 *
277 * PARAMETERS: sleep_state - Which sleep state we just exited
278 *
279 * RETURN: Status
280 *
281 * DESCRIPTION: Perform OS-independent ACPI cleanup after a sleep
282 * Called with interrupts ENABLED.
283 *
284 ******************************************************************************/
Bob Moore2feec472012-02-14 15:00:53 +0800285
Len Brown3f6f49c2012-07-26 20:08:54 -0400286acpi_status acpi_hw_legacy_wake(u8 sleep_state)
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100287{
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100288 acpi_status status;
289
Bob Moore2feec472012-02-14 15:00:53 +0800290 ACPI_FUNCTION_TRACE(hw_legacy_wake);
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /* Ensure enter_sleep_state_prep -> enter_sleep_state ordering */
293
294 acpi_gbl_sleep_type_a = ACPI_SLEEP_TYPE_INVALID;
Bob Moore4efeeec2012-03-21 09:42:45 +0800295 acpi_hw_execute_sleep_method(METHOD_PATHNAME__SST, ACPI_SST_WAKING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 /*
Thomas Renninger79d2dfa2007-08-24 01:24:47 -0400298 * GPEs must be enabled before _WAK is called as GPEs
299 * might get fired there
300 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 * Restore the GPEs:
302 * 1) Disable/Clear all GPEs
303 * 2) Enable all runtime GPEs
304 */
Len Brown4be44fc2005-08-05 00:44:28 -0400305 status = acpi_hw_disable_all_gpes();
306 if (ACPI_FAILURE(status)) {
307 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
Bob Moore2feec472012-02-14 15:00:53 +0800309
Len Brown4be44fc2005-08-05 00:44:28 -0400310 status = acpi_hw_enable_all_runtime_gpes();
311 if (ACPI_FAILURE(status)) {
312 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
314
Bob Moore2feec472012-02-14 15:00:53 +0800315 /*
316 * Now we can execute _WAK, etc. Some machines require that the GPEs
317 * are enabled before the wake methods are executed.
318 */
Bob Moore4efeeec2012-03-21 09:42:45 +0800319 acpi_hw_execute_sleep_method(METHOD_PATHNAME__WAK, sleep_state);
Thomas Renninger79d2dfa2007-08-24 01:24:47 -0400320
Matthew Garretta68823e2008-08-06 19:12:04 +0100321 /*
Bob Moore2feec472012-02-14 15:00:53 +0800322 * Some BIOS code assumes that WAK_STS will be cleared on resume
323 * and use it to determine whether the system is rebooting or
324 * resuming. Clear WAK_STS for compatibility.
Matthew Garretta68823e2008-08-06 19:12:04 +0100325 */
Bob Moore50ffba12009-02-23 15:02:07 +0800326 acpi_write_bit_register(ACPI_BITREG_WAKE_STATUS, 1);
Thomas Renninger79d2dfa2007-08-24 01:24:47 -0400327 acpi_gbl_system_awake_and_running = TRUE;
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 /* Enable power button */
330
Len Brown4be44fc2005-08-05 00:44:28 -0400331 (void)
Bob Moore50ffba12009-02-23 15:02:07 +0800332 acpi_write_bit_register(acpi_gbl_fixed_event_info
Bob Moore2feec472012-02-14 15:00:53 +0800333 [ACPI_EVENT_POWER_BUTTON].
334 enable_register_id, ACPI_ENABLE_EVENT);
Robert Moore44f6c012005-04-18 22:49:35 -0400335
Len Brown4be44fc2005-08-05 00:44:28 -0400336 (void)
Bob Moore50ffba12009-02-23 15:02:07 +0800337 acpi_write_bit_register(acpi_gbl_fixed_event_info
Bob Moore2feec472012-02-14 15:00:53 +0800338 [ACPI_EVENT_POWER_BUTTON].
339 status_register_id, ACPI_CLEAR_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Bob Moore4efeeec2012-03-21 09:42:45 +0800341 acpi_hw_execute_sleep_method(METHOD_PATHNAME__SST, ACPI_SST_WORKING);
Len Brown4be44fc2005-08-05 00:44:28 -0400342 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
Bob Moore83135242006-10-03 00:00:00 -0400344
Bob Moore33620c52012-02-14 18:14:27 +0800345#endif /* !ACPI_REDUCED_HARDWARE */