blob: d70649d3ac603507523c148633bf5b8044d564c0 [file] [log] [blame]
Bob Moored9783482012-08-17 10:51:47 +08001/******************************************************************************
2 *
3 * Module Name: utxfinit - External interfaces for ACPICA initialization
4 *
5 *****************************************************************************/
6
7/*
Bob Moorec8100dc2016-01-15 08:17:03 +08008 * Copyright (C) 2000 - 2016, Intel Corp.
Bob Moored9783482012-08-17 10:51:47 +08009 * 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
Lv Zheng839e9282013-10-29 09:29:51 +080044#define EXPORT_ACPI_INTERFACES
45
Bob Moored9783482012-08-17 10:51:47 +080046#include <acpi/acpi.h>
47#include "accommon.h"
48#include "acevents.h"
49#include "acnamesp.h"
50#include "acdebug.h"
51#include "actables.h"
52
53#define _COMPONENT ACPI_UTILITIES
54ACPI_MODULE_NAME("utxfinit")
55
Bob Mooreb4878672014-11-27 14:26:07 +080056/* For acpi_exec only */
57void ae_do_object_overrides(void);
58
Bob Moored9783482012-08-17 10:51:47 +080059/*******************************************************************************
60 *
61 * FUNCTION: acpi_initialize_subsystem
62 *
63 * PARAMETERS: None
64 *
65 * RETURN: Status
66 *
67 * DESCRIPTION: Initializes all global variables. This is the first function
68 * called, so any early initialization belongs here.
69 *
70 ******************************************************************************/
Bob Mooreb4878672014-11-27 14:26:07 +080071
Lv Zheng45c9f782013-10-31 09:31:24 +080072acpi_status __init acpi_initialize_subsystem(void)
Bob Moored9783482012-08-17 10:51:47 +080073{
74 acpi_status status;
75
76 ACPI_FUNCTION_TRACE(acpi_initialize_subsystem);
77
78 acpi_gbl_startup_flags = ACPI_SUBSYSTEM_INITIALIZE;
79 ACPI_DEBUG_EXEC(acpi_ut_init_stack_ptr_trace());
80
81 /* Initialize the OS-Dependent layer */
82
83 status = acpi_os_initialize();
84 if (ACPI_FAILURE(status)) {
85 ACPI_EXCEPTION((AE_INFO, status, "During OSL initialization"));
86 return_ACPI_STATUS(status);
87 }
88
89 /* Initialize all globals used by the subsystem */
90
91 status = acpi_ut_init_globals();
92 if (ACPI_FAILURE(status)) {
93 ACPI_EXCEPTION((AE_INFO, status,
94 "During initialization of globals"));
95 return_ACPI_STATUS(status);
96 }
97
98 /* Create the default mutex objects */
99
100 status = acpi_ut_mutex_initialize();
101 if (ACPI_FAILURE(status)) {
102 ACPI_EXCEPTION((AE_INFO, status,
103 "During Global Mutex creation"));
104 return_ACPI_STATUS(status);
105 }
106
107 /*
108 * Initialize the namespace manager and
109 * the root of the namespace tree
110 */
111 status = acpi_ns_root_initialize();
112 if (ACPI_FAILURE(status)) {
113 ACPI_EXCEPTION((AE_INFO, status,
114 "During Namespace initialization"));
115 return_ACPI_STATUS(status);
116 }
117
118 /* Initialize the global OSI interfaces list with the static names */
119
120 status = acpi_ut_initialize_interfaces();
121 if (ACPI_FAILURE(status)) {
122 ACPI_EXCEPTION((AE_INFO, status,
123 "During OSI interfaces initialization"));
124 return_ACPI_STATUS(status);
125 }
126
Bob Moore1a2c4782014-01-08 13:44:38 +0800127 return_ACPI_STATUS(AE_OK);
Bob Moored9783482012-08-17 10:51:47 +0800128}
Lv Zhengd21f6002013-10-29 09:30:10 +0800129
130ACPI_EXPORT_SYMBOL_INIT(acpi_initialize_subsystem)
Bob Moored9783482012-08-17 10:51:47 +0800131
132/*******************************************************************************
133 *
134 * FUNCTION: acpi_enable_subsystem
135 *
136 * PARAMETERS: flags - Init/enable Options
137 *
138 * RETURN: Status
139 *
140 * DESCRIPTION: Completes the subsystem initialization including hardware.
141 * Puts system into ACPI mode if it isn't already.
142 *
143 ******************************************************************************/
Lv Zheng45c9f782013-10-31 09:31:24 +0800144acpi_status __init acpi_enable_subsystem(u32 flags)
Bob Moored9783482012-08-17 10:51:47 +0800145{
146 acpi_status status = AE_OK;
147
148 ACPI_FUNCTION_TRACE(acpi_enable_subsystem);
149
Bob Moore7b738062015-12-29 14:01:53 +0800150 /*
151 * The early initialization phase is complete. The namespace is loaded,
152 * and we can now support address spaces other than Memory, I/O, and
153 * PCI_Config.
154 */
155 acpi_gbl_early_initialization = FALSE;
156
Lv Zheng2e1beaf2015-12-29 14:02:18 +0800157 /*
158 * Install the default operation region handlers. These are the
159 * handlers that are defined by the ACPI specification to be
160 * "always accessible" -- namely, system_memory, system_IO, and
161 * PCI_Config. This also means that no _REG methods need to be
162 * run for these address spaces. We need to have these handlers
163 * installed before any AML code can be executed, especially any
164 * module-level code (11/2015).
165 */
Lv Zhengcc82f182016-02-19 14:16:56 +0800166 if (!acpi_gbl_group_module_level_code) {
167 status = acpi_ev_install_region_handlers();
168 if (ACPI_FAILURE(status)) {
169 ACPI_EXCEPTION((AE_INFO, status,
170 "During Region initialization"));
171 return_ACPI_STATUS(status);
172 }
Lv Zheng2e1beaf2015-12-29 14:02:18 +0800173 }
Bob Moored9783482012-08-17 10:51:47 +0800174#if (!ACPI_REDUCED_HARDWARE)
175
176 /* Enable ACPI mode */
177
178 if (!(flags & ACPI_NO_ACPI_ENABLE)) {
179 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
180 "[Init] Going into ACPI mode\n"));
181
182 acpi_gbl_original_mode = acpi_hw_get_mode();
183
184 status = acpi_enable();
185 if (ACPI_FAILURE(status)) {
186 ACPI_WARNING((AE_INFO, "AcpiEnable failed"));
187 return_ACPI_STATUS(status);
188 }
189 }
190
191 /*
192 * Obtain a permanent mapping for the FACS. This is required for the
193 * Global Lock and the Firmware Waking Vector
194 */
Lv Zhengc04be182015-07-01 14:43:26 +0800195 if (!(flags & ACPI_NO_FACS_INIT)) {
196 status = acpi_tb_initialize_facs();
197 if (ACPI_FAILURE(status)) {
198 ACPI_WARNING((AE_INFO, "Could not map the FACS table"));
199 return_ACPI_STATUS(status);
200 }
Bob Moored9783482012-08-17 10:51:47 +0800201 }
Bob Moored9783482012-08-17 10:51:47 +0800202
203 /*
Bob Moored9783482012-08-17 10:51:47 +0800204 * Initialize ACPI Event handling (Fixed and General Purpose)
205 *
206 * Note1: We must have the hardware and events initialized before we can
207 * execute any control methods safely. Any control method can require
208 * ACPI hardware support, so the hardware must be fully initialized before
209 * any method execution!
210 *
211 * Note2: Fixed events are initialized and enabled here. GPEs are
212 * initialized, but cannot be enabled until after the hardware is
213 * completely initialized (SCI and global_lock activated) and the various
214 * initialization control methods are run (_REG, _STA, _INI) on the
215 * entire namespace.
216 */
217 if (!(flags & ACPI_NO_EVENT_INIT)) {
218 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
219 "[Init] Initializing ACPI events\n"));
220
221 status = acpi_ev_initialize_events();
222 if (ACPI_FAILURE(status)) {
223 return_ACPI_STATUS(status);
224 }
225 }
226
227 /*
228 * Install the SCI handler and Global Lock handler. This completes the
229 * hardware initialization.
230 */
231 if (!(flags & ACPI_NO_HANDLER_INIT)) {
232 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
233 "[Init] Installing SCI/GL handlers\n"));
234
235 status = acpi_ev_install_xrupt_handlers();
236 if (ACPI_FAILURE(status)) {
237 return_ACPI_STATUS(status);
238 }
239 }
240#endif /* !ACPI_REDUCED_HARDWARE */
241
242 return_ACPI_STATUS(status);
243}
Lv Zhengd21f6002013-10-29 09:30:10 +0800244
245ACPI_EXPORT_SYMBOL_INIT(acpi_enable_subsystem)
Bob Moored9783482012-08-17 10:51:47 +0800246
247/*******************************************************************************
248 *
249 * FUNCTION: acpi_initialize_objects
250 *
251 * PARAMETERS: flags - Init/enable Options
252 *
253 * RETURN: Status
254 *
255 * DESCRIPTION: Completes namespace initialization by initializing device
256 * objects and executing AML code for Regions, buffers, etc.
257 *
258 ******************************************************************************/
Lv Zheng45c9f782013-10-31 09:31:24 +0800259acpi_status __init acpi_initialize_objects(u32 flags)
Bob Moored9783482012-08-17 10:51:47 +0800260{
261 acpi_status status = AE_OK;
262
263 ACPI_FUNCTION_TRACE(acpi_initialize_objects);
264
Bob Mooreb4878672014-11-27 14:26:07 +0800265#ifdef ACPI_EXEC_APP
266 /*
267 * This call implements the "initialization file" option for acpi_exec.
268 * This is the precise point that we want to perform the overrides.
269 */
270 ae_do_object_overrides();
271#endif
Bob Moored9783482012-08-17 10:51:47 +0800272
273 /*
274 * Execute any module-level code that was detected during the table load
275 * phase. Although illegal since ACPI 2.0, there are many machines that
276 * contain this type of code. Each block of detected executable AML code
277 * outside of any control method is wrapped with a temporary control
278 * method object and placed on a global list. The methods on this list
279 * are executed below.
Bob Moore2785ce82015-12-29 14:04:19 +0800280 *
281 * This case executes the module-level code for all tables only after
282 * all of the tables have been loaded. It is a legacy option and is
283 * not compatible with other ACPI implementations. See acpi_ns_load_table.
Bob Moored9783482012-08-17 10:51:47 +0800284 */
Bob Moore2785ce82015-12-29 14:04:19 +0800285 if (acpi_gbl_group_module_level_code) {
286 acpi_ns_exec_module_code_list();
287 }
Bob Moored9783482012-08-17 10:51:47 +0800288
289 /*
290 * Initialize the objects that remain uninitialized. This runs the
291 * executable AML that may be part of the declaration of these objects:
292 * operation_regions, buffer_fields, Buffers, and Packages.
293 */
294 if (!(flags & ACPI_NO_OBJECT_INIT)) {
295 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
296 "[Init] Completing Initialization of ACPI Objects\n"));
297
298 status = acpi_ns_initialize_objects();
299 if (ACPI_FAILURE(status)) {
300 return_ACPI_STATUS(status);
301 }
302 }
303
Lv Zhengebc3c9b2016-02-19 14:17:22 +0800304 acpi_gbl_namespace_initialized = TRUE;
Lv Zheng95591302016-02-19 14:17:05 +0800305
306 /*
Lv Zhengced04362016-02-19 14:17:15 +0800307 * Initialize all device/region objects in the namespace. This runs
308 * the device _STA and _INI methods and region _REG methods.
Bob Moored9783482012-08-17 10:51:47 +0800309 */
Lv Zhengced04362016-02-19 14:17:15 +0800310 if (!(flags & (ACPI_NO_DEVICE_INIT | ACPI_NO_ADDRESS_SPACE_INIT))) {
311 status = acpi_ns_initialize_devices(flags);
Bob Moored9783482012-08-17 10:51:47 +0800312 if (ACPI_FAILURE(status)) {
313 return_ACPI_STATUS(status);
314 }
315 }
316
317 /*
318 * Empty the caches (delete the cached objects) on the assumption that
319 * the table load filled them up more than they will be at runtime --
320 * thus wasting non-paged memory.
321 */
322 status = acpi_purge_cached_objects();
323
324 acpi_gbl_startup_flags |= ACPI_INITIALIZED_OK;
325 return_ACPI_STATUS(status);
326}
Lv Zhengd21f6002013-10-29 09:30:10 +0800327
328ACPI_EXPORT_SYMBOL_INIT(acpi_initialize_objects)