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 __TBXFLOAD_C__
45 #define EXPORT_ACPI_INTERFACES
52 #define _COMPONENT ACPI_TABLES
53 ACPI_MODULE_NAME ("tbxfload")
55 /* Local prototypes */
62 /*******************************************************************************
64 * FUNCTION: AcpiLoadTables
70 * DESCRIPTION: Load the ACPI tables from the RSDT/XSDT
72 ******************************************************************************/
81 ACPI_FUNCTION_TRACE (AcpiLoadTables
);
84 /* Load the namespace from the tables */
86 Status
= AcpiTbLoadNamespace ();
87 if (ACPI_FAILURE (Status
))
89 ACPI_EXCEPTION ((AE_INFO
, Status
,
90 "While loading namespace from ACPI tables"));
93 return_ACPI_STATUS (Status
);
96 ACPI_EXPORT_SYMBOL_INIT (AcpiLoadTables
)
99 /*******************************************************************************
101 * FUNCTION: AcpiTbLoadNamespace
107 * DESCRIPTION: Load the namespace from the DSDT and all SSDTs/PSDTs found in
110 ******************************************************************************/
113 AcpiTbLoadNamespace (
118 ACPI_TABLE_HEADER
*NewDsdt
;
121 ACPI_FUNCTION_TRACE (TbLoadNamespace
);
124 (void) AcpiUtAcquireMutex (ACPI_MTX_TABLES
);
127 * Load the namespace. The DSDT is required, but any SSDT and
128 * PSDT tables are optional. Verify the DSDT.
130 if (!AcpiGbl_RootTableList
.CurrentTableCount
||
132 &(AcpiGbl_RootTableList
.Tables
[ACPI_TABLE_INDEX_DSDT
].Signature
),
134 ACPI_FAILURE (AcpiTbVerifyTable (
135 &AcpiGbl_RootTableList
.Tables
[ACPI_TABLE_INDEX_DSDT
])))
137 Status
= AE_NO_ACPI_TABLES
;
142 * Save the DSDT pointer for simple access. This is the mapped memory
143 * address. We must take care here because the address of the .Tables
144 * array can change dynamically as tables are loaded at run-time. Note:
145 * .Pointer field is not validated until after call to AcpiTbVerifyTable.
147 AcpiGbl_DSDT
= AcpiGbl_RootTableList
.Tables
[ACPI_TABLE_INDEX_DSDT
].Pointer
;
150 * Optionally copy the entire DSDT to local memory (instead of simply
151 * mapping it.) There are some BIOSs that corrupt or replace the original
152 * DSDT, creating the need for this option. Default is FALSE, do not copy
155 if (AcpiGbl_CopyDsdtLocally
)
157 NewDsdt
= AcpiTbCopyDsdt (ACPI_TABLE_INDEX_DSDT
);
160 AcpiGbl_DSDT
= NewDsdt
;
165 * Save the original DSDT header for detection of table corruption
166 * and/or replacement of the DSDT from outside the OS.
168 ACPI_MEMCPY (&AcpiGbl_OriginalDsdtHeader
, AcpiGbl_DSDT
,
169 sizeof (ACPI_TABLE_HEADER
));
171 (void) AcpiUtReleaseMutex (ACPI_MTX_TABLES
);
173 /* Load and parse tables */
175 Status
= AcpiNsLoadTable (ACPI_TABLE_INDEX_DSDT
, AcpiGbl_RootNode
);
176 if (ACPI_FAILURE (Status
))
178 return_ACPI_STATUS (Status
);
181 /* Load any SSDT or PSDT tables. Note: Loop leaves tables locked */
183 (void) AcpiUtAcquireMutex (ACPI_MTX_TABLES
);
184 for (i
= 0; i
< AcpiGbl_RootTableList
.CurrentTableCount
; ++i
)
186 if ((!ACPI_COMPARE_NAME (&(AcpiGbl_RootTableList
.Tables
[i
].Signature
),
188 !ACPI_COMPARE_NAME (&(AcpiGbl_RootTableList
.Tables
[i
].Signature
),
190 ACPI_FAILURE (AcpiTbVerifyTable (
191 &AcpiGbl_RootTableList
.Tables
[i
])))
197 * Optionally do not load any SSDTs from the RSDT/XSDT. This can
198 * be useful for debugging ACPI problems on some machines.
200 if (AcpiGbl_DisableSsdtTableLoad
)
202 ACPI_INFO ((AE_INFO
, "Ignoring %4.4s at %p",
203 AcpiGbl_RootTableList
.Tables
[i
].Signature
.Ascii
,
204 ACPI_CAST_PTR (void, AcpiGbl_RootTableList
.Tables
[i
].Address
)));
208 /* Ignore errors while loading tables, get as many as possible */
210 (void) AcpiUtReleaseMutex (ACPI_MTX_TABLES
);
211 (void) AcpiNsLoadTable (i
, AcpiGbl_RootNode
);
212 (void) AcpiUtAcquireMutex (ACPI_MTX_TABLES
);
215 ACPI_INFO ((AE_INFO
, "All ACPI Tables successfully acquired"));
218 (void) AcpiUtReleaseMutex (ACPI_MTX_TABLES
);
219 return_ACPI_STATUS (Status
);
223 /*******************************************************************************
225 * FUNCTION: AcpiLoadTable
227 * PARAMETERS: Table - Pointer to a buffer containing the ACPI
228 * table to be loaded.
232 * DESCRIPTION: Dynamically load an ACPI table from the caller's buffer. Must
233 * be a valid ACPI table with a valid ACPI table header.
234 * Note1: Mainly intended to support hotplug addition of SSDTs.
235 * Note2: Does not copy the incoming table. User is responsible
236 * to ensure that the table is not deleted or unmapped.
238 ******************************************************************************/
242 ACPI_TABLE_HEADER
*Table
)
245 ACPI_TABLE_DESC TableDesc
;
249 ACPI_FUNCTION_TRACE (AcpiLoadTable
);
252 /* Parameter validation */
256 return_ACPI_STATUS (AE_BAD_PARAMETER
);
259 /* Init local table descriptor */
261 ACPI_MEMSET (&TableDesc
, 0, sizeof (ACPI_TABLE_DESC
));
262 TableDesc
.Address
= ACPI_PTR_TO_PHYSADDR (Table
);
263 TableDesc
.Pointer
= Table
;
264 TableDesc
.Length
= Table
->Length
;
265 TableDesc
.Flags
= ACPI_TABLE_ORIGIN_UNKNOWN
;
267 /* Must acquire the interpreter lock during this operation */
269 Status
= AcpiUtAcquireMutex (ACPI_MTX_INTERPRETER
);
270 if (ACPI_FAILURE (Status
))
272 return_ACPI_STATUS (Status
);
275 /* Install the table and load it into the namespace */
277 ACPI_INFO ((AE_INFO
, "Host-directed Dynamic ACPI Table Load:"));
278 Status
= AcpiTbAddTable (&TableDesc
, &TableIndex
);
279 if (ACPI_FAILURE (Status
))
284 Status
= AcpiNsLoadTable (TableIndex
, AcpiGbl_RootNode
);
286 /* Invoke table handler if present */
288 if (AcpiGbl_TableHandler
)
290 (void) AcpiGbl_TableHandler (ACPI_TABLE_EVENT_LOAD
, Table
,
291 AcpiGbl_TableHandlerContext
);
295 (void) AcpiUtReleaseMutex (ACPI_MTX_INTERPRETER
);
296 return_ACPI_STATUS (Status
);
299 ACPI_EXPORT_SYMBOL (AcpiLoadTable
)
302 /*******************************************************************************
304 * FUNCTION: AcpiUnloadParentTable
306 * PARAMETERS: Object - Handle to any namespace object owned by
307 * the table to be unloaded
311 * DESCRIPTION: Via any namespace object within an SSDT or OEMx table, unloads
312 * the table and deletes all namespace objects associated with
313 * that table. Unloading of the DSDT is not allowed.
314 * Note: Mainly intended to support hotplug removal of SSDTs.
316 ******************************************************************************/
319 AcpiUnloadParentTable (
322 ACPI_NAMESPACE_NODE
*Node
= ACPI_CAST_PTR (ACPI_NAMESPACE_NODE
, Object
);
323 ACPI_STATUS Status
= AE_NOT_EXIST
;
324 ACPI_OWNER_ID OwnerId
;
328 ACPI_FUNCTION_TRACE (AcpiUnloadParentTable
);
331 /* Parameter validation */
335 return_ACPI_STATUS (AE_BAD_PARAMETER
);
339 * The node OwnerId is currently the same as the parent table ID.
340 * However, this could change in the future.
342 OwnerId
= Node
->OwnerId
;
345 /* OwnerId==0 means DSDT is the owner. DSDT cannot be unloaded */
347 return_ACPI_STATUS (AE_TYPE
);
350 /* Must acquire the interpreter lock during this operation */
352 Status
= AcpiUtAcquireMutex (ACPI_MTX_INTERPRETER
);
353 if (ACPI_FAILURE (Status
))
355 return_ACPI_STATUS (Status
);
358 /* Find the table in the global table list */
360 for (i
= 0; i
< AcpiGbl_RootTableList
.CurrentTableCount
; i
++)
362 if (OwnerId
!= AcpiGbl_RootTableList
.Tables
[i
].OwnerId
)
368 * Allow unload of SSDT and OEMx tables only. Do not allow unload
369 * of the DSDT. No other types of tables should get here, since
370 * only these types can contain AML and thus are the only types
371 * that can create namespace objects.
373 if (ACPI_COMPARE_NAME (
374 AcpiGbl_RootTableList
.Tables
[i
].Signature
.Ascii
,
381 /* Ensure the table is actually loaded */
383 if (!AcpiTbIsTableLoaded (i
))
385 Status
= AE_NOT_EXIST
;
389 /* Invoke table handler if present */
391 if (AcpiGbl_TableHandler
)
393 (void) AcpiGbl_TableHandler (ACPI_TABLE_EVENT_UNLOAD
,
394 AcpiGbl_RootTableList
.Tables
[i
].Pointer
,
395 AcpiGbl_TableHandlerContext
);
399 * Delete all namespace objects owned by this table. Note that
400 * these objects can appear anywhere in the namespace by virtue
401 * of the AML "Scope" operator. Thus, we need to track ownership
402 * by an ID, not simply a position within the hierarchy.
404 Status
= AcpiTbDeleteNamespaceByOwner (i
);
405 if (ACPI_FAILURE (Status
))
410 Status
= AcpiTbReleaseOwnerId (i
);
411 AcpiTbSetTableLoadedFlag (i
, FALSE
);
415 (void) AcpiUtReleaseMutex (ACPI_MTX_INTERPRETER
);
416 return_ACPI_STATUS (Status
);
419 ACPI_EXPORT_SYMBOL (AcpiUnloadParentTable
)