1 /******************************************************************************
3 * Module Name: tbxfload - Table load/unload external interfaces
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2016, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
44 #define EXPORT_ACPI_INTERFACES
46 #include <acpi/acpi.h>
52 #define _COMPONENT ACPI_TABLES
53 ACPI_MODULE_NAME("tbxfload")
55 /*******************************************************************************
57 * FUNCTION: acpi_load_tables
63 * DESCRIPTION: Load the ACPI tables from the RSDT/XSDT
65 ******************************************************************************/
66 acpi_status __init
acpi_load_tables(void)
70 ACPI_FUNCTION_TRACE(acpi_load_tables
);
73 * Install the default operation region handlers. These are the
74 * handlers that are defined by the ACPI specification to be
75 * "always accessible" -- namely, system_memory, system_IO, and
76 * PCI_Config. This also means that no _REG methods need to be
77 * run for these address spaces. We need to have these handlers
78 * installed before any AML code can be executed, especially any
79 * module-level code (11/2015).
80 * Note that we allow OSPMs to install their own region handlers
81 * between acpi_initialize_subsystem() and acpi_load_tables() to use
82 * their customized default region handlers.
84 status
= acpi_ev_install_region_handlers();
85 if (ACPI_FAILURE(status
) && status
!= AE_ALREADY_EXISTS
) {
86 ACPI_EXCEPTION((AE_INFO
, status
,
87 "During Region initialization"));
88 return_ACPI_STATUS(status
);
91 /* Load the namespace from the tables */
93 status
= acpi_tb_load_namespace();
95 /* Don't let single failures abort the load */
97 if (status
== AE_CTRL_TERMINATE
) {
101 if (ACPI_FAILURE(status
)) {
102 ACPI_EXCEPTION((AE_INFO
, status
,
103 "While loading namespace from ACPI tables"));
106 if (!acpi_gbl_group_module_level_code
) {
108 * Initialize the objects that remain uninitialized. This
109 * runs the executable AML that may be part of the
110 * declaration of these objects:
111 * operation_regions, buffer_fields, Buffers, and Packages.
113 status
= acpi_ns_initialize_objects();
114 if (ACPI_FAILURE(status
)) {
115 return_ACPI_STATUS(status
);
119 acpi_gbl_namespace_initialized
= TRUE
;
120 return_ACPI_STATUS(status
);
123 ACPI_EXPORT_SYMBOL_INIT(acpi_load_tables
)
125 /*******************************************************************************
127 * FUNCTION: acpi_tb_load_namespace
133 * DESCRIPTION: Load the namespace from the DSDT and all SSDTs/PSDTs found in
136 ******************************************************************************/
137 acpi_status
acpi_tb_load_namespace(void)
141 struct acpi_table_header
*new_dsdt
;
142 struct acpi_table_desc
*table
;
143 u32 tables_loaded
= 0;
144 u32 tables_failed
= 0;
146 ACPI_FUNCTION_TRACE(tb_load_namespace
);
148 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES
);
151 * Load the namespace. The DSDT is required, but any SSDT and
152 * PSDT tables are optional. Verify the DSDT.
154 table
= &acpi_gbl_root_table_list
.tables
[acpi_gbl_dsdt_index
];
156 if (!acpi_gbl_root_table_list
.current_table_count
||
157 !ACPI_COMPARE_NAME(table
->signature
.ascii
, ACPI_SIG_DSDT
) ||
158 ACPI_FAILURE(acpi_tb_validate_table(table
))) {
159 status
= AE_NO_ACPI_TABLES
;
160 goto unlock_and_exit
;
164 * Save the DSDT pointer for simple access. This is the mapped memory
165 * address. We must take care here because the address of the .Tables
166 * array can change dynamically as tables are loaded at run-time. Note:
167 * .Pointer field is not validated until after call to acpi_tb_validate_table.
169 acpi_gbl_DSDT
= table
->pointer
;
172 * Optionally copy the entire DSDT to local memory (instead of simply
173 * mapping it.) There are some BIOSs that corrupt or replace the original
174 * DSDT, creating the need for this option. Default is FALSE, do not copy
177 if (acpi_gbl_copy_dsdt_locally
) {
178 new_dsdt
= acpi_tb_copy_dsdt(acpi_gbl_dsdt_index
);
180 acpi_gbl_DSDT
= new_dsdt
;
185 * Save the original DSDT header for detection of table corruption
186 * and/or replacement of the DSDT from outside the OS.
188 memcpy(&acpi_gbl_original_dsdt_header
, acpi_gbl_DSDT
,
189 sizeof(struct acpi_table_header
));
191 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES
);
193 /* Load and parse tables */
195 status
= acpi_ns_load_table(acpi_gbl_dsdt_index
, acpi_gbl_root_node
);
196 if (ACPI_FAILURE(status
)) {
197 ACPI_EXCEPTION((AE_INFO
, status
, "[DSDT] table load failed"));
203 /* Load any SSDT or PSDT tables. Note: Loop leaves tables locked */
205 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES
);
206 for (i
= 0; i
< acpi_gbl_root_table_list
.current_table_count
; ++i
) {
207 table
= &acpi_gbl_root_table_list
.tables
[i
];
209 if (!acpi_gbl_root_table_list
.tables
[i
].address
||
210 (!ACPI_COMPARE_NAME(table
->signature
.ascii
, ACPI_SIG_SSDT
)
211 && !ACPI_COMPARE_NAME(table
->signature
.ascii
,
213 && !ACPI_COMPARE_NAME(table
->signature
.ascii
,
215 || ACPI_FAILURE(acpi_tb_validate_table(table
))) {
219 /* Ignore errors while loading tables, get as many as possible */
221 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES
);
222 status
= acpi_ns_load_table(i
, acpi_gbl_root_node
);
223 if (ACPI_FAILURE(status
)) {
224 ACPI_EXCEPTION((AE_INFO
, status
,
225 "(%4.4s:%8.8s) while loading table",
226 table
->signature
.ascii
,
227 table
->pointer
->oem_table_id
));
231 ACPI_DEBUG_PRINT_RAW((ACPI_DB_INIT
,
232 "Table [%4.4s:%8.8s] (id FF) - Table namespace load failed\n\n",
233 table
->signature
.ascii
,
234 table
->pointer
->oem_table_id
));
239 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES
);
242 if (!tables_failed
) {
243 ACPI_INFO(("%u ACPI AML tables successfully acquired and loaded\n", tables_loaded
));
246 "%u table load failures, %u successful",
247 tables_failed
, tables_loaded
));
249 /* Indicate at least one failure */
251 status
= AE_CTRL_TERMINATE
;
255 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES
);
256 return_ACPI_STATUS(status
);
259 /*******************************************************************************
261 * FUNCTION: acpi_install_table
263 * PARAMETERS: address - Address of the ACPI table to be installed.
264 * physical - Whether the address is a physical table
269 * DESCRIPTION: Dynamically install an ACPI table.
270 * Note: This function should only be invoked after
271 * acpi_initialize_tables() and before acpi_load_tables().
273 ******************************************************************************/
276 acpi_install_table(acpi_physical_address address
, u8 physical
)
282 ACPI_FUNCTION_TRACE(acpi_install_table
);
285 flags
= ACPI_TABLE_ORIGIN_INTERNAL_PHYSICAL
;
287 flags
= ACPI_TABLE_ORIGIN_EXTERNAL_VIRTUAL
;
290 status
= acpi_tb_install_standard_table(address
, flags
,
291 FALSE
, FALSE
, &table_index
);
293 return_ACPI_STATUS(status
);
296 ACPI_EXPORT_SYMBOL_INIT(acpi_install_table
)
298 /*******************************************************************************
300 * FUNCTION: acpi_load_table
302 * PARAMETERS: table - Pointer to a buffer containing the ACPI
303 * table to be loaded.
307 * DESCRIPTION: Dynamically load an ACPI table from the caller's buffer. Must
308 * be a valid ACPI table with a valid ACPI table header.
309 * Note1: Mainly intended to support hotplug addition of SSDTs.
310 * Note2: Does not copy the incoming table. User is responsible
311 * to ensure that the table is not deleted or unmapped.
313 ******************************************************************************/
314 acpi_status
acpi_load_table(struct acpi_table_header
*table
)
319 ACPI_FUNCTION_TRACE(acpi_load_table
);
321 /* Parameter validation */
324 return_ACPI_STATUS(AE_BAD_PARAMETER
);
327 /* Must acquire the interpreter lock during this operation */
329 status
= acpi_ut_acquire_mutex(ACPI_MTX_INTERPRETER
);
330 if (ACPI_FAILURE(status
)) {
331 return_ACPI_STATUS(status
);
334 /* Install the table and load it into the namespace */
336 ACPI_INFO(("Host-directed Dynamic ACPI Table Load:"));
337 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES
);
339 status
= acpi_tb_install_standard_table(ACPI_PTR_TO_PHYSADDR(table
),
340 ACPI_TABLE_ORIGIN_EXTERNAL_VIRTUAL
,
341 TRUE
, FALSE
, &table_index
);
343 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES
);
344 if (ACPI_FAILURE(status
)) {
345 goto unlock_and_exit
;
349 * Note: Now table is "INSTALLED", it must be validated before
353 acpi_tb_validate_table(&acpi_gbl_root_table_list
.
354 tables
[table_index
]);
355 if (ACPI_FAILURE(status
)) {
356 goto unlock_and_exit
;
359 status
= acpi_ns_load_table(table_index
, acpi_gbl_root_node
);
361 /* Invoke table handler if present */
363 if (acpi_gbl_table_handler
) {
364 (void)acpi_gbl_table_handler(ACPI_TABLE_EVENT_LOAD
, table
,
365 acpi_gbl_table_handler_context
);
369 (void)acpi_ut_release_mutex(ACPI_MTX_INTERPRETER
);
370 return_ACPI_STATUS(status
);
373 ACPI_EXPORT_SYMBOL(acpi_load_table
)
375 /*******************************************************************************
377 * FUNCTION: acpi_unload_parent_table
379 * PARAMETERS: object - Handle to any namespace object owned by
380 * the table to be unloaded
384 * DESCRIPTION: Via any namespace object within an SSDT or OEMx table, unloads
385 * the table and deletes all namespace objects associated with
386 * that table. Unloading of the DSDT is not allowed.
387 * Note: Mainly intended to support hotplug removal of SSDTs.
389 ******************************************************************************/
390 acpi_status
acpi_unload_parent_table(acpi_handle object
)
392 struct acpi_namespace_node
*node
=
393 ACPI_CAST_PTR(struct acpi_namespace_node
, object
);
394 acpi_status status
= AE_NOT_EXIST
;
395 acpi_owner_id owner_id
;
398 ACPI_FUNCTION_TRACE(acpi_unload_parent_table
);
400 /* Parameter validation */
403 return_ACPI_STATUS(AE_BAD_PARAMETER
);
407 * The node owner_id is currently the same as the parent table ID.
408 * However, this could change in the future.
410 owner_id
= node
->owner_id
;
413 /* owner_id==0 means DSDT is the owner. DSDT cannot be unloaded */
415 return_ACPI_STATUS(AE_TYPE
);
418 /* Must acquire the interpreter lock during this operation */
420 status
= acpi_ut_acquire_mutex(ACPI_MTX_INTERPRETER
);
421 if (ACPI_FAILURE(status
)) {
422 return_ACPI_STATUS(status
);
425 /* Find the table in the global table list */
427 for (i
= 0; i
< acpi_gbl_root_table_list
.current_table_count
; i
++) {
428 if (owner_id
!= acpi_gbl_root_table_list
.tables
[i
].owner_id
) {
433 * Allow unload of SSDT and OEMx tables only. Do not allow unload
434 * of the DSDT. No other types of tables should get here, since
435 * only these types can contain AML and thus are the only types
436 * that can create namespace objects.
438 if (ACPI_COMPARE_NAME
439 (acpi_gbl_root_table_list
.tables
[i
].signature
.ascii
,
445 /* Ensure the table is actually loaded */
447 if (!acpi_tb_is_table_loaded(i
)) {
448 status
= AE_NOT_EXIST
;
452 /* Invoke table handler if present */
454 if (acpi_gbl_table_handler
) {
455 (void)acpi_gbl_table_handler(ACPI_TABLE_EVENT_UNLOAD
,
456 acpi_gbl_root_table_list
.
458 acpi_gbl_table_handler_context
);
462 * Delete all namespace objects owned by this table. Note that
463 * these objects can appear anywhere in the namespace by virtue
464 * of the AML "Scope" operator. Thus, we need to track ownership
465 * by an ID, not simply a position within the hierarchy.
467 status
= acpi_tb_delete_namespace_by_owner(i
);
468 if (ACPI_FAILURE(status
)) {
472 status
= acpi_tb_release_owner_id(i
);
473 acpi_tb_set_table_loaded_flag(i
, FALSE
);
477 (void)acpi_ut_release_mutex(ACPI_MTX_INTERPRETER
);
478 return_ACPI_STATUS(status
);
481 ACPI_EXPORT_SYMBOL(acpi_unload_parent_table
)