blob: c2da90f5fbe9bed9cea7cd71aae0991f16df74a8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: utxface - External interfaces for "global" ACPI functions
4 *
5 *****************************************************************************/
6
7/*
Bob Moorea8357b02010-01-22 19:07:36 +08008 * Copyright (C) 2000 - 2010, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acevents.h"
47#include "acnamesp.h"
48#include "acdebug.h"
49#include "actables.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#define _COMPONENT ACPI_UTILITIES
Len Brown4be44fc2005-08-05 00:44:28 -040052ACPI_MODULE_NAME("utxface")
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Bob Mooree20a6792008-04-10 19:06:38 +040054#ifndef ACPI_ASL_COMPILER
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/*******************************************************************************
56 *
57 * FUNCTION: acpi_initialize_subsystem
58 *
59 * PARAMETERS: None
60 *
61 * RETURN: Status
62 *
63 * DESCRIPTION: Initializes all global variables. This is the first function
64 * called, so any early initialization belongs here.
65 *
66 ******************************************************************************/
Len Browndd272b52007-05-30 00:26:11 -040067acpi_status __init acpi_initialize_subsystem(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Len Brown4be44fc2005-08-05 00:44:28 -040069 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Bob Mooreb229cf92006-04-21 17:15:00 -040071 ACPI_FUNCTION_TRACE(acpi_initialize_subsystem);
Robert Moore44f6c012005-04-18 22:49:35 -040072
Bob Moorecb219bb2007-02-02 19:48:21 +030073 acpi_gbl_startup_flags = ACPI_SUBSYSTEM_INITIALIZE;
Len Brown4be44fc2005-08-05 00:44:28 -040074 ACPI_DEBUG_EXEC(acpi_ut_init_stack_ptr_trace());
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 /* Initialize the OS-Dependent layer */
77
Len Brown4be44fc2005-08-05 00:44:28 -040078 status = acpi_os_initialize();
79 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -050080 ACPI_EXCEPTION((AE_INFO, status, "During OSL initialization"));
Len Brown4be44fc2005-08-05 00:44:28 -040081 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 }
83
Robert Moore73459f72005-06-24 00:00:00 -040084 /* Initialize all globals used by the subsystem */
85
Yi Yangb417d402008-08-04 10:30:09 +080086 status = acpi_ut_init_globals();
87 if (ACPI_FAILURE(status)) {
88 ACPI_EXCEPTION((AE_INFO, status,
89 "During initialization of globals"));
90 return_ACPI_STATUS(status);
91 }
Robert Moore73459f72005-06-24 00:00:00 -040092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 /* Create the default mutex objects */
94
Len Brown4be44fc2005-08-05 00:44:28 -040095 status = acpi_ut_mutex_initialize();
96 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -050097 ACPI_EXCEPTION((AE_INFO, status,
98 "During Global Mutex creation"));
Len Brown4be44fc2005-08-05 00:44:28 -040099 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
101
102 /*
103 * Initialize the namespace manager and
104 * the root of the namespace tree
105 */
Len Brown4be44fc2005-08-05 00:44:28 -0400106 status = acpi_ns_root_initialize();
107 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500108 ACPI_EXCEPTION((AE_INFO, status,
109 "During Namespace initialization"));
Len Brown4be44fc2005-08-05 00:44:28 -0400110 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
112
Lin Mingb0ed7a92010-08-06 09:35:51 +0800113 /* Initialize the global OSI interfaces list with the static names */
114
115 status = acpi_ut_initialize_interfaces();
116 if (ACPI_FAILURE(status)) {
117 ACPI_EXCEPTION((AE_INFO, status,
118 "During OSI interfaces initialization"));
119 return_ACPI_STATUS(status);
120 }
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 /* If configured, initialize the AML debugger */
123
Len Brown4be44fc2005-08-05 00:44:28 -0400124 ACPI_DEBUGGER_EXEC(status = acpi_db_initialize());
Len Brown4be44fc2005-08-05 00:44:28 -0400125 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/*******************************************************************************
129 *
130 * FUNCTION: acpi_enable_subsystem
131 *
132 * PARAMETERS: Flags - Init/enable Options
133 *
134 * RETURN: Status
135 *
136 * DESCRIPTION: Completes the subsystem initialization including hardware.
137 * Puts system into ACPI mode if it isn't already.
138 *
139 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400140acpi_status acpi_enable_subsystem(u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Len Brown4be44fc2005-08-05 00:44:28 -0400142 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Bob Mooreb229cf92006-04-21 17:15:00 -0400144 ACPI_FUNCTION_TRACE(acpi_enable_subsystem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 /* Enable ACPI mode */
147
148 if (!(flags & ACPI_NO_ACPI_ENABLE)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400149 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
150 "[Init] Going into ACPI mode\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 acpi_gbl_original_mode = acpi_hw_get_mode();
153
Len Brown4be44fc2005-08-05 00:44:28 -0400154 status = acpi_enable();
155 if (ACPI_FAILURE(status)) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400156 ACPI_WARNING((AE_INFO, "AcpiEnable failed"));
Len Brown4be44fc2005-08-05 00:44:28 -0400157 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159 }
160
161 /*
Bob Moore009c4cbe2008-11-12 15:34:52 +0800162 * Obtain a permanent mapping for the FACS. This is required for the
163 * Global Lock and the Firmware Waking Vector
164 */
165 status = acpi_tb_initialize_facs();
166 if (ACPI_FAILURE(status)) {
167 ACPI_WARNING((AE_INFO, "Could not map the FACS table"));
168 return_ACPI_STATUS(status);
169 }
170
171 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 * Install the default op_region handlers. These are installed unless
173 * other handlers have already been installed via the
174 * install_address_space_handler interface.
175 */
176 if (!(flags & ACPI_NO_ADDRESS_SPACE_INIT)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400177 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
178 "[Init] Installing default address space handlers\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Len Brown4be44fc2005-08-05 00:44:28 -0400180 status = acpi_ev_install_region_handlers();
181 if (ACPI_FAILURE(status)) {
182 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184 }
185
186 /*
187 * Initialize ACPI Event handling (Fixed and General Purpose)
188 *
Bob Moore96db2552005-11-02 00:00:00 -0500189 * Note1: We must have the hardware and events initialized before we can
190 * execute any control methods safely. Any control method can require
191 * ACPI hardware support, so the hardware must be fully initialized before
192 * any method execution!
193 *
194 * Note2: Fixed events are initialized and enabled here. GPEs are
195 * initialized, but cannot be enabled until after the hardware is
196 * completely initialized (SCI and global_lock activated)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 */
198 if (!(flags & ACPI_NO_EVENT_INIT)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400199 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
200 "[Init] Initializing ACPI events\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Len Brown4be44fc2005-08-05 00:44:28 -0400202 status = acpi_ev_initialize_events();
203 if (ACPI_FAILURE(status)) {
204 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206 }
207
Bob Moore96db2552005-11-02 00:00:00 -0500208 /*
209 * Install the SCI handler and Global Lock handler. This completes the
210 * hardware initialization.
211 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (!(flags & ACPI_NO_HANDLER_INIT)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400213 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
214 "[Init] Installing SCI/GL handlers\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Len Brown4be44fc2005-08-05 00:44:28 -0400216 status = acpi_ev_install_xrupt_handlers();
217 if (ACPI_FAILURE(status)) {
218 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
220 }
221
Len Brown4be44fc2005-08-05 00:44:28 -0400222 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Bob Moore83135242006-10-03 00:00:00 -0400225ACPI_EXPORT_SYMBOL(acpi_enable_subsystem)
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227/*******************************************************************************
228 *
229 * FUNCTION: acpi_initialize_objects
230 *
231 * PARAMETERS: Flags - Init/enable Options
232 *
233 * RETURN: Status
234 *
235 * DESCRIPTION: Completes namespace initialization by initializing device
236 * objects and executing AML code for Regions, buffers, etc.
237 *
238 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400239acpi_status acpi_initialize_objects(u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Len Brown4be44fc2005-08-05 00:44:28 -0400241 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Bob Mooreb229cf92006-04-21 17:15:00 -0400243 ACPI_FUNCTION_TRACE(acpi_initialize_objects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 /*
246 * Run all _REG methods
247 *
Bob Moore96db2552005-11-02 00:00:00 -0500248 * Note: Any objects accessed by the _REG methods will be automatically
249 * initialized, even if they contain executable AML (see the call to
250 * acpi_ns_initialize_objects below).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 */
252 if (!(flags & ACPI_NO_ADDRESS_SPACE_INIT)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400253 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
Bob Mooreb229cf92006-04-21 17:15:00 -0400254 "[Init] Executing _REG OpRegion methods\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown4be44fc2005-08-05 00:44:28 -0400256 status = acpi_ev_initialize_op_regions();
257 if (ACPI_FAILURE(status)) {
258 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
260 }
261
262 /*
Lin Ming7f0c8262009-08-13 14:03:15 +0800263 * Execute any module-level code that was detected during the table load
264 * phase. Although illegal since ACPI 2.0, there are many machines that
265 * contain this type of code. Each block of detected executable AML code
266 * outside of any control method is wrapped with a temporary control
267 * method object and placed on a global list. The methods on this list
268 * are executed below.
269 */
270 acpi_ns_exec_module_code_list();
271
272 /*
Bob Moore96db2552005-11-02 00:00:00 -0500273 * Initialize the objects that remain uninitialized. This runs the
274 * executable AML that may be part of the declaration of these objects:
275 * operation_regions, buffer_fields, Buffers, and Packages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 */
277 if (!(flags & ACPI_NO_OBJECT_INIT)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400278 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
279 "[Init] Completing Initialization of ACPI Objects\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Len Brown4be44fc2005-08-05 00:44:28 -0400281 status = acpi_ns_initialize_objects();
282 if (ACPI_FAILURE(status)) {
283 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
285 }
286
287 /*
Bob Moore96db2552005-11-02 00:00:00 -0500288 * Initialize all device objects in the namespace. This runs the device
289 * _STA and _INI methods.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 */
291 if (!(flags & ACPI_NO_DEVICE_INIT)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400292 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
293 "[Init] Initializing ACPI Devices\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Len Brown4be44fc2005-08-05 00:44:28 -0400295 status = acpi_ns_initialize_devices();
296 if (ACPI_FAILURE(status)) {
297 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299 }
300
301 /*
Alexey Starikovskiy20447022008-03-11 17:17:08 -0400302 * Complete the GPE initialization for the GPE blocks defined in the FADT
303 * (GPE block 0 and 1).
304 *
Rafael J. Wysocki98746472010-07-08 00:43:36 +0200305 * NOTE: Currently, there seems to be no need to run the _REG methods
306 * before enabling the GPEs.
Alexey Starikovskiy20447022008-03-11 17:17:08 -0400307 */
308 if (!(flags & ACPI_NO_EVENT_INIT)) {
309 status = acpi_ev_install_fadt_gpes();
310 if (ACPI_FAILURE(status))
311 return (status);
312 }
313
314 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 * Empty the caches (delete the cached objects) on the assumption that
316 * the table load filled them up more than they will be at runtime --
317 * thus wasting non-paged memory.
318 */
Len Brown4be44fc2005-08-05 00:44:28 -0400319 status = acpi_purge_cached_objects();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 acpi_gbl_startup_flags |= ACPI_INITIALIZED_OK;
Len Brown4be44fc2005-08-05 00:44:28 -0400322 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
Bob Moore83135242006-10-03 00:00:00 -0400325ACPI_EXPORT_SYMBOL(acpi_initialize_objects)
326
Bob Mooree20a6792008-04-10 19:06:38 +0400327#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328/*******************************************************************************
329 *
330 * FUNCTION: acpi_terminate
331 *
332 * PARAMETERS: None
333 *
334 * RETURN: Status
335 *
Bob Moore2f977b32009-07-24 11:25:16 +0800336 * DESCRIPTION: Shutdown the ACPICA subsystem and release all resources.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 *
338 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400339acpi_status acpi_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Len Brown4be44fc2005-08-05 00:44:28 -0400341 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Bob Mooreb229cf92006-04-21 17:15:00 -0400343 ACPI_FUNCTION_TRACE(acpi_terminate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Bob Moore2f977b32009-07-24 11:25:16 +0800345 /* Just exit if subsystem is already shutdown */
346
347 if (acpi_gbl_shutdown) {
348 ACPI_ERROR((AE_INFO, "ACPI Subsystem is already terminated"));
349 return_ACPI_STATUS(AE_OK);
350 }
351
352 /* Subsystem appears active, go ahead and shut it down */
353
354 acpi_gbl_shutdown = TRUE;
355 acpi_gbl_startup_flags = 0;
356 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Shutting down ACPI Subsystem\n"));
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 /* Terminate the AML Debugger if present */
359
360 ACPI_DEBUGGER_EXEC(acpi_gbl_db_terminate_threads = TRUE);
361
362 /* Shutdown and free all resources */
363
Len Brown4be44fc2005-08-05 00:44:28 -0400364 acpi_ut_subsystem_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 /* Free the mutex objects */
367
Len Brown4be44fc2005-08-05 00:44:28 -0400368 acpi_ut_mutex_terminate();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370#ifdef ACPI_DEBUGGER
371
372 /* Shut down the debugger */
373
Len Brown4be44fc2005-08-05 00:44:28 -0400374 acpi_db_terminate();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375#endif
376
377 /* Now we can shutdown the OS-dependent layer */
378
Len Brown4be44fc2005-08-05 00:44:28 -0400379 status = acpi_os_terminate();
380 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
Bob Moore83135242006-10-03 00:00:00 -0400383ACPI_EXPORT_SYMBOL(acpi_terminate)
Bob Moore2f977b32009-07-24 11:25:16 +0800384
Bob Mooree20a6792008-04-10 19:06:38 +0400385#ifndef ACPI_ASL_COMPILER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386#ifdef ACPI_FUTURE_USAGE
Robert Moore44f6c012005-04-18 22:49:35 -0400387/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 *
389 * FUNCTION: acpi_subsystem_status
390 *
391 * PARAMETERS: None
392 *
393 * RETURN: Status of the ACPI subsystem
394 *
395 * DESCRIPTION: Other drivers that use the ACPI subsystem should call this
Robert Moore44f6c012005-04-18 22:49:35 -0400396 * before making any other calls, to ensure the subsystem
397 * initialized successfully.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 *
Robert Moore44f6c012005-04-18 22:49:35 -0400399 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400400acpi_status acpi_subsystem_status(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Robert Moore44f6c012005-04-18 22:49:35 -0400402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (acpi_gbl_startup_flags & ACPI_INITIALIZED_OK) {
404 return (AE_OK);
Len Brown4be44fc2005-08-05 00:44:28 -0400405 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return (AE_ERROR);
407 }
408}
409
Bob Moore83135242006-10-03 00:00:00 -0400410ACPI_EXPORT_SYMBOL(acpi_subsystem_status)
411
Robert Moore44f6c012005-04-18 22:49:35 -0400412/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 *
414 * FUNCTION: acpi_get_system_info
415 *
Robert Moore44f6c012005-04-18 22:49:35 -0400416 * PARAMETERS: out_buffer - A buffer to receive the resources for the
417 * device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 *
419 * RETURN: Status - the status of the call
420 *
421 * DESCRIPTION: This function is called to get information about the current
422 * state of the ACPI subsystem. It will return system information
423 * in the out_buffer.
424 *
425 * If the function fails an appropriate status will be returned
426 * and the value of out_buffer is undefined.
427 *
428 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400429acpi_status acpi_get_system_info(struct acpi_buffer * out_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Len Brown4be44fc2005-08-05 00:44:28 -0400431 struct acpi_system_info *info_ptr;
432 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Bob Mooreb229cf92006-04-21 17:15:00 -0400434 ACPI_FUNCTION_TRACE(acpi_get_system_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 /* Parameter validation */
437
Len Brown4be44fc2005-08-05 00:44:28 -0400438 status = acpi_ut_validate_buffer(out_buffer);
439 if (ACPI_FAILURE(status)) {
440 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442
443 /* Validate/Allocate/Clear caller buffer */
444
Len Brown4be44fc2005-08-05 00:44:28 -0400445 status =
446 acpi_ut_initialize_buffer(out_buffer,
447 sizeof(struct acpi_system_info));
448 if (ACPI_FAILURE(status)) {
449 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451
452 /*
453 * Populate the return buffer
454 */
Len Brown4be44fc2005-08-05 00:44:28 -0400455 info_ptr = (struct acpi_system_info *)out_buffer->pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Len Brown4be44fc2005-08-05 00:44:28 -0400457 info_ptr->acpi_ca_version = ACPI_CA_VERSION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 /* System flags (ACPI capabilities) */
460
Len Brown4be44fc2005-08-05 00:44:28 -0400461 info_ptr->flags = ACPI_SYS_MODE_ACPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 /* Timer resolution - 24 or 32 bits */
464
Bob Mooref3d2e782007-02-02 19:48:18 +0300465 if (acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 info_ptr->timer_resolution = 24;
Len Brown4be44fc2005-08-05 00:44:28 -0400467 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 info_ptr->timer_resolution = 32;
469 }
470
471 /* Clear the reserved fields */
472
Len Brown4be44fc2005-08-05 00:44:28 -0400473 info_ptr->reserved1 = 0;
474 info_ptr->reserved2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 /* Current debug levels */
477
Len Brown4be44fc2005-08-05 00:44:28 -0400478 info_ptr->debug_layer = acpi_dbg_layer;
479 info_ptr->debug_level = acpi_dbg_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Len Brown4be44fc2005-08-05 00:44:28 -0400481 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Bob Moore83135242006-10-03 00:00:00 -0400484ACPI_EXPORT_SYMBOL(acpi_get_system_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486/*****************************************************************************
487 *
488 * FUNCTION: acpi_install_initialization_handler
489 *
490 * PARAMETERS: Handler - Callback procedure
Robert Moore44f6c012005-04-18 22:49:35 -0400491 * Function - Not (currently) used, see below
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 *
493 * RETURN: Status
494 *
495 * DESCRIPTION: Install an initialization handler
496 *
497 * TBD: When a second function is added, must save the Function also.
498 *
499 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400501acpi_install_initialization_handler(acpi_init_handler handler, u32 function)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
503
504 if (!handler) {
505 return (AE_BAD_PARAMETER);
506 }
507
508 if (acpi_gbl_init_handler) {
509 return (AE_ALREADY_EXISTS);
510 }
511
512 acpi_gbl_init_handler = handler;
513 return AE_OK;
514}
515
Bob Moore83135242006-10-03 00:00:00 -0400516ACPI_EXPORT_SYMBOL(acpi_install_initialization_handler)
Len Brown4be44fc2005-08-05 00:44:28 -0400517#endif /* ACPI_FUTURE_USAGE */
Lin Mingb0ed7a92010-08-06 09:35:51 +0800518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519/*****************************************************************************
520 *
521 * FUNCTION: acpi_purge_cached_objects
522 *
523 * PARAMETERS: None
524 *
525 * RETURN: Status
526 *
527 * DESCRIPTION: Empty all caches (delete the cached objects)
528 *
529 ****************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400530acpi_status acpi_purge_cached_objects(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Bob Mooreb229cf92006-04-21 17:15:00 -0400532 ACPI_FUNCTION_TRACE(acpi_purge_cached_objects);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Len Brown4be44fc2005-08-05 00:44:28 -0400534 (void)acpi_os_purge_cache(acpi_gbl_state_cache);
535 (void)acpi_os_purge_cache(acpi_gbl_operand_cache);
536 (void)acpi_os_purge_cache(acpi_gbl_ps_node_cache);
537 (void)acpi_os_purge_cache(acpi_gbl_ps_node_ext_cache);
538 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
Bob Moore83135242006-10-03 00:00:00 -0400540
541ACPI_EXPORT_SYMBOL(acpi_purge_cached_objects)
Lin Mingb0ed7a92010-08-06 09:35:51 +0800542
543/*****************************************************************************
544 *
545 * FUNCTION: acpi_install_interface
546 *
547 * PARAMETERS: interface_name - The interface to install
548 *
549 * RETURN: Status
550 *
551 * DESCRIPTION: Install an _OSI interface to the global list
552 *
553 ****************************************************************************/
554acpi_status acpi_install_interface(acpi_string interface_name)
555{
556 acpi_status status;
557 struct acpi_interface_info *interface_info;
558
559 /* Parameter validation */
560
561 if (!interface_name || (ACPI_STRLEN(interface_name) == 0)) {
562 return (AE_BAD_PARAMETER);
563 }
564
565 (void)acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
566
567 /* Check if the interface name is already in the global list */
568
569 interface_info = acpi_ut_get_interface(interface_name);
570 if (interface_info) {
571 /*
572 * The interface already exists in the list. This is OK if the
573 * interface has been marked invalid -- just clear the bit.
574 */
575 if (interface_info->flags & ACPI_OSI_INVALID) {
576 interface_info->flags &= ~ACPI_OSI_INVALID;
577 status = AE_OK;
578 } else {
579 status = AE_ALREADY_EXISTS;
580 }
581 } else {
582 /* New interface name, install into the global list */
583
584 status = acpi_ut_install_interface(interface_name);
585 }
586
587 acpi_os_release_mutex(acpi_gbl_osi_mutex);
588 return (status);
589}
590
591ACPI_EXPORT_SYMBOL(acpi_install_interface)
592
593/*****************************************************************************
594 *
595 * FUNCTION: acpi_remove_interface
596 *
597 * PARAMETERS: interface_name - The interface to remove
598 *
599 * RETURN: Status
600 *
601 * DESCRIPTION: Remove an _OSI interface from the global list
602 *
603 ****************************************************************************/
604acpi_status acpi_remove_interface(acpi_string interface_name)
605{
606 acpi_status status;
607
608 /* Parameter validation */
609
610 if (!interface_name || (ACPI_STRLEN(interface_name) == 0)) {
611 return (AE_BAD_PARAMETER);
612 }
613
614 (void)acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
615
616 status = acpi_ut_remove_interface(interface_name);
617
618 acpi_os_release_mutex(acpi_gbl_osi_mutex);
619 return (status);
620}
621
622ACPI_EXPORT_SYMBOL(acpi_remove_interface)
623
624/*****************************************************************************
625 *
626 * FUNCTION: acpi_install_interface_handler
627 *
628 * PARAMETERS: Handler - The _OSI interface handler to install
629 * NULL means "remove existing handler"
630 *
631 * RETURN: Status
632 *
633 * DESCRIPTION: Install a handler for the predefined _OSI ACPI method.
634 * invoked during execution of the internal implementation of
635 * _OSI. A NULL handler simply removes any existing handler.
636 *
637 ****************************************************************************/
638acpi_status acpi_install_interface_handler(acpi_interface_handler handler)
639{
640 acpi_status status = AE_OK;
641
642 (void)acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
643
644 if (handler && acpi_gbl_interface_handler) {
645 status = AE_ALREADY_EXISTS;
646 } else {
647 acpi_gbl_interface_handler = handler;
648 }
649
650 acpi_os_release_mutex(acpi_gbl_osi_mutex);
651 return (status);
652}
653
654ACPI_EXPORT_SYMBOL(acpi_install_interface_handler)
655#endif /* !ACPI_ASL_COMPILER */