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