1 /******************************************************************************
3 * Module Name: utxface - External interfaces, miscellaneous utility functions
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2015, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
44 #define EXPORT_ACPI_INTERFACES
46 #include <acpi/acpi.h>
50 #define _COMPONENT ACPI_UTILITIES
51 ACPI_MODULE_NAME("utxface")
53 /*******************************************************************************
55 * FUNCTION: acpi_terminate
61 * DESCRIPTION: Shutdown the ACPICA subsystem and release all resources.
63 ******************************************************************************/
64 acpi_status __init
acpi_terminate(void)
68 ACPI_FUNCTION_TRACE(acpi_terminate
);
70 /* Just exit if subsystem is already shutdown */
72 if (acpi_gbl_shutdown
) {
73 ACPI_ERROR((AE_INFO
, "ACPI Subsystem is already terminated"));
74 return_ACPI_STATUS(AE_OK
);
77 /* Subsystem appears active, go ahead and shut it down */
79 acpi_gbl_shutdown
= TRUE
;
80 acpi_gbl_startup_flags
= 0;
81 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Shutting down ACPI Subsystem\n"));
83 /* Terminate the AML Debugger if present */
85 ACPI_DEBUGGER_EXEC(acpi_gbl_db_terminate_threads
= TRUE
);
87 /* Shutdown and free all resources */
89 acpi_ut_subsystem_shutdown();
91 /* Free the mutex objects */
93 acpi_ut_mutex_terminate();
97 /* Shut down the debugger */
102 /* Now we can shutdown the OS-dependent layer */
104 status
= acpi_os_terminate();
105 return_ACPI_STATUS(status
);
108 ACPI_EXPORT_SYMBOL_INIT(acpi_terminate
)
110 #ifndef ACPI_ASL_COMPILER
111 #ifdef ACPI_FUTURE_USAGE
112 /*******************************************************************************
114 * FUNCTION: acpi_subsystem_status
118 * RETURN: Status of the ACPI subsystem
120 * DESCRIPTION: Other drivers that use the ACPI subsystem should call this
121 * before making any other calls, to ensure the subsystem
122 * initialized successfully.
124 ******************************************************************************/
125 acpi_status
acpi_subsystem_status(void)
128 if (acpi_gbl_startup_flags
& ACPI_INITIALIZED_OK
) {
135 ACPI_EXPORT_SYMBOL(acpi_subsystem_status
)
137 /*******************************************************************************
139 * FUNCTION: acpi_get_system_info
141 * PARAMETERS: out_buffer - A buffer to receive the resources for the
144 * RETURN: status - the status of the call
146 * DESCRIPTION: This function is called to get information about the current
147 * state of the ACPI subsystem. It will return system information
150 * If the function fails an appropriate status will be returned
151 * and the value of out_buffer is undefined.
153 ******************************************************************************/
154 acpi_status
acpi_get_system_info(struct acpi_buffer
* out_buffer
)
156 struct acpi_system_info
*info_ptr
;
159 ACPI_FUNCTION_TRACE(acpi_get_system_info
);
161 /* Parameter validation */
163 status
= acpi_ut_validate_buffer(out_buffer
);
164 if (ACPI_FAILURE(status
)) {
165 return_ACPI_STATUS(status
);
168 /* Validate/Allocate/Clear caller buffer */
171 acpi_ut_initialize_buffer(out_buffer
,
172 sizeof(struct acpi_system_info
));
173 if (ACPI_FAILURE(status
)) {
174 return_ACPI_STATUS(status
);
178 * Populate the return buffer
180 info_ptr
= (struct acpi_system_info
*)out_buffer
->pointer
;
182 info_ptr
->acpi_ca_version
= ACPI_CA_VERSION
;
184 /* System flags (ACPI capabilities) */
186 info_ptr
->flags
= ACPI_SYS_MODE_ACPI
;
188 /* Timer resolution - 24 or 32 bits */
190 if (acpi_gbl_FADT
.flags
& ACPI_FADT_32BIT_TIMER
) {
191 info_ptr
->timer_resolution
= 24;
193 info_ptr
->timer_resolution
= 32;
196 /* Clear the reserved fields */
198 info_ptr
->reserved1
= 0;
199 info_ptr
->reserved2
= 0;
201 /* Current debug levels */
203 info_ptr
->debug_layer
= acpi_dbg_layer
;
204 info_ptr
->debug_level
= acpi_dbg_level
;
206 return_ACPI_STATUS(AE_OK
);
209 ACPI_EXPORT_SYMBOL(acpi_get_system_info
)
211 /*******************************************************************************
213 * FUNCTION: acpi_get_statistics
215 * PARAMETERS: stats - Where the statistics are returned
217 * RETURN: status - the status of the call
219 * DESCRIPTION: Get the contents of the various system counters
221 ******************************************************************************/
222 acpi_status
acpi_get_statistics(struct acpi_statistics
*stats
)
224 ACPI_FUNCTION_TRACE(acpi_get_statistics
);
226 /* Parameter validation */
229 return_ACPI_STATUS(AE_BAD_PARAMETER
);
232 /* Various interrupt-based event counters */
234 stats
->sci_count
= acpi_sci_count
;
235 stats
->gpe_count
= acpi_gpe_count
;
237 ACPI_MEMCPY(stats
->fixed_event_count
, acpi_fixed_event_count
,
238 sizeof(acpi_fixed_event_count
));
242 stats
->method_count
= acpi_method_count
;
244 return_ACPI_STATUS(AE_OK
);
247 ACPI_EXPORT_SYMBOL(acpi_get_statistics
)
249 /*****************************************************************************
251 * FUNCTION: acpi_install_initialization_handler
253 * PARAMETERS: handler - Callback procedure
254 * function - Not (currently) used, see below
258 * DESCRIPTION: Install an initialization handler
260 * TBD: When a second function is added, must save the Function also.
262 ****************************************************************************/
264 acpi_install_initialization_handler(acpi_init_handler handler
, u32 function
)
268 return (AE_BAD_PARAMETER
);
271 if (acpi_gbl_init_handler
) {
272 return (AE_ALREADY_EXISTS
);
275 acpi_gbl_init_handler
= handler
;
279 ACPI_EXPORT_SYMBOL(acpi_install_initialization_handler
)
280 #endif /* ACPI_FUTURE_USAGE */
282 /*****************************************************************************
284 * FUNCTION: acpi_purge_cached_objects
290 * DESCRIPTION: Empty all caches (delete the cached objects)
292 ****************************************************************************/
293 acpi_status
acpi_purge_cached_objects(void)
295 ACPI_FUNCTION_TRACE(acpi_purge_cached_objects
);
297 (void)acpi_os_purge_cache(acpi_gbl_state_cache
);
298 (void)acpi_os_purge_cache(acpi_gbl_operand_cache
);
299 (void)acpi_os_purge_cache(acpi_gbl_ps_node_cache
);
300 (void)acpi_os_purge_cache(acpi_gbl_ps_node_ext_cache
);
302 return_ACPI_STATUS(AE_OK
);
305 ACPI_EXPORT_SYMBOL(acpi_purge_cached_objects
)
307 /*****************************************************************************
309 * FUNCTION: acpi_install_interface
311 * PARAMETERS: interface_name - The interface to install
315 * DESCRIPTION: Install an _OSI interface to the global list
317 ****************************************************************************/
318 acpi_status
acpi_install_interface(acpi_string interface_name
)
321 struct acpi_interface_info
*interface_info
;
323 /* Parameter validation */
325 if (!interface_name
|| (ACPI_STRLEN(interface_name
) == 0)) {
326 return (AE_BAD_PARAMETER
);
329 status
= acpi_os_acquire_mutex(acpi_gbl_osi_mutex
, ACPI_WAIT_FOREVER
);
330 if (ACPI_FAILURE(status
)) {
334 /* Check if the interface name is already in the global list */
336 interface_info
= acpi_ut_get_interface(interface_name
);
337 if (interface_info
) {
339 * The interface already exists in the list. This is OK if the
340 * interface has been marked invalid -- just clear the bit.
342 if (interface_info
->flags
& ACPI_OSI_INVALID
) {
343 interface_info
->flags
&= ~ACPI_OSI_INVALID
;
346 status
= AE_ALREADY_EXISTS
;
349 /* New interface name, install into the global list */
351 status
= acpi_ut_install_interface(interface_name
);
354 acpi_os_release_mutex(acpi_gbl_osi_mutex
);
358 ACPI_EXPORT_SYMBOL(acpi_install_interface
)
360 /*****************************************************************************
362 * FUNCTION: acpi_remove_interface
364 * PARAMETERS: interface_name - The interface to remove
368 * DESCRIPTION: Remove an _OSI interface from the global list
370 ****************************************************************************/
371 acpi_status
acpi_remove_interface(acpi_string interface_name
)
375 /* Parameter validation */
377 if (!interface_name
|| (ACPI_STRLEN(interface_name
) == 0)) {
378 return (AE_BAD_PARAMETER
);
381 status
= acpi_os_acquire_mutex(acpi_gbl_osi_mutex
, ACPI_WAIT_FOREVER
);
382 if (ACPI_FAILURE(status
)) {
386 status
= acpi_ut_remove_interface(interface_name
);
388 acpi_os_release_mutex(acpi_gbl_osi_mutex
);
392 ACPI_EXPORT_SYMBOL(acpi_remove_interface
)
394 /*****************************************************************************
396 * FUNCTION: acpi_install_interface_handler
398 * PARAMETERS: handler - The _OSI interface handler to install
399 * NULL means "remove existing handler"
403 * DESCRIPTION: Install a handler for the predefined _OSI ACPI method.
404 * invoked during execution of the internal implementation of
405 * _OSI. A NULL handler simply removes any existing handler.
407 ****************************************************************************/
408 acpi_status
acpi_install_interface_handler(acpi_interface_handler handler
)
412 status
= acpi_os_acquire_mutex(acpi_gbl_osi_mutex
, ACPI_WAIT_FOREVER
);
413 if (ACPI_FAILURE(status
)) {
417 if (handler
&& acpi_gbl_interface_handler
) {
418 status
= AE_ALREADY_EXISTS
;
420 acpi_gbl_interface_handler
= handler
;
423 acpi_os_release_mutex(acpi_gbl_osi_mutex
);
427 ACPI_EXPORT_SYMBOL(acpi_install_interface_handler
)
429 /*****************************************************************************
431 * FUNCTION: acpi_update_interfaces
433 * PARAMETERS: action - Actions to be performed during the
438 * DESCRIPTION: Update _OSI interface strings, disabling or enabling OS vendor
439 * string or/and feature group strings.
441 ****************************************************************************/
442 acpi_status
acpi_update_interfaces(u8 action
)
446 status
= acpi_os_acquire_mutex(acpi_gbl_osi_mutex
, ACPI_WAIT_FOREVER
);
447 if (ACPI_FAILURE(status
)) {
451 status
= acpi_ut_update_interfaces(action
);
453 acpi_os_release_mutex(acpi_gbl_osi_mutex
);
457 /*****************************************************************************
459 * FUNCTION: acpi_check_address_range
461 * PARAMETERS: space_id - Address space ID
462 * address - Start address
464 * warn - TRUE if warning on overlap desired
466 * RETURN: Count of the number of conflicts detected.
468 * DESCRIPTION: Check if the input address range overlaps any of the
469 * ASL operation region address ranges.
471 ****************************************************************************/
474 acpi_check_address_range(acpi_adr_space_type space_id
,
475 acpi_physical_address address
,
476 acpi_size length
, u8 warn
)
481 status
= acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE
);
482 if (ACPI_FAILURE(status
)) {
486 overlaps
= acpi_ut_check_address_range(space_id
, address
,
489 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE
);
493 ACPI_EXPORT_SYMBOL(acpi_check_address_range
)
494 #endif /* !ACPI_ASL_COMPILER */
495 /*******************************************************************************
497 * FUNCTION: acpi_decode_pld_buffer
499 * PARAMETERS: in_buffer - Buffer returned by _PLD method
500 * length - Length of the in_buffer
501 * return_buffer - Where the decode buffer is returned
503 * RETURN: Status and the decoded _PLD buffer. User must deallocate
504 * the buffer via ACPI_FREE.
506 * DESCRIPTION: Decode the bit-packed buffer returned by the _PLD method into
507 * a local struct that is much more useful to an ACPI driver.
509 ******************************************************************************/
511 acpi_decode_pld_buffer(u8
*in_buffer
,
512 acpi_size length
, struct acpi_pld_info
** return_buffer
)
514 struct acpi_pld_info
*pld_info
;
515 u32
*buffer
= ACPI_CAST_PTR(u32
, in_buffer
);
518 /* Parameter validation */
520 if (!in_buffer
|| !return_buffer
|| (length
< 16)) {
521 return (AE_BAD_PARAMETER
);
524 pld_info
= ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_pld_info
));
526 return (AE_NO_MEMORY
);
529 /* First 32-bit DWord */
531 ACPI_MOVE_32_TO_32(&dword
, &buffer
[0]);
532 pld_info
->revision
= ACPI_PLD_GET_REVISION(&dword
);
533 pld_info
->ignore_color
= ACPI_PLD_GET_IGNORE_COLOR(&dword
);
534 pld_info
->red
= ACPI_PLD_GET_RED(&dword
);
535 pld_info
->green
= ACPI_PLD_GET_GREEN(&dword
);
536 pld_info
->blue
= ACPI_PLD_GET_BLUE(&dword
);
538 /* Second 32-bit DWord */
540 ACPI_MOVE_32_TO_32(&dword
, &buffer
[1]);
541 pld_info
->width
= ACPI_PLD_GET_WIDTH(&dword
);
542 pld_info
->height
= ACPI_PLD_GET_HEIGHT(&dword
);
544 /* Third 32-bit DWord */
546 ACPI_MOVE_32_TO_32(&dword
, &buffer
[2]);
547 pld_info
->user_visible
= ACPI_PLD_GET_USER_VISIBLE(&dword
);
548 pld_info
->dock
= ACPI_PLD_GET_DOCK(&dword
);
549 pld_info
->lid
= ACPI_PLD_GET_LID(&dword
);
550 pld_info
->panel
= ACPI_PLD_GET_PANEL(&dword
);
551 pld_info
->vertical_position
= ACPI_PLD_GET_VERTICAL(&dword
);
552 pld_info
->horizontal_position
= ACPI_PLD_GET_HORIZONTAL(&dword
);
553 pld_info
->shape
= ACPI_PLD_GET_SHAPE(&dword
);
554 pld_info
->group_orientation
= ACPI_PLD_GET_ORIENTATION(&dword
);
555 pld_info
->group_token
= ACPI_PLD_GET_TOKEN(&dword
);
556 pld_info
->group_position
= ACPI_PLD_GET_POSITION(&dword
);
557 pld_info
->bay
= ACPI_PLD_GET_BAY(&dword
);
559 /* Fourth 32-bit DWord */
561 ACPI_MOVE_32_TO_32(&dword
, &buffer
[3]);
562 pld_info
->ejectable
= ACPI_PLD_GET_EJECTABLE(&dword
);
563 pld_info
->ospm_eject_required
= ACPI_PLD_GET_OSPM_EJECT(&dword
);
564 pld_info
->cabinet_number
= ACPI_PLD_GET_CABINET(&dword
);
565 pld_info
->card_cage_number
= ACPI_PLD_GET_CARD_CAGE(&dword
);
566 pld_info
->reference
= ACPI_PLD_GET_REFERENCE(&dword
);
567 pld_info
->rotation
= ACPI_PLD_GET_ROTATION(&dword
);
568 pld_info
->order
= ACPI_PLD_GET_ORDER(&dword
);
570 if (length
>= ACPI_PLD_BUFFER_SIZE
) {
572 /* Fifth 32-bit DWord (Revision 2 of _PLD) */
574 ACPI_MOVE_32_TO_32(&dword
, &buffer
[4]);
575 pld_info
->vertical_offset
= ACPI_PLD_GET_VERT_OFFSET(&dword
);
576 pld_info
->horizontal_offset
= ACPI_PLD_GET_HORIZ_OFFSET(&dword
);
579 *return_buffer
= pld_info
;
583 ACPI_EXPORT_SYMBOL(acpi_decode_pld_buffer
)