summaryrefslogtreecommitdiff
path: root/src/mainboard/hp/folio_9480m_bdw/dsdt.asl
blob: 895d639840a957caf0fa1405e798f49f84910f81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* SPDX-License-Identifier: GPL-2.0-only */


#include <acpi/acpi.h>

DefinitionBlock(
	"dsdt.aml",
	"DSDT",
	ACPI_DSDT_REV_2,
	OEM_ID,
	ACPI_TABLE_CREATOR,
	0x20141018	/* OEM revision */
)
{
	#include <soc/intel/broadwell/acpi/platform.asl>
	#include <soc/intel/broadwell/pch/acpi/globalnvs.asl>
	#include <cpu/intel/common/acpi/cpu.asl>
	#include <southbridge/intel/common/acpi/sleepstates.asl>

	Device (\_SB.PCI0)
	{
		#include <soc/intel/broadwell/acpi/systemagent.asl>
		#include <soc/intel/broadwell/pch/acpi/pch.asl>
	}

	/* FIXME: We cannot override the default _WAK and _PTS in soc/broadwell */
        /* #include "acpi/platform.asl" */
}