Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Bob Moore | d978348 | 2012-08-17 10:51:47 +0800 | [diff] [blame] | 3 | * Module Name: utxface - External interfaces, miscellaneous utility functions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 5 | *****************************************************************************/ |
| 6 | |
| 7 | /* |
Bob Moore | 7784813 | 2012-01-12 13:27:23 +0800 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * 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 | |
Paul Gortmaker | 214f2c9 | 2011-10-26 16:22:14 -0400 | [diff] [blame] | 44 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <acpi/acpi.h> |
Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 46 | #include "accommon.h" |
| 47 | #include "acevents.h" |
| 48 | #include "acnamesp.h" |
| 49 | #include "acdebug.h" |
| 50 | #include "actables.h" |
Lin Ming | f654c0f | 2012-01-12 13:10:32 +0800 | [diff] [blame] | 51 | #include "acinterp.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | #define _COMPONENT ACPI_UTILITIES |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 54 | ACPI_MODULE_NAME("utxface") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | /******************************************************************************* |
| 57 | * |
| 58 | * FUNCTION: acpi_terminate |
| 59 | * |
| 60 | * PARAMETERS: None |
| 61 | * |
| 62 | * RETURN: Status |
| 63 | * |
Bob Moore | 2f977b3 | 2009-07-24 11:25:16 +0800 | [diff] [blame] | 64 | * DESCRIPTION: Shutdown the ACPICA subsystem and release all resources. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | * |
| 66 | ******************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 67 | acpi_status acpi_terminate(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 69 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 71 | ACPI_FUNCTION_TRACE(acpi_terminate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
Bob Moore | 2f977b3 | 2009-07-24 11:25:16 +0800 | [diff] [blame] | 73 | /* Just exit if subsystem is already shutdown */ |
| 74 | |
| 75 | if (acpi_gbl_shutdown) { |
| 76 | ACPI_ERROR((AE_INFO, "ACPI Subsystem is already terminated")); |
| 77 | return_ACPI_STATUS(AE_OK); |
| 78 | } |
| 79 | |
| 80 | /* Subsystem appears active, go ahead and shut it down */ |
| 81 | |
| 82 | acpi_gbl_shutdown = TRUE; |
| 83 | acpi_gbl_startup_flags = 0; |
| 84 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Shutting down ACPI Subsystem\n")); |
| 85 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | /* Terminate the AML Debugger if present */ |
| 87 | |
| 88 | ACPI_DEBUGGER_EXEC(acpi_gbl_db_terminate_threads = TRUE); |
| 89 | |
| 90 | /* Shutdown and free all resources */ |
| 91 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 92 | acpi_ut_subsystem_shutdown(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
| 94 | /* Free the mutex objects */ |
| 95 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 96 | acpi_ut_mutex_terminate(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
| 98 | #ifdef ACPI_DEBUGGER |
| 99 | |
| 100 | /* Shut down the debugger */ |
| 101 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 102 | acpi_db_terminate(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | #endif |
| 104 | |
| 105 | /* Now we can shutdown the OS-dependent layer */ |
| 106 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 107 | status = acpi_os_terminate(); |
| 108 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } |
| 110 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 111 | ACPI_EXPORT_SYMBOL(acpi_terminate) |
Bob Moore | 2f977b3 | 2009-07-24 11:25:16 +0800 | [diff] [blame] | 112 | |
Bob Moore | e20a679 | 2008-04-10 19:06:38 +0400 | [diff] [blame] | 113 | #ifndef ACPI_ASL_COMPILER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | #ifdef ACPI_FUTURE_USAGE |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 115 | /******************************************************************************* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | * |
| 117 | * FUNCTION: acpi_subsystem_status |
| 118 | * |
| 119 | * PARAMETERS: None |
| 120 | * |
| 121 | * RETURN: Status of the ACPI subsystem |
| 122 | * |
| 123 | * DESCRIPTION: Other drivers that use the ACPI subsystem should call this |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 124 | * before making any other calls, to ensure the subsystem |
| 125 | * initialized successfully. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 127 | ******************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 128 | acpi_status acpi_subsystem_status(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | { |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | if (acpi_gbl_startup_flags & ACPI_INITIALIZED_OK) { |
| 132 | return (AE_OK); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 133 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | return (AE_ERROR); |
| 135 | } |
| 136 | } |
| 137 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 138 | ACPI_EXPORT_SYMBOL(acpi_subsystem_status) |
| 139 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 140 | /******************************************************************************* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | * |
| 142 | * FUNCTION: acpi_get_system_info |
| 143 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 144 | * PARAMETERS: out_buffer - A buffer to receive the resources for the |
| 145 | * device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 147 | * RETURN: status - the status of the call |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | * |
| 149 | * DESCRIPTION: This function is called to get information about the current |
| 150 | * state of the ACPI subsystem. It will return system information |
| 151 | * in the out_buffer. |
| 152 | * |
| 153 | * If the function fails an appropriate status will be returned |
| 154 | * and the value of out_buffer is undefined. |
| 155 | * |
| 156 | ******************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 157 | acpi_status acpi_get_system_info(struct acpi_buffer * out_buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 159 | struct acpi_system_info *info_ptr; |
| 160 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 162 | ACPI_FUNCTION_TRACE(acpi_get_system_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
| 164 | /* Parameter validation */ |
| 165 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 166 | status = acpi_ut_validate_buffer(out_buffer); |
| 167 | if (ACPI_FAILURE(status)) { |
| 168 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | /* Validate/Allocate/Clear caller buffer */ |
| 172 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 173 | status = |
| 174 | acpi_ut_initialize_buffer(out_buffer, |
| 175 | sizeof(struct acpi_system_info)); |
| 176 | if (ACPI_FAILURE(status)) { |
| 177 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | /* |
| 181 | * Populate the return buffer |
| 182 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 183 | info_ptr = (struct acpi_system_info *)out_buffer->pointer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 185 | info_ptr->acpi_ca_version = ACPI_CA_VERSION; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
| 187 | /* System flags (ACPI capabilities) */ |
| 188 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 189 | info_ptr->flags = ACPI_SYS_MODE_ACPI; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
| 191 | /* Timer resolution - 24 or 32 bits */ |
| 192 | |
Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 193 | if (acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | info_ptr->timer_resolution = 24; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 195 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | info_ptr->timer_resolution = 32; |
| 197 | } |
| 198 | |
| 199 | /* Clear the reserved fields */ |
| 200 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 201 | info_ptr->reserved1 = 0; |
| 202 | info_ptr->reserved2 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
| 204 | /* Current debug levels */ |
| 205 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 206 | info_ptr->debug_layer = acpi_dbg_layer; |
| 207 | info_ptr->debug_level = acpi_dbg_level; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 209 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 212 | ACPI_EXPORT_SYMBOL(acpi_get_system_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
| 214 | /***************************************************************************** |
| 215 | * |
| 216 | * FUNCTION: acpi_install_initialization_handler |
| 217 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 218 | * PARAMETERS: handler - Callback procedure |
| 219 | * function - Not (currently) used, see below |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | * |
| 221 | * RETURN: Status |
| 222 | * |
| 223 | * DESCRIPTION: Install an initialization handler |
| 224 | * |
| 225 | * TBD: When a second function is added, must save the Function also. |
| 226 | * |
| 227 | ****************************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 229 | acpi_install_initialization_handler(acpi_init_handler handler, u32 function) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | { |
| 231 | |
| 232 | if (!handler) { |
| 233 | return (AE_BAD_PARAMETER); |
| 234 | } |
| 235 | |
| 236 | if (acpi_gbl_init_handler) { |
| 237 | return (AE_ALREADY_EXISTS); |
| 238 | } |
| 239 | |
| 240 | acpi_gbl_init_handler = handler; |
| 241 | return AE_OK; |
| 242 | } |
| 243 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 244 | ACPI_EXPORT_SYMBOL(acpi_install_initialization_handler) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 245 | #endif /* ACPI_FUTURE_USAGE */ |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 246 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | /***************************************************************************** |
| 248 | * |
| 249 | * FUNCTION: acpi_purge_cached_objects |
| 250 | * |
| 251 | * PARAMETERS: None |
| 252 | * |
| 253 | * RETURN: Status |
| 254 | * |
| 255 | * DESCRIPTION: Empty all caches (delete the cached objects) |
| 256 | * |
| 257 | ****************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 258 | acpi_status acpi_purge_cached_objects(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | { |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 260 | ACPI_FUNCTION_TRACE(acpi_purge_cached_objects); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 262 | (void)acpi_os_purge_cache(acpi_gbl_state_cache); |
| 263 | (void)acpi_os_purge_cache(acpi_gbl_operand_cache); |
| 264 | (void)acpi_os_purge_cache(acpi_gbl_ps_node_cache); |
| 265 | (void)acpi_os_purge_cache(acpi_gbl_ps_node_ext_cache); |
| 266 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | } |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 268 | |
| 269 | ACPI_EXPORT_SYMBOL(acpi_purge_cached_objects) |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 270 | |
| 271 | /***************************************************************************** |
| 272 | * |
| 273 | * FUNCTION: acpi_install_interface |
| 274 | * |
| 275 | * PARAMETERS: interface_name - The interface to install |
| 276 | * |
| 277 | * RETURN: Status |
| 278 | * |
| 279 | * DESCRIPTION: Install an _OSI interface to the global list |
| 280 | * |
| 281 | ****************************************************************************/ |
| 282 | acpi_status acpi_install_interface(acpi_string interface_name) |
| 283 | { |
| 284 | acpi_status status; |
| 285 | struct acpi_interface_info *interface_info; |
| 286 | |
| 287 | /* Parameter validation */ |
| 288 | |
| 289 | if (!interface_name || (ACPI_STRLEN(interface_name) == 0)) { |
| 290 | return (AE_BAD_PARAMETER); |
| 291 | } |
| 292 | |
| 293 | (void)acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER); |
| 294 | |
| 295 | /* Check if the interface name is already in the global list */ |
| 296 | |
| 297 | interface_info = acpi_ut_get_interface(interface_name); |
| 298 | if (interface_info) { |
| 299 | /* |
| 300 | * The interface already exists in the list. This is OK if the |
| 301 | * interface has been marked invalid -- just clear the bit. |
| 302 | */ |
| 303 | if (interface_info->flags & ACPI_OSI_INVALID) { |
| 304 | interface_info->flags &= ~ACPI_OSI_INVALID; |
| 305 | status = AE_OK; |
| 306 | } else { |
| 307 | status = AE_ALREADY_EXISTS; |
| 308 | } |
| 309 | } else { |
| 310 | /* New interface name, install into the global list */ |
| 311 | |
| 312 | status = acpi_ut_install_interface(interface_name); |
| 313 | } |
| 314 | |
| 315 | acpi_os_release_mutex(acpi_gbl_osi_mutex); |
| 316 | return (status); |
| 317 | } |
| 318 | |
| 319 | ACPI_EXPORT_SYMBOL(acpi_install_interface) |
| 320 | |
| 321 | /***************************************************************************** |
| 322 | * |
| 323 | * FUNCTION: acpi_remove_interface |
| 324 | * |
| 325 | * PARAMETERS: interface_name - The interface to remove |
| 326 | * |
| 327 | * RETURN: Status |
| 328 | * |
| 329 | * DESCRIPTION: Remove an _OSI interface from the global list |
| 330 | * |
| 331 | ****************************************************************************/ |
| 332 | acpi_status acpi_remove_interface(acpi_string interface_name) |
| 333 | { |
| 334 | acpi_status status; |
| 335 | |
| 336 | /* Parameter validation */ |
| 337 | |
| 338 | if (!interface_name || (ACPI_STRLEN(interface_name) == 0)) { |
| 339 | return (AE_BAD_PARAMETER); |
| 340 | } |
| 341 | |
| 342 | (void)acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER); |
| 343 | |
| 344 | status = acpi_ut_remove_interface(interface_name); |
| 345 | |
| 346 | acpi_os_release_mutex(acpi_gbl_osi_mutex); |
| 347 | return (status); |
| 348 | } |
| 349 | |
| 350 | ACPI_EXPORT_SYMBOL(acpi_remove_interface) |
| 351 | |
| 352 | /***************************************************************************** |
| 353 | * |
| 354 | * FUNCTION: acpi_install_interface_handler |
| 355 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 356 | * PARAMETERS: handler - The _OSI interface handler to install |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 357 | * NULL means "remove existing handler" |
| 358 | * |
| 359 | * RETURN: Status |
| 360 | * |
| 361 | * DESCRIPTION: Install a handler for the predefined _OSI ACPI method. |
| 362 | * invoked during execution of the internal implementation of |
| 363 | * _OSI. A NULL handler simply removes any existing handler. |
| 364 | * |
| 365 | ****************************************************************************/ |
| 366 | acpi_status acpi_install_interface_handler(acpi_interface_handler handler) |
| 367 | { |
| 368 | acpi_status status = AE_OK; |
| 369 | |
| 370 | (void)acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER); |
| 371 | |
| 372 | if (handler && acpi_gbl_interface_handler) { |
| 373 | status = AE_ALREADY_EXISTS; |
| 374 | } else { |
| 375 | acpi_gbl_interface_handler = handler; |
| 376 | } |
| 377 | |
| 378 | acpi_os_release_mutex(acpi_gbl_osi_mutex); |
| 379 | return (status); |
| 380 | } |
| 381 | |
| 382 | ACPI_EXPORT_SYMBOL(acpi_install_interface_handler) |
Lin Ming | f654c0f | 2012-01-12 13:10:32 +0800 | [diff] [blame] | 383 | |
| 384 | /***************************************************************************** |
| 385 | * |
| 386 | * FUNCTION: acpi_check_address_range |
| 387 | * |
| 388 | * PARAMETERS: space_id - Address space ID |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 389 | * address - Start address |
| 390 | * length - Length |
| 391 | * warn - TRUE if warning on overlap desired |
Lin Ming | f654c0f | 2012-01-12 13:10:32 +0800 | [diff] [blame] | 392 | * |
| 393 | * RETURN: Count of the number of conflicts detected. |
| 394 | * |
| 395 | * DESCRIPTION: Check if the input address range overlaps any of the |
| 396 | * ASL operation region address ranges. |
| 397 | * |
| 398 | ****************************************************************************/ |
| 399 | u32 |
| 400 | acpi_check_address_range(acpi_adr_space_type space_id, |
| 401 | acpi_physical_address address, |
| 402 | acpi_size length, u8 warn) |
| 403 | { |
| 404 | u32 overlaps; |
| 405 | acpi_status status; |
| 406 | |
| 407 | status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE); |
| 408 | if (ACPI_FAILURE(status)) { |
| 409 | return (0); |
| 410 | } |
| 411 | |
| 412 | overlaps = acpi_ut_check_address_range(space_id, address, |
| 413 | (u32)length, warn); |
| 414 | |
| 415 | (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE); |
| 416 | return (overlaps); |
| 417 | } |
| 418 | |
| 419 | ACPI_EXPORT_SYMBOL(acpi_check_address_range) |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 420 | #endif /* !ACPI_ASL_COMPILER */ |