blob: f183daf938b7c3664a207f19dd6f7b0b0e0d823f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
Bob Moored9783482012-08-17 10:51:47 +08003 * Module Name: utxface - External interfaces, miscellaneous utility functions
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 *****************************************************************************/
6
7/*
David E. Box82a80942015-02-05 15:20:45 +08008 * Copyright (C) 2000 - 2015, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
Lv Zheng839e9282013-10-29 09:29:51 +080044#define EXPORT_ACPI_INTERFACES
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050047#include "accommon.h"
Len Browne2f7a772009-01-09 00:30:03 -050048#include "acdebug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define _COMPONENT ACPI_UTILITIES
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("utxface")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*******************************************************************************
54 *
55 * FUNCTION: acpi_terminate
56 *
57 * PARAMETERS: None
58 *
59 * RETURN: Status
60 *
Bob Moore2f977b32009-07-24 11:25:16 +080061 * DESCRIPTION: Shutdown the ACPICA subsystem and release all resources.
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 *
63 ******************************************************************************/
Lv Zheng45c9f782013-10-31 09:31:24 +080064acpi_status __init acpi_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Len Brown4be44fc2005-08-05 00:44:28 -040066 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Bob Mooreb229cf92006-04-21 17:15:00 -040068 ACPI_FUNCTION_TRACE(acpi_terminate);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Bob Moore2f977b32009-07-24 11:25:16 +080070 /* Just exit if subsystem is already shutdown */
71
72 if (acpi_gbl_shutdown) {
73 ACPI_ERROR((AE_INFO, "ACPI Subsystem is already terminated"));
74 return_ACPI_STATUS(AE_OK);
75 }
76
77 /* Subsystem appears active, go ahead and shut it down */
78
79 acpi_gbl_shutdown = TRUE;
80 acpi_gbl_startup_flags = 0;
81 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Shutting down ACPI Subsystem\n"));
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 /* Shutdown and free all resources */
84
Len Brown4be44fc2005-08-05 00:44:28 -040085 acpi_ut_subsystem_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 /* Free the mutex objects */
88
Len Brown4be44fc2005-08-05 00:44:28 -040089 acpi_ut_mutex_terminate();
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 /* Now we can shutdown the OS-dependent layer */
92
Len Brown4be44fc2005-08-05 00:44:28 -040093 status = acpi_os_terminate();
94 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Lv Zhengd21f6002013-10-29 09:30:10 +080097ACPI_EXPORT_SYMBOL_INIT(acpi_terminate)
Bob Moore2f977b32009-07-24 11:25:16 +080098
Bob Mooree20a6792008-04-10 19:06:38 +040099#ifndef ACPI_ASL_COMPILER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#ifdef ACPI_FUTURE_USAGE
Robert Moore44f6c012005-04-18 22:49:35 -0400101/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 *
103 * FUNCTION: acpi_subsystem_status
104 *
105 * PARAMETERS: None
106 *
107 * RETURN: Status of the ACPI subsystem
108 *
109 * DESCRIPTION: Other drivers that use the ACPI subsystem should call this
Robert Moore44f6c012005-04-18 22:49:35 -0400110 * before making any other calls, to ensure the subsystem
111 * initialized successfully.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 *
Robert Moore44f6c012005-04-18 22:49:35 -0400113 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400114acpi_status acpi_subsystem_status(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Robert Moore44f6c012005-04-18 22:49:35 -0400116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 if (acpi_gbl_startup_flags & ACPI_INITIALIZED_OK) {
118 return (AE_OK);
Len Brown4be44fc2005-08-05 00:44:28 -0400119 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return (AE_ERROR);
121 }
122}
123
Bob Moore83135242006-10-03 00:00:00 -0400124ACPI_EXPORT_SYMBOL(acpi_subsystem_status)
125
Robert Moore44f6c012005-04-18 22:49:35 -0400126/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 *
128 * FUNCTION: acpi_get_system_info
129 *
Robert Moore44f6c012005-04-18 22:49:35 -0400130 * PARAMETERS: out_buffer - A buffer to receive the resources for the
131 * device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 *
Bob Mooreba494be2012-07-12 09:40:10 +0800133 * RETURN: status - the status of the call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 *
135 * DESCRIPTION: This function is called to get information about the current
Bob Moore73a30902012-10-31 02:26:55 +0000136 * state of the ACPI subsystem. It will return system information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 * in the out_buffer.
138 *
139 * If the function fails an appropriate status will be returned
140 * and the value of out_buffer is undefined.
141 *
142 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400143acpi_status acpi_get_system_info(struct acpi_buffer * out_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Len Brown4be44fc2005-08-05 00:44:28 -0400145 struct acpi_system_info *info_ptr;
146 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Bob Mooreb229cf92006-04-21 17:15:00 -0400148 ACPI_FUNCTION_TRACE(acpi_get_system_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 /* Parameter validation */
151
Len Brown4be44fc2005-08-05 00:44:28 -0400152 status = acpi_ut_validate_buffer(out_buffer);
153 if (ACPI_FAILURE(status)) {
154 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
156
157 /* Validate/Allocate/Clear caller buffer */
158
Len Brown4be44fc2005-08-05 00:44:28 -0400159 status =
160 acpi_ut_initialize_buffer(out_buffer,
161 sizeof(struct acpi_system_info));
162 if (ACPI_FAILURE(status)) {
163 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
165
166 /*
167 * Populate the return buffer
168 */
Len Brown4be44fc2005-08-05 00:44:28 -0400169 info_ptr = (struct acpi_system_info *)out_buffer->pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Len Brown4be44fc2005-08-05 00:44:28 -0400171 info_ptr->acpi_ca_version = ACPI_CA_VERSION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 /* System flags (ACPI capabilities) */
174
Len Brown4be44fc2005-08-05 00:44:28 -0400175 info_ptr->flags = ACPI_SYS_MODE_ACPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 /* Timer resolution - 24 or 32 bits */
178
Bob Mooref3d2e782007-02-02 19:48:18 +0300179 if (acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 info_ptr->timer_resolution = 24;
Len Brown4be44fc2005-08-05 00:44:28 -0400181 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 info_ptr->timer_resolution = 32;
183 }
184
185 /* Clear the reserved fields */
186
Len Brown4be44fc2005-08-05 00:44:28 -0400187 info_ptr->reserved1 = 0;
188 info_ptr->reserved2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 /* Current debug levels */
191
Len Brown4be44fc2005-08-05 00:44:28 -0400192 info_ptr->debug_layer = acpi_dbg_layer;
193 info_ptr->debug_level = acpi_dbg_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Len Brown4be44fc2005-08-05 00:44:28 -0400195 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Bob Moore83135242006-10-03 00:00:00 -0400198ACPI_EXPORT_SYMBOL(acpi_get_system_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Lv Zheng9187a412013-10-31 09:30:28 +0800200/*******************************************************************************
201 *
202 * FUNCTION: acpi_get_statistics
203 *
204 * PARAMETERS: stats - Where the statistics are returned
205 *
206 * RETURN: status - the status of the call
207 *
208 * DESCRIPTION: Get the contents of the various system counters
209 *
210 ******************************************************************************/
211acpi_status acpi_get_statistics(struct acpi_statistics *stats)
212{
213 ACPI_FUNCTION_TRACE(acpi_get_statistics);
214
215 /* Parameter validation */
216
217 if (!stats) {
218 return_ACPI_STATUS(AE_BAD_PARAMETER);
219 }
220
221 /* Various interrupt-based event counters */
222
223 stats->sci_count = acpi_sci_count;
224 stats->gpe_count = acpi_gpe_count;
225
Bob Moore4fa46162015-07-01 14:45:11 +0800226 memcpy(stats->fixed_event_count, acpi_fixed_event_count,
227 sizeof(acpi_fixed_event_count));
Lv Zheng9187a412013-10-31 09:30:28 +0800228
229 /* Other counters */
230
231 stats->method_count = acpi_method_count;
232
233 return_ACPI_STATUS(AE_OK);
234}
235
236ACPI_EXPORT_SYMBOL(acpi_get_statistics)
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238/*****************************************************************************
239 *
240 * FUNCTION: acpi_install_initialization_handler
241 *
Bob Mooreba494be2012-07-12 09:40:10 +0800242 * PARAMETERS: handler - Callback procedure
243 * function - Not (currently) used, see below
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 *
245 * RETURN: Status
246 *
247 * DESCRIPTION: Install an initialization handler
248 *
249 * TBD: When a second function is added, must save the Function also.
250 *
251 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400253acpi_install_initialization_handler(acpi_init_handler handler, u32 function)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255
256 if (!handler) {
257 return (AE_BAD_PARAMETER);
258 }
259
260 if (acpi_gbl_init_handler) {
261 return (AE_ALREADY_EXISTS);
262 }
263
264 acpi_gbl_init_handler = handler;
Bob Moore68aafc32012-10-31 02:26:01 +0000265 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Bob Moore83135242006-10-03 00:00:00 -0400268ACPI_EXPORT_SYMBOL(acpi_install_initialization_handler)
Len Brown4be44fc2005-08-05 00:44:28 -0400269#endif /* ACPI_FUTURE_USAGE */
Lin Mingb0ed7a92010-08-06 09:35:51 +0800270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271/*****************************************************************************
272 *
273 * FUNCTION: acpi_purge_cached_objects
274 *
275 * PARAMETERS: None
276 *
277 * RETURN: Status
278 *
279 * DESCRIPTION: Empty all caches (delete the cached objects)
280 *
281 ****************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400282acpi_status acpi_purge_cached_objects(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Bob Mooreb229cf92006-04-21 17:15:00 -0400284 ACPI_FUNCTION_TRACE(acpi_purge_cached_objects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Len Brown4be44fc2005-08-05 00:44:28 -0400286 (void)acpi_os_purge_cache(acpi_gbl_state_cache);
287 (void)acpi_os_purge_cache(acpi_gbl_operand_cache);
288 (void)acpi_os_purge_cache(acpi_gbl_ps_node_cache);
289 (void)acpi_os_purge_cache(acpi_gbl_ps_node_ext_cache);
Bob Moore68aafc32012-10-31 02:26:01 +0000290
Len Brown4be44fc2005-08-05 00:44:28 -0400291 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
Bob Moore83135242006-10-03 00:00:00 -0400293
294ACPI_EXPORT_SYMBOL(acpi_purge_cached_objects)
Lin Mingb0ed7a92010-08-06 09:35:51 +0800295
296/*****************************************************************************
297 *
298 * FUNCTION: acpi_install_interface
299 *
300 * PARAMETERS: interface_name - The interface to install
301 *
302 * RETURN: Status
303 *
304 * DESCRIPTION: Install an _OSI interface to the global list
305 *
306 ****************************************************************************/
307acpi_status acpi_install_interface(acpi_string interface_name)
308{
309 acpi_status status;
310 struct acpi_interface_info *interface_info;
311
312 /* Parameter validation */
313
Bob Moore4fa46162015-07-01 14:45:11 +0800314 if (!interface_name || (strlen(interface_name) == 0)) {
Lin Mingb0ed7a92010-08-06 09:35:51 +0800315 return (AE_BAD_PARAMETER);
316 }
317
Jung-uk Kim388a9902013-04-12 00:24:34 +0000318 status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
319 if (ACPI_FAILURE(status)) {
320 return (status);
321 }
Lin Mingb0ed7a92010-08-06 09:35:51 +0800322
323 /* Check if the interface name is already in the global list */
324
325 interface_info = acpi_ut_get_interface(interface_name);
326 if (interface_info) {
327 /*
328 * The interface already exists in the list. This is OK if the
329 * interface has been marked invalid -- just clear the bit.
330 */
331 if (interface_info->flags & ACPI_OSI_INVALID) {
332 interface_info->flags &= ~ACPI_OSI_INVALID;
333 status = AE_OK;
334 } else {
335 status = AE_ALREADY_EXISTS;
336 }
337 } else {
338 /* New interface name, install into the global list */
339
340 status = acpi_ut_install_interface(interface_name);
341 }
342
343 acpi_os_release_mutex(acpi_gbl_osi_mutex);
344 return (status);
345}
346
347ACPI_EXPORT_SYMBOL(acpi_install_interface)
348
349/*****************************************************************************
350 *
351 * FUNCTION: acpi_remove_interface
352 *
353 * PARAMETERS: interface_name - The interface to remove
354 *
355 * RETURN: Status
356 *
357 * DESCRIPTION: Remove an _OSI interface from the global list
358 *
359 ****************************************************************************/
360acpi_status acpi_remove_interface(acpi_string interface_name)
361{
362 acpi_status status;
363
364 /* Parameter validation */
365
Bob Moore4fa46162015-07-01 14:45:11 +0800366 if (!interface_name || (strlen(interface_name) == 0)) {
Lin Mingb0ed7a92010-08-06 09:35:51 +0800367 return (AE_BAD_PARAMETER);
368 }
369
Jung-uk Kim388a9902013-04-12 00:24:34 +0000370 status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
371 if (ACPI_FAILURE(status)) {
372 return (status);
373 }
Lin Mingb0ed7a92010-08-06 09:35:51 +0800374
375 status = acpi_ut_remove_interface(interface_name);
376
377 acpi_os_release_mutex(acpi_gbl_osi_mutex);
378 return (status);
379}
380
381ACPI_EXPORT_SYMBOL(acpi_remove_interface)
382
383/*****************************************************************************
384 *
385 * FUNCTION: acpi_install_interface_handler
386 *
Bob Mooreba494be2012-07-12 09:40:10 +0800387 * PARAMETERS: handler - The _OSI interface handler to install
Lin Mingb0ed7a92010-08-06 09:35:51 +0800388 * NULL means "remove existing handler"
389 *
390 * RETURN: Status
391 *
392 * DESCRIPTION: Install a handler for the predefined _OSI ACPI method.
393 * invoked during execution of the internal implementation of
394 * _OSI. A NULL handler simply removes any existing handler.
395 *
396 ****************************************************************************/
397acpi_status acpi_install_interface_handler(acpi_interface_handler handler)
398{
Jung-uk Kim388a9902013-04-12 00:24:34 +0000399 acpi_status status;
Lin Mingb0ed7a92010-08-06 09:35:51 +0800400
Jung-uk Kim388a9902013-04-12 00:24:34 +0000401 status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
402 if (ACPI_FAILURE(status)) {
403 return (status);
404 }
Lin Mingb0ed7a92010-08-06 09:35:51 +0800405
406 if (handler && acpi_gbl_interface_handler) {
407 status = AE_ALREADY_EXISTS;
408 } else {
409 acpi_gbl_interface_handler = handler;
410 }
411
412 acpi_os_release_mutex(acpi_gbl_osi_mutex);
413 return (status);
414}
415
416ACPI_EXPORT_SYMBOL(acpi_install_interface_handler)
Lin Mingf654c0f2012-01-12 13:10:32 +0800417
418/*****************************************************************************
419 *
Lv Zheng2cf9f5b2013-07-22 16:08:16 +0800420 * FUNCTION: acpi_update_interfaces
421 *
422 * PARAMETERS: action - Actions to be performed during the
423 * update
424 *
425 * RETURN: Status
426 *
427 * DESCRIPTION: Update _OSI interface strings, disabling or enabling OS vendor
428 * string or/and feature group strings.
429 *
430 ****************************************************************************/
431acpi_status acpi_update_interfaces(u8 action)
432{
433 acpi_status status;
434
435 status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
436 if (ACPI_FAILURE(status)) {
437 return (status);
438 }
439
440 status = acpi_ut_update_interfaces(action);
441
442 acpi_os_release_mutex(acpi_gbl_osi_mutex);
443 return (status);
444}
445
446/*****************************************************************************
447 *
Lin Mingf654c0f2012-01-12 13:10:32 +0800448 * FUNCTION: acpi_check_address_range
449 *
450 * PARAMETERS: space_id - Address space ID
Bob Mooreba494be2012-07-12 09:40:10 +0800451 * address - Start address
452 * length - Length
453 * warn - TRUE if warning on overlap desired
Lin Mingf654c0f2012-01-12 13:10:32 +0800454 *
455 * RETURN: Count of the number of conflicts detected.
456 *
457 * DESCRIPTION: Check if the input address range overlaps any of the
458 * ASL operation region address ranges.
459 *
460 ****************************************************************************/
Lv Zheng2cf9f5b2013-07-22 16:08:16 +0800461
Lin Mingf654c0f2012-01-12 13:10:32 +0800462u32
463acpi_check_address_range(acpi_adr_space_type space_id,
464 acpi_physical_address address,
465 acpi_size length, u8 warn)
466{
467 u32 overlaps;
468 acpi_status status;
469
470 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
471 if (ACPI_FAILURE(status)) {
472 return (0);
473 }
474
475 overlaps = acpi_ut_check_address_range(space_id, address,
476 (u32)length, warn);
477
478 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
479 return (overlaps);
480}
481
482ACPI_EXPORT_SYMBOL(acpi_check_address_range)
Lin Mingb0ed7a92010-08-06 09:35:51 +0800483#endif /* !ACPI_ASL_COMPILER */
Bob Moorebe030a52012-08-17 13:07:54 +0800484/*******************************************************************************
485 *
486 * FUNCTION: acpi_decode_pld_buffer
487 *
488 * PARAMETERS: in_buffer - Buffer returned by _PLD method
489 * length - Length of the in_buffer
490 * return_buffer - Where the decode buffer is returned
491 *
492 * RETURN: Status and the decoded _PLD buffer. User must deallocate
493 * the buffer via ACPI_FREE.
494 *
495 * DESCRIPTION: Decode the bit-packed buffer returned by the _PLD method into
496 * a local struct that is much more useful to an ACPI driver.
497 *
498 ******************************************************************************/
499acpi_status
500acpi_decode_pld_buffer(u8 *in_buffer,
501 acpi_size length, struct acpi_pld_info ** return_buffer)
502{
503 struct acpi_pld_info *pld_info;
504 u32 *buffer = ACPI_CAST_PTR(u32, in_buffer);
505 u32 dword;
506
507 /* Parameter validation */
508
Bob Moore35349692015-08-25 10:28:32 +0800509 if (!in_buffer || !return_buffer
510 || (length < ACPI_PLD_REV1_BUFFER_SIZE)) {
Bob Moorebe030a52012-08-17 13:07:54 +0800511 return (AE_BAD_PARAMETER);
512 }
513
514 pld_info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_pld_info));
515 if (!pld_info) {
516 return (AE_NO_MEMORY);
517 }
518
519 /* First 32-bit DWord */
520
521 ACPI_MOVE_32_TO_32(&dword, &buffer[0]);
522 pld_info->revision = ACPI_PLD_GET_REVISION(&dword);
523 pld_info->ignore_color = ACPI_PLD_GET_IGNORE_COLOR(&dword);
Bob Moore4dcd78d2014-11-27 14:26:00 +0800524 pld_info->red = ACPI_PLD_GET_RED(&dword);
525 pld_info->green = ACPI_PLD_GET_GREEN(&dword);
526 pld_info->blue = ACPI_PLD_GET_BLUE(&dword);
Bob Moorebe030a52012-08-17 13:07:54 +0800527
528 /* Second 32-bit DWord */
529
530 ACPI_MOVE_32_TO_32(&dword, &buffer[1]);
531 pld_info->width = ACPI_PLD_GET_WIDTH(&dword);
532 pld_info->height = ACPI_PLD_GET_HEIGHT(&dword);
533
534 /* Third 32-bit DWord */
535
536 ACPI_MOVE_32_TO_32(&dword, &buffer[2]);
537 pld_info->user_visible = ACPI_PLD_GET_USER_VISIBLE(&dword);
538 pld_info->dock = ACPI_PLD_GET_DOCK(&dword);
539 pld_info->lid = ACPI_PLD_GET_LID(&dword);
540 pld_info->panel = ACPI_PLD_GET_PANEL(&dword);
541 pld_info->vertical_position = ACPI_PLD_GET_VERTICAL(&dword);
542 pld_info->horizontal_position = ACPI_PLD_GET_HORIZONTAL(&dword);
543 pld_info->shape = ACPI_PLD_GET_SHAPE(&dword);
544 pld_info->group_orientation = ACPI_PLD_GET_ORIENTATION(&dword);
545 pld_info->group_token = ACPI_PLD_GET_TOKEN(&dword);
546 pld_info->group_position = ACPI_PLD_GET_POSITION(&dword);
547 pld_info->bay = ACPI_PLD_GET_BAY(&dword);
548
549 /* Fourth 32-bit DWord */
550
551 ACPI_MOVE_32_TO_32(&dword, &buffer[3]);
552 pld_info->ejectable = ACPI_PLD_GET_EJECTABLE(&dword);
553 pld_info->ospm_eject_required = ACPI_PLD_GET_OSPM_EJECT(&dword);
554 pld_info->cabinet_number = ACPI_PLD_GET_CABINET(&dword);
555 pld_info->card_cage_number = ACPI_PLD_GET_CARD_CAGE(&dword);
556 pld_info->reference = ACPI_PLD_GET_REFERENCE(&dword);
557 pld_info->rotation = ACPI_PLD_GET_ROTATION(&dword);
558 pld_info->order = ACPI_PLD_GET_ORDER(&dword);
559
Bob Moore35349692015-08-25 10:28:32 +0800560 if (length >= ACPI_PLD_REV2_BUFFER_SIZE) {
Bob Moorebe030a52012-08-17 13:07:54 +0800561
562 /* Fifth 32-bit DWord (Revision 2 of _PLD) */
563
564 ACPI_MOVE_32_TO_32(&dword, &buffer[4]);
565 pld_info->vertical_offset = ACPI_PLD_GET_VERT_OFFSET(&dword);
566 pld_info->horizontal_offset = ACPI_PLD_GET_HORIZ_OFFSET(&dword);
567 }
568
569 *return_buffer = pld_info;
570 return (AE_OK);
571}
572
573ACPI_EXPORT_SYMBOL(acpi_decode_pld_buffer)