blob: e3e8051d4812b1ed5199b191d549606e34d1c213 [file] [log] [blame]
Erik Schmauss95857632018-03-14 16:13:07 -07001/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/******************************************************************************
3 *
Bob Moore50df4d82008-12-31 03:01:23 +08004 * Name: acpi.h - Master public include file used to interface to ACPICA
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Bob Moore800ba7c2020-01-10 11:31:49 -08006 * Copyright (C) 2000 - 2020, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Erik Schmauss95857632018-03-14 16:13:07 -07008 *****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10#ifndef __ACPI_H__
11#define __ACPI_H__
12
13/*
Bob Moore50df4d82008-12-31 03:01:23 +080014 * Public include files for use by code that will interface to ACPICA.
15 *
16 * Information includes the ACPICA data types, names, exceptions, and
17 * external interface prototypes. Also included are the definitions for
18 * all ACPI tables (FADT, MADT, etc.)
19 *
20 * Note: The order of these include files is important.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 */
David Howellsa1ce3922012-10-02 18:01:25 +010022#include <acpi/platform/acenv.h> /* Environment-specific items */
23#include <acpi/acnames.h> /* Common ACPI names and strings */
24#include <acpi/actypes.h> /* ACPICA data types and structures */
25#include <acpi/acexcep.h> /* ACPICA exceptions */
26#include <acpi/actbl.h> /* ACPI table definitions */
David Howellsa1ce3922012-10-02 18:01:25 +010027#include <acpi/acrestyp.h> /* Resource Descriptor structs */
Shao Mingd5f23fe2017-08-03 14:26:44 +080028#include <acpi/platform/acenvex.h> /* Extra environment-specific items */
29#include <acpi/acoutput.h> /* Error output and Debug macros */
David Howellsa1ce3922012-10-02 18:01:25 +010030#include <acpi/acpiosxf.h> /* OSL interfaces (ACPICA-to-OS) */
31#include <acpi/acpixf.h> /* ACPI core subsystem external interfaces */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Len Brown4be44fc2005-08-05 00:44:28 -040033#endif /* __ACPI_H__ */