cpu/intel/common: Use a common acpi/cpu.asl file
[coreboot.git] / src / mainboard / asrock / h81m-hds / dsdt.asl
blobf76c393bb05acb99c7096c01dd9cc9570807ca96
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2018 Tristan Corrick <tristan@corrick.kiwi>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  */
17 #include <arch/acpi.h>
18 DefinitionBlock(
19         "dsdt.aml",
20         "DSDT",
21         0x02,           /* DSDT Revision: ACPI v3.0 */
22         OEM_ID,
23         ACPI_TABLE_CREATOR,
24         0x20181031      /* OEM Revision */
27         #include "acpi/platform.asl"
28         #include <southbridge/intel/lynxpoint/acpi/platform.asl>
29         #include <southbridge/intel/lynxpoint/acpi/globalnvs.asl>
30         #include <southbridge/intel/lynxpoint/acpi/sleepstates.asl>
31         #include <cpu/intel/common/acpi/cpu.asl>
33         Scope (\_SB)
34         {
35                 Device (PCI0)
36                 {
37                 #include <northbridge/intel/haswell/acpi/haswell.asl>
38                 #include <southbridge/intel/lynxpoint/acpi/pch.asl>
39                 #include <drivers/intel/gma/acpi/default_brightness_levels.asl>
40                 }
41         }