/******************************************************************************
*
*
*****************************************************************************/
/*
* Copyright (C) 2000 - 2016, Intel Corp.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions, and the following disclaimer,
* without modification.
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
* substantially similar to the "NO WARRANTY" disclaimer below
* ("Disclaimer") and any redistribution must be conditioned upon
* including a substantially similar Disclaimer requirement for further
* binary redistribution.
* 3. Neither the names of the above-listed copyright holders nor the names
* of any contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* Alternatively, this software may be distributed under the terms of the
* GNU General Public License ("GPL") version 2 as published by the Free
* Software Foundation.
*
* NO WARRANTY
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGES.
*/
#include "acpi.h"
#include "accommon.h"
#include "acinterp.h"
#include "acnamesp.h"
#include "actables.h"
#include "acdispat.h"
#include "acevents.h"
#include "amlcode.h"
ACPI_MODULE_NAME ("exconfig")
/* Local prototypes */
static ACPI_STATUS
static ACPI_STATUS
/*******************************************************************************
*
* FUNCTION: AcpiExAddTable
*
* PARAMETERS: Table - Pointer to raw table
* ParentNode - Where to load the table (scope)
* DdbHandle - Where to return the table handle.
*
* RETURN: Status
*
* DESCRIPTION: Common function to Install and Load an ACPI table with a
* returned table handle.
*
******************************************************************************/
static ACPI_STATUS
{
/* Create an object to be the table handle */
if (!ObjDesc)
{
}
/* Init the table handle */
/* Install the new table into the local data structures */
/* Add the table to the namespace */
if (ACPI_FAILURE (Status))
{
}
/* Execute any module-level code that was found in the table */
{
}
/*
* Update GPEs for any new _Lxx/_Exx methods. Ignore errors. The host is
* responsible for discovering any new wake GPEs by running _PRW methods
* that may have been loaded by this table.
*/
if (ACPI_SUCCESS (Status))
{
}
}
/*******************************************************************************
*
* FUNCTION: AcpiExLoadTableOp
*
* PARAMETERS: WalkState - Current state with operands
* ReturnDesc - Where to store the return object
*
* RETURN: Status
*
*
******************************************************************************/
{
if (ACPI_FAILURE (Status))
{
if (Status != AE_NOT_FOUND)
{
}
/* Table not found, return an Integer=0 and AE_OK */
if (!DdbHandle)
{
}
*ReturnDesc = DdbHandle;
}
/* Default nodes */
/* RootPath (optional parameter) */
{
/*
* Find the node referenced by the RootPathString. This is the
* location within the namespace where the table will be loaded.
*/
if (ACPI_FAILURE (Status))
{
}
}
/* ParameterPath (optional parameter) */
{
{
/*
* Path is not absolute, so it will be relative to the node
* referenced by the RootPathString (or the NS root if omitted)
*/
}
/* Find the node referenced by the ParameterPathString */
if (ACPI_FAILURE (Status))
{
}
}
/* Load the table into the namespace */
if (ACPI_FAILURE (Status))
{
}
/* Parameter Data (optional) */
if (ParameterNode)
{
/* Store the parameter data into the optional parameter object */
if (ACPI_FAILURE (Status))
{
(void) AcpiExUnloadTable (DdbHandle);
}
}
if (ACPI_SUCCESS (Status))
{
ACPI_INFO (("Dynamic OEM Table Load:"));
AcpiTbPrintTableHeader (0, Table);
}
/* Invoke table handler if present */
if (AcpiGbl_TableHandler)
{
}
*ReturnDesc = DdbHandle;
}
/*******************************************************************************
*
* FUNCTION: AcpiExRegionRead
*
* PARAMETERS: ObjDesc - Region descriptor
* Length - Number of bytes to read
* Buffer - Pointer to where to put the data
*
* RETURN: Status
*
* DESCRIPTION: Read data from an operation region. The read starts from the
* beginning of the region.
*
******************************************************************************/
static ACPI_STATUS
{
UINT32 i;
/* Bytewise reads */
for (i = 0; i < Length; i++)
{
if (ACPI_FAILURE (Status))
{
return (Status);
}
Buffer++;
RegionOffset++;
}
return (AE_OK);
}
/*******************************************************************************
*
* FUNCTION: AcpiExLoadOp
*
* obtained
* Target - Where a handle to the table will be stored
* WalkState - Current state
*
* RETURN: Status
*
* DESCRIPTION: Load an ACPI table from a field or operation region
*
* NOTE: Region Fields (Field, BankField, IndexFields) are resolved to buffer
* objects before this code is reached.
*
* If source is an operation region, it must refer to SystemMemory, as
* per the ACPI specification.
*
******************************************************************************/
{
{
case ACPI_TYPE_REGION:
"Load table from Region %p\n", ObjDesc));
/* Region must be SystemMemory (from ACPI spec) */
{
}
/*
* If the Region Address and Length have not been previously
* evaluated, evaluate them now and save the results.
*/
{
if (ACPI_FAILURE (Status))
{
}
}
/* Get the table header first so we can get the table length */
if (!TableHeader)
{
}
if (ACPI_FAILURE (Status))
{
}
/* Must have at least an ACPI table header */
if (Length < sizeof (ACPI_TABLE_HEADER))
{
}
/*
* The original implementation simply mapped the table, with no copy.
* However, the memory region is not guaranteed to remain stable and
* we must copy the table to a local buffer. For example, the memory
* region is corrupted after suspend on some machines. Dynamically
* loaded tables are usually small, so this overhead is minimal.
*
* The latest implementation (5/2009) does not use a mapping at all.
* We use the low-level operation region interface to read the table
* instead of the obvious optimization of using a direct mapping.
* This maintains a consistent use of operation regions across the
* entire subsystem. This is important if additional processing must
* be performed in the (possibly user-installed) operation region
* handler. For example, AcpiExec and ASLTS depend on this.
*/
/* Allocate a buffer for the table */
if (!Table)
{
}
/* Read the entire table */
if (ACPI_FAILURE (Status))
{
}
break;
case ACPI_TYPE_BUFFER: /* Buffer or resolved RegionField */
"Load table from Buffer or Field %p\n", ObjDesc));
/* Must have at least an ACPI table header */
{
}
/* Get the actual table length from the table header */
/* Table cannot extend beyond the buffer */
{
}
if (Length < sizeof (ACPI_TABLE_HEADER))
{
}
/*
* Copy the table from the buffer because the buffer could be
* modified or even deleted in the future
*/
if (!Table)
{
}
break;
default:
}
/* Install the new table into the local data structures */
ACPI_INFO (("Dynamic OEM Table Load:"));
(void) AcpiUtAcquireMutex (ACPI_MTX_TABLES);
&TableIndex);
(void) AcpiUtReleaseMutex (ACPI_MTX_TABLES);
if (ACPI_FAILURE (Status))
{
/* Delete allocated table buffer */
}
/*
* Note: Now table is "INSTALLED", it must be validated before
* loading.
*/
if (ACPI_FAILURE (Status))
{
}
/*
* Add the table to the namespace.
*
* Note: Load the table objects relative to the root of the namespace.
* This appears to go against the ACPI specification, but we do it for
* compatibility with other ACPI implementations.
*/
if (ACPI_FAILURE (Status))
{
/* On error, TablePtr was deallocated above */
}
/* Store the DdbHandle into the Target operand */
if (ACPI_FAILURE (Status))
{
(void) AcpiExUnloadTable (DdbHandle);
/* TablePtr was deallocated above */
}
/* Remove the reference by added by AcpiExStore above */
/* Invoke table handler if present */
if (AcpiGbl_TableHandler)
{
}
}
/*******************************************************************************
*
* FUNCTION: AcpiExUnloadTable
*
* PARAMETERS: DdbHandle - Handle to a previously loaded table
*
* RETURN: Status
*
* DESCRIPTION: Unload an ACPI table
*
******************************************************************************/
{
/*
* Temporarily emit a warning so that the ASL for the machine can be
* hopefully obtained. This is to say that the Unload() operator is
* extremely rare if not completely unused.
*/
"Received request to unload an ACPI table"));
/*
* Validate the handle
* Although the handle is partially validated in AcpiExReconfiguration()
* when it calls AcpiExResolveOperands(), the handle is more completely
* validated here.
*
* Handle must be a valid operand object of type reference. Also, the
* DdbHandle must still be marked valid (table has not been previously
* unloaded)
*/
if ((!DdbHandle) ||
{
}
/* Get the table index from the DdbHandle */
/* Ensure the table is still loaded */
if (!AcpiTbIsTableLoaded (TableIndex))
{
}
/* Invoke table handler if present */
if (AcpiGbl_TableHandler)
{
if (ACPI_SUCCESS (Status))
{
}
}
/* Delete the portion of the namespace owned by this table */
if (ACPI_FAILURE (Status))
{
}
(void) AcpiTbReleaseOwnerId (TableIndex);
/*
* Invalidate the handle. We do this because the handle may be stored
* in a named object and may not be actually deleted until much later.
*/
}