Home | History | Annotate | Line # | Download | only in events
evregion.c revision 1.2
      1  1.1    jruoho /******************************************************************************
      2  1.1    jruoho  *
      3  1.2  christos  * Module Name: evregion - Operation Region support
      4  1.1    jruoho  *
      5  1.1    jruoho  *****************************************************************************/
      6  1.1    jruoho 
      7  1.2  christos /*
      8  1.2  christos  * Copyright (C) 2000 - 2016, Intel Corp.
      9  1.1    jruoho  * All rights reserved.
     10  1.1    jruoho  *
     11  1.2  christos  * Redistribution and use in source and binary forms, with or without
     12  1.2  christos  * modification, are permitted provided that the following conditions
     13  1.2  christos  * are met:
     14  1.2  christos  * 1. Redistributions of source code must retain the above copyright
     15  1.2  christos  *    notice, this list of conditions, and the following disclaimer,
     16  1.2  christos  *    without modification.
     17  1.2  christos  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
     18  1.2  christos  *    substantially similar to the "NO WARRANTY" disclaimer below
     19  1.2  christos  *    ("Disclaimer") and any redistribution must be conditioned upon
     20  1.2  christos  *    including a substantially similar Disclaimer requirement for further
     21  1.2  christos  *    binary redistribution.
     22  1.2  christos  * 3. Neither the names of the above-listed copyright holders nor the names
     23  1.2  christos  *    of any contributors may be used to endorse or promote products derived
     24  1.2  christos  *    from this software without specific prior written permission.
     25  1.2  christos  *
     26  1.2  christos  * Alternatively, this software may be distributed under the terms of the
     27  1.2  christos  * GNU General Public License ("GPL") version 2 as published by the Free
     28  1.2  christos  * Software Foundation.
     29  1.2  christos  *
     30  1.2  christos  * NO WARRANTY
     31  1.2  christos  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     32  1.2  christos  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     33  1.2  christos  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
     34  1.2  christos  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     35  1.2  christos  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     36  1.2  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     37  1.2  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     38  1.2  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     39  1.2  christos  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
     40  1.2  christos  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     41  1.2  christos  * POSSIBILITY OF SUCH DAMAGES.
     42  1.2  christos  */
     43  1.1    jruoho 
     44  1.1    jruoho #include "acpi.h"
     45  1.1    jruoho #include "accommon.h"
     46  1.1    jruoho #include "acevents.h"
     47  1.1    jruoho #include "acnamesp.h"
     48  1.1    jruoho #include "acinterp.h"
     49  1.1    jruoho 
     50  1.1    jruoho #define _COMPONENT          ACPI_EVENTS
     51  1.1    jruoho         ACPI_MODULE_NAME    ("evregion")
     52  1.1    jruoho 
     53  1.1    jruoho 
     54  1.2  christos extern UINT8        AcpiGbl_DefaultAddressSpaces[];
     55  1.2  christos 
     56  1.1    jruoho /* Local prototypes */
     57  1.1    jruoho 
     58  1.2  christos static void
     59  1.2  christos AcpiEvOrphanEcRegMethod (
     60  1.2  christos     ACPI_NAMESPACE_NODE     *EcDeviceNode);
     61  1.1    jruoho 
     62  1.1    jruoho static ACPI_STATUS
     63  1.1    jruoho AcpiEvRegRun (
     64  1.1    jruoho     ACPI_HANDLE             ObjHandle,
     65  1.1    jruoho     UINT32                  Level,
     66  1.1    jruoho     void                    *Context,
     67  1.1    jruoho     void                    **ReturnValue);
     68  1.1    jruoho 
     69  1.1    jruoho 
     70  1.1    jruoho /*******************************************************************************
     71  1.1    jruoho  *
     72  1.1    jruoho  * FUNCTION:    AcpiEvInitializeOpRegions
     73  1.1    jruoho  *
     74  1.1    jruoho  * PARAMETERS:  None
     75  1.1    jruoho  *
     76  1.1    jruoho  * RETURN:      Status
     77  1.1    jruoho  *
     78  1.1    jruoho  * DESCRIPTION: Execute _REG methods for all Operation Regions that have
     79  1.1    jruoho  *              an installed default region handler.
     80  1.1    jruoho  *
     81  1.1    jruoho  ******************************************************************************/
     82  1.1    jruoho 
     83  1.1    jruoho ACPI_STATUS
     84  1.1    jruoho AcpiEvInitializeOpRegions (
     85  1.1    jruoho     void)
     86  1.1    jruoho {
     87  1.1    jruoho     ACPI_STATUS             Status;
     88  1.1    jruoho     UINT32                  i;
     89  1.1    jruoho 
     90  1.1    jruoho 
     91  1.1    jruoho     ACPI_FUNCTION_TRACE (EvInitializeOpRegions);
     92  1.1    jruoho 
     93  1.1    jruoho 
     94  1.1    jruoho     Status = AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE);
     95  1.1    jruoho     if (ACPI_FAILURE (Status))
     96  1.1    jruoho     {
     97  1.1    jruoho         return_ACPI_STATUS (Status);
     98  1.1    jruoho     }
     99  1.1    jruoho 
    100  1.1    jruoho     /* Run the _REG methods for OpRegions in each default address space */
    101  1.1    jruoho 
    102  1.2  christos     AcpiGbl_RegMethodsEnabled = TRUE;
    103  1.1    jruoho     for (i = 0; i < ACPI_NUM_DEFAULT_SPACES; i++)
    104  1.1    jruoho     {
    105  1.1    jruoho         /*
    106  1.1    jruoho          * Make sure the installed handler is the DEFAULT handler. If not the
    107  1.1    jruoho          * default, the _REG methods will have already been run (when the
    108  1.1    jruoho          * handler was installed)
    109  1.1    jruoho          */
    110  1.1    jruoho         if (AcpiEvHasDefaultHandler (AcpiGbl_RootNode,
    111  1.1    jruoho                AcpiGbl_DefaultAddressSpaces[i]))
    112  1.1    jruoho         {
    113  1.2  christos             AcpiEvExecuteRegMethods (AcpiGbl_RootNode,
    114  1.2  christos                 AcpiGbl_DefaultAddressSpaces[i], ACPI_REG_CONNECT);
    115  1.1    jruoho         }
    116  1.1    jruoho     }
    117  1.1    jruoho 
    118  1.1    jruoho     (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
    119  1.1    jruoho     return_ACPI_STATUS (Status);
    120  1.1    jruoho }
    121  1.1    jruoho 
    122  1.1    jruoho 
    123  1.1    jruoho /*******************************************************************************
    124  1.1    jruoho  *
    125  1.1    jruoho  * FUNCTION:    AcpiEvAddressSpaceDispatch
    126  1.1    jruoho  *
    127  1.1    jruoho  * PARAMETERS:  RegionObj           - Internal region object
    128  1.2  christos  *              FieldObj            - Corresponding field. Can be NULL.
    129  1.1    jruoho  *              Function            - Read or Write operation
    130  1.1    jruoho  *              RegionOffset        - Where in the region to read or write
    131  1.1    jruoho  *              BitWidth            - Field width in bits (8, 16, 32, or 64)
    132  1.1    jruoho  *              Value               - Pointer to in or out value, must be
    133  1.1    jruoho  *                                    a full 64-bit integer
    134  1.1    jruoho  *
    135  1.1    jruoho  * RETURN:      Status
    136  1.1    jruoho  *
    137  1.1    jruoho  * DESCRIPTION: Dispatch an address space or operation region access to
    138  1.1    jruoho  *              a previously installed handler.
    139  1.1    jruoho  *
    140  1.2  christos  * NOTE: During early initialization, we always install the default region
    141  1.2  christos  * handlers for Memory, I/O and PCI_Config. This ensures that these operation
    142  1.2  christos  * region address spaces are always available as per the ACPI specification.
    143  1.2  christos  * This is especially needed in order to support the execution of
    144  1.2  christos  * module-level AML code during loading of the ACPI tables.
    145  1.2  christos  *
    146  1.1    jruoho  ******************************************************************************/
    147  1.1    jruoho 
    148  1.1    jruoho ACPI_STATUS
    149  1.1    jruoho AcpiEvAddressSpaceDispatch (
    150  1.1    jruoho     ACPI_OPERAND_OBJECT     *RegionObj,
    151  1.2  christos     ACPI_OPERAND_OBJECT     *FieldObj,
    152  1.1    jruoho     UINT32                  Function,
    153  1.1    jruoho     UINT32                  RegionOffset,
    154  1.1    jruoho     UINT32                  BitWidth,
    155  1.1    jruoho     UINT64                  *Value)
    156  1.1    jruoho {
    157  1.1    jruoho     ACPI_STATUS             Status;
    158  1.1    jruoho     ACPI_ADR_SPACE_HANDLER  Handler;
    159  1.1    jruoho     ACPI_ADR_SPACE_SETUP    RegionSetup;
    160  1.1    jruoho     ACPI_OPERAND_OBJECT     *HandlerDesc;
    161  1.1    jruoho     ACPI_OPERAND_OBJECT     *RegionObj2;
    162  1.1    jruoho     void                    *RegionContext = NULL;
    163  1.2  christos     ACPI_CONNECTION_INFO    *Context;
    164  1.2  christos     ACPI_PHYSICAL_ADDRESS   Address;
    165  1.1    jruoho 
    166  1.1    jruoho 
    167  1.1    jruoho     ACPI_FUNCTION_TRACE (EvAddressSpaceDispatch);
    168  1.1    jruoho 
    169  1.1    jruoho 
    170  1.1    jruoho     RegionObj2 = AcpiNsGetSecondaryObject (RegionObj);
    171  1.1    jruoho     if (!RegionObj2)
    172  1.1    jruoho     {
    173  1.1    jruoho         return_ACPI_STATUS (AE_NOT_EXIST);
    174  1.1    jruoho     }
    175  1.1    jruoho 
    176  1.1    jruoho     /* Ensure that there is a handler associated with this region */
    177  1.1    jruoho 
    178  1.1    jruoho     HandlerDesc = RegionObj->Region.Handler;
    179  1.1    jruoho     if (!HandlerDesc)
    180  1.1    jruoho     {
    181  1.1    jruoho         ACPI_ERROR ((AE_INFO,
    182  1.1    jruoho             "No handler for Region [%4.4s] (%p) [%s]",
    183  1.1    jruoho             AcpiUtGetNodeName (RegionObj->Region.Node),
    184  1.1    jruoho             RegionObj, AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
    185  1.1    jruoho 
    186  1.1    jruoho         return_ACPI_STATUS (AE_NOT_EXIST);
    187  1.1    jruoho     }
    188  1.1    jruoho 
    189  1.2  christos     Context = HandlerDesc->AddressSpace.Context;
    190  1.2  christos 
    191  1.1    jruoho     /*
    192  1.1    jruoho      * It may be the case that the region has never been initialized.
    193  1.1    jruoho      * Some types of regions require special init code
    194  1.1    jruoho      */
    195  1.1    jruoho     if (!(RegionObj->Region.Flags & AOPOBJ_SETUP_COMPLETE))
    196  1.1    jruoho     {
    197  1.1    jruoho         /* This region has not been initialized yet, do it */
    198  1.1    jruoho 
    199  1.1    jruoho         RegionSetup = HandlerDesc->AddressSpace.Setup;
    200  1.1    jruoho         if (!RegionSetup)
    201  1.1    jruoho         {
    202  1.1    jruoho             /* No initialization routine, exit with error */
    203  1.1    jruoho 
    204  1.1    jruoho             ACPI_ERROR ((AE_INFO,
    205  1.1    jruoho                 "No init routine for region(%p) [%s]",
    206  1.1    jruoho                 RegionObj, AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
    207  1.1    jruoho             return_ACPI_STATUS (AE_NOT_EXIST);
    208  1.1    jruoho         }
    209  1.1    jruoho 
    210  1.1    jruoho         /*
    211  1.1    jruoho          * We must exit the interpreter because the region setup will
    212  1.1    jruoho          * potentially execute control methods (for example, the _REG method
    213  1.1    jruoho          * for this region)
    214  1.1    jruoho          */
    215  1.1    jruoho         AcpiExExitInterpreter ();
    216  1.1    jruoho 
    217  1.1    jruoho         Status = RegionSetup (RegionObj, ACPI_REGION_ACTIVATE,
    218  1.2  christos             Context, &RegionContext);
    219  1.1    jruoho 
    220  1.1    jruoho         /* Re-enter the interpreter */
    221  1.1    jruoho 
    222  1.1    jruoho         AcpiExEnterInterpreter ();
    223  1.1    jruoho 
    224  1.1    jruoho         /* Check for failure of the Region Setup */
    225  1.1    jruoho 
    226  1.1    jruoho         if (ACPI_FAILURE (Status))
    227  1.1    jruoho         {
    228  1.1    jruoho             ACPI_EXCEPTION ((AE_INFO, Status,
    229  1.1    jruoho                 "During region initialization: [%s]",
    230  1.1    jruoho                 AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
    231  1.1    jruoho             return_ACPI_STATUS (Status);
    232  1.1    jruoho         }
    233  1.1    jruoho 
    234  1.1    jruoho         /* Region initialization may have been completed by RegionSetup */
    235  1.1    jruoho 
    236  1.1    jruoho         if (!(RegionObj->Region.Flags & AOPOBJ_SETUP_COMPLETE))
    237  1.1    jruoho         {
    238  1.1    jruoho             RegionObj->Region.Flags |= AOPOBJ_SETUP_COMPLETE;
    239  1.1    jruoho 
    240  1.2  christos             /*
    241  1.2  christos              * Save the returned context for use in all accesses to
    242  1.2  christos              * the handler for this particular region
    243  1.2  christos              */
    244  1.2  christos             if (!(RegionObj2->Extra.RegionContext))
    245  1.1    jruoho             {
    246  1.1    jruoho                 RegionObj2->Extra.RegionContext = RegionContext;
    247  1.1    jruoho             }
    248  1.1    jruoho         }
    249  1.1    jruoho     }
    250  1.1    jruoho 
    251  1.1    jruoho     /* We have everything we need, we can invoke the address space handler */
    252  1.1    jruoho 
    253  1.1    jruoho     Handler = HandlerDesc->AddressSpace.Handler;
    254  1.2  christos     Address = (RegionObj->Region.Address + RegionOffset);
    255  1.2  christos 
    256  1.2  christos     /*
    257  1.2  christos      * Special handling for GenericSerialBus and GeneralPurposeIo:
    258  1.2  christos      * There are three extra parameters that must be passed to the
    259  1.2  christos      * handler via the context:
    260  1.2  christos      *   1) Connection buffer, a resource template from Connection() op
    261  1.2  christos      *   2) Length of the above buffer
    262  1.2  christos      *   3) Actual access length from the AccessAs() op
    263  1.2  christos      *
    264  1.2  christos      * In addition, for GeneralPurposeIo, the Address and BitWidth fields
    265  1.2  christos      * are defined as follows:
    266  1.2  christos      *   1) Address is the pin number index of the field (bit offset from
    267  1.2  christos      *      the previous Connection)
    268  1.2  christos      *   2) BitWidth is the actual bit length of the field (number of pins)
    269  1.2  christos      */
    270  1.2  christos     if ((RegionObj->Region.SpaceId == ACPI_ADR_SPACE_GSBUS) &&
    271  1.2  christos         Context &&
    272  1.2  christos         FieldObj)
    273  1.2  christos     {
    274  1.2  christos         /* Get the Connection (ResourceTemplate) buffer */
    275  1.2  christos 
    276  1.2  christos         Context->Connection = FieldObj->Field.ResourceBuffer;
    277  1.2  christos         Context->Length = FieldObj->Field.ResourceLength;
    278  1.2  christos         Context->AccessLength = FieldObj->Field.AccessLength;
    279  1.2  christos     }
    280  1.2  christos     if ((RegionObj->Region.SpaceId == ACPI_ADR_SPACE_GPIO) &&
    281  1.2  christos         Context &&
    282  1.2  christos         FieldObj)
    283  1.2  christos     {
    284  1.2  christos         /* Get the Connection (ResourceTemplate) buffer */
    285  1.2  christos 
    286  1.2  christos         Context->Connection = FieldObj->Field.ResourceBuffer;
    287  1.2  christos         Context->Length = FieldObj->Field.ResourceLength;
    288  1.2  christos         Context->AccessLength = FieldObj->Field.AccessLength;
    289  1.2  christos         Address = FieldObj->Field.PinNumberIndex;
    290  1.2  christos         BitWidth = FieldObj->Field.BitLength;
    291  1.2  christos     }
    292  1.1    jruoho 
    293  1.1    jruoho     ACPI_DEBUG_PRINT ((ACPI_DB_OPREGION,
    294  1.1    jruoho         "Handler %p (@%p) Address %8.8X%8.8X [%s]\n",
    295  1.1    jruoho         &RegionObj->Region.Handler->AddressSpace, Handler,
    296  1.2  christos         ACPI_FORMAT_UINT64 (Address),
    297  1.1    jruoho         AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
    298  1.1    jruoho 
    299  1.1    jruoho     if (!(HandlerDesc->AddressSpace.HandlerFlags &
    300  1.2  christos         ACPI_ADDR_HANDLER_DEFAULT_INSTALLED))
    301  1.1    jruoho     {
    302  1.1    jruoho         /*
    303  1.1    jruoho          * For handlers other than the default (supplied) handlers, we must
    304  1.1    jruoho          * exit the interpreter because the handler *might* block -- we don't
    305  1.1    jruoho          * know what it will do, so we can't hold the lock on the intepreter.
    306  1.1    jruoho          */
    307  1.1    jruoho         AcpiExExitInterpreter();
    308  1.1    jruoho     }
    309  1.1    jruoho 
    310  1.1    jruoho     /* Call the handler */
    311  1.1    jruoho 
    312  1.2  christos     Status = Handler (Function, Address, BitWidth, Value, Context,
    313  1.2  christos         RegionObj2->Extra.RegionContext);
    314  1.1    jruoho 
    315  1.1    jruoho     if (ACPI_FAILURE (Status))
    316  1.1    jruoho     {
    317  1.1    jruoho         ACPI_EXCEPTION ((AE_INFO, Status, "Returned by Handler for [%s]",
    318  1.1    jruoho             AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
    319  1.1    jruoho     }
    320  1.1    jruoho 
    321  1.1    jruoho     if (!(HandlerDesc->AddressSpace.HandlerFlags &
    322  1.2  christos         ACPI_ADDR_HANDLER_DEFAULT_INSTALLED))
    323  1.1    jruoho     {
    324  1.1    jruoho         /*
    325  1.1    jruoho          * We just returned from a non-default handler, we must re-enter the
    326  1.1    jruoho          * interpreter
    327  1.1    jruoho          */
    328  1.2  christos         AcpiExEnterInterpreter ();
    329  1.1    jruoho     }
    330  1.1    jruoho 
    331  1.1    jruoho     return_ACPI_STATUS (Status);
    332  1.1    jruoho }
    333  1.1    jruoho 
    334  1.1    jruoho 
    335  1.1    jruoho /*******************************************************************************
    336  1.1    jruoho  *
    337  1.1    jruoho  * FUNCTION:    AcpiEvDetachRegion
    338  1.1    jruoho  *
    339  1.1    jruoho  * PARAMETERS:  RegionObj           - Region Object
    340  1.1    jruoho  *              AcpiNsIsLocked      - Namespace Region Already Locked?
    341  1.1    jruoho  *
    342  1.1    jruoho  * RETURN:      None
    343  1.1    jruoho  *
    344  1.1    jruoho  * DESCRIPTION: Break the association between the handler and the region
    345  1.1    jruoho  *              this is a two way association.
    346  1.1    jruoho  *
    347  1.1    jruoho  ******************************************************************************/
    348  1.1    jruoho 
    349  1.1    jruoho void
    350  1.2  christos AcpiEvDetachRegion (
    351  1.1    jruoho     ACPI_OPERAND_OBJECT     *RegionObj,
    352  1.1    jruoho     BOOLEAN                 AcpiNsIsLocked)
    353  1.1    jruoho {
    354  1.1    jruoho     ACPI_OPERAND_OBJECT     *HandlerObj;
    355  1.1    jruoho     ACPI_OPERAND_OBJECT     *ObjDesc;
    356  1.2  christos     ACPI_OPERAND_OBJECT     *StartDesc;
    357  1.1    jruoho     ACPI_OPERAND_OBJECT     **LastObjPtr;
    358  1.1    jruoho     ACPI_ADR_SPACE_SETUP    RegionSetup;
    359  1.1    jruoho     void                    **RegionContext;
    360  1.1    jruoho     ACPI_OPERAND_OBJECT     *RegionObj2;
    361  1.1    jruoho     ACPI_STATUS             Status;
    362  1.1    jruoho 
    363  1.1    jruoho 
    364  1.1    jruoho     ACPI_FUNCTION_TRACE (EvDetachRegion);
    365  1.1    jruoho 
    366  1.1    jruoho 
    367  1.1    jruoho     RegionObj2 = AcpiNsGetSecondaryObject (RegionObj);
    368  1.1    jruoho     if (!RegionObj2)
    369  1.1    jruoho     {
    370  1.1    jruoho         return_VOID;
    371  1.1    jruoho     }
    372  1.1    jruoho     RegionContext = &RegionObj2->Extra.RegionContext;
    373  1.1    jruoho 
    374  1.1    jruoho     /* Get the address handler from the region object */
    375  1.1    jruoho 
    376  1.1    jruoho     HandlerObj = RegionObj->Region.Handler;
    377  1.1    jruoho     if (!HandlerObj)
    378  1.1    jruoho     {
    379  1.1    jruoho         /* This region has no handler, all done */
    380  1.1    jruoho 
    381  1.1    jruoho         return_VOID;
    382  1.1    jruoho     }
    383  1.1    jruoho 
    384  1.1    jruoho     /* Find this region in the handler's list */
    385  1.1    jruoho 
    386  1.1    jruoho     ObjDesc = HandlerObj->AddressSpace.RegionList;
    387  1.2  christos     StartDesc = ObjDesc;
    388  1.1    jruoho     LastObjPtr = &HandlerObj->AddressSpace.RegionList;
    389  1.1    jruoho 
    390  1.1    jruoho     while (ObjDesc)
    391  1.1    jruoho     {
    392  1.1    jruoho         /* Is this the correct Region? */
    393  1.1    jruoho 
    394  1.1    jruoho         if (ObjDesc == RegionObj)
    395  1.1    jruoho         {
    396  1.1    jruoho             ACPI_DEBUG_PRINT ((ACPI_DB_OPREGION,
    397  1.1    jruoho                 "Removing Region %p from address handler %p\n",
    398  1.1    jruoho                 RegionObj, HandlerObj));
    399  1.1    jruoho 
    400  1.1    jruoho             /* This is it, remove it from the handler's list */
    401  1.1    jruoho 
    402  1.1    jruoho             *LastObjPtr = ObjDesc->Region.Next;
    403  1.1    jruoho             ObjDesc->Region.Next = NULL;        /* Must clear field */
    404  1.1    jruoho 
    405  1.1    jruoho             if (AcpiNsIsLocked)
    406  1.1    jruoho             {
    407  1.1    jruoho                 Status = AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
    408  1.1    jruoho                 if (ACPI_FAILURE (Status))
    409  1.1    jruoho                 {
    410  1.1    jruoho                     return_VOID;
    411  1.1    jruoho                 }
    412  1.1    jruoho             }
    413  1.1    jruoho 
    414  1.1    jruoho             /* Now stop region accesses by executing the _REG method */
    415  1.1    jruoho 
    416  1.2  christos             Status = AcpiEvExecuteRegMethod (RegionObj, ACPI_REG_DISCONNECT);
    417  1.1    jruoho             if (ACPI_FAILURE (Status))
    418  1.1    jruoho             {
    419  1.1    jruoho                 ACPI_EXCEPTION ((AE_INFO, Status, "from region _REG, [%s]",
    420  1.1    jruoho                     AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
    421  1.1    jruoho             }
    422  1.1    jruoho 
    423  1.1    jruoho             if (AcpiNsIsLocked)
    424  1.1    jruoho             {
    425  1.1    jruoho                 Status = AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE);
    426  1.1    jruoho                 if (ACPI_FAILURE (Status))
    427  1.1    jruoho                 {
    428  1.1    jruoho                     return_VOID;
    429  1.1    jruoho                 }
    430  1.1    jruoho             }
    431  1.1    jruoho 
    432  1.1    jruoho             /*
    433  1.1    jruoho              * If the region has been activated, call the setup handler with
    434  1.1    jruoho              * the deactivate notification
    435  1.1    jruoho              */
    436  1.1    jruoho             if (RegionObj->Region.Flags & AOPOBJ_SETUP_COMPLETE)
    437  1.1    jruoho             {
    438  1.1    jruoho                 RegionSetup = HandlerObj->AddressSpace.Setup;
    439  1.1    jruoho                 Status = RegionSetup (RegionObj, ACPI_REGION_DEACTIVATE,
    440  1.1    jruoho                     HandlerObj->AddressSpace.Context, RegionContext);
    441  1.1    jruoho 
    442  1.2  christos                 /*
    443  1.2  christos                  * RegionContext should have been released by the deactivate
    444  1.2  christos                  * operation. We don't need access to it anymore here.
    445  1.2  christos                  */
    446  1.2  christos                 if (RegionContext)
    447  1.2  christos                 {
    448  1.2  christos                     *RegionContext = NULL;
    449  1.2  christos                 }
    450  1.2  christos 
    451  1.1    jruoho                 /* Init routine may fail, Just ignore errors */
    452  1.1    jruoho 
    453  1.1    jruoho                 if (ACPI_FAILURE (Status))
    454  1.1    jruoho                 {
    455  1.1    jruoho                     ACPI_EXCEPTION ((AE_INFO, Status,
    456  1.1    jruoho                         "from region handler - deactivate, [%s]",
    457  1.1    jruoho                         AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
    458  1.1    jruoho                 }
    459  1.1    jruoho 
    460  1.1    jruoho                 RegionObj->Region.Flags &= ~(AOPOBJ_SETUP_COMPLETE);
    461  1.1    jruoho             }
    462  1.1    jruoho 
    463  1.1    jruoho             /*
    464  1.1    jruoho              * Remove handler reference in the region
    465  1.1    jruoho              *
    466  1.1    jruoho              * NOTE: this doesn't mean that the region goes away, the region
    467  1.1    jruoho              * is just inaccessible as indicated to the _REG method
    468  1.1    jruoho              *
    469  1.1    jruoho              * If the region is on the handler's list, this must be the
    470  1.1    jruoho              * region's handler
    471  1.1    jruoho              */
    472  1.1    jruoho             RegionObj->Region.Handler = NULL;
    473  1.1    jruoho             AcpiUtRemoveReference (HandlerObj);
    474  1.1    jruoho 
    475  1.1    jruoho             return_VOID;
    476  1.1    jruoho         }
    477  1.1    jruoho 
    478  1.1    jruoho         /* Walk the linked list of handlers */
    479  1.1    jruoho 
    480  1.1    jruoho         LastObjPtr = &ObjDesc->Region.Next;
    481  1.1    jruoho         ObjDesc = ObjDesc->Region.Next;
    482  1.2  christos 
    483  1.2  christos         /* Prevent infinite loop if list is corrupted */
    484  1.2  christos 
    485  1.2  christos         if (ObjDesc == StartDesc)
    486  1.2  christos         {
    487  1.2  christos             ACPI_ERROR ((AE_INFO,
    488  1.2  christos                 "Circular handler list in region object %p",
    489  1.2  christos                 RegionObj));
    490  1.2  christos             return_VOID;
    491  1.2  christos         }
    492  1.1    jruoho     }
    493  1.1    jruoho 
    494  1.1    jruoho     /* If we get here, the region was not in the handler's region list */
    495  1.1    jruoho 
    496  1.1    jruoho     ACPI_DEBUG_PRINT ((ACPI_DB_OPREGION,
    497  1.1    jruoho         "Cannot remove region %p from address handler %p\n",
    498  1.1    jruoho         RegionObj, HandlerObj));
    499  1.1    jruoho 
    500  1.1    jruoho     return_VOID;
    501  1.1    jruoho }
    502  1.1    jruoho 
    503  1.1    jruoho 
    504  1.1    jruoho /*******************************************************************************
    505  1.1    jruoho  *
    506  1.1    jruoho  * FUNCTION:    AcpiEvAttachRegion
    507  1.1    jruoho  *
    508  1.1    jruoho  * PARAMETERS:  HandlerObj          - Handler Object
    509  1.1    jruoho  *              RegionObj           - Region Object
    510  1.1    jruoho  *              AcpiNsIsLocked      - Namespace Region Already Locked?
    511  1.1    jruoho  *
    512  1.1    jruoho  * RETURN:      None
    513  1.1    jruoho  *
    514  1.1    jruoho  * DESCRIPTION: Create the association between the handler and the region
    515  1.1    jruoho  *              this is a two way association.
    516  1.1    jruoho  *
    517  1.1    jruoho  ******************************************************************************/
    518  1.1    jruoho 
    519  1.1    jruoho ACPI_STATUS
    520  1.1    jruoho AcpiEvAttachRegion (
    521  1.1    jruoho     ACPI_OPERAND_OBJECT     *HandlerObj,
    522  1.1    jruoho     ACPI_OPERAND_OBJECT     *RegionObj,
    523  1.1    jruoho     BOOLEAN                 AcpiNsIsLocked)
    524  1.1    jruoho {
    525  1.1    jruoho 
    526  1.1    jruoho     ACPI_FUNCTION_TRACE (EvAttachRegion);
    527  1.1    jruoho 
    528  1.1    jruoho 
    529  1.2  christos     /* Install the region's handler */
    530  1.2  christos 
    531  1.2  christos     if (RegionObj->Region.Handler)
    532  1.2  christos     {
    533  1.2  christos         return_ACPI_STATUS (AE_ALREADY_EXISTS);
    534  1.2  christos     }
    535  1.2  christos 
    536  1.1    jruoho     ACPI_DEBUG_PRINT ((ACPI_DB_OPREGION,
    537  1.1    jruoho         "Adding Region [%4.4s] %p to address handler %p [%s]\n",
    538  1.1    jruoho         AcpiUtGetNodeName (RegionObj->Region.Node),
    539  1.1    jruoho         RegionObj, HandlerObj,
    540  1.1    jruoho         AcpiUtGetRegionName (RegionObj->Region.SpaceId)));
    541  1.1    jruoho 
    542  1.1    jruoho     /* Link this region to the front of the handler's list */
    543  1.1    jruoho 
    544  1.1    jruoho     RegionObj->Region.Next = HandlerObj->AddressSpace.RegionList;
    545  1.1    jruoho     HandlerObj->AddressSpace.RegionList = RegionObj;
    546  1.1    jruoho     RegionObj->Region.Handler = HandlerObj;
    547  1.1    jruoho     AcpiUtAddReference (HandlerObj);
    548  1.1    jruoho 
    549  1.1    jruoho     return_ACPI_STATUS (AE_OK);
    550  1.1    jruoho }
    551  1.1    jruoho 
    552  1.1    jruoho 
    553  1.1    jruoho /*******************************************************************************
    554  1.1    jruoho  *
    555  1.2  christos  * FUNCTION:    AcpiEvAssociateRegMethod
    556  1.1    jruoho  *
    557  1.2  christos  * PARAMETERS:  RegionObj           - Region object
    558  1.1    jruoho  *
    559  1.2  christos  * RETURN:      Status
    560  1.1    jruoho  *
    561  1.2  christos  * DESCRIPTION: Find and associate _REG method to a region
    562  1.1    jruoho  *
    563  1.1    jruoho  ******************************************************************************/
    564  1.1    jruoho 
    565  1.2  christos void
    566  1.2  christos AcpiEvAssociateRegMethod (
    567  1.2  christos     ACPI_OPERAND_OBJECT     *RegionObj)
    568  1.1    jruoho {
    569  1.2  christos     ACPI_NAME               *RegNamePtr = (ACPI_NAME *)__UNCONST(METHOD_NAME__REG);
    570  1.2  christos     ACPI_NAMESPACE_NODE     *MethodNode;
    571  1.1    jruoho     ACPI_NAMESPACE_NODE     *Node;
    572  1.2  christos     ACPI_OPERAND_OBJECT     *RegionObj2;
    573  1.1    jruoho     ACPI_STATUS             Status;
    574  1.1    jruoho 
    575  1.1    jruoho 
    576  1.2  christos     ACPI_FUNCTION_TRACE (EvAssociateRegMethod);
    577  1.1    jruoho 
    578  1.1    jruoho 
    579  1.2  christos     RegionObj2 = AcpiNsGetSecondaryObject (RegionObj);
    580  1.2  christos     if (!RegionObj2)
    581  1.1    jruoho     {
    582  1.2  christos         return_VOID;
    583  1.1    jruoho     }
    584  1.1    jruoho 
    585  1.2  christos     Node = RegionObj->Region.Node->Parent;
    586  1.1    jruoho 
    587  1.2  christos     /* Find any "_REG" method associated with this region definition */
    588  1.1    jruoho 
    589  1.2  christos     Status = AcpiNsSearchOneScope (
    590  1.2  christos         *RegNamePtr, Node, ACPI_TYPE_METHOD, &MethodNode);
    591  1.2  christos     if (ACPI_SUCCESS (Status))
    592  1.1    jruoho     {
    593  1.1    jruoho         /*
    594  1.2  christos          * The _REG method is optional and there can be only one per region
    595  1.2  christos          * definition. This will be executed when the handler is attached
    596  1.2  christos          * or removed
    597  1.1    jruoho          */
    598  1.2  christos         RegionObj2->Extra.Method_REG = MethodNode;
    599  1.1    jruoho     }
    600  1.1    jruoho 
    601  1.2  christos     return_VOID;
    602  1.1    jruoho }
    603  1.1    jruoho 
    604  1.1    jruoho 
    605  1.1    jruoho /*******************************************************************************
    606  1.1    jruoho  *
    607  1.2  christos  * FUNCTION:    AcpiEvExecuteRegMethod
    608  1.1    jruoho  *
    609  1.2  christos  * PARAMETERS:  RegionObj           - Region object
    610  1.2  christos  *              Function            - Passed to _REG: On (1) or Off (0)
    611  1.1    jruoho  *
    612  1.1    jruoho  * RETURN:      Status
    613  1.1    jruoho  *
    614  1.2  christos  * DESCRIPTION: Execute _REG method for a region
    615  1.1    jruoho  *
    616  1.1    jruoho  ******************************************************************************/
    617  1.1    jruoho 
    618  1.1    jruoho ACPI_STATUS
    619  1.2  christos AcpiEvExecuteRegMethod (
    620  1.2  christos     ACPI_OPERAND_OBJECT     *RegionObj,
    621  1.2  christos     UINT32                  Function)
    622  1.1    jruoho {
    623  1.2  christos     ACPI_EVALUATE_INFO      *Info;
    624  1.2  christos     ACPI_OPERAND_OBJECT     *Args[3];
    625  1.2  christos     ACPI_OPERAND_OBJECT     *RegionObj2;
    626  1.1    jruoho     ACPI_STATUS             Status;
    627  1.1    jruoho 
    628  1.1    jruoho 
    629  1.2  christos     ACPI_FUNCTION_TRACE (EvExecuteRegMethod);
    630  1.1    jruoho 
    631  1.1    jruoho 
    632  1.2  christos     RegionObj2 = AcpiNsGetSecondaryObject (RegionObj);
    633  1.2  christos     if (!RegionObj2)
    634  1.1    jruoho     {
    635  1.2  christos         return_ACPI_STATUS (AE_NOT_EXIST);
    636  1.1    jruoho     }
    637  1.1    jruoho 
    638  1.2  christos     if (RegionObj2->Extra.Method_REG == NULL ||
    639  1.2  christos         RegionObj->Region.Handler == NULL ||
    640  1.2  christos         !AcpiGbl_RegMethodsEnabled)
    641  1.1    jruoho     {
    642  1.2  christos         return_ACPI_STATUS (AE_OK);
    643  1.1    jruoho     }
    644  1.1    jruoho 
    645  1.2  christos     /* _REG(DISCONNECT) should be paired with _REG(CONNECT) */
    646  1.1    jruoho 
    647  1.2  christos     if ((Function == ACPI_REG_CONNECT &&
    648  1.2  christos         RegionObj->Common.Flags & AOPOBJ_REG_CONNECTED) ||
    649  1.2  christos         (Function == ACPI_REG_DISCONNECT &&
    650  1.2  christos          !(RegionObj->Common.Flags & AOPOBJ_REG_CONNECTED)))
    651  1.1    jruoho     {
    652  1.2  christos         return_ACPI_STATUS (AE_OK);
    653  1.1    jruoho     }
    654  1.1    jruoho 
    655  1.2  christos     /* Allocate and initialize the evaluation information block */
    656  1.1    jruoho 
    657  1.2  christos     Info = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO));
    658  1.2  christos     if (!Info)
    659  1.1    jruoho     {
    660  1.2  christos         return_ACPI_STATUS (AE_NO_MEMORY);
    661  1.1    jruoho     }
    662  1.1    jruoho 
    663  1.2  christos     Info->PrefixNode = RegionObj2->Extra.Method_REG;
    664  1.2  christos     Info->RelativePathname = NULL;
    665  1.2  christos     Info->Parameters = Args;
    666  1.2  christos     Info->Flags = ACPI_IGNORE_RETURN_VALUE;
    667  1.1    jruoho 
    668  1.1    jruoho     /*
    669  1.2  christos      * The _REG method has two arguments:
    670  1.2  christos      *
    671  1.2  christos      * Arg0 - Integer:
    672  1.2  christos      *  Operation region space ID Same value as RegionObj->Region.SpaceId
    673  1.1    jruoho      *
    674  1.2  christos      * Arg1 - Integer:
    675  1.2  christos      *  connection status 1 for connecting the handler, 0 for disconnecting
    676  1.2  christos      *  the handler (Passed as a parameter)
    677  1.1    jruoho      */
    678  1.2  christos     Args[0] = AcpiUtCreateIntegerObject ((UINT64) RegionObj->Region.SpaceId);
    679  1.2  christos     if (!Args[0])
    680  1.2  christos     {
    681  1.2  christos         Status = AE_NO_MEMORY;
    682  1.2  christos         goto Cleanup1;
    683  1.2  christos     }
    684  1.2  christos 
    685  1.2  christos     Args[1] = AcpiUtCreateIntegerObject ((UINT64) Function);
    686  1.2  christos     if (!Args[1])
    687  1.1    jruoho     {
    688  1.1    jruoho         Status = AE_NO_MEMORY;
    689  1.2  christos         goto Cleanup2;
    690  1.1    jruoho     }
    691  1.1    jruoho 
    692  1.2  christos     Args[2] = NULL; /* Terminate list */
    693  1.1    jruoho 
    694  1.2  christos     /* Execute the method, no return value */
    695  1.1    jruoho 
    696  1.2  christos     ACPI_DEBUG_EXEC (
    697  1.2  christos         AcpiUtDisplayInitPathname (ACPI_TYPE_METHOD, Info->PrefixNode, NULL));
    698  1.1    jruoho 
    699  1.2  christos     Status = AcpiNsEvaluate (Info);
    700  1.2  christos     AcpiUtRemoveReference (Args[1]);
    701  1.2  christos 
    702  1.2  christos     if (ACPI_FAILURE (Status))
    703  1.2  christos     {
    704  1.2  christos         goto Cleanup2;
    705  1.2  christos     }
    706  1.1    jruoho 
    707  1.2  christos     if (Function == ACPI_REG_CONNECT)
    708  1.2  christos     {
    709  1.2  christos         RegionObj->Common.Flags |= AOPOBJ_REG_CONNECTED;
    710  1.2  christos     }
    711  1.2  christos     else
    712  1.2  christos     {
    713  1.2  christos         RegionObj->Common.Flags &= ~AOPOBJ_REG_CONNECTED;
    714  1.2  christos     }
    715  1.1    jruoho 
    716  1.2  christos Cleanup2:
    717  1.2  christos     AcpiUtRemoveReference (Args[0]);
    718  1.1    jruoho 
    719  1.2  christos Cleanup1:
    720  1.2  christos     ACPI_FREE (Info);
    721  1.1    jruoho     return_ACPI_STATUS (Status);
    722  1.1    jruoho }
    723  1.1    jruoho 
    724  1.1    jruoho 
    725  1.1    jruoho /*******************************************************************************
    726  1.1    jruoho  *
    727  1.1    jruoho  * FUNCTION:    AcpiEvExecuteRegMethods
    728  1.1    jruoho  *
    729  1.1    jruoho  * PARAMETERS:  Node            - Namespace node for the device
    730  1.1    jruoho  *              SpaceId         - The address space ID
    731  1.2  christos  *              Function        - Passed to _REG: On (1) or Off (0)
    732  1.1    jruoho  *
    733  1.2  christos  * RETURN:      None
    734  1.1    jruoho  *
    735  1.1    jruoho  * DESCRIPTION: Run all _REG methods for the input Space ID;
    736  1.1    jruoho  *              Note: assumes namespace is locked, or system init time.
    737  1.1    jruoho  *
    738  1.1    jruoho  ******************************************************************************/
    739  1.1    jruoho 
    740  1.2  christos void
    741  1.1    jruoho AcpiEvExecuteRegMethods (
    742  1.1    jruoho     ACPI_NAMESPACE_NODE     *Node,
    743  1.2  christos     ACPI_ADR_SPACE_TYPE     SpaceId,
    744  1.2  christos     UINT32                  Function)
    745  1.1    jruoho {
    746  1.2  christos     ACPI_REG_WALK_INFO      Info;
    747  1.1    jruoho 
    748  1.1    jruoho 
    749  1.1    jruoho     ACPI_FUNCTION_TRACE (EvExecuteRegMethods);
    750  1.1    jruoho 
    751  1.2  christos     Info.SpaceId = SpaceId;
    752  1.2  christos     Info.Function = Function;
    753  1.2  christos     Info.RegRunCount = 0;
    754  1.2  christos 
    755  1.2  christos     ACPI_DEBUG_PRINT_RAW ((ACPI_DB_NAMES,
    756  1.2  christos         "    Running _REG methods for SpaceId %s\n",
    757  1.2  christos         AcpiUtGetRegionName (Info.SpaceId)));
    758  1.1    jruoho 
    759  1.1    jruoho     /*
    760  1.1    jruoho      * Run all _REG methods for all Operation Regions for this space ID. This
    761  1.1    jruoho      * is a separate walk in order to handle any interdependencies between
    762  1.1    jruoho      * regions and _REG methods. (i.e. handlers must be installed for all
    763  1.1    jruoho      * regions of this Space ID before we can run any _REG methods)
    764  1.1    jruoho      */
    765  1.2  christos     (void) AcpiNsWalkNamespace (ACPI_TYPE_ANY, Node, ACPI_UINT32_MAX,
    766  1.2  christos         ACPI_NS_WALK_UNLOCK, AcpiEvRegRun, NULL, &Info, NULL);
    767  1.2  christos 
    768  1.2  christos     /* Special case for EC: handle "orphan" _REG methods with no region */
    769  1.1    jruoho 
    770  1.2  christos     if (SpaceId == ACPI_ADR_SPACE_EC)
    771  1.2  christos     {
    772  1.2  christos         AcpiEvOrphanEcRegMethod (Node);
    773  1.2  christos     }
    774  1.2  christos 
    775  1.2  christos     ACPI_DEBUG_PRINT_RAW ((ACPI_DB_NAMES,
    776  1.2  christos         "    Executed %u _REG methods for SpaceId %s\n",
    777  1.2  christos         Info.RegRunCount, AcpiUtGetRegionName (Info.SpaceId)));
    778  1.2  christos 
    779  1.2  christos     return_VOID;
    780  1.1    jruoho }
    781  1.1    jruoho 
    782  1.1    jruoho 
    783  1.1    jruoho /*******************************************************************************
    784  1.1    jruoho  *
    785  1.1    jruoho  * FUNCTION:    AcpiEvRegRun
    786  1.1    jruoho  *
    787  1.1    jruoho  * PARAMETERS:  WalkNamespace callback
    788  1.1    jruoho  *
    789  1.1    jruoho  * DESCRIPTION: Run _REG method for region objects of the requested spaceID
    790  1.1    jruoho  *
    791  1.1    jruoho  ******************************************************************************/
    792  1.1    jruoho 
    793  1.1    jruoho static ACPI_STATUS
    794  1.1    jruoho AcpiEvRegRun (
    795  1.1    jruoho     ACPI_HANDLE             ObjHandle,
    796  1.1    jruoho     UINT32                  Level,
    797  1.1    jruoho     void                    *Context,
    798  1.1    jruoho     void                    **ReturnValue)
    799  1.1    jruoho {
    800  1.1    jruoho     ACPI_OPERAND_OBJECT     *ObjDesc;
    801  1.1    jruoho     ACPI_NAMESPACE_NODE     *Node;
    802  1.1    jruoho     ACPI_STATUS             Status;
    803  1.2  christos     ACPI_REG_WALK_INFO      *Info;
    804  1.1    jruoho 
    805  1.1    jruoho 
    806  1.2  christos     Info = ACPI_CAST_PTR (ACPI_REG_WALK_INFO, Context);
    807  1.1    jruoho 
    808  1.1    jruoho     /* Convert and validate the device handle */
    809  1.1    jruoho 
    810  1.1    jruoho     Node = AcpiNsValidateHandle (ObjHandle);
    811  1.1    jruoho     if (!Node)
    812  1.1    jruoho     {
    813  1.1    jruoho         return (AE_BAD_PARAMETER);
    814  1.1    jruoho     }
    815  1.1    jruoho 
    816  1.1    jruoho     /*
    817  1.1    jruoho      * We only care about regions.and objects that are allowed to have address
    818  1.1    jruoho      * space handlers
    819  1.1    jruoho      */
    820  1.1    jruoho     if ((Node->Type != ACPI_TYPE_REGION) &&
    821  1.1    jruoho         (Node != AcpiGbl_RootNode))
    822  1.1    jruoho     {
    823  1.1    jruoho         return (AE_OK);
    824  1.1    jruoho     }
    825  1.1    jruoho 
    826  1.1    jruoho     /* Check for an existing internal object */
    827  1.1    jruoho 
    828  1.1    jruoho     ObjDesc = AcpiNsGetAttachedObject (Node);
    829  1.1    jruoho     if (!ObjDesc)
    830  1.1    jruoho     {
    831  1.1    jruoho         /* No object, just exit */
    832  1.1    jruoho 
    833  1.1    jruoho         return (AE_OK);
    834  1.1    jruoho     }
    835  1.1    jruoho 
    836  1.1    jruoho     /* Object is a Region */
    837  1.1    jruoho 
    838  1.2  christos     if (ObjDesc->Region.SpaceId != Info->SpaceId)
    839  1.1    jruoho     {
    840  1.1    jruoho         /* This region is for a different address space, just ignore it */
    841  1.1    jruoho 
    842  1.1    jruoho         return (AE_OK);
    843  1.1    jruoho     }
    844  1.1    jruoho 
    845  1.2  christos     Info->RegRunCount++;
    846  1.2  christos     Status = AcpiEvExecuteRegMethod (ObjDesc, Info->Function);
    847  1.1    jruoho     return (Status);
    848  1.1    jruoho }
    849  1.1    jruoho 
    850  1.2  christos 
    851  1.2  christos /*******************************************************************************
    852  1.2  christos  *
    853  1.2  christos  * FUNCTION:    AcpiEvOrphanEcRegMethod
    854  1.2  christos  *
    855  1.2  christos  * PARAMETERS:  EcDeviceNode        - Namespace node for an EC device
    856  1.2  christos  *
    857  1.2  christos  * RETURN:      None
    858  1.2  christos  *
    859  1.2  christos  * DESCRIPTION: Execute an "orphan" _REG method that appears under the EC
    860  1.2  christos  *              device. This is a _REG method that has no corresponding region
    861  1.2  christos  *              within the EC device scope. The orphan _REG method appears to
    862  1.2  christos  *              have been enabled by the description of the ECDT in the ACPI
    863  1.2  christos  *              specification: "The availability of the region space can be
    864  1.2  christos  *              detected by providing a _REG method object underneath the
    865  1.2  christos  *              Embedded Controller device."
    866  1.2  christos  *
    867  1.2  christos  *              To quickly access the EC device, we use the EcDeviceNode used
    868  1.2  christos  *              during EC handler installation. Otherwise, we would need to
    869  1.2  christos  *              perform a time consuming namespace walk, executing _HID
    870  1.2  christos  *              methods to find the EC device.
    871  1.2  christos  *
    872  1.2  christos  *  MUTEX:      Assumes the namespace is locked
    873  1.2  christos  *
    874  1.2  christos  ******************************************************************************/
    875  1.2  christos 
    876  1.2  christos static void
    877  1.2  christos AcpiEvOrphanEcRegMethod (
    878  1.2  christos     ACPI_NAMESPACE_NODE     *EcDeviceNode)
    879  1.2  christos {
    880  1.2  christos     ACPI_HANDLE             RegMethod;
    881  1.2  christos     ACPI_NAMESPACE_NODE     *NextNode;
    882  1.2  christos     ACPI_STATUS             Status;
    883  1.2  christos     ACPI_OBJECT_LIST        Args;
    884  1.2  christos     ACPI_OBJECT             Objects[2];
    885  1.2  christos 
    886  1.2  christos 
    887  1.2  christos     ACPI_FUNCTION_TRACE (EvOrphanEcRegMethod);
    888  1.2  christos 
    889  1.2  christos 
    890  1.2  christos     if (!EcDeviceNode)
    891  1.2  christos     {
    892  1.2  christos         return_VOID;
    893  1.2  christos     }
    894  1.2  christos 
    895  1.2  christos     /* Namespace is currently locked, must release */
    896  1.2  christos 
    897  1.2  christos     (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
    898  1.2  christos 
    899  1.2  christos     /* Get a handle to a _REG method immediately under the EC device */
    900  1.2  christos 
    901  1.2  christos     Status = AcpiGetHandle (EcDeviceNode, METHOD_NAME__REG, &RegMethod);
    902  1.2  christos     if (ACPI_FAILURE (Status))
    903  1.2  christos     {
    904  1.2  christos         goto Exit; /* There is no _REG method present */
    905  1.2  christos     }
    906  1.2  christos 
    907  1.2  christos     /*
    908  1.2  christos      * Execute the _REG method only if there is no Operation Region in
    909  1.2  christos      * this scope with the Embedded Controller space ID. Otherwise, it
    910  1.2  christos      * will already have been executed. Note, this allows for Regions
    911  1.2  christos      * with other space IDs to be present; but the code below will then
    912  1.2  christos      * execute the _REG method with the EmbeddedControl SpaceID argument.
    913  1.2  christos      */
    914  1.2  christos     NextNode = AcpiNsGetNextNode (EcDeviceNode, NULL);
    915  1.2  christos     while (NextNode)
    916  1.2  christos     {
    917  1.2  christos         if ((NextNode->Type == ACPI_TYPE_REGION) &&
    918  1.2  christos             (NextNode->Object) &&
    919  1.2  christos             (NextNode->Object->Region.SpaceId == ACPI_ADR_SPACE_EC))
    920  1.2  christos         {
    921  1.2  christos             goto Exit; /* Do not execute the _REG */
    922  1.2  christos         }
    923  1.2  christos 
    924  1.2  christos         NextNode = AcpiNsGetNextNode (EcDeviceNode, NextNode);
    925  1.2  christos     }
    926  1.2  christos 
    927  1.2  christos     /* Evaluate the _REG(EmbeddedControl,Connect) method */
    928  1.2  christos 
    929  1.2  christos     Args.Count = 2;
    930  1.2  christos     Args.Pointer = Objects;
    931  1.2  christos     Objects[0].Type = ACPI_TYPE_INTEGER;
    932  1.2  christos     Objects[0].Integer.Value = ACPI_ADR_SPACE_EC;
    933  1.2  christos     Objects[1].Type = ACPI_TYPE_INTEGER;
    934  1.2  christos     Objects[1].Integer.Value = ACPI_REG_CONNECT;
    935  1.2  christos 
    936  1.2  christos     Status = AcpiEvaluateObject (RegMethod, NULL, &Args, NULL);
    937  1.2  christos 
    938  1.2  christos Exit:
    939  1.2  christos     /* We ignore all errors from above, don't care */
    940  1.2  christos 
    941  1.2  christos     Status = AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE);
    942  1.2  christos     return_VOID;
    943  1.2  christos }
    944