blob: fb27aaad0dee2345e5ebb28eec535b7eb6c27ff3 [file] [log] [blame]
Erik Schmauss95857632018-03-14 16:13:07 -07001// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
Bob Moore7db5d822008-12-30 11:04:48 +08002/******************************************************************************
3 *
4 * Module Name: hwxface - Public ACPICA hardware interfaces
5 *
Bob Moore4441e552021-01-15 10:48:25 -08006 * Copyright (C) 2000 - 2021, Intel Corp.
Bob Moore7db5d822008-12-30 11:04:48 +08007 *
Erik Schmauss95857632018-03-14 16:13:07 -07008 *****************************************************************************/
Bob Moore7db5d822008-12-30 11:04:48 +08009
Lv Zheng839e9282013-10-29 09:29:51 +080010#define EXPORT_ACPI_INTERFACES
11
Bob Moore7db5d822008-12-30 11:04:48 +080012#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050013#include "accommon.h"
14#include "acnamesp.h"
Bob Moore7db5d822008-12-30 11:04:48 +080015
16#define _COMPONENT ACPI_HARDWARE
17ACPI_MODULE_NAME("hwxface")
18
19/******************************************************************************
20 *
Bob Moored3fd9022008-12-30 11:11:57 +080021 * FUNCTION: acpi_reset
22 *
23 * PARAMETERS: None
24 *
25 * RETURN: Status
26 *
27 * DESCRIPTION: Set reset register in memory or IO space. Note: Does not
28 * support reset register in PCI config space, this must be
29 * handled separately.
30 *
31 ******************************************************************************/
32acpi_status acpi_reset(void)
33{
34 struct acpi_generic_address *reset_reg;
35 acpi_status status;
36
37 ACPI_FUNCTION_TRACE(acpi_reset);
38
39 reset_reg = &acpi_gbl_FADT.reset_register;
40
41 /* Check if the reset register is supported */
42
Linus Torvalds19244ad2012-04-20 11:19:35 -070043 if (!(acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER) ||
44 !reset_reg->address) {
Bob Moored3fd9022008-12-30 11:11:57 +080045 return_ACPI_STATUS(AE_NOT_EXIST);
46 }
47
Bob Moore8a964232009-08-13 13:42:19 +080048 if (reset_reg->space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
49 /*
Lv Zheng75c80442012-12-19 05:36:49 +000050 * For I/O space, write directly to the OSL. This bypasses the port
51 * validation mechanism, which may block a valid write to the reset
52 * register.
Bob Mooree07fcfd2013-10-29 09:29:45 +080053 *
54 * NOTE:
55 * The ACPI spec requires the reset register width to be 8, so we
56 * hardcode it here and ignore the FADT value. This maintains
57 * compatibility with other ACPI implementations that have allowed
58 * BIOS code with bad register width values to go unnoticed.
Bob Moore8a964232009-08-13 13:42:19 +080059 */
Lv Zhengf5c1e1c2016-05-05 12:57:53 +080060 status = acpi_os_write_port((acpi_io_address)reset_reg->address,
61 acpi_gbl_FADT.reset_value,
62 ACPI_RESET_REGISTER_WIDTH);
Bob Moore8a964232009-08-13 13:42:19 +080063 } else {
64 /* Write the reset value to the reset register */
Bob Moored3fd9022008-12-30 11:11:57 +080065
Bob Moore8a964232009-08-13 13:42:19 +080066 status = acpi_hw_write(acpi_gbl_FADT.reset_value, reset_reg);
67 }
68
Bob Moored3fd9022008-12-30 11:11:57 +080069 return_ACPI_STATUS(status);
70}
71
72ACPI_EXPORT_SYMBOL(acpi_reset)
73
74/******************************************************************************
75 *
Bob Moore7db5d822008-12-30 11:04:48 +080076 * FUNCTION: acpi_read
77 *
Bob Mooreba494be2012-07-12 09:40:10 +080078 * PARAMETERS: value - Where the value is returned
79 * reg - GAS register structure
Bob Moore7db5d822008-12-30 11:04:48 +080080 *
81 * RETURN: Status
82 *
83 * DESCRIPTION: Read from either memory or IO space.
84 *
Bob Moorec6b57742009-06-24 09:44:06 +080085 * LIMITATIONS: <These limitations also apply to acpi_write>
86 * bit_width must be exactly 8, 16, 32, or 64.
Bob Mooreba494be2012-07-12 09:40:10 +080087 * space_ID must be system_memory or system_IO.
Bob Moorec6b57742009-06-24 09:44:06 +080088 * bit_offset and access_width are currently ignored, as there has
89 * not been a need to implement these.
90 *
Bob Moore7db5d822008-12-30 11:04:48 +080091 ******************************************************************************/
Bob Moorec6b57742009-06-24 09:44:06 +080092acpi_status acpi_read(u64 *return_value, struct acpi_generic_address *reg)
Bob Moore7db5d822008-12-30 11:04:48 +080093{
Bob Moore7db5d822008-12-30 11:04:48 +080094 acpi_status status;
95
96 ACPI_FUNCTION_NAME(acpi_read);
97
Lv Zheng8381c542017-09-20 10:00:11 +080098 status = acpi_hw_read(return_value, reg);
99 return (status);
Bob Moore7db5d822008-12-30 11:04:48 +0800100}
101
102ACPI_EXPORT_SYMBOL(acpi_read)
103
104/******************************************************************************
105 *
106 * FUNCTION: acpi_write
107 *
Bob Mooreba494be2012-07-12 09:40:10 +0800108 * PARAMETERS: value - Value to be written
109 * reg - GAS register structure
Bob Moore7db5d822008-12-30 11:04:48 +0800110 *
111 * RETURN: Status
112 *
113 * DESCRIPTION: Write to either memory or IO space.
114 *
115 ******************************************************************************/
Bob Moorec6b57742009-06-24 09:44:06 +0800116acpi_status acpi_write(u64 value, struct acpi_generic_address *reg)
Bob Moore7db5d822008-12-30 11:04:48 +0800117{
Bob Moore7db5d822008-12-30 11:04:48 +0800118 acpi_status status;
119
120 ACPI_FUNCTION_NAME(acpi_write);
121
Lv Zheng8381c542017-09-20 10:00:11 +0800122 status = acpi_hw_write(value, reg);
Bob Moore7db5d822008-12-30 11:04:48 +0800123 return (status);
124}
125
126ACPI_EXPORT_SYMBOL(acpi_write)
127
Bob Moore33620c52012-02-14 18:14:27 +0800128#if (!ACPI_REDUCED_HARDWARE)
Bob Moore7db5d822008-12-30 11:04:48 +0800129/*******************************************************************************
130 *
Bob Moore50ffba12009-02-23 15:02:07 +0800131 * FUNCTION: acpi_read_bit_register
Bob Moore7db5d822008-12-30 11:04:48 +0800132 *
Bob Moore9892dd22009-02-18 15:10:07 +0800133 * PARAMETERS: register_id - ID of ACPI Bit Register to access
134 * return_value - Value that was read from the register,
135 * normalized to bit position zero.
Bob Moore7db5d822008-12-30 11:04:48 +0800136 *
Bob Moore9892dd22009-02-18 15:10:07 +0800137 * RETURN: Status and the value read from the specified Register. Value
Bob Moore7db5d822008-12-30 11:04:48 +0800138 * returned is normalized to bit0 (is shifted all the way right)
139 *
140 * DESCRIPTION: ACPI bit_register read function. Does not acquire the HW lock.
141 *
Bob Moore9892dd22009-02-18 15:10:07 +0800142 * SUPPORTS: Bit fields in PM1 Status, PM1 Enable, PM1 Control, and
143 * PM2 Control.
144 *
145 * Note: The hardware lock is not required when reading the ACPI bit registers
146 * since almost all of them are single bit and it does not matter that
147 * the parent hardware register can be split across two physical
148 * registers. The only multi-bit field is SLP_TYP in the PM1 control
149 * register, but this field does not cross an 8-bit boundary (nor does
150 * it make much sense to actually read this field.)
151 *
Bob Moore7db5d822008-12-30 11:04:48 +0800152 ******************************************************************************/
Bob Moore50ffba12009-02-23 15:02:07 +0800153acpi_status acpi_read_bit_register(u32 register_id, u32 *return_value)
Bob Moore7db5d822008-12-30 11:04:48 +0800154{
Bob Moore7db5d822008-12-30 11:04:48 +0800155 struct acpi_bit_register_info *bit_reg_info;
Bob Moore88dcb042009-02-18 16:01:04 +0800156 u32 register_value;
157 u32 value;
Bob Moore7db5d822008-12-30 11:04:48 +0800158 acpi_status status;
159
Bob Moore88dcb042009-02-18 16:01:04 +0800160 ACPI_FUNCTION_TRACE_U32(acpi_read_bit_register, register_id);
Bob Moore7db5d822008-12-30 11:04:48 +0800161
162 /* Get the info structure corresponding to the requested ACPI Register */
163
164 bit_reg_info = acpi_hw_get_bit_register_info(register_id);
165 if (!bit_reg_info) {
166 return_ACPI_STATUS(AE_BAD_PARAMETER);
167 }
168
Bob Moore9892dd22009-02-18 15:10:07 +0800169 /* Read the entire parent register */
Bob Moore7db5d822008-12-30 11:04:48 +0800170
171 status = acpi_hw_register_read(bit_reg_info->parent_register,
172 &register_value);
Bob Moore88dcb042009-02-18 16:01:04 +0800173 if (ACPI_FAILURE(status)) {
174 return_ACPI_STATUS(status);
Bob Moore7db5d822008-12-30 11:04:48 +0800175 }
176
Bob Moore88dcb042009-02-18 16:01:04 +0800177 /* Normalize the value that was read, mask off other bits */
178
179 value = ((register_value & bit_reg_info->access_bit_mask)
180 >> bit_reg_info->bit_position);
181
182 ACPI_DEBUG_PRINT((ACPI_DB_IO,
183 "BitReg %X, ParentReg %X, Actual %8.8X, ReturnValue %8.8X\n",
184 register_id, bit_reg_info->parent_register,
185 register_value, value));
186
187 *return_value = value;
188 return_ACPI_STATUS(AE_OK);
Bob Moore7db5d822008-12-30 11:04:48 +0800189}
190
Bob Moore50ffba12009-02-23 15:02:07 +0800191ACPI_EXPORT_SYMBOL(acpi_read_bit_register)
Bob Moore7db5d822008-12-30 11:04:48 +0800192
193/*******************************************************************************
194 *
Bob Moore50ffba12009-02-23 15:02:07 +0800195 * FUNCTION: acpi_write_bit_register
Bob Moore7db5d822008-12-30 11:04:48 +0800196 *
Bob Moore9892dd22009-02-18 15:10:07 +0800197 * PARAMETERS: register_id - ID of ACPI Bit Register to access
Lv Zheng75c80442012-12-19 05:36:49 +0000198 * value - Value to write to the register, in bit
Justin P. Mattock42b2aa82011-11-28 20:31:00 -0800199 * position zero. The bit is automatically
Bob Moore9892dd22009-02-18 15:10:07 +0800200 * shifted to the correct position.
Bob Moore7db5d822008-12-30 11:04:48 +0800201 *
202 * RETURN: Status
203 *
Bob Moore9892dd22009-02-18 15:10:07 +0800204 * DESCRIPTION: ACPI Bit Register write function. Acquires the hardware lock
205 * since most operations require a read/modify/write sequence.
206 *
207 * SUPPORTS: Bit fields in PM1 Status, PM1 Enable, PM1 Control, and
208 * PM2 Control.
Bob Moore7db5d822008-12-30 11:04:48 +0800209 *
Bob Moore88dcb042009-02-18 16:01:04 +0800210 * Note that at this level, the fact that there may be actually two
211 * hardware registers (A and B - and B may not exist) is abstracted.
212 *
Bob Moore7db5d822008-12-30 11:04:48 +0800213 ******************************************************************************/
Bob Moore50ffba12009-02-23 15:02:07 +0800214acpi_status acpi_write_bit_register(u32 register_id, u32 value)
Bob Moore7db5d822008-12-30 11:04:48 +0800215{
Bob Moore7db5d822008-12-30 11:04:48 +0800216 struct acpi_bit_register_info *bit_reg_info;
Bob Moore7db5d822008-12-30 11:04:48 +0800217 acpi_cpu_flags lock_flags;
Bob Moore88dcb042009-02-18 16:01:04 +0800218 u32 register_value;
219 acpi_status status = AE_OK;
Bob Moore7db5d822008-12-30 11:04:48 +0800220
Bob Moore50ffba12009-02-23 15:02:07 +0800221 ACPI_FUNCTION_TRACE_U32(acpi_write_bit_register, register_id);
Bob Moore7db5d822008-12-30 11:04:48 +0800222
223 /* Get the info structure corresponding to the requested ACPI Register */
224
225 bit_reg_info = acpi_hw_get_bit_register_info(register_id);
226 if (!bit_reg_info) {
Bob Moore7db5d822008-12-30 11:04:48 +0800227 return_ACPI_STATUS(AE_BAD_PARAMETER);
228 }
229
Steven Rostedtc57c0ad2018-04-25 16:28:27 +0200230 lock_flags = acpi_os_acquire_raw_lock(acpi_gbl_hardware_lock);
Bob Moore7db5d822008-12-30 11:04:48 +0800231
Bob Moore7db5d822008-12-30 11:04:48 +0800232 /*
Bob Moore88dcb042009-02-18 16:01:04 +0800233 * At this point, we know that the parent register is one of the
234 * following: PM1 Status, PM1 Enable, PM1 Control, or PM2 Control
Bob Moore7db5d822008-12-30 11:04:48 +0800235 */
Bob Moore88dcb042009-02-18 16:01:04 +0800236 if (bit_reg_info->parent_register != ACPI_REGISTER_PM1_STATUS) {
Bob Moore7db5d822008-12-30 11:04:48 +0800237 /*
Bob Moore88dcb042009-02-18 16:01:04 +0800238 * 1) Case for PM1 Enable, PM1 Control, and PM2 Control
239 *
240 * Perform a register read to preserve the bits that we are not
241 * interested in
Bob Moore7db5d822008-12-30 11:04:48 +0800242 */
Bob Moore88dcb042009-02-18 16:01:04 +0800243 status = acpi_hw_register_read(bit_reg_info->parent_register,
Bob Moore7db5d822008-12-30 11:04:48 +0800244 &register_value);
245 if (ACPI_FAILURE(status)) {
246 goto unlock_and_exit;
247 }
248
Bob Moore88dcb042009-02-18 16:01:04 +0800249 /*
250 * Insert the input bit into the value that was just read
251 * and write the register
252 */
Bob Moore7db5d822008-12-30 11:04:48 +0800253 ACPI_REGISTER_INSERT_VALUE(register_value,
254 bit_reg_info->bit_position,
255 bit_reg_info->access_bit_mask,
256 value);
257
Bob Moore88dcb042009-02-18 16:01:04 +0800258 status = acpi_hw_register_write(bit_reg_info->parent_register,
259 register_value);
260 } else {
261 /*
262 * 2) Case for PM1 Status
263 *
264 * The Status register is different from the rest. Clear an event
265 * by writing 1, writing 0 has no effect. So, the only relevant
266 * information is the single bit we're interested in, all others
267 * should be written as 0 so they will be left unchanged.
268 */
269 register_value = ACPI_REGISTER_PREPARE_BITS(value,
270 bit_reg_info->
271 bit_position,
272 bit_reg_info->
273 access_bit_mask);
Bob Moore7db5d822008-12-30 11:04:48 +0800274
Bob Moore88dcb042009-02-18 16:01:04 +0800275 /* No need to write the register if value is all zeros */
Bob Moore7db5d822008-12-30 11:04:48 +0800276
Bob Moore88dcb042009-02-18 16:01:04 +0800277 if (register_value) {
278 status =
279 acpi_hw_register_write(ACPI_REGISTER_PM1_STATUS,
280 register_value);
281 }
Bob Moore7db5d822008-12-30 11:04:48 +0800282 }
283
Bob Moore88dcb042009-02-18 16:01:04 +0800284 ACPI_DEBUG_PRINT((ACPI_DB_IO,
285 "BitReg %X, ParentReg %X, Value %8.8X, Actual %8.8X\n",
286 register_id, bit_reg_info->parent_register, value,
287 register_value));
288
289unlock_and_exit:
Bob Moore7db5d822008-12-30 11:04:48 +0800290
Steven Rostedtc57c0ad2018-04-25 16:28:27 +0200291 acpi_os_release_raw_lock(acpi_gbl_hardware_lock, lock_flags);
Bob Moore7db5d822008-12-30 11:04:48 +0800292 return_ACPI_STATUS(status);
293}
294
Bob Moore50ffba12009-02-23 15:02:07 +0800295ACPI_EXPORT_SYMBOL(acpi_write_bit_register)
Bob Moore33620c52012-02-14 18:14:27 +0800296#endif /* !ACPI_REDUCED_HARDWARE */
Bob Moore7db5d822008-12-30 11:04:48 +0800297/*******************************************************************************
298 *
299 * FUNCTION: acpi_get_sleep_type_data
300 *
301 * PARAMETERS: sleep_state - Numeric sleep state
302 * *sleep_type_a - Where SLP_TYPa is returned
303 * *sleep_type_b - Where SLP_TYPb is returned
304 *
Bob Moore48ffb942013-01-25 05:41:00 +0000305 * RETURN: Status
Bob Moore7db5d822008-12-30 11:04:48 +0800306 *
Bob Moore48ffb942013-01-25 05:41:00 +0000307 * DESCRIPTION: Obtain the SLP_TYPa and SLP_TYPb values for the requested
308 * sleep state via the appropriate \_Sx object.
309 *
310 * The sleep state package returned from the corresponding \_Sx_ object
311 * must contain at least one integer.
312 *
313 * March 2005:
314 * Added support for a package that contains two integers. This
315 * goes against the ACPI specification which defines this object as a
316 * package with one encoded DWORD integer. However, existing practice
317 * by many BIOS vendors is to return a package with 2 or more integer
318 * elements, at least one per sleep type (A/B).
319 *
320 * January 2013:
321 * Therefore, we must be prepared to accept a package with either a
322 * single integer or multiple integers.
323 *
324 * The single integer DWORD format is as follows:
325 * BYTE 0 - Value for the PM1A SLP_TYP register
326 * BYTE 1 - Value for the PM1B SLP_TYP register
327 * BYTE 2-3 - Reserved
328 *
329 * The dual integer format is as follows:
330 * Integer 0 - Value for the PM1A SLP_TYP register
331 * Integer 1 - Value for the PM1A SLP_TYP register
Bob Moore7db5d822008-12-30 11:04:48 +0800332 *
333 ******************************************************************************/
334acpi_status
335acpi_get_sleep_type_data(u8 sleep_state, u8 *sleep_type_a, u8 *sleep_type_b)
336{
Bob Moore48ffb942013-01-25 05:41:00 +0000337 acpi_status status;
Bob Moore7db5d822008-12-30 11:04:48 +0800338 struct acpi_evaluate_info *info;
Bob Moore48ffb942013-01-25 05:41:00 +0000339 union acpi_operand_object **elements;
Bob Moore7db5d822008-12-30 11:04:48 +0800340
341 ACPI_FUNCTION_TRACE(acpi_get_sleep_type_data);
342
343 /* Validate parameters */
344
345 if ((sleep_state > ACPI_S_STATES_MAX) || !sleep_type_a || !sleep_type_b) {
346 return_ACPI_STATUS(AE_BAD_PARAMETER);
347 }
348
349 /* Allocate the evaluation information block */
350
351 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
352 if (!info) {
353 return_ACPI_STATUS(AE_NO_MEMORY);
354 }
355
Bob Moore48ffb942013-01-25 05:41:00 +0000356 /*
357 * Evaluate the \_Sx namespace object containing the register values
358 * for this state
359 */
Bob Moore0dfaaa32016-03-24 09:40:40 +0800360 info->relative_pathname = acpi_gbl_sleep_state_names[sleep_state];
Prarit Bhargavaa59b6792015-12-29 13:52:41 +0800361
Bob Moore7db5d822008-12-30 11:04:48 +0800362 status = acpi_ns_evaluate(info);
363 if (ACPI_FAILURE(status)) {
Prarit Bhargavaa59b6792015-12-29 13:52:41 +0800364 if (status == AE_NOT_FOUND) {
365
366 /* The _Sx states are optional, ignore NOT_FOUND */
367
368 goto final_cleanup;
369 }
370
371 goto warning_cleanup;
Bob Moore7db5d822008-12-30 11:04:48 +0800372 }
373
374 /* Must have a return object */
375
376 if (!info->return_object) {
377 ACPI_ERROR((AE_INFO, "No Sleep State object returned from [%s]",
Bob Moore29a241c2013-05-30 10:00:01 +0800378 info->relative_pathname));
Bob Moore48ffb942013-01-25 05:41:00 +0000379 status = AE_AML_NO_RETURN_VALUE;
Prarit Bhargavaa59b6792015-12-29 13:52:41 +0800380 goto warning_cleanup;
Bob Moore7db5d822008-12-30 11:04:48 +0800381 }
382
Bob Moore48ffb942013-01-25 05:41:00 +0000383 /* Return object must be of type Package */
Bob Moore7db5d822008-12-30 11:04:48 +0800384
Bob Moore48ffb942013-01-25 05:41:00 +0000385 if (info->return_object->common.type != ACPI_TYPE_PACKAGE) {
Bob Moore7db5d822008-12-30 11:04:48 +0800386 ACPI_ERROR((AE_INFO,
387 "Sleep State return object is not a Package"));
388 status = AE_AML_OPERAND_TYPE;
Prarit Bhargavaa59b6792015-12-29 13:52:41 +0800389 goto return_value_cleanup;
Bob Moore7db5d822008-12-30 11:04:48 +0800390 }
391
392 /*
Bob Moore48ffb942013-01-25 05:41:00 +0000393 * Any warnings about the package length or the object types have
394 * already been issued by the predefined name module -- there is no
395 * need to repeat them here.
Bob Moore7db5d822008-12-30 11:04:48 +0800396 */
Bob Moore48ffb942013-01-25 05:41:00 +0000397 elements = info->return_object->package.elements;
398 switch (info->return_object->package.count) {
399 case 0:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000400
Bob Moore48ffb942013-01-25 05:41:00 +0000401 status = AE_AML_PACKAGE_LIMIT;
402 break;
403
404 case 1:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000405
Bob Moore48ffb942013-01-25 05:41:00 +0000406 if (elements[0]->common.type != ACPI_TYPE_INTEGER) {
407 status = AE_AML_OPERAND_TYPE;
408 break;
409 }
410
411 /* A valid _Sx_ package with one integer */
412
413 *sleep_type_a = (u8)elements[0]->integer.value;
414 *sleep_type_b = (u8)(elements[0]->integer.value >> 8);
415 break;
416
417 case 2:
418 default:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000419
Bob Moore48ffb942013-01-25 05:41:00 +0000420 if ((elements[0]->common.type != ACPI_TYPE_INTEGER) ||
421 (elements[1]->common.type != ACPI_TYPE_INTEGER)) {
422 status = AE_AML_OPERAND_TYPE;
423 break;
424 }
425
426 /* A valid _Sx_ package with two integers */
427
428 *sleep_type_a = (u8)elements[0]->integer.value;
429 *sleep_type_b = (u8)elements[1]->integer.value;
430 break;
Bob Moore7db5d822008-12-30 11:04:48 +0800431 }
432
Prarit Bhargavaa59b6792015-12-29 13:52:41 +0800433return_value_cleanup:
Bob Moore7db5d822008-12-30 11:04:48 +0800434 acpi_ut_remove_reference(info->return_object);
435
Prarit Bhargavaa59b6792015-12-29 13:52:41 +0800436warning_cleanup:
Bob Moore48ffb942013-01-25 05:41:00 +0000437 if (ACPI_FAILURE(status)) {
438 ACPI_EXCEPTION((AE_INFO, status,
439 "While evaluating Sleep State [%s]",
Bob Moore29a241c2013-05-30 10:00:01 +0800440 info->relative_pathname));
Bob Moore48ffb942013-01-25 05:41:00 +0000441 }
442
Prarit Bhargavaa59b6792015-12-29 13:52:41 +0800443final_cleanup:
Bob Moore7db5d822008-12-30 11:04:48 +0800444 ACPI_FREE(info);
445 return_ACPI_STATUS(status);
446}
447
448ACPI_EXPORT_SYMBOL(acpi_get_sleep_type_data)