blob: 8f5bbc02bf5b682261492ecaa7da6de3eeea6eb0 [file] [log] [blame]
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +01001/*
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.
Vladimir Serbinenkob2939f72014-01-22 17:12:35 +01006 * Copyright (C) 2014 Vladimir Serbinenko
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +01007 *
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.
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010020 */
21
22#define THINKPAD_EC_GPE 17
23#define BRIGHTNESS_UP \_SB.PCI0.GFX0.LCD0.INCB
24#define BRIGHTNESS_DOWN \_SB.PCI0.GFX0.LCD0.DECB
25#define ACPI_VIDEO_DEVICE \_SB.PCI0.GFX0
Vladimir Serbinenkoe0ceac32014-07-29 00:51:31 +020026#define EC_LENOVO_H8_ME_WORKAROUND 1
Vladimir Serbinenko91337fd2014-08-20 22:46:14 +020027#define HAVE_LCD_SCREEN 1
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010028
29DefinitionBlock(
30 "dsdt.aml",
31 "DSDT",
32 0x02, // DSDT revision: ACPI v2.0
33 "COREv4", // OEM id
Vladimir Serbinenko4737b0c2014-01-22 17:12:56 +010034 "COREBOOT", // OEM table id
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010035 0x20110725 // OEM revision
36)
37{
Vladimir Serbinenkoe2887582015-05-17 00:20:52 +020038 #include <southbridge/intel/bd82x6x/acpi/platform.asl>
39
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010040 // Some generic macros
41 #include "acpi/platform.asl"
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010042
43 // global NVS and variables
44 #include <southbridge/intel/bd82x6x/acpi/globalnvs.asl>
45
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010046 #include <cpu/intel/model_206ax/acpi/cpu.asl>
47
48 Scope (\_SB) {
49 Device (PCI0)
50 {
51 #include <northbridge/intel/sandybridge/acpi/sandybridge.asl>
52 #include <southbridge/intel/bd82x6x/acpi/pch.asl>
53 }
54 }
Vladimir Serbinenko61273d42015-05-13 17:47:58 +020055/*
56 * LPC Trusted Platform Module
57 */
58Scope (\_SB.PCI0.LPCB)
59{
60 #include <drivers/pc80/tpm/acpi/tpm.asl>
61}
62
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010063
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010064 /* Chipset specific sleep states */
65 #include <southbridge/intel/bd82x6x/acpi/sleepstates.asl>
66}