2000-10-28 05:01:06 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
2000-12-01 09:36:25 +00:00
|
|
|
* Module Name: evregion - ACPI AddressSpace (OpRegion) handler dispatch
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2011-01-13 16:12:34 +00:00
|
|
|
/*
|
2012-01-11 21:25:42 +00:00
|
|
|
* Copyright (C) 2000 - 2012, Intel Corp.
|
2000-12-21 06:56:46 +00:00
|
|
|
* All rights reserved.
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2011-01-13 16:12:34 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define __EVREGION_C__
|
|
|
|
|
2009-06-01 19:24:26 +00:00
|
|
|
#include "acpi.h"
|
2009-06-01 21:02:40 +00:00
|
|
|
#include "accommon.h"
|
2009-06-01 19:24:26 +00:00
|
|
|
#include "acevents.h"
|
|
|
|
#include "acnamesp.h"
|
|
|
|
#include "acinterp.h"
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
#define _COMPONENT ACPI_EVENTS
|
2002-02-23 05:10:40 +00:00
|
|
|
ACPI_MODULE_NAME ("evregion")
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
/* Local prototypes */
|
|
|
|
|
2009-10-13 21:27:35 +00:00
|
|
|
static BOOLEAN
|
|
|
|
AcpiEvHasDefaultHandler (
|
|
|
|
ACPI_NAMESPACE_NODE *Node,
|
|
|
|
ACPI_ADR_SPACE_TYPE SpaceId);
|
|
|
|
|
2011-04-13 18:18:52 +00:00
|
|
|
static void
|
|
|
|
AcpiEvOrphanEcRegMethod (
|
|
|
|
void);
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
static ACPI_STATUS
|
|
|
|
AcpiEvRegRun (
|
|
|
|
ACPI_HANDLE ObjHandle,
|
|
|
|
UINT32 Level,
|
|
|
|
void *Context,
|
|
|
|
void **ReturnValue);
|
|
|
|
|
|
|
|
static ACPI_STATUS
|
|
|
|
AcpiEvInstallHandler (
|
|
|
|
ACPI_HANDLE ObjHandle,
|
|
|
|
UINT32 Level,
|
|
|
|
void *Context,
|
|
|
|
void **ReturnValue);
|
|
|
|
|
2009-06-01 21:02:40 +00:00
|
|
|
/* These are the address spaces that will get default handlers */
|
|
|
|
|
|
|
|
#define ACPI_NUM_DEFAULT_SPACES 4
|
|
|
|
|
|
|
|
static UINT8 AcpiGbl_DefaultAddressSpaces[ACPI_NUM_DEFAULT_SPACES] =
|
|
|
|
{
|
|
|
|
ACPI_ADR_SPACE_SYSTEM_MEMORY,
|
|
|
|
ACPI_ADR_SPACE_SYSTEM_IO,
|
|
|
|
ACPI_ADR_SPACE_PCI_CONFIG,
|
|
|
|
ACPI_ADR_SPACE_DATA_TABLE
|
|
|
|
};
|
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
/*******************************************************************************
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2004-05-25 02:34:44 +00:00
|
|
|
* FUNCTION: AcpiEvInstallRegionHandlers
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2003-07-13 22:44:13 +00:00
|
|
|
* PARAMETERS: None
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
2003-07-13 22:44:13 +00:00
|
|
|
* DESCRIPTION: Installs the core subsystem default address space handlers.
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2001-05-29 19:52:40 +00:00
|
|
|
******************************************************************************/
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
ACPI_STATUS
|
2004-05-25 02:34:44 +00:00
|
|
|
AcpiEvInstallRegionHandlers (
|
2000-10-28 05:01:06 +00:00
|
|
|
void)
|
|
|
|
{
|
|
|
|
ACPI_STATUS Status;
|
2009-06-01 21:02:40 +00:00
|
|
|
UINT32 i;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FUNCTION_TRACE (EvInstallRegionHandlers);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2001-09-07 01:22:25 +00:00
|
|
|
|
2004-05-25 02:34:44 +00:00
|
|
|
Status = AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE);
|
|
|
|
if (ACPI_FAILURE (Status))
|
|
|
|
{
|
|
|
|
return_ACPI_STATUS (Status);
|
|
|
|
}
|
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
2009-06-01 21:02:40 +00:00
|
|
|
* All address spaces (PCI Config, EC, SMBus) are scope dependent and
|
|
|
|
* registration must occur for a specific device.
|
2003-07-13 22:44:13 +00:00
|
|
|
*
|
2009-06-01 21:02:40 +00:00
|
|
|
* In the case of the system memory and IO address spaces there is
|
|
|
|
* currently no device associated with the address space. For these we
|
|
|
|
* use the root.
|
2003-07-13 22:44:13 +00:00
|
|
|
*
|
2009-06-01 21:02:40 +00:00
|
|
|
* We install the default PCI config space handler at the root so that
|
|
|
|
* this space is immediately available even though the we have not
|
|
|
|
* enumerated all the PCI Root Buses yet. This is to conform to the ACPI
|
|
|
|
* specification which states that the PCI config space must be always
|
|
|
|
* available -- even though we are nowhere near ready to find the PCI root
|
|
|
|
* buses at this point.
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2001-11-28 04:29:40 +00:00
|
|
|
* NOTE: We ignore AE_ALREADY_EXISTS because this means that a handler
|
2003-07-13 22:44:13 +00:00
|
|
|
* has already been installed (via AcpiInstallAddressSpaceHandler).
|
|
|
|
* Similar for AE_SAME_HANDLER.
|
2000-10-28 05:01:06 +00:00
|
|
|
*/
|
2003-07-13 22:44:13 +00:00
|
|
|
for (i = 0; i < ACPI_NUM_DEFAULT_SPACES; i++)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2004-05-25 02:34:44 +00:00
|
|
|
Status = AcpiEvInstallSpaceHandler (AcpiGbl_RootNode,
|
2007-03-22 17:24:05 +00:00
|
|
|
AcpiGbl_DefaultAddressSpaces[i],
|
|
|
|
ACPI_DEFAULT_HANDLER, NULL, NULL);
|
2003-07-13 22:44:13 +00:00
|
|
|
switch (Status)
|
|
|
|
{
|
|
|
|
case AE_OK:
|
|
|
|
case AE_SAME_HANDLER:
|
|
|
|
case AE_ALREADY_EXISTS:
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* These exceptions are all OK */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2004-05-25 02:34:44 +00:00
|
|
|
Status = AE_OK;
|
2003-07-13 22:44:13 +00:00
|
|
|
break;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
default:
|
|
|
|
|
2004-05-25 02:34:44 +00:00
|
|
|
goto UnlockAndExit;
|
2003-07-13 22:44:13 +00:00
|
|
|
}
|
2002-02-23 05:10:40 +00:00
|
|
|
}
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2004-05-25 02:34:44 +00:00
|
|
|
UnlockAndExit:
|
|
|
|
(void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
|
|
|
|
return_ACPI_STATUS (Status);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-13 21:27:35 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiEvHasDefaultHandler
|
|
|
|
*
|
|
|
|
* PARAMETERS: Node - Namespace node for the device
|
|
|
|
* SpaceId - The address space ID
|
|
|
|
*
|
|
|
|
* RETURN: TRUE if default handler is installed, FALSE otherwise
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Check if the default handler is installed for the requested
|
|
|
|
* space ID.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
static BOOLEAN
|
|
|
|
AcpiEvHasDefaultHandler (
|
|
|
|
ACPI_NAMESPACE_NODE *Node,
|
|
|
|
ACPI_ADR_SPACE_TYPE SpaceId)
|
|
|
|
{
|
|
|
|
ACPI_OPERAND_OBJECT *ObjDesc;
|
|
|
|
ACPI_OPERAND_OBJECT *HandlerObj;
|
|
|
|
|
|
|
|
|
|
|
|
/* Must have an existing internal object */
|
|
|
|
|
|
|
|
ObjDesc = AcpiNsGetAttachedObject (Node);
|
|
|
|
if (ObjDesc)
|
|
|
|
{
|
|
|
|
HandlerObj = ObjDesc->Device.Handler;
|
|
|
|
|
|
|
|
/* Walk the linked list of handlers for this object */
|
|
|
|
|
|
|
|
while (HandlerObj)
|
|
|
|
{
|
|
|
|
if (HandlerObj->AddressSpace.SpaceId == SpaceId)
|
|
|
|
{
|
|
|
|
if (HandlerObj->AddressSpace.HandlerFlags &
|
|
|
|
ACPI_ADDR_HANDLER_DEFAULT_INSTALLED)
|
|
|
|
{
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
HandlerObj = HandlerObj->AddressSpace.Next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-05-25 02:34:44 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiEvInitializeOpRegions
|
|
|
|
*
|
|
|
|
* PARAMETERS: None
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Execute _REG methods for all Operation Regions that have
|
|
|
|
* an installed default region handler.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
ACPI_STATUS
|
|
|
|
AcpiEvInitializeOpRegions (
|
|
|
|
void)
|
|
|
|
{
|
|
|
|
ACPI_STATUS Status;
|
2009-06-01 21:02:40 +00:00
|
|
|
UINT32 i;
|
2004-05-25 02:34:44 +00:00
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FUNCTION_TRACE (EvInitializeOpRegions);
|
2004-05-25 02:34:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
Status = AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE);
|
|
|
|
if (ACPI_FAILURE (Status))
|
|
|
|
{
|
|
|
|
return_ACPI_STATUS (Status);
|
|
|
|
}
|
|
|
|
|
2009-06-01 21:02:40 +00:00
|
|
|
/* Run the _REG methods for OpRegions in each default address space */
|
|
|
|
|
2004-05-25 02:34:44 +00:00
|
|
|
for (i = 0; i < ACPI_NUM_DEFAULT_SPACES; i++)
|
|
|
|
{
|
2009-06-01 21:02:40 +00:00
|
|
|
/*
|
2009-10-13 21:27:35 +00:00
|
|
|
* Make sure the installed handler is the DEFAULT handler. If not the
|
|
|
|
* default, the _REG methods will have already been run (when the
|
|
|
|
* handler was installed)
|
2004-05-25 02:34:44 +00:00
|
|
|
*/
|
2009-10-13 21:27:35 +00:00
|
|
|
if (AcpiEvHasDefaultHandler (AcpiGbl_RootNode,
|
|
|
|
AcpiGbl_DefaultAddressSpaces[i]))
|
|
|
|
{
|
|
|
|
Status = AcpiEvExecuteRegMethods (AcpiGbl_RootNode,
|
|
|
|
AcpiGbl_DefaultAddressSpaces[i]);
|
|
|
|
}
|
2004-05-25 02:34:44 +00:00
|
|
|
}
|
|
|
|
|
2011-02-11 22:56:14 +00:00
|
|
|
AcpiGbl_RegMethodsExecuted = TRUE;
|
|
|
|
|
2004-05-25 02:34:44 +00:00
|
|
|
(void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
|
|
|
|
return_ACPI_STATUS (Status);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
/*******************************************************************************
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
* FUNCTION: AcpiEvExecuteRegMethod
|
|
|
|
*
|
2005-11-01 22:11:18 +00:00
|
|
|
* PARAMETERS: RegionObj - Region object
|
|
|
|
* Function - Passed to _REG: On (1) or Off (0)
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Execute _REG method for a region
|
|
|
|
*
|
2001-05-29 19:52:40 +00:00
|
|
|
******************************************************************************/
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2003-12-09 02:45:16 +00:00
|
|
|
ACPI_STATUS
|
2000-10-28 05:01:06 +00:00
|
|
|
AcpiEvExecuteRegMethod (
|
2004-05-25 02:34:44 +00:00
|
|
|
ACPI_OPERAND_OBJECT *RegionObj,
|
2000-10-28 05:01:06 +00:00
|
|
|
UINT32 Function)
|
|
|
|
{
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_EVALUATE_INFO *Info;
|
|
|
|
ACPI_OPERAND_OBJECT *Args[3];
|
2004-05-25 02:34:44 +00:00
|
|
|
ACPI_OPERAND_OBJECT *RegionObj2;
|
2000-10-28 05:01:06 +00:00
|
|
|
ACPI_STATUS Status;
|
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FUNCTION_TRACE (EvExecuteRegMethod);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2001-11-28 04:29:40 +00:00
|
|
|
RegionObj2 = AcpiNsGetSecondaryObject (RegionObj);
|
|
|
|
if (!RegionObj2)
|
|
|
|
{
|
|
|
|
return_ACPI_STATUS (AE_NOT_EXIST);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (RegionObj2->Extra.Method_REG == NULL)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
|
|
|
return_ACPI_STATUS (AE_OK);
|
|
|
|
}
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Allocate and initialize the evaluation information block */
|
|
|
|
|
|
|
|
Info = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO));
|
|
|
|
if (!Info)
|
|
|
|
{
|
|
|
|
return_ACPI_STATUS (AE_NO_MEMORY);
|
|
|
|
}
|
|
|
|
|
|
|
|
Info->PrefixNode = RegionObj2->Extra.Method_REG;
|
|
|
|
Info->Pathname = NULL;
|
|
|
|
Info->Parameters = Args;
|
|
|
|
Info->Flags = ACPI_IGNORE_RETURN_VALUE;
|
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
2004-05-25 02:34:44 +00:00
|
|
|
* The _REG method has two arguments:
|
|
|
|
*
|
2007-03-22 17:24:05 +00:00
|
|
|
* Arg0 - Integer:
|
|
|
|
* Operation region space ID Same value as RegionObj->Region.SpaceId
|
|
|
|
*
|
|
|
|
* Arg1 - Integer:
|
|
|
|
* connection status 1 for connecting the handler, 0 for disconnecting
|
|
|
|
* the handler (Passed as a parameter)
|
2000-10-28 05:01:06 +00:00
|
|
|
*/
|
2009-11-16 18:28:41 +00:00
|
|
|
Args[0] = AcpiUtCreateIntegerObject ((UINT64) RegionObj->Region.SpaceId);
|
2007-03-22 17:24:05 +00:00
|
|
|
if (!Args[0])
|
2001-10-04 23:12:13 +00:00
|
|
|
{
|
2007-03-22 17:24:05 +00:00
|
|
|
Status = AE_NO_MEMORY;
|
|
|
|
goto Cleanup1;
|
2001-10-04 23:12:13 +00:00
|
|
|
}
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2009-11-16 18:28:41 +00:00
|
|
|
Args[1] = AcpiUtCreateIntegerObject ((UINT64) Function);
|
2007-03-22 17:24:05 +00:00
|
|
|
if (!Args[1])
|
2001-10-04 23:12:13 +00:00
|
|
|
{
|
2001-10-31 02:32:29 +00:00
|
|
|
Status = AE_NO_MEMORY;
|
2007-03-22 17:24:05 +00:00
|
|
|
goto Cleanup2;
|
2001-10-04 23:12:13 +00:00
|
|
|
}
|
|
|
|
|
2009-11-16 18:28:41 +00:00
|
|
|
Args[2] = NULL; /* Terminate list */
|
2004-05-25 02:34:44 +00:00
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Execute the method, no return value */
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_DEBUG_EXEC (
|
|
|
|
AcpiUtDisplayInitPathname (ACPI_TYPE_METHOD, Info->PrefixNode, NULL));
|
2001-10-04 23:12:13 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
Status = AcpiNsEvaluate (Info);
|
|
|
|
AcpiUtRemoveReference (Args[1]);
|
2001-10-04 23:12:13 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
Cleanup2:
|
|
|
|
AcpiUtRemoveReference (Args[0]);
|
2001-10-04 23:12:13 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
Cleanup1:
|
|
|
|
ACPI_FREE (Info);
|
2000-10-28 05:01:06 +00:00
|
|
|
return_ACPI_STATUS (Status);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
/*******************************************************************************
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
* FUNCTION: AcpiEvAddressSpaceDispatch
|
|
|
|
*
|
2003-12-09 02:45:16 +00:00
|
|
|
* PARAMETERS: RegionObj - Internal region object
|
2011-11-23 18:05:37 +00:00
|
|
|
* FieldObj - Corresponding field. Can be NULL.
|
2000-10-28 05:01:06 +00:00
|
|
|
* Function - Read or Write operation
|
2009-06-01 21:02:40 +00:00
|
|
|
* RegionOffset - Where in the region to read or write
|
2001-11-28 04:29:40 +00:00
|
|
|
* BitWidth - Field width in bits (8, 16, 32, or 64)
|
2007-03-22 17:24:05 +00:00
|
|
|
* Value - Pointer to in or out value, must be
|
2010-01-21 20:56:18 +00:00
|
|
|
* a full 64-bit integer
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Dispatch an address space or operation region access to
|
|
|
|
* a previously installed handler.
|
|
|
|
*
|
2001-05-29 19:52:40 +00:00
|
|
|
******************************************************************************/
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
ACPI_STATUS
|
|
|
|
AcpiEvAddressSpaceDispatch (
|
|
|
|
ACPI_OPERAND_OBJECT *RegionObj,
|
2011-11-23 18:05:37 +00:00
|
|
|
ACPI_OPERAND_OBJECT *FieldObj,
|
2000-10-28 05:01:06 +00:00
|
|
|
UINT32 Function,
|
2009-06-01 21:02:40 +00:00
|
|
|
UINT32 RegionOffset,
|
2000-10-28 05:01:06 +00:00
|
|
|
UINT32 BitWidth,
|
2010-01-21 20:56:18 +00:00
|
|
|
UINT64 *Value)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
|
|
|
ACPI_STATUS Status;
|
2001-05-29 19:52:40 +00:00
|
|
|
ACPI_ADR_SPACE_HANDLER Handler;
|
|
|
|
ACPI_ADR_SPACE_SETUP RegionSetup;
|
2000-10-28 05:01:06 +00:00
|
|
|
ACPI_OPERAND_OBJECT *HandlerDesc;
|
2001-11-28 04:29:40 +00:00
|
|
|
ACPI_OPERAND_OBJECT *RegionObj2;
|
2000-10-28 05:01:06 +00:00
|
|
|
void *RegionContext = NULL;
|
2011-11-23 18:05:37 +00:00
|
|
|
ACPI_CONNECTION_INFO *Context;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FUNCTION_TRACE (EvAddressSpaceDispatch);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2001-11-28 04:29:40 +00:00
|
|
|
RegionObj2 = AcpiNsGetSecondaryObject (RegionObj);
|
|
|
|
if (!RegionObj2)
|
|
|
|
{
|
|
|
|
return_ACPI_STATUS (AE_NOT_EXIST);
|
|
|
|
}
|
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Ensure that there is a handler associated with this region */
|
|
|
|
|
2003-12-09 02:45:16 +00:00
|
|
|
HandlerDesc = RegionObj->Region.Handler;
|
2000-10-28 05:01:06 +00:00
|
|
|
if (!HandlerDesc)
|
|
|
|
{
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_ERROR ((AE_INFO,
|
|
|
|
"No handler for Region [%4.4s] (%p) [%s]",
|
2003-12-09 02:45:16 +00:00
|
|
|
AcpiUtGetNodeName (RegionObj->Region.Node),
|
2001-05-29 19:52:40 +00:00
|
|
|
RegionObj, AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
|
|
|
|
|
2001-11-28 04:29:40 +00:00
|
|
|
return_ACPI_STATUS (AE_NOT_EXIST);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
2011-11-23 18:05:37 +00:00
|
|
|
Context = HandlerDesc->AddressSpace.Context;
|
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
2009-06-01 21:02:40 +00:00
|
|
|
* It may be the case that the region has never been initialized.
|
2001-05-29 19:52:40 +00:00
|
|
|
* Some types of regions require special init code
|
2000-10-28 05:01:06 +00:00
|
|
|
*/
|
2001-11-28 04:29:40 +00:00
|
|
|
if (!(RegionObj->Region.Flags & AOPOBJ_SETUP_COMPLETE))
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2009-06-01 21:02:40 +00:00
|
|
|
/* This region has not been initialized yet, do it */
|
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
RegionSetup = HandlerDesc->AddressSpace.Setup;
|
2000-10-28 05:01:06 +00:00
|
|
|
if (!RegionSetup)
|
|
|
|
{
|
2003-07-13 22:44:13 +00:00
|
|
|
/* No initialization routine, exit with error */
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_ERROR ((AE_INFO,
|
|
|
|
"No init routine for region(%p) [%s]",
|
2001-05-29 19:52:40 +00:00
|
|
|
RegionObj, AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
|
2003-07-13 22:44:13 +00:00
|
|
|
return_ACPI_STATUS (AE_NOT_EXIST);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2009-06-01 21:02:40 +00:00
|
|
|
* We must exit the interpreter because the region setup will
|
|
|
|
* potentially execute control methods (for example, the _REG method
|
|
|
|
* for this region)
|
2000-10-28 05:01:06 +00:00
|
|
|
*/
|
2009-06-01 21:02:40 +00:00
|
|
|
AcpiExExitInterpreter ();
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
Status = RegionSetup (RegionObj, ACPI_REGION_ACTIVATE,
|
2011-11-23 18:05:37 +00:00
|
|
|
Context, &RegionContext);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
/* Re-enter the interpreter */
|
|
|
|
|
2009-06-01 21:02:40 +00:00
|
|
|
AcpiExEnterInterpreter ();
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Check for failure of the Region Setup */
|
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
if (ACPI_FAILURE (Status))
|
|
|
|
{
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_EXCEPTION ((AE_INFO, Status,
|
|
|
|
"During region initialization: [%s]",
|
2001-05-29 19:52:40 +00:00
|
|
|
AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
|
2001-11-28 04:29:40 +00:00
|
|
|
return_ACPI_STATUS (Status);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
2009-06-01 21:02:40 +00:00
|
|
|
/* Region initialization may have been completed by RegionSetup */
|
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
if (!(RegionObj->Region.Flags & AOPOBJ_SETUP_COMPLETE))
|
|
|
|
{
|
|
|
|
RegionObj->Region.Flags |= AOPOBJ_SETUP_COMPLETE;
|
|
|
|
|
|
|
|
if (RegionObj2->Extra.RegionContext)
|
|
|
|
{
|
|
|
|
/* The handler for this region was already installed */
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FREE (RegionContext);
|
2003-07-13 22:44:13 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Save the returned context for use in all accesses to
|
|
|
|
* this particular region
|
|
|
|
*/
|
|
|
|
RegionObj2->Extra.RegionContext = RegionContext;
|
|
|
|
}
|
|
|
|
}
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* We have everything we need, we can invoke the address space handler */
|
|
|
|
|
|
|
|
Handler = HandlerDesc->AddressSpace.Handler;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2001-08-26 22:28:18 +00:00
|
|
|
ACPI_DEBUG_PRINT ((ACPI_DB_OPREGION,
|
2003-07-13 22:44:13 +00:00
|
|
|
"Handler %p (@%p) Address %8.8X%8.8X [%s]\n",
|
2003-12-09 02:45:16 +00:00
|
|
|
&RegionObj->Region.Handler->AddressSpace, Handler,
|
2009-06-01 21:02:40 +00:00
|
|
|
ACPI_FORMAT_NATIVE_UINT (RegionObj->Region.Address + RegionOffset),
|
2003-07-13 22:44:13 +00:00
|
|
|
AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2011-11-23 18:05:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Special handling for GenericSerialBus and GeneralPurposeIo:
|
|
|
|
* There are three extra parameters that must be passed to the
|
|
|
|
* handler via the context:
|
|
|
|
* 1) Connection buffer, a resource template from Connection() op.
|
|
|
|
* 2) Length of the above buffer.
|
|
|
|
* 3) Actual access length from the AccessAs() op.
|
|
|
|
*/
|
|
|
|
if (((RegionObj->Region.SpaceId == ACPI_ADR_SPACE_GSBUS) ||
|
|
|
|
(RegionObj->Region.SpaceId == ACPI_ADR_SPACE_GPIO)) &&
|
|
|
|
Context &&
|
|
|
|
FieldObj)
|
|
|
|
{
|
|
|
|
/* Get the Connection (ResourceTemplate) buffer */
|
|
|
|
|
|
|
|
Context->Connection = FieldObj->Field.ResourceBuffer;
|
|
|
|
Context->Length = FieldObj->Field.ResourceLength;
|
|
|
|
Context->AccessLength = FieldObj->Field.AccessLength;
|
|
|
|
}
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
if (!(HandlerDesc->AddressSpace.HandlerFlags &
|
|
|
|
ACPI_ADDR_HANDLER_DEFAULT_INSTALLED))
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
|
|
|
/*
|
2003-07-13 22:44:13 +00:00
|
|
|
* For handlers other than the default (supplied) handlers, we must
|
|
|
|
* exit the interpreter because the handler *might* block -- we don't
|
|
|
|
* know what it will do, so we can't hold the lock on the intepreter.
|
2000-10-28 05:01:06 +00:00
|
|
|
*/
|
2009-06-01 21:02:40 +00:00
|
|
|
AcpiExExitInterpreter();
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Call the handler */
|
|
|
|
|
2009-06-01 21:02:40 +00:00
|
|
|
Status = Handler (Function,
|
|
|
|
(RegionObj->Region.Address + RegionOffset), BitWidth, Value,
|
2011-11-23 18:05:37 +00:00
|
|
|
Context, RegionObj2->Extra.RegionContext);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
if (ACPI_FAILURE (Status))
|
|
|
|
{
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_EXCEPTION ((AE_INFO, Status, "Returned by Handler for [%s]",
|
|
|
|
AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
if (!(HandlerDesc->AddressSpace.HandlerFlags &
|
|
|
|
ACPI_ADDR_HANDLER_DEFAULT_INSTALLED))
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2001-09-07 01:22:25 +00:00
|
|
|
/*
|
|
|
|
* We just returned from a non-default handler, we must re-enter the
|
|
|
|
* interpreter
|
|
|
|
*/
|
2009-06-01 21:02:40 +00:00
|
|
|
AcpiExEnterInterpreter ();
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return_ACPI_STATUS (Status);
|
|
|
|
}
|
|
|
|
|
2003-12-09 02:45:16 +00:00
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
/*******************************************************************************
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2002-07-09 17:51:31 +00:00
|
|
|
* FUNCTION: AcpiEvDetachRegion
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2004-12-01 23:14:10 +00:00
|
|
|
* PARAMETERS: RegionObj - Region Object
|
|
|
|
* AcpiNsIsLocked - Namespace Region Already Locked?
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Break the association between the handler and the region
|
|
|
|
* this is a two way association.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
2002-07-09 17:51:31 +00:00
|
|
|
AcpiEvDetachRegion(
|
2000-12-21 06:56:46 +00:00
|
|
|
ACPI_OPERAND_OBJECT *RegionObj,
|
|
|
|
BOOLEAN AcpiNsIsLocked)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
|
|
|
ACPI_OPERAND_OBJECT *HandlerObj;
|
|
|
|
ACPI_OPERAND_OBJECT *ObjDesc;
|
|
|
|
ACPI_OPERAND_OBJECT **LastObjPtr;
|
2001-05-29 19:52:40 +00:00
|
|
|
ACPI_ADR_SPACE_SETUP RegionSetup;
|
2003-12-09 02:45:16 +00:00
|
|
|
void **RegionContext;
|
2001-11-28 04:29:40 +00:00
|
|
|
ACPI_OPERAND_OBJECT *RegionObj2;
|
2000-10-28 05:01:06 +00:00
|
|
|
ACPI_STATUS Status;
|
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FUNCTION_TRACE (EvDetachRegion);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2001-09-07 01:22:25 +00:00
|
|
|
|
2001-11-28 04:29:40 +00:00
|
|
|
RegionObj2 = AcpiNsGetSecondaryObject (RegionObj);
|
|
|
|
if (!RegionObj2)
|
|
|
|
{
|
2002-07-09 17:51:31 +00:00
|
|
|
return_VOID;
|
2001-11-28 04:29:40 +00:00
|
|
|
}
|
2003-12-09 02:45:16 +00:00
|
|
|
RegionContext = &RegionObj2->Extra.RegionContext;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Get the address handler from the region object */
|
|
|
|
|
2003-12-09 02:45:16 +00:00
|
|
|
HandlerObj = RegionObj->Region.Handler;
|
2000-10-28 05:01:06 +00:00
|
|
|
if (!HandlerObj)
|
|
|
|
{
|
2003-07-13 22:44:13 +00:00
|
|
|
/* This region has no handler, all done */
|
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Find this region in the handler's list */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
ObjDesc = HandlerObj->AddressSpace.RegionList;
|
|
|
|
LastObjPtr = &HandlerObj->AddressSpace.RegionList;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
while (ObjDesc)
|
|
|
|
{
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Is this the correct Region? */
|
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
if (ObjDesc == RegionObj)
|
|
|
|
{
|
2001-08-26 22:28:18 +00:00
|
|
|
ACPI_DEBUG_PRINT ((ACPI_DB_OPREGION,
|
|
|
|
"Removing Region %p from address handler %p\n",
|
2000-10-28 05:01:06 +00:00
|
|
|
RegionObj, HandlerObj));
|
2003-07-13 22:44:13 +00:00
|
|
|
|
|
|
|
/* This is it, remove it from the handler's list */
|
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
*LastObjPtr = ObjDesc->Region.Next;
|
2009-06-01 21:02:40 +00:00
|
|
|
ObjDesc->Region.Next = NULL; /* Must clear field */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2000-12-21 06:56:46 +00:00
|
|
|
if (AcpiNsIsLocked)
|
|
|
|
{
|
2002-02-23 05:10:40 +00:00
|
|
|
Status = AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
|
|
|
|
if (ACPI_FAILURE (Status))
|
|
|
|
{
|
|
|
|
return_VOID;
|
|
|
|
}
|
2000-12-21 06:56:46 +00:00
|
|
|
}
|
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Now stop region accesses by executing the _REG method */
|
|
|
|
|
2011-04-13 18:18:52 +00:00
|
|
|
Status = AcpiEvExecuteRegMethod (RegionObj, ACPI_REG_DISCONNECT);
|
2002-07-09 17:51:31 +00:00
|
|
|
if (ACPI_FAILURE (Status))
|
|
|
|
{
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_EXCEPTION ((AE_INFO, Status, "from region _REG, [%s]",
|
2002-07-09 17:51:31 +00:00
|
|
|
AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
|
|
|
|
}
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2000-12-21 06:56:46 +00:00
|
|
|
if (AcpiNsIsLocked)
|
|
|
|
{
|
2002-02-23 05:10:40 +00:00
|
|
|
Status = AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE);
|
|
|
|
if (ACPI_FAILURE (Status))
|
|
|
|
{
|
|
|
|
return_VOID;
|
|
|
|
}
|
2000-12-21 06:56:46 +00:00
|
|
|
}
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/*
|
2009-06-01 21:02:40 +00:00
|
|
|
* If the region has been activated, call the setup handler with
|
|
|
|
* the deactivate notification
|
2007-03-22 17:24:05 +00:00
|
|
|
*/
|
|
|
|
if (RegionObj->Region.Flags & AOPOBJ_SETUP_COMPLETE)
|
|
|
|
{
|
|
|
|
RegionSetup = HandlerObj->AddressSpace.Setup;
|
|
|
|
Status = RegionSetup (RegionObj, ACPI_REGION_DEACTIVATE,
|
|
|
|
HandlerObj->AddressSpace.Context, RegionContext);
|
2003-07-13 22:44:13 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Init routine may fail, Just ignore errors */
|
2003-07-13 22:44:13 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
if (ACPI_FAILURE (Status))
|
|
|
|
{
|
|
|
|
ACPI_EXCEPTION ((AE_INFO, Status,
|
|
|
|
"from region handler - deactivate, [%s]",
|
|
|
|
AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
|
|
|
|
}
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
RegionObj->Region.Flags &= ~(AOPOBJ_SETUP_COMPLETE);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2003-07-13 22:44:13 +00:00
|
|
|
* Remove handler reference in the region
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2007-03-22 17:24:05 +00:00
|
|
|
* NOTE: this doesn't mean that the region goes away, the region
|
|
|
|
* is just inaccessible as indicated to the _REG method
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2007-03-22 17:24:05 +00:00
|
|
|
* If the region is on the handler's list, this must be the
|
|
|
|
* region's handler
|
2000-10-28 05:01:06 +00:00
|
|
|
*/
|
2003-12-09 02:45:16 +00:00
|
|
|
RegionObj->Region.Handler = NULL;
|
2003-07-13 22:44:13 +00:00
|
|
|
AcpiUtRemoveReference (HandlerObj);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
return_VOID;
|
2003-07-13 22:44:13 +00:00
|
|
|
}
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Walk the linked list of handlers */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
LastObjPtr = &ObjDesc->Region.Next;
|
|
|
|
ObjDesc = ObjDesc->Region.Next;
|
|
|
|
}
|
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* If we get here, the region was not in the handler's region list */
|
|
|
|
|
2001-08-26 22:28:18 +00:00
|
|
|
ACPI_DEBUG_PRINT ((ACPI_DB_OPREGION,
|
|
|
|
"Cannot remove region %p from address handler %p\n",
|
2000-10-28 05:01:06 +00:00
|
|
|
RegionObj, HandlerObj));
|
|
|
|
|
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
/*******************************************************************************
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2002-07-09 17:51:31 +00:00
|
|
|
* FUNCTION: AcpiEvAttachRegion
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2004-12-01 23:14:10 +00:00
|
|
|
* PARAMETERS: HandlerObj - Handler Object
|
|
|
|
* RegionObj - Region Object
|
|
|
|
* AcpiNsIsLocked - Namespace Region Already Locked?
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Create the association between the handler and the region
|
|
|
|
* this is a two way association.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
ACPI_STATUS
|
2002-07-09 17:51:31 +00:00
|
|
|
AcpiEvAttachRegion (
|
2000-10-28 05:01:06 +00:00
|
|
|
ACPI_OPERAND_OBJECT *HandlerObj,
|
|
|
|
ACPI_OPERAND_OBJECT *RegionObj,
|
|
|
|
BOOLEAN AcpiNsIsLocked)
|
|
|
|
{
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FUNCTION_TRACE (EvAttachRegion);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2001-09-07 01:22:25 +00:00
|
|
|
ACPI_DEBUG_PRINT ((ACPI_DB_OPREGION,
|
2003-12-09 02:45:16 +00:00
|
|
|
"Adding Region [%4.4s] %p to address handler %p [%s]\n",
|
|
|
|
AcpiUtGetNodeName (RegionObj->Region.Node),
|
2004-02-28 20:23:30 +00:00
|
|
|
RegionObj, HandlerObj,
|
2003-12-09 02:45:16 +00:00
|
|
|
AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Link this region to the front of the handler's list */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
RegionObj->Region.Next = HandlerObj->AddressSpace.RegionList;
|
|
|
|
HandlerObj->AddressSpace.RegionList = RegionObj;
|
|
|
|
|
|
|
|
/* Install the region's handler */
|
|
|
|
|
2003-12-09 02:45:16 +00:00
|
|
|
if (RegionObj->Region.Handler)
|
2003-07-13 22:44:13 +00:00
|
|
|
{
|
|
|
|
return_ACPI_STATUS (AE_ALREADY_EXISTS);
|
|
|
|
}
|
|
|
|
|
2003-12-09 02:45:16 +00:00
|
|
|
RegionObj->Region.Handler = HandlerObj;
|
2003-07-13 22:44:13 +00:00
|
|
|
AcpiUtAddReference (HandlerObj);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2003-12-09 02:45:16 +00:00
|
|
|
return_ACPI_STATUS (AE_OK);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
/*******************************************************************************
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2003-07-13 22:44:13 +00:00
|
|
|
* FUNCTION: AcpiEvInstallHandler
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2003-12-09 02:45:16 +00:00
|
|
|
* PARAMETERS: WalkNamespace callback
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2001-11-28 04:29:40 +00:00
|
|
|
* DESCRIPTION: This routine installs an address handler into objects that are
|
2003-07-13 22:44:13 +00:00
|
|
|
* of type Region or Device.
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
* If the Object is a Device, and the device has a handler of
|
|
|
|
* the same type then the search is terminated in that branch.
|
|
|
|
*
|
|
|
|
* This is because the existing handler is closer in proximity
|
|
|
|
* to any more regions than the one we are trying to install.
|
|
|
|
*
|
2001-05-29 19:52:40 +00:00
|
|
|
******************************************************************************/
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
static ACPI_STATUS
|
2003-07-13 22:44:13 +00:00
|
|
|
AcpiEvInstallHandler (
|
2000-10-28 05:01:06 +00:00
|
|
|
ACPI_HANDLE ObjHandle,
|
|
|
|
UINT32 Level,
|
|
|
|
void *Context,
|
|
|
|
void **ReturnValue)
|
|
|
|
{
|
|
|
|
ACPI_OPERAND_OBJECT *HandlerObj;
|
2003-07-13 22:44:13 +00:00
|
|
|
ACPI_OPERAND_OBJECT *NextHandlerObj;
|
2000-10-28 05:01:06 +00:00
|
|
|
ACPI_OPERAND_OBJECT *ObjDesc;
|
|
|
|
ACPI_NAMESPACE_NODE *Node;
|
|
|
|
ACPI_STATUS Status;
|
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FUNCTION_NAME (EvInstallHandler);
|
2001-05-29 19:52:40 +00:00
|
|
|
|
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
HandlerObj = (ACPI_OPERAND_OBJECT *) Context;
|
|
|
|
|
|
|
|
/* Parameter validation */
|
|
|
|
|
|
|
|
if (!HandlerObj)
|
|
|
|
{
|
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert and validate the device handle */
|
|
|
|
|
2009-12-14 22:07:33 +00:00
|
|
|
Node = AcpiNsValidateHandle (ObjHandle);
|
2000-10-28 05:01:06 +00:00
|
|
|
if (!Node)
|
|
|
|
{
|
|
|
|
return (AE_BAD_PARAMETER);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2009-06-01 21:02:40 +00:00
|
|
|
* We only care about regions and objects that are allowed to have
|
|
|
|
* address space handlers
|
2000-10-28 05:01:06 +00:00
|
|
|
*/
|
|
|
|
if ((Node->Type != ACPI_TYPE_DEVICE) &&
|
|
|
|
(Node->Type != ACPI_TYPE_REGION) &&
|
|
|
|
(Node != AcpiGbl_RootNode))
|
|
|
|
{
|
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for an existing internal object */
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
ObjDesc = AcpiNsGetAttachedObject (Node);
|
2000-10-28 05:01:06 +00:00
|
|
|
if (!ObjDesc)
|
|
|
|
{
|
2003-07-13 22:44:13 +00:00
|
|
|
/* No object, just exit */
|
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Devices are handled different than regions */
|
|
|
|
|
2009-06-01 21:02:40 +00:00
|
|
|
if (ObjDesc->Common.Type == ACPI_TYPE_DEVICE)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Check if this Device already has a handler for this address space */
|
|
|
|
|
2003-12-09 02:45:16 +00:00
|
|
|
NextHandlerObj = ObjDesc->Device.Handler;
|
2003-07-13 22:44:13 +00:00
|
|
|
while (NextHandlerObj)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Found a handler, is it for the same address space? */
|
|
|
|
|
2009-06-01 21:02:40 +00:00
|
|
|
if (NextHandlerObj->AddressSpace.SpaceId ==
|
|
|
|
HandlerObj->AddressSpace.SpaceId)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2001-08-26 22:28:18 +00:00
|
|
|
ACPI_DEBUG_PRINT ((ACPI_DB_OPREGION,
|
2009-06-01 21:02:40 +00:00
|
|
|
"Found handler for region [%s] in device %p(%p) "
|
|
|
|
"handler %p\n",
|
2003-07-13 22:44:13 +00:00
|
|
|
AcpiUtGetRegionName (HandlerObj->AddressSpace.SpaceId),
|
|
|
|
ObjDesc, NextHandlerObj, HandlerObj));
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
/*
|
2003-07-13 22:44:13 +00:00
|
|
|
* Since the object we found it on was a device, then it
|
|
|
|
* means that someone has already installed a handler for
|
2009-06-01 21:02:40 +00:00
|
|
|
* the branch of the namespace from this device on. Just
|
2003-07-13 22:44:13 +00:00
|
|
|
* bail out telling the walk routine to not traverse this
|
2009-06-01 21:02:40 +00:00
|
|
|
* branch. This preserves the scoping rule for handlers.
|
2000-10-28 05:01:06 +00:00
|
|
|
*/
|
|
|
|
return (AE_CTRL_DEPTH);
|
|
|
|
}
|
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Walk the linked list of handlers attached to this device */
|
|
|
|
|
|
|
|
NextHandlerObj = NextHandlerObj->AddressSpace.Next;
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2009-06-01 21:02:40 +00:00
|
|
|
* As long as the device didn't have a handler for this space we
|
|
|
|
* don't care about it. We just ignore it and proceed.
|
2000-10-28 05:01:06 +00:00
|
|
|
*/
|
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Object is a Region */
|
|
|
|
|
|
|
|
if (ObjDesc->Region.SpaceId != HandlerObj->AddressSpace.SpaceId)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2009-06-01 21:02:40 +00:00
|
|
|
/* This region is for a different address space, just ignore it */
|
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2009-06-01 21:02:40 +00:00
|
|
|
* Now we have a region and it is for the handler's address space type.
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2003-07-13 22:44:13 +00:00
|
|
|
* First disconnect region for any previous handler (if any)
|
2000-10-28 05:01:06 +00:00
|
|
|
*/
|
2002-07-09 17:51:31 +00:00
|
|
|
AcpiEvDetachRegion (ObjDesc, FALSE);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
/* Connect the region to the new handler */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
Status = AcpiEvAttachRegion (HandlerObj, ObjDesc, FALSE);
|
2000-10-28 05:01:06 +00:00
|
|
|
return (Status);
|
|
|
|
}
|
|
|
|
|
2004-05-25 02:34:44 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiEvInstallSpaceHandler
|
|
|
|
*
|
|
|
|
* PARAMETERS: Node - Namespace node for the device
|
|
|
|
* SpaceId - The address space ID
|
|
|
|
* Handler - Address of the handler
|
|
|
|
* Setup - Address of the setup function
|
|
|
|
* Context - Value passed to the handler on each access
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Install a handler for all OpRegions of a given SpaceId.
|
|
|
|
* Assumes namespace is locked
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
ACPI_STATUS
|
|
|
|
AcpiEvInstallSpaceHandler (
|
|
|
|
ACPI_NAMESPACE_NODE *Node,
|
|
|
|
ACPI_ADR_SPACE_TYPE SpaceId,
|
|
|
|
ACPI_ADR_SPACE_HANDLER Handler,
|
|
|
|
ACPI_ADR_SPACE_SETUP Setup,
|
|
|
|
void *Context)
|
|
|
|
{
|
|
|
|
ACPI_OPERAND_OBJECT *ObjDesc;
|
|
|
|
ACPI_OPERAND_OBJECT *HandlerObj;
|
|
|
|
ACPI_STATUS Status;
|
|
|
|
ACPI_OBJECT_TYPE Type;
|
2007-03-22 17:24:05 +00:00
|
|
|
UINT8 Flags = 0;
|
2004-05-25 02:34:44 +00:00
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FUNCTION_TRACE (EvInstallSpaceHandler);
|
2004-05-25 02:34:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2009-06-01 21:02:40 +00:00
|
|
|
* This registration is valid for only the types below and the root. This
|
|
|
|
* is where the default handlers get placed.
|
2004-05-25 02:34:44 +00:00
|
|
|
*/
|
|
|
|
if ((Node->Type != ACPI_TYPE_DEVICE) &&
|
|
|
|
(Node->Type != ACPI_TYPE_PROCESSOR) &&
|
|
|
|
(Node->Type != ACPI_TYPE_THERMAL) &&
|
|
|
|
(Node != AcpiGbl_RootNode))
|
|
|
|
{
|
|
|
|
Status = AE_BAD_PARAMETER;
|
|
|
|
goto UnlockAndExit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Handler == ACPI_DEFAULT_HANDLER)
|
|
|
|
{
|
|
|
|
Flags = ACPI_ADDR_HANDLER_DEFAULT_INSTALLED;
|
|
|
|
|
|
|
|
switch (SpaceId)
|
|
|
|
{
|
|
|
|
case ACPI_ADR_SPACE_SYSTEM_MEMORY:
|
|
|
|
Handler = AcpiExSystemMemorySpaceHandler;
|
|
|
|
Setup = AcpiEvSystemMemoryRegionSetup;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_ADR_SPACE_SYSTEM_IO:
|
|
|
|
Handler = AcpiExSystemIoSpaceHandler;
|
|
|
|
Setup = AcpiEvIoSpaceRegionSetup;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_ADR_SPACE_PCI_CONFIG:
|
|
|
|
Handler = AcpiExPciConfigSpaceHandler;
|
|
|
|
Setup = AcpiEvPciConfigRegionSetup;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_ADR_SPACE_CMOS:
|
|
|
|
Handler = AcpiExCmosSpaceHandler;
|
|
|
|
Setup = AcpiEvCmosRegionSetup;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_ADR_SPACE_PCI_BAR_TARGET:
|
|
|
|
Handler = AcpiExPciBarSpaceHandler;
|
|
|
|
Setup = AcpiEvPciBarRegionSetup;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_ADR_SPACE_DATA_TABLE:
|
|
|
|
Handler = AcpiExDataTableSpaceHandler;
|
|
|
|
Setup = NULL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
Status = AE_BAD_PARAMETER;
|
|
|
|
goto UnlockAndExit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the caller hasn't specified a setup routine, use the default */
|
|
|
|
|
|
|
|
if (!Setup)
|
|
|
|
{
|
|
|
|
Setup = AcpiEvDefaultRegionSetup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for an existing internal object */
|
|
|
|
|
|
|
|
ObjDesc = AcpiNsGetAttachedObject (Node);
|
|
|
|
if (ObjDesc)
|
|
|
|
{
|
|
|
|
/*
|
2009-06-01 21:02:40 +00:00
|
|
|
* The attached device object already exists. Make sure the handler
|
|
|
|
* is not already installed.
|
2004-05-25 02:34:44 +00:00
|
|
|
*/
|
|
|
|
HandlerObj = ObjDesc->Device.Handler;
|
|
|
|
|
|
|
|
/* Walk the handler list for this device */
|
|
|
|
|
|
|
|
while (HandlerObj)
|
|
|
|
{
|
|
|
|
/* Same SpaceId indicates a handler already installed */
|
|
|
|
|
|
|
|
if (HandlerObj->AddressSpace.SpaceId == SpaceId)
|
|
|
|
{
|
|
|
|
if (HandlerObj->AddressSpace.Handler == Handler)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* It is (relatively) OK to attempt to install the SAME
|
2009-06-01 21:02:40 +00:00
|
|
|
* handler twice. This can easily happen with the
|
|
|
|
* PCI_Config space.
|
2004-05-25 02:34:44 +00:00
|
|
|
*/
|
|
|
|
Status = AE_SAME_HANDLER;
|
|
|
|
goto UnlockAndExit;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* A handler is already installed */
|
|
|
|
|
|
|
|
Status = AE_ALREADY_EXISTS;
|
|
|
|
}
|
|
|
|
goto UnlockAndExit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Walk the linked list of handlers */
|
|
|
|
|
|
|
|
HandlerObj = HandlerObj->AddressSpace.Next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ACPI_DEBUG_PRINT ((ACPI_DB_OPREGION,
|
|
|
|
"Creating object on Device %p while installing handler\n", Node));
|
|
|
|
|
|
|
|
/* ObjDesc does not exist, create one */
|
|
|
|
|
|
|
|
if (Node->Type == ACPI_TYPE_ANY)
|
|
|
|
{
|
|
|
|
Type = ACPI_TYPE_DEVICE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Type = Node->Type;
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjDesc = AcpiUtCreateInternalObject (Type);
|
|
|
|
if (!ObjDesc)
|
|
|
|
{
|
|
|
|
Status = AE_NO_MEMORY;
|
|
|
|
goto UnlockAndExit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Init new descriptor */
|
|
|
|
|
|
|
|
ObjDesc->Common.Type = (UINT8) Type;
|
|
|
|
|
|
|
|
/* Attach the new object to the Node */
|
|
|
|
|
|
|
|
Status = AcpiNsAttachObject (Node, ObjDesc, Type);
|
|
|
|
|
|
|
|
/* Remove local reference to the object */
|
|
|
|
|
|
|
|
AcpiUtRemoveReference (ObjDesc);
|
|
|
|
|
|
|
|
if (ACPI_FAILURE (Status))
|
|
|
|
{
|
|
|
|
goto UnlockAndExit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ACPI_DEBUG_PRINT ((ACPI_DB_OPREGION,
|
|
|
|
"Installing address handler for region %s(%X) on Device %4.4s %p(%p)\n",
|
|
|
|
AcpiUtGetRegionName (SpaceId), SpaceId,
|
|
|
|
AcpiUtGetNodeName (Node), Node, ObjDesc));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Install the handler
|
|
|
|
*
|
2009-06-01 21:02:40 +00:00
|
|
|
* At this point there is no existing handler. Just allocate the object
|
|
|
|
* for the handler and link it into the list.
|
2004-05-25 02:34:44 +00:00
|
|
|
*/
|
|
|
|
HandlerObj = AcpiUtCreateInternalObject (ACPI_TYPE_LOCAL_ADDRESS_HANDLER);
|
|
|
|
if (!HandlerObj)
|
|
|
|
{
|
|
|
|
Status = AE_NO_MEMORY;
|
|
|
|
goto UnlockAndExit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Init handler obj */
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
HandlerObj->AddressSpace.SpaceId = (UINT8) SpaceId;
|
|
|
|
HandlerObj->AddressSpace.HandlerFlags = Flags;
|
|
|
|
HandlerObj->AddressSpace.RegionList = NULL;
|
|
|
|
HandlerObj->AddressSpace.Node = Node;
|
|
|
|
HandlerObj->AddressSpace.Handler = Handler;
|
|
|
|
HandlerObj->AddressSpace.Context = Context;
|
|
|
|
HandlerObj->AddressSpace.Setup = Setup;
|
2004-05-25 02:34:44 +00:00
|
|
|
|
|
|
|
/* Install at head of Device.AddressSpace list */
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
HandlerObj->AddressSpace.Next = ObjDesc->Device.Handler;
|
2004-05-25 02:34:44 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The Device object is the first reference on the HandlerObj.
|
|
|
|
* Each region that uses the handler adds a reference.
|
|
|
|
*/
|
|
|
|
ObjDesc->Device.Handler = HandlerObj;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Walk the namespace finding all of the regions this
|
|
|
|
* handler will manage.
|
|
|
|
*
|
|
|
|
* Start at the device and search the branch toward
|
|
|
|
* the leaf nodes until either the leaf is encountered or
|
|
|
|
* a device is detected that has an address handler of the
|
|
|
|
* same type.
|
|
|
|
*
|
|
|
|
* In either case, back up and search down the remainder
|
|
|
|
* of the branch
|
|
|
|
*/
|
|
|
|
Status = AcpiNsWalkNamespace (ACPI_TYPE_ANY, Node, ACPI_UINT32_MAX,
|
2009-11-16 18:28:41 +00:00
|
|
|
ACPI_NS_WALK_UNLOCK, AcpiEvInstallHandler, NULL,
|
2007-03-22 17:24:05 +00:00
|
|
|
HandlerObj, NULL);
|
2004-05-25 02:34:44 +00:00
|
|
|
|
|
|
|
UnlockAndExit:
|
|
|
|
return_ACPI_STATUS (Status);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiEvExecuteRegMethods
|
|
|
|
*
|
|
|
|
* PARAMETERS: Node - Namespace node for the device
|
|
|
|
* SpaceId - The address space ID
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
2004-12-01 23:14:10 +00:00
|
|
|
* DESCRIPTION: Run all _REG methods for the input Space ID;
|
2004-05-25 02:34:44 +00:00
|
|
|
* Note: assumes namespace is locked, or system init time.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
ACPI_STATUS
|
|
|
|
AcpiEvExecuteRegMethods (
|
|
|
|
ACPI_NAMESPACE_NODE *Node,
|
|
|
|
ACPI_ADR_SPACE_TYPE SpaceId)
|
|
|
|
{
|
|
|
|
ACPI_STATUS Status;
|
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FUNCTION_TRACE (EvExecuteRegMethods);
|
2004-05-25 02:34:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2009-06-01 21:02:40 +00:00
|
|
|
* Run all _REG methods for all Operation Regions for this space ID. This
|
|
|
|
* is a separate walk in order to handle any interdependencies between
|
|
|
|
* regions and _REG methods. (i.e. handlers must be installed for all
|
|
|
|
* regions of this Space ID before we can run any _REG methods)
|
2004-05-25 02:34:44 +00:00
|
|
|
*/
|
|
|
|
Status = AcpiNsWalkNamespace (ACPI_TYPE_ANY, Node, ACPI_UINT32_MAX,
|
2009-11-16 18:28:41 +00:00
|
|
|
ACPI_NS_WALK_UNLOCK, AcpiEvRegRun, NULL,
|
2007-03-22 17:24:05 +00:00
|
|
|
&SpaceId, NULL);
|
2004-05-25 02:34:44 +00:00
|
|
|
|
2011-04-13 18:18:52 +00:00
|
|
|
/* Special case for EC: handle "orphan" _REG methods with no region */
|
|
|
|
|
|
|
|
if (SpaceId == ACPI_ADR_SPACE_EC)
|
|
|
|
{
|
|
|
|
AcpiEvOrphanEcRegMethod ();
|
|
|
|
}
|
|
|
|
|
2004-05-25 02:34:44 +00:00
|
|
|
return_ACPI_STATUS (Status);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-09 02:45:16 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiEvRegRun
|
|
|
|
*
|
|
|
|
* PARAMETERS: WalkNamespace callback
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Run _REG method for region objects of the requested spaceID
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
static ACPI_STATUS
|
2003-12-09 02:45:16 +00:00
|
|
|
AcpiEvRegRun (
|
|
|
|
ACPI_HANDLE ObjHandle,
|
|
|
|
UINT32 Level,
|
|
|
|
void *Context,
|
|
|
|
void **ReturnValue)
|
|
|
|
{
|
|
|
|
ACPI_OPERAND_OBJECT *ObjDesc;
|
|
|
|
ACPI_NAMESPACE_NODE *Node;
|
2004-05-25 02:34:44 +00:00
|
|
|
ACPI_ADR_SPACE_TYPE SpaceId;
|
2003-12-09 02:45:16 +00:00
|
|
|
ACPI_STATUS Status;
|
|
|
|
|
|
|
|
|
2004-05-25 02:34:44 +00:00
|
|
|
SpaceId = *ACPI_CAST_PTR (ACPI_ADR_SPACE_TYPE, Context);
|
2003-12-09 02:45:16 +00:00
|
|
|
|
|
|
|
/* Convert and validate the device handle */
|
|
|
|
|
2009-12-14 22:07:33 +00:00
|
|
|
Node = AcpiNsValidateHandle (ObjHandle);
|
2003-12-09 02:45:16 +00:00
|
|
|
if (!Node)
|
|
|
|
{
|
|
|
|
return (AE_BAD_PARAMETER);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2009-06-01 21:02:40 +00:00
|
|
|
* We only care about regions.and objects that are allowed to have address
|
|
|
|
* space handlers
|
2003-12-09 02:45:16 +00:00
|
|
|
*/
|
|
|
|
if ((Node->Type != ACPI_TYPE_REGION) &&
|
|
|
|
(Node != AcpiGbl_RootNode))
|
|
|
|
{
|
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for an existing internal object */
|
|
|
|
|
|
|
|
ObjDesc = AcpiNsGetAttachedObject (Node);
|
|
|
|
if (!ObjDesc)
|
|
|
|
{
|
|
|
|
/* No object, just exit */
|
|
|
|
|
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Object is a Region */
|
|
|
|
|
2004-05-25 02:34:44 +00:00
|
|
|
if (ObjDesc->Region.SpaceId != SpaceId)
|
2003-12-09 02:45:16 +00:00
|
|
|
{
|
2009-06-01 21:02:40 +00:00
|
|
|
/* This region is for a different address space, just ignore it */
|
|
|
|
|
2003-12-09 02:45:16 +00:00
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
2011-04-13 18:18:52 +00:00
|
|
|
Status = AcpiEvExecuteRegMethod (ObjDesc, ACPI_REG_CONNECT);
|
2003-12-09 02:45:16 +00:00
|
|
|
return (Status);
|
|
|
|
}
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2011-04-13 18:18:52 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiEvOrphanEcRegMethod
|
|
|
|
*
|
|
|
|
* PARAMETERS: None
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Execute an "orphan" _REG method that appears under the EC
|
|
|
|
* device. This is a _REG method that has no corresponding region
|
|
|
|
* within the EC device scope. The orphan _REG method appears to
|
|
|
|
* have been enabled by the description of the ECDT in the ACPI
|
|
|
|
* specification: "The availability of the region space can be
|
|
|
|
* detected by providing a _REG method object underneath the
|
|
|
|
* Embedded Controller device."
|
|
|
|
*
|
|
|
|
* To quickly access the EC device, we use the EC_ID that appears
|
|
|
|
* within the ECDT. Otherwise, we would need to perform a time-
|
|
|
|
* consuming namespace walk, executing _HID methods to find the
|
|
|
|
* EC device.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
static void
|
|
|
|
AcpiEvOrphanEcRegMethod (
|
|
|
|
void)
|
|
|
|
{
|
|
|
|
ACPI_TABLE_ECDT *Table;
|
|
|
|
ACPI_STATUS Status;
|
|
|
|
ACPI_OBJECT_LIST Args;
|
|
|
|
ACPI_OBJECT Objects[2];
|
|
|
|
ACPI_NAMESPACE_NODE *EcDeviceNode;
|
|
|
|
ACPI_NAMESPACE_NODE *RegMethod;
|
|
|
|
ACPI_NAMESPACE_NODE *NextNode;
|
|
|
|
|
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE (EvOrphanEcRegMethod);
|
|
|
|
|
|
|
|
|
|
|
|
/* Get the ECDT (if present in system) */
|
|
|
|
|
|
|
|
Status = AcpiGetTable (ACPI_SIG_ECDT, 0,
|
|
|
|
ACPI_CAST_INDIRECT_PTR (ACPI_TABLE_HEADER, &Table));
|
|
|
|
if (ACPI_FAILURE (Status))
|
|
|
|
{
|
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We need a valid EC_ID string */
|
|
|
|
|
|
|
|
if (!(*Table->Id))
|
|
|
|
{
|
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Namespace is currently locked, must release */
|
|
|
|
|
|
|
|
(void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
|
|
|
|
|
|
|
|
/* Get a handle to the EC device referenced in the ECDT */
|
|
|
|
|
|
|
|
Status = AcpiGetHandle (NULL,
|
|
|
|
ACPI_CAST_PTR (char, Table->Id),
|
|
|
|
ACPI_CAST_PTR (ACPI_HANDLE, &EcDeviceNode));
|
|
|
|
if (ACPI_FAILURE (Status))
|
|
|
|
{
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get a handle to a _REG method immediately under the EC device */
|
|
|
|
|
|
|
|
Status = AcpiGetHandle (EcDeviceNode,
|
|
|
|
METHOD_NAME__REG, ACPI_CAST_PTR (ACPI_HANDLE, &RegMethod));
|
|
|
|
if (ACPI_FAILURE (Status))
|
|
|
|
{
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Execute the _REG method only if there is no Operation Region in
|
|
|
|
* this scope with the Embedded Controller space ID. Otherwise, it
|
|
|
|
* will already have been executed. Note, this allows for Regions
|
|
|
|
* with other space IDs to be present; but the code below will then
|
|
|
|
* execute the _REG method with the EC space ID argument.
|
|
|
|
*/
|
|
|
|
NextNode = AcpiNsGetNextNode (EcDeviceNode, NULL);
|
|
|
|
while (NextNode)
|
|
|
|
{
|
|
|
|
if ((NextNode->Type == ACPI_TYPE_REGION) &&
|
|
|
|
(NextNode->Object) &&
|
|
|
|
(NextNode->Object->Region.SpaceId == ACPI_ADR_SPACE_EC))
|
|
|
|
{
|
|
|
|
goto Exit; /* Do not execute _REG */
|
|
|
|
}
|
|
|
|
NextNode = AcpiNsGetNextNode (EcDeviceNode, NextNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Evaluate the _REG(EC,Connect) method */
|
|
|
|
|
|
|
|
Args.Count = 2;
|
|
|
|
Args.Pointer = Objects;
|
|
|
|
Objects[0].Type = ACPI_TYPE_INTEGER;
|
|
|
|
Objects[0].Integer.Value = ACPI_ADR_SPACE_EC;
|
|
|
|
Objects[1].Type = ACPI_TYPE_INTEGER;
|
|
|
|
Objects[1].Integer.Value = ACPI_REG_CONNECT;
|
|
|
|
|
|
|
|
Status = AcpiEvaluateObject (RegMethod, NULL, &Args, NULL);
|
|
|
|
|
|
|
|
Exit:
|
|
|
|
/* We ignore all errors from above, don't care */
|
|
|
|
|
|
|
|
Status = AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE);
|
|
|
|
return_VOID;
|
|
|
|
}
|