167754Smsmith/******************************************************************************
267754Smsmith *
3193267Sjkim * Name: acpi.h - Master public include file used to interface to ACPICA
467754Smsmith *
567754Smsmith *****************************************************************************/
667754Smsmith
7217365Sjkim/*
8306536Sjkim * Copyright (C) 2000 - 2016, Intel Corp.
970243Smsmith * All rights reserved.
1067754Smsmith *
11217365Sjkim * Redistribution and use in source and binary forms, with or without
12217365Sjkim * modification, are permitted provided that the following conditions
13217365Sjkim * are met:
14217365Sjkim * 1. Redistributions of source code must retain the above copyright
15217365Sjkim *    notice, this list of conditions, and the following disclaimer,
16217365Sjkim *    without modification.
17217365Sjkim * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18217365Sjkim *    substantially similar to the "NO WARRANTY" disclaimer below
19217365Sjkim *    ("Disclaimer") and any redistribution must be conditioned upon
20217365Sjkim *    including a substantially similar Disclaimer requirement for further
21217365Sjkim *    binary redistribution.
22217365Sjkim * 3. Neither the names of the above-listed copyright holders nor the names
23217365Sjkim *    of any contributors may be used to endorse or promote products derived
24217365Sjkim *    from this software without specific prior written permission.
2567754Smsmith *
26217365Sjkim * Alternatively, this software may be distributed under the terms of the
27217365Sjkim * GNU General Public License ("GPL") version 2 as published by the Free
28217365Sjkim * Software Foundation.
2967754Smsmith *
30217365Sjkim * NO WARRANTY
31217365Sjkim * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32217365Sjkim * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33217365Sjkim * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34217365Sjkim * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35217365Sjkim * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36217365Sjkim * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37217365Sjkim * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38217365Sjkim * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39217365Sjkim * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40217365Sjkim * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41217365Sjkim * POSSIBILITY OF SUCH DAMAGES.
42217365Sjkim */
4367754Smsmith
4467754Smsmith#ifndef __ACPI_H__
4567754Smsmith#define __ACPI_H__
4667754Smsmith
4767754Smsmith/*
48193267Sjkim * Public include files for use by code that will interface to ACPICA.
49193267Sjkim *
50193267Sjkim * Information includes the ACPICA data types, names, exceptions, and
51193267Sjkim * external interface prototypes. Also included are the definitions for
52193267Sjkim * all ACPI tables (FADT, MADT, etc.)
53193267Sjkim *
54193267Sjkim * Note: The order of these include files is important.
5567754Smsmith */
56193341Sjkim#include <contrib/dev/acpica/include/platform/acenv.h>     /* Environment-specific items */
57193341Sjkim#include <contrib/dev/acpica/include/acnames.h>            /* Common ACPI names and strings */
58193341Sjkim#include <contrib/dev/acpica/include/actypes.h>            /* ACPICA data types and structures */
59193341Sjkim#include <contrib/dev/acpica/include/acexcep.h>            /* ACPICA exceptions */
60193341Sjkim#include <contrib/dev/acpica/include/actbl.h>              /* ACPI table definitions */
61193341Sjkim#include <contrib/dev/acpica/include/acoutput.h>           /* Error output and Debug macros */
62193341Sjkim#include <contrib/dev/acpica/include/acrestyp.h>           /* Resource Descriptor structs */
63193341Sjkim#include <contrib/dev/acpica/include/acpiosxf.h>           /* OSL interfaces (ACPICA-to-OS) */
64193341Sjkim#include <contrib/dev/acpica/include/acpixf.h>             /* ACPI core subsystem external interfaces */
65281075Sdim#include <contrib/dev/acpica/include/platform/acenvex.h>   /* Extra environment-specific items */
6667754Smsmith
6767754Smsmith#endif /* __ACPI_H__ */
68