Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Module Name: utxface - External interfaces for "global" ACPI functions |
| 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 | |
Bob Moore | e20a679 | 2008-04-10 19:06:38 +0400 | [diff] [blame] | 56 | #ifndef ACPI_ASL_COMPILER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | /******************************************************************************* |
| 58 | * |
| 59 | * FUNCTION: acpi_initialize_subsystem |
| 60 | * |
| 61 | * PARAMETERS: None |
| 62 | * |
| 63 | * RETURN: Status |
| 64 | * |
| 65 | * DESCRIPTION: Initializes all global variables. This is the first function |
| 66 | * called, so any early initialization belongs here. |
| 67 | * |
| 68 | ******************************************************************************/ |
Len Brown | dd272b5 | 2007-05-30 00:26:11 -0400 | [diff] [blame] | 69 | acpi_status __init acpi_initialize_subsystem(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 71 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 73 | ACPI_FUNCTION_TRACE(acpi_initialize_subsystem); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 74 | |
Bob Moore | cb219bb | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 75 | acpi_gbl_startup_flags = ACPI_SUBSYSTEM_INITIALIZE; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 76 | ACPI_DEBUG_EXEC(acpi_ut_init_stack_ptr_trace()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | /* Initialize the OS-Dependent layer */ |
| 79 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 80 | status = acpi_os_initialize(); |
| 81 | if (ACPI_FAILURE(status)) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 82 | ACPI_EXCEPTION((AE_INFO, status, "During OSL initialization")); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 83 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | } |
| 85 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 86 | /* Initialize all globals used by the subsystem */ |
| 87 | |
Yi Yang | b417d40 | 2008-08-04 10:30:09 +0800 | [diff] [blame] | 88 | status = acpi_ut_init_globals(); |
| 89 | if (ACPI_FAILURE(status)) { |
| 90 | ACPI_EXCEPTION((AE_INFO, status, |
| 91 | "During initialization of globals")); |
| 92 | return_ACPI_STATUS(status); |
| 93 | } |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 94 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | /* Create the default mutex objects */ |
| 96 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 97 | status = acpi_ut_mutex_initialize(); |
| 98 | if (ACPI_FAILURE(status)) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 99 | ACPI_EXCEPTION((AE_INFO, status, |
| 100 | "During Global Mutex creation")); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 101 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | /* |
| 105 | * Initialize the namespace manager and |
| 106 | * the root of the namespace tree |
| 107 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 108 | status = acpi_ns_root_initialize(); |
| 109 | if (ACPI_FAILURE(status)) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 110 | ACPI_EXCEPTION((AE_INFO, status, |
| 111 | "During Namespace initialization")); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 112 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | } |
| 114 | |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 115 | /* Initialize the global OSI interfaces list with the static names */ |
| 116 | |
| 117 | status = acpi_ut_initialize_interfaces(); |
| 118 | if (ACPI_FAILURE(status)) { |
| 119 | ACPI_EXCEPTION((AE_INFO, status, |
| 120 | "During OSI interfaces initialization")); |
| 121 | return_ACPI_STATUS(status); |
| 122 | } |
| 123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | /* If configured, initialize the AML debugger */ |
| 125 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 126 | ACPI_DEBUGGER_EXEC(status = acpi_db_initialize()); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 127 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | } |
| 129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | /******************************************************************************* |
| 131 | * |
| 132 | * FUNCTION: acpi_enable_subsystem |
| 133 | * |
| 134 | * PARAMETERS: Flags - Init/enable Options |
| 135 | * |
| 136 | * RETURN: Status |
| 137 | * |
| 138 | * DESCRIPTION: Completes the subsystem initialization including hardware. |
| 139 | * Puts system into ACPI mode if it isn't already. |
| 140 | * |
| 141 | ******************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 142 | acpi_status acpi_enable_subsystem(u32 flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 144 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 146 | ACPI_FUNCTION_TRACE(acpi_enable_subsystem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 148 | #if (!ACPI_REDUCED_HARDWARE) |
| 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | /* Enable ACPI mode */ |
| 151 | |
| 152 | if (!(flags & ACPI_NO_ACPI_ENABLE)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 153 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |
| 154 | "[Init] Going into ACPI mode\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
| 156 | acpi_gbl_original_mode = acpi_hw_get_mode(); |
| 157 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 158 | status = acpi_enable(); |
| 159 | if (ACPI_FAILURE(status)) { |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 160 | ACPI_WARNING((AE_INFO, "AcpiEnable failed")); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 161 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | } |
| 163 | } |
| 164 | |
| 165 | /* |
Bob Moore | 009c4cbe | 2008-11-12 15:34:52 +0800 | [diff] [blame] | 166 | * Obtain a permanent mapping for the FACS. This is required for the |
| 167 | * Global Lock and the Firmware Waking Vector |
| 168 | */ |
| 169 | status = acpi_tb_initialize_facs(); |
| 170 | if (ACPI_FAILURE(status)) { |
| 171 | ACPI_WARNING((AE_INFO, "Could not map the FACS table")); |
| 172 | return_ACPI_STATUS(status); |
| 173 | } |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 174 | #endif /* !ACPI_REDUCED_HARDWARE */ |
Bob Moore | 009c4cbe | 2008-11-12 15:34:52 +0800 | [diff] [blame] | 175 | |
| 176 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | * Install the default op_region handlers. These are installed unless |
| 178 | * other handlers have already been installed via the |
| 179 | * install_address_space_handler interface. |
| 180 | */ |
| 181 | if (!(flags & ACPI_NO_ADDRESS_SPACE_INIT)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 182 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |
| 183 | "[Init] Installing default address space handlers\n")); |
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 | status = acpi_ev_install_region_handlers(); |
| 186 | if (ACPI_FAILURE(status)) { |
| 187 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | } |
| 189 | } |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 190 | #if (!ACPI_REDUCED_HARDWARE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | /* |
| 192 | * Initialize ACPI Event handling (Fixed and General Purpose) |
| 193 | * |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 194 | * Note1: We must have the hardware and events initialized before we can |
| 195 | * execute any control methods safely. Any control method can require |
| 196 | * ACPI hardware support, so the hardware must be fully initialized before |
| 197 | * any method execution! |
| 198 | * |
| 199 | * Note2: Fixed events are initialized and enabled here. GPEs are |
| 200 | * initialized, but cannot be enabled until after the hardware is |
| 201 | * completely initialized (SCI and global_lock activated) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | */ |
| 203 | if (!(flags & ACPI_NO_EVENT_INIT)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 204 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |
| 205 | "[Init] Initializing ACPI events\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 207 | status = acpi_ev_initialize_events(); |
| 208 | if (ACPI_FAILURE(status)) { |
| 209 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | } |
| 211 | } |
| 212 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 213 | /* |
| 214 | * Install the SCI handler and Global Lock handler. This completes the |
| 215 | * hardware initialization. |
| 216 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | if (!(flags & ACPI_NO_HANDLER_INIT)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 218 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |
| 219 | "[Init] Installing SCI/GL handlers\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 221 | status = acpi_ev_install_xrupt_handlers(); |
| 222 | if (ACPI_FAILURE(status)) { |
| 223 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | } |
| 225 | } |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 226 | #endif /* !ACPI_REDUCED_HARDWARE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 228 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | } |
| 230 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 231 | ACPI_EXPORT_SYMBOL(acpi_enable_subsystem) |
| 232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | /******************************************************************************* |
| 234 | * |
| 235 | * FUNCTION: acpi_initialize_objects |
| 236 | * |
| 237 | * PARAMETERS: Flags - Init/enable Options |
| 238 | * |
| 239 | * RETURN: Status |
| 240 | * |
| 241 | * DESCRIPTION: Completes namespace initialization by initializing device |
| 242 | * objects and executing AML code for Regions, buffers, etc. |
| 243 | * |
| 244 | ******************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 245 | acpi_status acpi_initialize_objects(u32 flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 247 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 249 | ACPI_FUNCTION_TRACE(acpi_initialize_objects); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | |
| 251 | /* |
| 252 | * Run all _REG methods |
| 253 | * |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 254 | * Note: Any objects accessed by the _REG methods will be automatically |
| 255 | * initialized, even if they contain executable AML (see the call to |
| 256 | * acpi_ns_initialize_objects below). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | */ |
| 258 | if (!(flags & ACPI_NO_ADDRESS_SPACE_INIT)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 259 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 260 | "[Init] Executing _REG OpRegion methods\n")); |
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 | status = acpi_ev_initialize_op_regions(); |
| 263 | if (ACPI_FAILURE(status)) { |
| 264 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | } |
| 266 | } |
| 267 | |
| 268 | /* |
Lin Ming | 7f0c826 | 2009-08-13 14:03:15 +0800 | [diff] [blame] | 269 | * Execute any module-level code that was detected during the table load |
| 270 | * phase. Although illegal since ACPI 2.0, there are many machines that |
| 271 | * contain this type of code. Each block of detected executable AML code |
| 272 | * outside of any control method is wrapped with a temporary control |
| 273 | * method object and placed on a global list. The methods on this list |
| 274 | * are executed below. |
| 275 | */ |
| 276 | acpi_ns_exec_module_code_list(); |
| 277 | |
| 278 | /* |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 279 | * Initialize the objects that remain uninitialized. This runs the |
| 280 | * executable AML that may be part of the declaration of these objects: |
| 281 | * operation_regions, buffer_fields, Buffers, and Packages. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | */ |
| 283 | if (!(flags & ACPI_NO_OBJECT_INIT)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 284 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |
| 285 | "[Init] Completing Initialization of ACPI Objects\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 287 | status = acpi_ns_initialize_objects(); |
| 288 | if (ACPI_FAILURE(status)) { |
| 289 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | } |
| 291 | } |
| 292 | |
| 293 | /* |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 294 | * Initialize all device objects in the namespace. This runs the device |
| 295 | * _STA and _INI methods. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | */ |
| 297 | if (!(flags & ACPI_NO_DEVICE_INIT)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 298 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |
| 299 | "[Init] Initializing ACPI Devices\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 301 | status = acpi_ns_initialize_devices(); |
| 302 | if (ACPI_FAILURE(status)) { |
| 303 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | } |
| 305 | } |
| 306 | |
| 307 | /* |
| 308 | * Empty the caches (delete the cached objects) on the assumption that |
| 309 | * the table load filled them up more than they will be at runtime -- |
| 310 | * thus wasting non-paged memory. |
| 311 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 312 | status = acpi_purge_cached_objects(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | |
| 314 | acpi_gbl_startup_flags |= ACPI_INITIALIZED_OK; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 315 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | } |
| 317 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 318 | ACPI_EXPORT_SYMBOL(acpi_initialize_objects) |
| 319 | |
Bob Moore | e20a679 | 2008-04-10 19:06:38 +0400 | [diff] [blame] | 320 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | /******************************************************************************* |
| 322 | * |
| 323 | * FUNCTION: acpi_terminate |
| 324 | * |
| 325 | * PARAMETERS: None |
| 326 | * |
| 327 | * RETURN: Status |
| 328 | * |
Bob Moore | 2f977b3 | 2009-07-24 11:25:16 +0800 | [diff] [blame] | 329 | * DESCRIPTION: Shutdown the ACPICA subsystem and release all resources. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | * |
| 331 | ******************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 332 | acpi_status acpi_terminate(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 334 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 336 | ACPI_FUNCTION_TRACE(acpi_terminate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Bob Moore | 2f977b3 | 2009-07-24 11:25:16 +0800 | [diff] [blame] | 338 | /* Just exit if subsystem is already shutdown */ |
| 339 | |
| 340 | if (acpi_gbl_shutdown) { |
| 341 | ACPI_ERROR((AE_INFO, "ACPI Subsystem is already terminated")); |
| 342 | return_ACPI_STATUS(AE_OK); |
| 343 | } |
| 344 | |
| 345 | /* Subsystem appears active, go ahead and shut it down */ |
| 346 | |
| 347 | acpi_gbl_shutdown = TRUE; |
| 348 | acpi_gbl_startup_flags = 0; |
| 349 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Shutting down ACPI Subsystem\n")); |
| 350 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | /* Terminate the AML Debugger if present */ |
| 352 | |
| 353 | ACPI_DEBUGGER_EXEC(acpi_gbl_db_terminate_threads = TRUE); |
| 354 | |
| 355 | /* Shutdown and free all resources */ |
| 356 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 357 | acpi_ut_subsystem_shutdown(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | |
| 359 | /* Free the mutex objects */ |
| 360 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 361 | acpi_ut_mutex_terminate(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
| 363 | #ifdef ACPI_DEBUGGER |
| 364 | |
| 365 | /* Shut down the debugger */ |
| 366 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 367 | acpi_db_terminate(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | #endif |
| 369 | |
| 370 | /* Now we can shutdown the OS-dependent layer */ |
| 371 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 372 | status = acpi_os_terminate(); |
| 373 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | } |
| 375 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 376 | ACPI_EXPORT_SYMBOL(acpi_terminate) |
Bob Moore | 2f977b3 | 2009-07-24 11:25:16 +0800 | [diff] [blame] | 377 | |
Bob Moore | e20a679 | 2008-04-10 19:06:38 +0400 | [diff] [blame] | 378 | #ifndef ACPI_ASL_COMPILER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | #ifdef ACPI_FUTURE_USAGE |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 380 | /******************************************************************************* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | * |
| 382 | * FUNCTION: acpi_subsystem_status |
| 383 | * |
| 384 | * PARAMETERS: None |
| 385 | * |
| 386 | * RETURN: Status of the ACPI subsystem |
| 387 | * |
| 388 | * DESCRIPTION: Other drivers that use the ACPI subsystem should call this |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 389 | * before making any other calls, to ensure the subsystem |
| 390 | * initialized successfully. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 392 | ******************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 393 | acpi_status acpi_subsystem_status(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | { |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 395 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | if (acpi_gbl_startup_flags & ACPI_INITIALIZED_OK) { |
| 397 | return (AE_OK); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 398 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | return (AE_ERROR); |
| 400 | } |
| 401 | } |
| 402 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 403 | ACPI_EXPORT_SYMBOL(acpi_subsystem_status) |
| 404 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 405 | /******************************************************************************* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | * |
| 407 | * FUNCTION: acpi_get_system_info |
| 408 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 409 | * PARAMETERS: out_buffer - A buffer to receive the resources for the |
| 410 | * device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | * |
| 412 | * RETURN: Status - the status of the call |
| 413 | * |
| 414 | * DESCRIPTION: This function is called to get information about the current |
| 415 | * state of the ACPI subsystem. It will return system information |
| 416 | * in the out_buffer. |
| 417 | * |
| 418 | * If the function fails an appropriate status will be returned |
| 419 | * and the value of out_buffer is undefined. |
| 420 | * |
| 421 | ******************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 422 | acpi_status acpi_get_system_info(struct acpi_buffer * out_buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 424 | struct acpi_system_info *info_ptr; |
| 425 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 427 | ACPI_FUNCTION_TRACE(acpi_get_system_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
| 429 | /* Parameter validation */ |
| 430 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 431 | status = acpi_ut_validate_buffer(out_buffer); |
| 432 | if (ACPI_FAILURE(status)) { |
| 433 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | } |
| 435 | |
| 436 | /* Validate/Allocate/Clear caller buffer */ |
| 437 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 438 | status = |
| 439 | acpi_ut_initialize_buffer(out_buffer, |
| 440 | sizeof(struct acpi_system_info)); |
| 441 | if (ACPI_FAILURE(status)) { |
| 442 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | } |
| 444 | |
| 445 | /* |
| 446 | * Populate the return buffer |
| 447 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 448 | info_ptr = (struct acpi_system_info *)out_buffer->pointer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 450 | info_ptr->acpi_ca_version = ACPI_CA_VERSION; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | |
| 452 | /* System flags (ACPI capabilities) */ |
| 453 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 454 | info_ptr->flags = ACPI_SYS_MODE_ACPI; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | |
| 456 | /* Timer resolution - 24 or 32 bits */ |
| 457 | |
Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 458 | if (acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | info_ptr->timer_resolution = 24; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 460 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | info_ptr->timer_resolution = 32; |
| 462 | } |
| 463 | |
| 464 | /* Clear the reserved fields */ |
| 465 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 466 | info_ptr->reserved1 = 0; |
| 467 | info_ptr->reserved2 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | |
| 469 | /* Current debug levels */ |
| 470 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 471 | info_ptr->debug_layer = acpi_dbg_layer; |
| 472 | info_ptr->debug_level = acpi_dbg_level; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 474 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 477 | ACPI_EXPORT_SYMBOL(acpi_get_system_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | |
| 479 | /***************************************************************************** |
| 480 | * |
| 481 | * FUNCTION: acpi_install_initialization_handler |
| 482 | * |
| 483 | * PARAMETERS: Handler - Callback procedure |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 484 | * Function - Not (currently) used, see below |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | * |
| 486 | * RETURN: Status |
| 487 | * |
| 488 | * DESCRIPTION: Install an initialization handler |
| 489 | * |
| 490 | * TBD: When a second function is added, must save the Function also. |
| 491 | * |
| 492 | ****************************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 494 | acpi_install_initialization_handler(acpi_init_handler handler, u32 function) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | { |
| 496 | |
| 497 | if (!handler) { |
| 498 | return (AE_BAD_PARAMETER); |
| 499 | } |
| 500 | |
| 501 | if (acpi_gbl_init_handler) { |
| 502 | return (AE_ALREADY_EXISTS); |
| 503 | } |
| 504 | |
| 505 | acpi_gbl_init_handler = handler; |
| 506 | return AE_OK; |
| 507 | } |
| 508 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 509 | ACPI_EXPORT_SYMBOL(acpi_install_initialization_handler) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 510 | #endif /* ACPI_FUTURE_USAGE */ |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 511 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | /***************************************************************************** |
| 513 | * |
| 514 | * FUNCTION: acpi_purge_cached_objects |
| 515 | * |
| 516 | * PARAMETERS: None |
| 517 | * |
| 518 | * RETURN: Status |
| 519 | * |
| 520 | * DESCRIPTION: Empty all caches (delete the cached objects) |
| 521 | * |
| 522 | ****************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 523 | acpi_status acpi_purge_cached_objects(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | { |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 525 | ACPI_FUNCTION_TRACE(acpi_purge_cached_objects); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 527 | (void)acpi_os_purge_cache(acpi_gbl_state_cache); |
| 528 | (void)acpi_os_purge_cache(acpi_gbl_operand_cache); |
| 529 | (void)acpi_os_purge_cache(acpi_gbl_ps_node_cache); |
| 530 | (void)acpi_os_purge_cache(acpi_gbl_ps_node_ext_cache); |
| 531 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | } |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 533 | |
| 534 | ACPI_EXPORT_SYMBOL(acpi_purge_cached_objects) |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 535 | |
| 536 | /***************************************************************************** |
| 537 | * |
| 538 | * FUNCTION: acpi_install_interface |
| 539 | * |
| 540 | * PARAMETERS: interface_name - The interface to install |
| 541 | * |
| 542 | * RETURN: Status |
| 543 | * |
| 544 | * DESCRIPTION: Install an _OSI interface to the global list |
| 545 | * |
| 546 | ****************************************************************************/ |
| 547 | acpi_status acpi_install_interface(acpi_string interface_name) |
| 548 | { |
| 549 | acpi_status status; |
| 550 | struct acpi_interface_info *interface_info; |
| 551 | |
| 552 | /* Parameter validation */ |
| 553 | |
| 554 | if (!interface_name || (ACPI_STRLEN(interface_name) == 0)) { |
| 555 | return (AE_BAD_PARAMETER); |
| 556 | } |
| 557 | |
| 558 | (void)acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER); |
| 559 | |
| 560 | /* Check if the interface name is already in the global list */ |
| 561 | |
| 562 | interface_info = acpi_ut_get_interface(interface_name); |
| 563 | if (interface_info) { |
| 564 | /* |
| 565 | * The interface already exists in the list. This is OK if the |
| 566 | * interface has been marked invalid -- just clear the bit. |
| 567 | */ |
| 568 | if (interface_info->flags & ACPI_OSI_INVALID) { |
| 569 | interface_info->flags &= ~ACPI_OSI_INVALID; |
| 570 | status = AE_OK; |
| 571 | } else { |
| 572 | status = AE_ALREADY_EXISTS; |
| 573 | } |
| 574 | } else { |
| 575 | /* New interface name, install into the global list */ |
| 576 | |
| 577 | status = acpi_ut_install_interface(interface_name); |
| 578 | } |
| 579 | |
| 580 | acpi_os_release_mutex(acpi_gbl_osi_mutex); |
| 581 | return (status); |
| 582 | } |
| 583 | |
| 584 | ACPI_EXPORT_SYMBOL(acpi_install_interface) |
| 585 | |
| 586 | /***************************************************************************** |
| 587 | * |
| 588 | * FUNCTION: acpi_remove_interface |
| 589 | * |
| 590 | * PARAMETERS: interface_name - The interface to remove |
| 591 | * |
| 592 | * RETURN: Status |
| 593 | * |
| 594 | * DESCRIPTION: Remove an _OSI interface from the global list |
| 595 | * |
| 596 | ****************************************************************************/ |
| 597 | acpi_status acpi_remove_interface(acpi_string interface_name) |
| 598 | { |
| 599 | acpi_status status; |
| 600 | |
| 601 | /* Parameter validation */ |
| 602 | |
| 603 | if (!interface_name || (ACPI_STRLEN(interface_name) == 0)) { |
| 604 | return (AE_BAD_PARAMETER); |
| 605 | } |
| 606 | |
| 607 | (void)acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER); |
| 608 | |
| 609 | status = acpi_ut_remove_interface(interface_name); |
| 610 | |
| 611 | acpi_os_release_mutex(acpi_gbl_osi_mutex); |
| 612 | return (status); |
| 613 | } |
| 614 | |
| 615 | ACPI_EXPORT_SYMBOL(acpi_remove_interface) |
| 616 | |
| 617 | /***************************************************************************** |
| 618 | * |
| 619 | * FUNCTION: acpi_install_interface_handler |
| 620 | * |
| 621 | * PARAMETERS: Handler - The _OSI interface handler to install |
| 622 | * NULL means "remove existing handler" |
| 623 | * |
| 624 | * RETURN: Status |
| 625 | * |
| 626 | * DESCRIPTION: Install a handler for the predefined _OSI ACPI method. |
| 627 | * invoked during execution of the internal implementation of |
| 628 | * _OSI. A NULL handler simply removes any existing handler. |
| 629 | * |
| 630 | ****************************************************************************/ |
| 631 | acpi_status acpi_install_interface_handler(acpi_interface_handler handler) |
| 632 | { |
| 633 | acpi_status status = AE_OK; |
| 634 | |
| 635 | (void)acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER); |
| 636 | |
| 637 | if (handler && acpi_gbl_interface_handler) { |
| 638 | status = AE_ALREADY_EXISTS; |
| 639 | } else { |
| 640 | acpi_gbl_interface_handler = handler; |
| 641 | } |
| 642 | |
| 643 | acpi_os_release_mutex(acpi_gbl_osi_mutex); |
| 644 | return (status); |
| 645 | } |
| 646 | |
| 647 | ACPI_EXPORT_SYMBOL(acpi_install_interface_handler) |
Lin Ming | f654c0f | 2012-01-12 13:10:32 +0800 | [diff] [blame] | 648 | |
| 649 | /***************************************************************************** |
| 650 | * |
| 651 | * FUNCTION: acpi_check_address_range |
| 652 | * |
| 653 | * PARAMETERS: space_id - Address space ID |
| 654 | * Address - Start address |
| 655 | * Length - Length |
| 656 | * Warn - TRUE if warning on overlap desired |
| 657 | * |
| 658 | * RETURN: Count of the number of conflicts detected. |
| 659 | * |
| 660 | * DESCRIPTION: Check if the input address range overlaps any of the |
| 661 | * ASL operation region address ranges. |
| 662 | * |
| 663 | ****************************************************************************/ |
| 664 | u32 |
| 665 | acpi_check_address_range(acpi_adr_space_type space_id, |
| 666 | acpi_physical_address address, |
| 667 | acpi_size length, u8 warn) |
| 668 | { |
| 669 | u32 overlaps; |
| 670 | acpi_status status; |
| 671 | |
| 672 | status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE); |
| 673 | if (ACPI_FAILURE(status)) { |
| 674 | return (0); |
| 675 | } |
| 676 | |
| 677 | overlaps = acpi_ut_check_address_range(space_id, address, |
| 678 | (u32)length, warn); |
| 679 | |
| 680 | (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE); |
| 681 | return (overlaps); |
| 682 | } |
| 683 | |
| 684 | ACPI_EXPORT_SYMBOL(acpi_check_address_range) |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 685 | #endif /* !ACPI_ASL_COMPILER */ |