aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/x60/acpi/gpe.asl
blob: 11e5dc03c0f50fdcc8834482c0033037ca6c8b2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
 * This file is part of the coreboot project.
 *
 * Copyright (c) 2011 Sven Schnelle <svens@stackframe.org>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; version 2 of
 * the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
 * MA 02110-1301 USA
 */

#include "smi.h"
Scope (\_GPE)
{
	Method(_L18, 0, NotSerialized)
	{
		/* Read EC register to clear wake status */
		Store(\_SB.PCI0.LPCB.EC.WAKE, Local0)
	}

       /* SLICE_ON_3M GPE (Dock status) */
       Method(_L1D, 0, NotSerialized)
       {
               if (GP13) {
		       Or(GIV1, 0x20, GIV1)
		       Notify(\_SB.DOCK, 3)
               } else {
		       And(GIV1, 0xdf, GIV1)
		       Notify(\_SB.DOCK, 0)
               }
	}
}