blob: c8591a4fd3cad5d03fd56b6bfd7a6164df928259 [file] [log] [blame]
Zaolina823f9b2014-05-06 21:31:45 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
6 * Copyright (C) 2014 Vladimir Serbinenko
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 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010019 * Foundation, Inc.
Zaolina823f9b2014-05-06 21:31:45 +020020 */
21
22#define THINKPAD_EC_GPE 17
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +010023#define BRIGHTNESS_UP \_SB.PCI0.GFX0.INCB
24#define BRIGHTNESS_DOWN \_SB.PCI0.GFX0.DECB
Zaolina823f9b2014-05-06 21:31:45 +020025#define ACPI_VIDEO_DEVICE \_SB.PCI0.GFX0
Nicolas Reinecke85f2e122014-10-17 15:09:05 +020026#define EC_LENOVO_H8_ME_WORKAROUND 1
Zaolina823f9b2014-05-06 21:31:45 +020027
28DefinitionBlock(
29 "dsdt.aml",
30 "DSDT",
31 0x02, // DSDT revision: ACPI v2.0
32 "COREv4", // OEM id
33 "COREBOOT", // OEM table id
34 0x20110725 // OEM revision
35)
36{
Vladimir Serbinenkoe2887582015-05-17 00:20:52 +020037 #include <southbridge/intel/bd82x6x/acpi/platform.asl>
38
Zaolina823f9b2014-05-06 21:31:45 +020039 // Some generic macros
40 #include "acpi/platform.asl"
41
42 // global NVS and variables
43 #include <southbridge/intel/bd82x6x/acpi/globalnvs.asl>
44
Zaolina823f9b2014-05-06 21:31:45 +020045 #include <cpu/intel/model_206ax/acpi/cpu.asl>
46
47 Scope (\_SB) {
48 Device (PCI0)
49 {
50 #include <northbridge/intel/sandybridge/acpi/sandybridge.asl>
51 #include <southbridge/intel/bd82x6x/acpi/pch.asl>
52 }
53 }
54
Philipp Deppenwiese3d02b9c2015-06-03 23:09:36 +020055 /*
56 * LPC Trusted Platform Module
57 */
58 Scope (\_SB.PCI0.LPCB)
59 {
60 #include <drivers/pc80/tpm/acpi/tpm.asl>
61 }
62
Zaolina823f9b2014-05-06 21:31:45 +020063 /* Chipset specific sleep states */
64 #include <southbridge/intel/bd82x6x/acpi/sleepstates.asl>
65}