blob: 4fe33655087456b5ecc6c1036d3abc4c99e63c20 [file] [log] [blame]
Lee Leahyc4210412015-06-29 11:37:56 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2014 Google Inc.
5 * Copyright (C) 2015 Intel Corporation.
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.
Lee Leahyc4210412015-06-29 11:37:56 -070015 */
16
Wenkai Du3b169252015-08-24 10:31:30 -070017#include "../gpio.h"
18
Lee Leahyc4210412015-06-29 11:37:56 -070019Scope (\_SB)
20{
21 Device (LID0)
22 {
Duncan Laurie74b964e2015-09-04 10:41:02 -070023 Name (_HID, EisaId ("PNP0C0D"))
Lee Leahyc4210412015-06-29 11:37:56 -070024 Method (_LID, 0)
25 {
26 Return (\_SB.PCI0.LPCB.EC0.LIDS)
27 }
Wenkai Du3b169252015-08-24 10:31:30 -070028
29 Name (_PRW, Package () { GPE_EC_WAKE, 5 })
Lee Leahyc4210412015-06-29 11:37:56 -070030 }
31
32 Device (PWRB)
33 {
Duncan Laurie74b964e2015-09-04 10:41:02 -070034 Name (_HID, EisaId ("PNP0C0C"))
Lee Leahyc4210412015-06-29 11:37:56 -070035 }
36}
Duncan Laurie74b964e2015-09-04 10:41:02 -070037
Lee Leahyc4210412015-06-29 11:37:56 -070038/*
39 * LPC Trusted Platform Module
40 */
41Scope (\_SB.PCI0.LPCB)
42{
43 #include <drivers/pc80/tpm/acpi/tpm.asl>
44}