blob: 410e1aca6cd20331a755b5efbe203ba3a91da262 [file] [log] [blame]
Lijian Zhao6c0f3c72017-08-29 17:12:51 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 * Copyright (C) 2015 Google Inc.
6 * Copyright (C) 2017 Intel Corporation
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
18DefinitionBlock(
19 "dsdt.aml",
20 "DSDT",
21 0x05, // DSDT revision: ACPI v5.0
22 "COREv4", // OEM id
23 "COREBOOT", // OEM table id
24 0x20110725 // OEM revision
25)
26{
27 // global NVS and variables
28 #include <soc/intel/cannonlake/acpi/globalnvs.asl>
29
30 Scope (\_SB) {
31 }
32
33#if IS_ENABLED(CONFIG_CHROMEOS)
34 // Chrome OS specific
35 #include <vendorcode/google/chromeos/acpi/chromeos.asl>
36#endif
37}