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 | 25f044e | 2013-01-25 05:38:56 +0000 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2013, 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" |
Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 47 | #include "acdebug.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | #define _COMPONENT ACPI_UTILITIES |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 50 | ACPI_MODULE_NAME("utxface") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | /******************************************************************************* |
| 53 | * |
| 54 | * FUNCTION: acpi_terminate |
| 55 | * |
| 56 | * PARAMETERS: None |
| 57 | * |
| 58 | * RETURN: Status |
| 59 | * |
Bob Moore | 2f977b3 | 2009-07-24 11:25:16 +0800 | [diff] [blame] | 60 | * DESCRIPTION: Shutdown the ACPICA subsystem and release all resources. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | * |
| 62 | ******************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 63 | acpi_status acpi_terminate(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 65 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 67 | ACPI_FUNCTION_TRACE(acpi_terminate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
Bob Moore | 2f977b3 | 2009-07-24 11:25:16 +0800 | [diff] [blame] | 69 | /* Just exit if subsystem is already shutdown */ |
| 70 | |
| 71 | if (acpi_gbl_shutdown) { |
| 72 | ACPI_ERROR((AE_INFO, "ACPI Subsystem is already terminated")); |
| 73 | return_ACPI_STATUS(AE_OK); |
| 74 | } |
| 75 | |
| 76 | /* Subsystem appears active, go ahead and shut it down */ |
| 77 | |
| 78 | acpi_gbl_shutdown = TRUE; |
| 79 | acpi_gbl_startup_flags = 0; |
| 80 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Shutting down ACPI Subsystem\n")); |
| 81 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | /* Terminate the AML Debugger if present */ |
| 83 | |
| 84 | ACPI_DEBUGGER_EXEC(acpi_gbl_db_terminate_threads = TRUE); |
| 85 | |
| 86 | /* Shutdown and free all resources */ |
| 87 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 88 | acpi_ut_subsystem_shutdown(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
| 90 | /* Free the mutex objects */ |
| 91 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 92 | acpi_ut_mutex_terminate(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
| 94 | #ifdef ACPI_DEBUGGER |
| 95 | |
| 96 | /* Shut down the debugger */ |
| 97 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 98 | acpi_db_terminate(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | #endif |
| 100 | |
| 101 | /* Now we can shutdown the OS-dependent layer */ |
| 102 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 103 | status = acpi_os_terminate(); |
| 104 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } |
| 106 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 107 | ACPI_EXPORT_SYMBOL(acpi_terminate) |
Bob Moore | 2f977b3 | 2009-07-24 11:25:16 +0800 | [diff] [blame] | 108 | |
Bob Moore | e20a679 | 2008-04-10 19:06:38 +0400 | [diff] [blame] | 109 | #ifndef ACPI_ASL_COMPILER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | #ifdef ACPI_FUTURE_USAGE |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 111 | /******************************************************************************* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | * |
| 113 | * FUNCTION: acpi_subsystem_status |
| 114 | * |
| 115 | * PARAMETERS: None |
| 116 | * |
| 117 | * RETURN: Status of the ACPI subsystem |
| 118 | * |
| 119 | * DESCRIPTION: Other drivers that use the ACPI subsystem should call this |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 120 | * before making any other calls, to ensure the subsystem |
| 121 | * initialized successfully. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 123 | ******************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 124 | acpi_status acpi_subsystem_status(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | { |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | if (acpi_gbl_startup_flags & ACPI_INITIALIZED_OK) { |
| 128 | return (AE_OK); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 129 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | return (AE_ERROR); |
| 131 | } |
| 132 | } |
| 133 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 134 | ACPI_EXPORT_SYMBOL(acpi_subsystem_status) |
| 135 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 136 | /******************************************************************************* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | * |
| 138 | * FUNCTION: acpi_get_system_info |
| 139 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 140 | * PARAMETERS: out_buffer - A buffer to receive the resources for the |
| 141 | * device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 143 | * RETURN: status - the status of the call |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | * |
| 145 | * DESCRIPTION: This function is called to get information about the current |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 146 | * state of the ACPI subsystem. It will return system information |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | * in the out_buffer. |
| 148 | * |
| 149 | * If the function fails an appropriate status will be returned |
| 150 | * and the value of out_buffer is undefined. |
| 151 | * |
| 152 | ******************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 153 | acpi_status acpi_get_system_info(struct acpi_buffer * out_buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 155 | struct acpi_system_info *info_ptr; |
| 156 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 158 | ACPI_FUNCTION_TRACE(acpi_get_system_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
| 160 | /* Parameter validation */ |
| 161 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 162 | status = acpi_ut_validate_buffer(out_buffer); |
| 163 | if (ACPI_FAILURE(status)) { |
| 164 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | /* Validate/Allocate/Clear caller buffer */ |
| 168 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 169 | status = |
| 170 | acpi_ut_initialize_buffer(out_buffer, |
| 171 | sizeof(struct acpi_system_info)); |
| 172 | if (ACPI_FAILURE(status)) { |
| 173 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | /* |
| 177 | * Populate the return buffer |
| 178 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 179 | info_ptr = (struct acpi_system_info *)out_buffer->pointer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 181 | info_ptr->acpi_ca_version = ACPI_CA_VERSION; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
| 183 | /* System flags (ACPI capabilities) */ |
| 184 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 185 | info_ptr->flags = ACPI_SYS_MODE_ACPI; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
| 187 | /* Timer resolution - 24 or 32 bits */ |
| 188 | |
Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 189 | if (acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | info_ptr->timer_resolution = 24; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 191 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | info_ptr->timer_resolution = 32; |
| 193 | } |
| 194 | |
| 195 | /* Clear the reserved fields */ |
| 196 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 197 | info_ptr->reserved1 = 0; |
| 198 | info_ptr->reserved2 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
| 200 | /* Current debug levels */ |
| 201 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 202 | info_ptr->debug_layer = acpi_dbg_layer; |
| 203 | info_ptr->debug_level = acpi_dbg_level; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 205 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 208 | ACPI_EXPORT_SYMBOL(acpi_get_system_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
| 210 | /***************************************************************************** |
| 211 | * |
| 212 | * FUNCTION: acpi_install_initialization_handler |
| 213 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 214 | * PARAMETERS: handler - Callback procedure |
| 215 | * function - Not (currently) used, see below |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | * |
| 217 | * RETURN: Status |
| 218 | * |
| 219 | * DESCRIPTION: Install an initialization handler |
| 220 | * |
| 221 | * TBD: When a second function is added, must save the Function also. |
| 222 | * |
| 223 | ****************************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 225 | acpi_install_initialization_handler(acpi_init_handler handler, u32 function) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | { |
| 227 | |
| 228 | if (!handler) { |
| 229 | return (AE_BAD_PARAMETER); |
| 230 | } |
| 231 | |
| 232 | if (acpi_gbl_init_handler) { |
| 233 | return (AE_ALREADY_EXISTS); |
| 234 | } |
| 235 | |
| 236 | acpi_gbl_init_handler = handler; |
Bob Moore | 68aafc3 | 2012-10-31 02:26:01 +0000 | [diff] [blame] | 237 | return (AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | } |
| 239 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 240 | ACPI_EXPORT_SYMBOL(acpi_install_initialization_handler) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 241 | #endif /* ACPI_FUTURE_USAGE */ |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | /***************************************************************************** |
| 244 | * |
| 245 | * FUNCTION: acpi_purge_cached_objects |
| 246 | * |
| 247 | * PARAMETERS: None |
| 248 | * |
| 249 | * RETURN: Status |
| 250 | * |
| 251 | * DESCRIPTION: Empty all caches (delete the cached objects) |
| 252 | * |
| 253 | ****************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 254 | acpi_status acpi_purge_cached_objects(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | { |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 256 | ACPI_FUNCTION_TRACE(acpi_purge_cached_objects); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 258 | (void)acpi_os_purge_cache(acpi_gbl_state_cache); |
| 259 | (void)acpi_os_purge_cache(acpi_gbl_operand_cache); |
| 260 | (void)acpi_os_purge_cache(acpi_gbl_ps_node_cache); |
| 261 | (void)acpi_os_purge_cache(acpi_gbl_ps_node_ext_cache); |
Bob Moore | 68aafc3 | 2012-10-31 02:26:01 +0000 | [diff] [blame] | 262 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 263 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | } |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 265 | |
| 266 | ACPI_EXPORT_SYMBOL(acpi_purge_cached_objects) |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 267 | |
| 268 | /***************************************************************************** |
| 269 | * |
| 270 | * FUNCTION: acpi_install_interface |
| 271 | * |
| 272 | * PARAMETERS: interface_name - The interface to install |
| 273 | * |
| 274 | * RETURN: Status |
| 275 | * |
| 276 | * DESCRIPTION: Install an _OSI interface to the global list |
| 277 | * |
| 278 | ****************************************************************************/ |
| 279 | acpi_status acpi_install_interface(acpi_string interface_name) |
| 280 | { |
| 281 | acpi_status status; |
| 282 | struct acpi_interface_info *interface_info; |
| 283 | |
| 284 | /* Parameter validation */ |
| 285 | |
| 286 | if (!interface_name || (ACPI_STRLEN(interface_name) == 0)) { |
| 287 | return (AE_BAD_PARAMETER); |
| 288 | } |
| 289 | |
Jung-uk Kim | 388a990 | 2013-04-12 00:24:34 +0000 | [diff] [blame] | 290 | status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER); |
| 291 | if (ACPI_FAILURE(status)) { |
| 292 | return (status); |
| 293 | } |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 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 | |
Jung-uk Kim | 388a990 | 2013-04-12 00:24:34 +0000 | [diff] [blame] | 342 | status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER); |
| 343 | if (ACPI_FAILURE(status)) { |
| 344 | return (status); |
| 345 | } |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 346 | |
| 347 | status = acpi_ut_remove_interface(interface_name); |
| 348 | |
| 349 | acpi_os_release_mutex(acpi_gbl_osi_mutex); |
| 350 | return (status); |
| 351 | } |
| 352 | |
| 353 | ACPI_EXPORT_SYMBOL(acpi_remove_interface) |
| 354 | |
| 355 | /***************************************************************************** |
| 356 | * |
| 357 | * FUNCTION: acpi_install_interface_handler |
| 358 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 359 | * PARAMETERS: handler - The _OSI interface handler to install |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 360 | * NULL means "remove existing handler" |
| 361 | * |
| 362 | * RETURN: Status |
| 363 | * |
| 364 | * DESCRIPTION: Install a handler for the predefined _OSI ACPI method. |
| 365 | * invoked during execution of the internal implementation of |
| 366 | * _OSI. A NULL handler simply removes any existing handler. |
| 367 | * |
| 368 | ****************************************************************************/ |
| 369 | acpi_status acpi_install_interface_handler(acpi_interface_handler handler) |
| 370 | { |
Jung-uk Kim | 388a990 | 2013-04-12 00:24:34 +0000 | [diff] [blame] | 371 | acpi_status status; |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 372 | |
Jung-uk Kim | 388a990 | 2013-04-12 00:24:34 +0000 | [diff] [blame] | 373 | status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER); |
| 374 | if (ACPI_FAILURE(status)) { |
| 375 | return (status); |
| 376 | } |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 377 | |
| 378 | if (handler && acpi_gbl_interface_handler) { |
| 379 | status = AE_ALREADY_EXISTS; |
| 380 | } else { |
| 381 | acpi_gbl_interface_handler = handler; |
| 382 | } |
| 383 | |
| 384 | acpi_os_release_mutex(acpi_gbl_osi_mutex); |
| 385 | return (status); |
| 386 | } |
| 387 | |
| 388 | ACPI_EXPORT_SYMBOL(acpi_install_interface_handler) |
Lin Ming | f654c0f | 2012-01-12 13:10:32 +0800 | [diff] [blame] | 389 | |
| 390 | /***************************************************************************** |
| 391 | * |
| 392 | * FUNCTION: acpi_check_address_range |
| 393 | * |
| 394 | * PARAMETERS: space_id - Address space ID |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 395 | * address - Start address |
| 396 | * length - Length |
| 397 | * warn - TRUE if warning on overlap desired |
Lin Ming | f654c0f | 2012-01-12 13:10:32 +0800 | [diff] [blame] | 398 | * |
| 399 | * RETURN: Count of the number of conflicts detected. |
| 400 | * |
| 401 | * DESCRIPTION: Check if the input address range overlaps any of the |
| 402 | * ASL operation region address ranges. |
| 403 | * |
| 404 | ****************************************************************************/ |
| 405 | u32 |
| 406 | acpi_check_address_range(acpi_adr_space_type space_id, |
| 407 | acpi_physical_address address, |
| 408 | acpi_size length, u8 warn) |
| 409 | { |
| 410 | u32 overlaps; |
| 411 | acpi_status status; |
| 412 | |
| 413 | status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE); |
| 414 | if (ACPI_FAILURE(status)) { |
| 415 | return (0); |
| 416 | } |
| 417 | |
| 418 | overlaps = acpi_ut_check_address_range(space_id, address, |
| 419 | (u32)length, warn); |
| 420 | |
| 421 | (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE); |
| 422 | return (overlaps); |
| 423 | } |
| 424 | |
| 425 | ACPI_EXPORT_SYMBOL(acpi_check_address_range) |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 426 | #endif /* !ACPI_ASL_COMPILER */ |
Bob Moore | be030a5 | 2012-08-17 13:07:54 +0800 | [diff] [blame] | 427 | /******************************************************************************* |
| 428 | * |
| 429 | * FUNCTION: acpi_decode_pld_buffer |
| 430 | * |
| 431 | * PARAMETERS: in_buffer - Buffer returned by _PLD method |
| 432 | * length - Length of the in_buffer |
| 433 | * return_buffer - Where the decode buffer is returned |
| 434 | * |
| 435 | * RETURN: Status and the decoded _PLD buffer. User must deallocate |
| 436 | * the buffer via ACPI_FREE. |
| 437 | * |
| 438 | * DESCRIPTION: Decode the bit-packed buffer returned by the _PLD method into |
| 439 | * a local struct that is much more useful to an ACPI driver. |
| 440 | * |
| 441 | ******************************************************************************/ |
| 442 | acpi_status |
| 443 | acpi_decode_pld_buffer(u8 *in_buffer, |
| 444 | acpi_size length, struct acpi_pld_info ** return_buffer) |
| 445 | { |
| 446 | struct acpi_pld_info *pld_info; |
| 447 | u32 *buffer = ACPI_CAST_PTR(u32, in_buffer); |
| 448 | u32 dword; |
| 449 | |
| 450 | /* Parameter validation */ |
| 451 | |
| 452 | if (!in_buffer || !return_buffer || (length < 16)) { |
| 453 | return (AE_BAD_PARAMETER); |
| 454 | } |
| 455 | |
| 456 | pld_info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_pld_info)); |
| 457 | if (!pld_info) { |
| 458 | return (AE_NO_MEMORY); |
| 459 | } |
| 460 | |
| 461 | /* First 32-bit DWord */ |
| 462 | |
| 463 | ACPI_MOVE_32_TO_32(&dword, &buffer[0]); |
| 464 | pld_info->revision = ACPI_PLD_GET_REVISION(&dword); |
| 465 | pld_info->ignore_color = ACPI_PLD_GET_IGNORE_COLOR(&dword); |
| 466 | pld_info->color = ACPI_PLD_GET_COLOR(&dword); |
| 467 | |
| 468 | /* Second 32-bit DWord */ |
| 469 | |
| 470 | ACPI_MOVE_32_TO_32(&dword, &buffer[1]); |
| 471 | pld_info->width = ACPI_PLD_GET_WIDTH(&dword); |
| 472 | pld_info->height = ACPI_PLD_GET_HEIGHT(&dword); |
| 473 | |
| 474 | /* Third 32-bit DWord */ |
| 475 | |
| 476 | ACPI_MOVE_32_TO_32(&dword, &buffer[2]); |
| 477 | pld_info->user_visible = ACPI_PLD_GET_USER_VISIBLE(&dword); |
| 478 | pld_info->dock = ACPI_PLD_GET_DOCK(&dword); |
| 479 | pld_info->lid = ACPI_PLD_GET_LID(&dword); |
| 480 | pld_info->panel = ACPI_PLD_GET_PANEL(&dword); |
| 481 | pld_info->vertical_position = ACPI_PLD_GET_VERTICAL(&dword); |
| 482 | pld_info->horizontal_position = ACPI_PLD_GET_HORIZONTAL(&dword); |
| 483 | pld_info->shape = ACPI_PLD_GET_SHAPE(&dword); |
| 484 | pld_info->group_orientation = ACPI_PLD_GET_ORIENTATION(&dword); |
| 485 | pld_info->group_token = ACPI_PLD_GET_TOKEN(&dword); |
| 486 | pld_info->group_position = ACPI_PLD_GET_POSITION(&dword); |
| 487 | pld_info->bay = ACPI_PLD_GET_BAY(&dword); |
| 488 | |
| 489 | /* Fourth 32-bit DWord */ |
| 490 | |
| 491 | ACPI_MOVE_32_TO_32(&dword, &buffer[3]); |
| 492 | pld_info->ejectable = ACPI_PLD_GET_EJECTABLE(&dword); |
| 493 | pld_info->ospm_eject_required = ACPI_PLD_GET_OSPM_EJECT(&dword); |
| 494 | pld_info->cabinet_number = ACPI_PLD_GET_CABINET(&dword); |
| 495 | pld_info->card_cage_number = ACPI_PLD_GET_CARD_CAGE(&dword); |
| 496 | pld_info->reference = ACPI_PLD_GET_REFERENCE(&dword); |
| 497 | pld_info->rotation = ACPI_PLD_GET_ROTATION(&dword); |
| 498 | pld_info->order = ACPI_PLD_GET_ORDER(&dword); |
| 499 | |
| 500 | if (length >= ACPI_PLD_BUFFER_SIZE) { |
| 501 | |
| 502 | /* Fifth 32-bit DWord (Revision 2 of _PLD) */ |
| 503 | |
| 504 | ACPI_MOVE_32_TO_32(&dword, &buffer[4]); |
| 505 | pld_info->vertical_offset = ACPI_PLD_GET_VERT_OFFSET(&dword); |
| 506 | pld_info->horizontal_offset = ACPI_PLD_GET_HORIZ_OFFSET(&dword); |
| 507 | } |
| 508 | |
| 509 | *return_buffer = pld_info; |
| 510 | return (AE_OK); |
| 511 | } |
| 512 | |
| 513 | ACPI_EXPORT_SYMBOL(acpi_decode_pld_buffer) |