mb: Set coreboot as DSDT's manufacturer model ID
[coreboot.git] / src / mainboard / google / jecht / dsdt.asl
blobdb09dc023199ed80e55c058c68e8d0408ddeb1e1
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2009 coresystems GmbH
5  * Copyright (C) 2014 Google Inc.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; version 2 of the License.
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 v2.0 and up
22         OEM_ID,
23         ACPI_TABLE_CREATOR,
24         0x20110725      // OEM revision
27         // Some generic macros
28         #include "acpi/platform.asl"
30         // Thermal handler
31         #include <variant/acpi/thermal.asl>
33         // global NVS and variables
34         #include <soc/intel/broadwell/acpi/globalnvs.asl>
36         // General Purpose Events
37         //#include "acpi/gpe.asl"
39         // CPU
40         #include <soc/intel/broadwell/acpi/cpu.asl>
42         Scope (\_SB) {
43                 Device (PCI0)
44                 {
45                         #include <soc/intel/broadwell/acpi/systemagent.asl>
46                         #include <soc/intel/broadwell/acpi/pch.asl>
47                 }
48         }
50         // Chrome OS specific
51         #include <vendorcode/google/chromeos/acpi/chromeos.asl>
53         // Chipset specific sleep states
54         #include <soc/intel/broadwell/acpi/sleepstates.asl>
56         // Mainboard specific
57         #include "acpi/mainboard.asl"