Home | History | Annotate | Line # | Download | only in examples
exstubs.c revision 1.1
      1  1.1  christos /******************************************************************************
      2  1.1  christos  *
      3  1.1  christos  * Module Name: exstubs - Stub routines for the Example program
      4  1.1  christos  *
      5  1.1  christos  *****************************************************************************/
      6  1.1  christos 
      7  1.1  christos /*
      8  1.1  christos  * Copyright (C) 2000 - 2013, Intel Corp.
      9  1.1  christos  * All rights reserved.
     10  1.1  christos  *
     11  1.1  christos  * Redistribution and use in source and binary forms, with or without
     12  1.1  christos  * modification, are permitted provided that the following conditions
     13  1.1  christos  * are met:
     14  1.1  christos  * 1. Redistributions of source code must retain the above copyright
     15  1.1  christos  *    notice, this list of conditions, and the following disclaimer,
     16  1.1  christos  *    without modification.
     17  1.1  christos  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
     18  1.1  christos  *    substantially similar to the "NO WARRANTY" disclaimer below
     19  1.1  christos  *    ("Disclaimer") and any redistribution must be conditioned upon
     20  1.1  christos  *    including a substantially similar Disclaimer requirement for further
     21  1.1  christos  *    binary redistribution.
     22  1.1  christos  * 3. Neither the names of the above-listed copyright holders nor the names
     23  1.1  christos  *    of any contributors may be used to endorse or promote products derived
     24  1.1  christos  *    from this software without specific prior written permission.
     25  1.1  christos  *
     26  1.1  christos  * Alternatively, this software may be distributed under the terms of the
     27  1.1  christos  * GNU General Public License ("GPL") version 2 as published by the Free
     28  1.1  christos  * Software Foundation.
     29  1.1  christos  *
     30  1.1  christos  * NO WARRANTY
     31  1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     32  1.1  christos  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     33  1.1  christos  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
     34  1.1  christos  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     35  1.1  christos  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     36  1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     37  1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     38  1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     39  1.1  christos  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
     40  1.1  christos  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     41  1.1  christos  * POSSIBILITY OF SUCH DAMAGES.
     42  1.1  christos  */
     43  1.1  christos 
     44  1.1  christos #include "examples.h"
     45  1.1  christos 
     46  1.1  christos #include <acutils.h>
     47  1.1  christos #include <acevents.h>
     48  1.1  christos #include <acdispat.h>
     49  1.1  christos 
     50  1.1  christos #define _COMPONENT          ACPI_EXAMPLE
     51  1.1  christos         ACPI_MODULE_NAME    ("exstubs")
     52  1.1  christos 
     53  1.1  christos 
     54  1.1  christos /******************************************************************************
     55  1.1  christos  *
     56  1.1  christos  * DESCRIPTION: Stubs used to facilitate linkage of the example program
     57  1.1  christos  *
     58  1.1  christos  *****************************************************************************/
     59  1.1  christos 
     60  1.1  christos 
     61  1.1  christos /* Utilities */
     62  1.1  christos 
     63  1.1  christos void
     64  1.1  christos AcpiUtSubsystemShutdown (
     65  1.1  christos     void)
     66  1.1  christos {
     67  1.1  christos }
     68  1.1  christos 
     69  1.1  christos ACPI_STATUS
     70  1.1  christos AcpiUtExecute_STA (
     71  1.1  christos     ACPI_NAMESPACE_NODE     *DeviceNode,
     72  1.1  christos     UINT32                  *StatusFlags)
     73  1.1  christos {
     74  1.1  christos     return (AE_NOT_IMPLEMENTED);
     75  1.1  christos }
     76  1.1  christos 
     77  1.1  christos ACPI_STATUS
     78  1.1  christos AcpiUtExecute_HID (
     79  1.1  christos     ACPI_NAMESPACE_NODE     *DeviceNode,
     80  1.1  christos     ACPI_PNP_DEVICE_ID      **ReturnId)
     81  1.1  christos {
     82  1.1  christos     return (AE_NOT_IMPLEMENTED);
     83  1.1  christos }
     84  1.1  christos 
     85  1.1  christos ACPI_STATUS
     86  1.1  christos AcpiUtExecute_CID (
     87  1.1  christos     ACPI_NAMESPACE_NODE     *DeviceNode,
     88  1.1  christos     ACPI_PNP_DEVICE_ID_LIST **ReturnCidList)
     89  1.1  christos {
     90  1.1  christos     return (AE_NOT_IMPLEMENTED);
     91  1.1  christos }
     92  1.1  christos 
     93  1.1  christos ACPI_STATUS
     94  1.1  christos AcpiUtExecute_UID (
     95  1.1  christos     ACPI_NAMESPACE_NODE     *DeviceNode,
     96  1.1  christos     ACPI_PNP_DEVICE_ID      **ReturnId)
     97  1.1  christos {
     98  1.1  christos     return (AE_NOT_IMPLEMENTED);
     99  1.1  christos }
    100  1.1  christos 
    101  1.1  christos ACPI_STATUS
    102  1.1  christos AcpiUtExecute_SUB (
    103  1.1  christos     ACPI_NAMESPACE_NODE     *DeviceNode,
    104  1.1  christos     ACPI_PNP_DEVICE_ID      **ReturnId)
    105  1.1  christos {
    106  1.1  christos     return (AE_NOT_IMPLEMENTED);
    107  1.1  christos }
    108  1.1  christos 
    109  1.1  christos ACPI_STATUS
    110  1.1  christos AcpiUtExecutePowerMethods (
    111  1.1  christos     ACPI_NAMESPACE_NODE     *DeviceNode,
    112  1.1  christos     const char              **MethodNames,
    113  1.1  christos     UINT8                   MethodCount,
    114  1.1  christos     UINT8                   *OutValues)
    115  1.1  christos {
    116  1.1  christos     return (AE_NOT_IMPLEMENTED);
    117  1.1  christos }
    118  1.1  christos 
    119  1.1  christos ACPI_STATUS
    120  1.1  christos AcpiUtEvaluateNumericObject (
    121  1.1  christos     char                    *ObjectName,
    122  1.1  christos     ACPI_NAMESPACE_NODE     *DeviceNode,
    123  1.1  christos     UINT64                  *Value)
    124  1.1  christos {
    125  1.1  christos     return (AE_NOT_IMPLEMENTED);
    126  1.1  christos }
    127  1.1  christos 
    128  1.1  christos ACPI_STATUS
    129  1.1  christos AcpiUtGetResourceEndTag (
    130  1.1  christos     ACPI_OPERAND_OBJECT     *ObjDesc,
    131  1.1  christos     UINT8                   **EndTag)
    132  1.1  christos {
    133  1.1  christos     return (AE_OK);
    134  1.1  christos }
    135  1.1  christos 
    136  1.1  christos 
    137  1.1  christos /* Hardware manager */
    138  1.1  christos 
    139  1.1  christos UINT32
    140  1.1  christos AcpiHwGetMode (
    141  1.1  christos     void)
    142  1.1  christos {
    143  1.1  christos     return (0);
    144  1.1  christos }
    145  1.1  christos 
    146  1.1  christos ACPI_STATUS
    147  1.1  christos AcpiHwReadPort (
    148  1.1  christos     ACPI_IO_ADDRESS         Address,
    149  1.1  christos     UINT32                  *Value,
    150  1.1  christos     UINT32                  Width)
    151  1.1  christos {
    152  1.1  christos     return (AE_OK);
    153  1.1  christos }
    154  1.1  christos 
    155  1.1  christos ACPI_STATUS
    156  1.1  christos AcpiHwWritePort (
    157  1.1  christos     ACPI_IO_ADDRESS         Address,
    158  1.1  christos     UINT32                  Value,
    159  1.1  christos     UINT32                  Width)
    160  1.1  christos {
    161  1.1  christos     return (AE_OK);
    162  1.1  christos }
    163  1.1  christos 
    164  1.1  christos 
    165  1.1  christos /* Event manager */
    166  1.1  christos 
    167  1.1  christos ACPI_STATUS
    168  1.1  christos AcpiInstallNotifyHandler (
    169  1.1  christos     ACPI_HANDLE             Device,
    170  1.1  christos     UINT32                  HandlerType,
    171  1.1  christos     ACPI_NOTIFY_HANDLER     Handler,
    172  1.1  christos     void                    *Context)
    173  1.1  christos {
    174  1.1  christos     return (AE_OK);
    175  1.1  christos }
    176  1.1  christos 
    177  1.1  christos ACPI_STATUS
    178  1.1  christos AcpiEvInstallXruptHandlers (
    179  1.1  christos     void)
    180  1.1  christos {
    181  1.1  christos     return (AE_OK);
    182  1.1  christos }
    183  1.1  christos 
    184  1.1  christos ACPI_STATUS
    185  1.1  christos AcpiEvInitializeEvents (
    186  1.1  christos     void)
    187  1.1  christos {
    188  1.1  christos     return (AE_OK);
    189  1.1  christos }
    190  1.1  christos 
    191  1.1  christos ACPI_STATUS
    192  1.1  christos AcpiEvInstallRegionHandlers (
    193  1.1  christos     void)
    194  1.1  christos {
    195  1.1  christos     return (AE_OK);
    196  1.1  christos }
    197  1.1  christos 
    198  1.1  christos ACPI_STATUS
    199  1.1  christos AcpiEvInitializeOpRegions (
    200  1.1  christos     void)
    201  1.1  christos {
    202  1.1  christos     return (AE_OK);
    203  1.1  christos }
    204  1.1  christos 
    205  1.1  christos ACPI_STATUS
    206  1.1  christos AcpiEvInitializeRegion (
    207  1.1  christos     ACPI_OPERAND_OBJECT     *RegionObj,
    208  1.1  christos     BOOLEAN                 AcpiNsLocked)
    209  1.1  christos {
    210  1.1  christos     return (AE_OK);
    211  1.1  christos }
    212  1.1  christos 
    213  1.1  christos #if (!ACPI_REDUCED_HARDWARE)
    214  1.1  christos ACPI_STATUS
    215  1.1  christos AcpiEvDeleteGpeBlock (
    216  1.1  christos     ACPI_GPE_BLOCK_INFO     *GpeBlock)
    217  1.1  christos {
    218  1.1  christos     return (AE_OK);
    219  1.1  christos }
    220  1.1  christos 
    221  1.1  christos ACPI_STATUS
    222  1.1  christos AcpiEnable (
    223  1.1  christos     void)
    224  1.1  christos {
    225  1.1  christos     return (AE_OK);
    226  1.1  christos }
    227  1.1  christos #endif /* !ACPI_REDUCED_HARDWARE */
    228  1.1  christos 
    229  1.1  christos void
    230  1.1  christos AcpiEvUpdateGpes (
    231  1.1  christos     ACPI_OWNER_ID           TableOwnerId)
    232  1.1  christos {
    233  1.1  christos }
    234  1.1  christos 
    235  1.1  christos ACPI_STATUS
    236  1.1  christos AcpiEvAddressSpaceDispatch (
    237  1.1  christos     ACPI_OPERAND_OBJECT     *RegionObj,
    238  1.1  christos     ACPI_OPERAND_OBJECT     *FieldObj,
    239  1.1  christos     UINT32                  Function,
    240  1.1  christos     UINT32                  RegionOffset,
    241  1.1  christos     UINT32                  BitWidth,
    242  1.1  christos     UINT64                  *Value)
    243  1.1  christos {
    244  1.1  christos     return (AE_OK);
    245  1.1  christos }
    246  1.1  christos 
    247  1.1  christos ACPI_STATUS
    248  1.1  christos AcpiEvAcquireGlobalLock (
    249  1.1  christos     UINT16                  Timeout)
    250  1.1  christos {
    251  1.1  christos     return (AE_OK);
    252  1.1  christos }
    253  1.1  christos 
    254  1.1  christos ACPI_STATUS
    255  1.1  christos AcpiEvReleaseGlobalLock (
    256  1.1  christos     void)
    257  1.1  christos {
    258  1.1  christos     return (AE_OK);
    259  1.1  christos }
    260  1.1  christos 
    261  1.1  christos ACPI_STATUS
    262  1.1  christos AcpiEvQueueNotifyRequest (
    263  1.1  christos     ACPI_NAMESPACE_NODE     *Node,
    264  1.1  christos     UINT32                  NotifyValue)
    265  1.1  christos {
    266  1.1  christos     return (AE_OK);
    267  1.1  christos }
    268  1.1  christos 
    269  1.1  christos BOOLEAN
    270  1.1  christos AcpiEvIsNotifyObject (
    271  1.1  christos     ACPI_NAMESPACE_NODE     *Node)
    272  1.1  christos {
    273  1.1  christos     return (TRUE);
    274  1.1  christos }
    275  1.1  christos 
    276  1.1  christos 
    277  1.1  christos /* Namespace manager */
    278  1.1  christos 
    279  1.1  christos ACPI_STATUS
    280  1.1  christos AcpiNsCheckReturnValue (
    281  1.1  christos     ACPI_NAMESPACE_NODE         *Node,
    282  1.1  christos     ACPI_EVALUATE_INFO          *Info,
    283  1.1  christos     UINT32                      UserParamCount,
    284  1.1  christos     ACPI_STATUS                 ReturnStatus,
    285  1.1  christos     ACPI_OPERAND_OBJECT         **ReturnObjectPtr)
    286  1.1  christos {
    287  1.1  christos     return (AE_OK);
    288  1.1  christos }
    289  1.1  christos 
    290  1.1  christos void
    291  1.1  christos AcpiNsCheckArgumentTypes (
    292  1.1  christos     ACPI_EVALUATE_INFO          *Info)
    293  1.1  christos {
    294  1.1  christos     return;
    295  1.1  christos }
    296  1.1  christos 
    297  1.1  christos void
    298  1.1  christos AcpiNsCheckArgumentCount (
    299  1.1  christos     char                        *Pathname,
    300  1.1  christos     ACPI_NAMESPACE_NODE         *Node,
    301  1.1  christos     UINT32                      UserParamCount,
    302  1.1  christos     const ACPI_PREDEFINED_INFO  *Predefined)
    303  1.1  christos {
    304  1.1  christos     return;
    305  1.1  christos }
    306  1.1  christos 
    307  1.1  christos void
    308  1.1  christos AcpiNsCheckAcpiCompliance (
    309  1.1  christos     char                        *Pathname,
    310  1.1  christos     ACPI_NAMESPACE_NODE         *Node,
    311  1.1  christos     const ACPI_PREDEFINED_INFO  *Predefined)
    312  1.1  christos {
    313  1.1  christos     return;
    314  1.1  christos }
    315  1.1  christos 
    316  1.1  christos const ACPI_PREDEFINED_INFO *
    317  1.1  christos AcpiUtMatchPredefinedMethod (
    318  1.1  christos     char                        *Name)
    319  1.1  christos {
    320  1.1  christos     return (NULL);
    321  1.1  christos }
    322  1.1  christos 
    323  1.1  christos /* OSL interfaces */
    324  1.1  christos 
    325  1.1  christos ACPI_THREAD_ID
    326  1.1  christos AcpiOsGetThreadId (
    327  1.1  christos     void)
    328  1.1  christos {
    329  1.1  christos     return (1);
    330  1.1  christos }
    331  1.1  christos 
    332  1.1  christos ACPI_STATUS
    333  1.1  christos AcpiOsExecute (
    334  1.1  christos     ACPI_EXECUTE_TYPE       Type,
    335  1.1  christos     ACPI_OSD_EXEC_CALLBACK  Function,
    336  1.1  christos     void                    *Context)
    337  1.1  christos {
    338  1.1  christos     return (AE_SUPPORT);
    339  1.1  christos }
    340