1 /******************************************************************************
3 * Module Name: tbxfload - Table load/unload external interfaces
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2013, 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>
51 #define _COMPONENT ACPI_TABLES
52 ACPI_MODULE_NAME("tbxfload")
54 /* Local prototypes */
55 static acpi_status
acpi_tb_load_namespace(void);
57 /*******************************************************************************
59 * FUNCTION: acpi_load_tables
65 * DESCRIPTION: Load the ACPI tables from the RSDT/XSDT
67 ******************************************************************************/
69 acpi_status __init
acpi_load_tables(void)
73 ACPI_FUNCTION_TRACE(acpi_load_tables
);
75 /* Load the namespace from the tables */
77 status
= acpi_tb_load_namespace();
78 if (ACPI_FAILURE(status
)) {
79 ACPI_EXCEPTION((AE_INFO
, status
,
80 "While loading namespace from ACPI tables"));
83 return_ACPI_STATUS(status
);
86 ACPI_EXPORT_SYMBOL_INIT(acpi_load_tables
)
88 /*******************************************************************************
90 * FUNCTION: acpi_tb_load_namespace
96 * DESCRIPTION: Load the namespace from the DSDT and all SSDTs/PSDTs found in
99 ******************************************************************************/
100 static acpi_status
acpi_tb_load_namespace(void)
104 struct acpi_table_header
*new_dsdt
;
106 ACPI_FUNCTION_TRACE(tb_load_namespace
);
108 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES
);
111 * Load the namespace. The DSDT is required, but any SSDT and
112 * PSDT tables are optional. Verify the DSDT.
114 if (!acpi_gbl_root_table_list
.current_table_count
||
116 (acpi_gbl_root_table_list
.
117 tables
[ACPI_TABLE_INDEX_DSDT
].signature
),
120 ACPI_FAILURE(acpi_tb_verify_table
121 (&acpi_gbl_root_table_list
.
122 tables
[ACPI_TABLE_INDEX_DSDT
]))) {
123 status
= AE_NO_ACPI_TABLES
;
124 goto unlock_and_exit
;
128 * Save the DSDT pointer for simple access. This is the mapped memory
129 * address. We must take care here because the address of the .Tables
130 * array can change dynamically as tables are loaded at run-time. Note:
131 * .Pointer field is not validated until after call to acpi_tb_verify_table.
134 acpi_gbl_root_table_list
.tables
[ACPI_TABLE_INDEX_DSDT
].pointer
;
137 * Optionally copy the entire DSDT to local memory (instead of simply
138 * mapping it.) There are some BIOSs that corrupt or replace the original
139 * DSDT, creating the need for this option. Default is FALSE, do not copy
142 if (acpi_gbl_copy_dsdt_locally
) {
143 new_dsdt
= acpi_tb_copy_dsdt(ACPI_TABLE_INDEX_DSDT
);
145 acpi_gbl_DSDT
= new_dsdt
;
150 * Save the original DSDT header for detection of table corruption
151 * and/or replacement of the DSDT from outside the OS.
153 ACPI_MEMCPY(&acpi_gbl_original_dsdt_header
, acpi_gbl_DSDT
,
154 sizeof(struct acpi_table_header
));
156 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES
);
158 /* Load and parse tables */
160 status
= acpi_ns_load_table(ACPI_TABLE_INDEX_DSDT
, acpi_gbl_root_node
);
161 if (ACPI_FAILURE(status
)) {
162 return_ACPI_STATUS(status
);
165 /* Load any SSDT or PSDT tables. Note: Loop leaves tables locked */
167 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES
);
168 for (i
= 0; i
< acpi_gbl_root_table_list
.current_table_count
; ++i
) {
169 if ((!ACPI_COMPARE_NAME
170 (&(acpi_gbl_root_table_list
.tables
[i
].signature
),
174 (acpi_gbl_root_table_list
.tables
[i
].
175 signature
), ACPI_SIG_PSDT
))
177 ACPI_FAILURE(acpi_tb_verify_table
178 (&acpi_gbl_root_table_list
.tables
[i
]))) {
183 * Optionally do not load any SSDTs from the RSDT/XSDT. This can
184 * be useful for debugging ACPI problems on some machines.
186 if (acpi_gbl_disable_ssdt_table_load
) {
187 ACPI_INFO((AE_INFO
, "Ignoring %4.4s at %p",
188 acpi_gbl_root_table_list
.tables
[i
].signature
.
189 ascii
, ACPI_CAST_PTR(void,
190 acpi_gbl_root_table_list
.
191 tables
[i
].address
)));
195 /* Ignore errors while loading tables, get as many as possible */
197 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES
);
198 (void)acpi_ns_load_table(i
, acpi_gbl_root_node
);
199 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES
);
202 ACPI_INFO((AE_INFO
, "All ACPI Tables successfully acquired"));
205 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES
);
206 return_ACPI_STATUS(status
);
209 /*******************************************************************************
211 * FUNCTION: acpi_load_table
213 * PARAMETERS: table - Pointer to a buffer containing the ACPI
214 * table to be loaded.
218 * DESCRIPTION: Dynamically load an ACPI table from the caller's buffer. Must
219 * be a valid ACPI table with a valid ACPI table header.
220 * Note1: Mainly intended to support hotplug addition of SSDTs.
221 * Note2: Does not copy the incoming table. User is responsible
222 * to ensure that the table is not deleted or unmapped.
224 ******************************************************************************/
226 acpi_status
acpi_load_table(struct acpi_table_header
*table
)
229 struct acpi_table_desc table_desc
;
232 ACPI_FUNCTION_TRACE(acpi_load_table
);
234 /* Parameter validation */
237 return_ACPI_STATUS(AE_BAD_PARAMETER
);
240 /* Init local table descriptor */
242 ACPI_MEMSET(&table_desc
, 0, sizeof(struct acpi_table_desc
));
243 table_desc
.address
= ACPI_PTR_TO_PHYSADDR(table
);
244 table_desc
.pointer
= table
;
245 table_desc
.length
= table
->length
;
246 table_desc
.flags
= ACPI_TABLE_ORIGIN_UNKNOWN
;
248 /* Must acquire the interpreter lock during this operation */
250 status
= acpi_ut_acquire_mutex(ACPI_MTX_INTERPRETER
);
251 if (ACPI_FAILURE(status
)) {
252 return_ACPI_STATUS(status
);
255 /* Install the table and load it into the namespace */
257 ACPI_INFO((AE_INFO
, "Host-directed Dynamic ACPI Table Load:"));
258 status
= acpi_tb_add_table(&table_desc
, &table_index
);
259 if (ACPI_FAILURE(status
)) {
260 goto unlock_and_exit
;
263 status
= acpi_ns_load_table(table_index
, acpi_gbl_root_node
);
265 /* Invoke table handler if present */
267 if (acpi_gbl_table_handler
) {
268 (void)acpi_gbl_table_handler(ACPI_TABLE_EVENT_LOAD
, table
,
269 acpi_gbl_table_handler_context
);
273 (void)acpi_ut_release_mutex(ACPI_MTX_INTERPRETER
);
274 return_ACPI_STATUS(status
);
277 ACPI_EXPORT_SYMBOL(acpi_load_table
)
279 /*******************************************************************************
281 * FUNCTION: acpi_unload_parent_table
283 * PARAMETERS: object - Handle to any namespace object owned by
284 * the table to be unloaded
288 * DESCRIPTION: Via any namespace object within an SSDT or OEMx table, unloads
289 * the table and deletes all namespace objects associated with
290 * that table. Unloading of the DSDT is not allowed.
291 * Note: Mainly intended to support hotplug removal of SSDTs.
293 ******************************************************************************/
294 acpi_status
acpi_unload_parent_table(acpi_handle object
)
296 struct acpi_namespace_node
*node
=
297 ACPI_CAST_PTR(struct acpi_namespace_node
, object
);
298 acpi_status status
= AE_NOT_EXIST
;
299 acpi_owner_id owner_id
;
302 ACPI_FUNCTION_TRACE(acpi_unload_parent_table
);
304 /* Parameter validation */
307 return_ACPI_STATUS(AE_BAD_PARAMETER
);
311 * The node owner_id is currently the same as the parent table ID.
312 * However, this could change in the future.
314 owner_id
= node
->owner_id
;
317 /* owner_id==0 means DSDT is the owner. DSDT cannot be unloaded */
319 return_ACPI_STATUS(AE_TYPE
);
322 /* Must acquire the interpreter lock during this operation */
324 status
= acpi_ut_acquire_mutex(ACPI_MTX_INTERPRETER
);
325 if (ACPI_FAILURE(status
)) {
326 return_ACPI_STATUS(status
);
329 /* Find the table in the global table list */
331 for (i
= 0; i
< acpi_gbl_root_table_list
.current_table_count
; i
++) {
332 if (owner_id
!= acpi_gbl_root_table_list
.tables
[i
].owner_id
) {
337 * Allow unload of SSDT and OEMx tables only. Do not allow unload
338 * of the DSDT. No other types of tables should get here, since
339 * only these types can contain AML and thus are the only types
340 * that can create namespace objects.
342 if (ACPI_COMPARE_NAME
343 (acpi_gbl_root_table_list
.tables
[i
].signature
.ascii
,
349 /* Ensure the table is actually loaded */
351 if (!acpi_tb_is_table_loaded(i
)) {
352 status
= AE_NOT_EXIST
;
356 /* Invoke table handler if present */
358 if (acpi_gbl_table_handler
) {
359 (void)acpi_gbl_table_handler(ACPI_TABLE_EVENT_UNLOAD
,
360 acpi_gbl_root_table_list
.
362 acpi_gbl_table_handler_context
);
366 * Delete all namespace objects owned by this table. Note that
367 * these objects can appear anywhere in the namespace by virtue
368 * of the AML "Scope" operator. Thus, we need to track ownership
369 * by an ID, not simply a position within the hierarchy.
371 status
= acpi_tb_delete_namespace_by_owner(i
);
372 if (ACPI_FAILURE(status
)) {
376 status
= acpi_tb_release_owner_id(i
);
377 acpi_tb_set_table_loaded_flag(i
, FALSE
);
381 (void)acpi_ut_release_mutex(ACPI_MTX_INTERPRETER
);
382 return_ACPI_STATUS(status
);
385 ACPI_EXPORT_SYMBOL(acpi_unload_parent_table
)