Home | History | Annotate | Line # | Download | only in include
acpi.h revision 1.1.1.11.4.1
      1           1.1    jruoho /******************************************************************************
      2           1.1    jruoho  *
      3           1.1    jruoho  * Name: acpi.h - Master public include file used to interface to ACPICA
      4           1.1    jruoho  *
      5           1.1    jruoho  *****************************************************************************/
      6           1.1    jruoho 
      7       1.1.1.2    jruoho /*
      8  1.1.1.11.4.1   thorpej  * Copyright (C) 2000 - 2021, 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.11.4.1   thorpej  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY 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 #ifndef __ACPI_H__
     45           1.1    jruoho #define __ACPI_H__
     46           1.1    jruoho 
     47           1.1    jruoho /*
     48           1.1    jruoho  * Public include files for use by code that will interface to ACPICA.
     49           1.1    jruoho  *
     50           1.1    jruoho  * Information includes the ACPICA data types, names, exceptions, and
     51           1.1    jruoho  * external interface prototypes. Also included are the definitions for
     52           1.1    jruoho  * all ACPI tables (FADT, MADT, etc.)
     53           1.1    jruoho  *
     54           1.1    jruoho  * Note: The order of these include files is important.
     55           1.1    jruoho  */
     56           1.1    jruoho #include "platform/acenv.h"     /* Environment-specific items */
     57           1.1    jruoho #include "actypes.h"            /* ACPICA data types and structures */
     58       1.1.1.8  christos #include "platform/acenvex.h"   /* Extra environment-specific items */
     59       1.1.1.8  christos #include "acnames.h"            /* Common ACPI names and strings */
     60           1.1    jruoho #include "acexcep.h"            /* ACPICA exceptions */
     61           1.1    jruoho #include "actbl.h"              /* ACPI table definitions */
     62           1.1    jruoho #include "acoutput.h"           /* Error output and Debug macros */
     63           1.1    jruoho #include "acrestyp.h"           /* Resource Descriptor structs */
     64           1.1    jruoho #include "acpiosxf.h"           /* OSL interfaces (ACPICA-to-OS) */
     65           1.1    jruoho #include "acpixf.h"             /* ACPI core subsystem external interfaces */
     66           1.1    jruoho 
     67           1.1    jruoho #endif /* __ACPI_H__ */
     68