Remove address from GPLv2 headers
[coreboot.git] / src / mainboard / lenovo / t60 / dsdt.asl
blob92aac6ced7c076189551e1f66c893cbe932b8e2a
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2009 coresystems GmbH
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; version 2 of
9  * 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  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc.
19  */
21 #define THINKPAD_EC_GPE 28
22 #define BRIGHTNESS_UP \DSPC.BRTU
23 #define BRIGHTNESS_DOWN \DSPC.BRTD
24 #define ACPI_VIDEO_DEVICE \_SB.PCI0.GFX0
26 DefinitionBlock(
27         "dsdt.aml",
28         "DSDT",
29         0x03,           // DSDT revision: ACPI v3.0
30         "COREv4",       // OEM id
31         "COREBOOT",     // OEM table id
32         0x20090419      // OEM revision
35         // Some generic macros
36         #include "acpi/platform.asl"
38         // global NVS and variables
39         #include <southbridge/intel/i82801gx/acpi/globalnvs.asl>
40         #include <southbridge/intel/i82801gx/acpi/platform.asl>
42         // General Purpose Events
43         #include "acpi/gpe.asl"
45         // mainboard specific devices
46         #include "acpi/mainboard.asl"
48         #include <cpu/intel/model_6dx/acpi/cpu.asl>
50         Scope (\_SB) {
51                 Device (PCI0)
52                 {
53                         #include <northbridge/intel/i945/acpi/i945.asl>
54                         #include <southbridge/intel/i82801gx/acpi/ich7.asl>
55                 }
56         }
58         /* Chipset specific sleep states */
59         #include <southbridge/intel/i82801gx/acpi/sleepstates.asl>
61         // Dock support code
62         #include "acpi/dock.asl"