acpi.h 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. /* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
  2. /******************************************************************************
  3. *
  4. * Name: acpi.h - Master public include file used to interface to ACPICA
  5. *
  6. * Copyright (C) 2000 - 2020, Intel Corp.
  7. *
  8. *****************************************************************************/
  9. #ifndef __ACPI_H__
  10. #define __ACPI_H__
  11. /*
  12. * Public include files for use by code that will interface to ACPICA.
  13. *
  14. * Information includes the ACPICA data types, names, exceptions, and
  15. * external interface prototypes. Also included are the definitions for
  16. * all ACPI tables (FADT, MADT, etc.)
  17. *
  18. * Note: The order of these include files is important.
  19. */
  20. #include <acpi/platform/acenv.h> /* Environment-specific items */
  21. #include <acpi/acnames.h> /* Common ACPI names and strings */
  22. #include <acpi/actypes.h> /* ACPICA data types and structures */
  23. #include <acpi/acexcep.h> /* ACPICA exceptions */
  24. #include <acpi/actbl.h> /* ACPI table definitions */
  25. #include <acpi/acrestyp.h> /* Resource Descriptor structs */
  26. #include <acpi/platform/acenvex.h> /* Extra environment-specific items */
  27. #include <acpi/acoutput.h> /* Error output and Debug macros */
  28. #include <acpi/acpiosxf.h> /* OSL interfaces (ACPICA-to-OS) */
  29. #include <acpi/acpixf.h> /* ACPI core subsystem external interfaces */
  30. #endif /* __ACPI_H__ */