blob: c07c7079ad7d8cd3ba8d00e54d5459c441e2ef8a [file] [log] [blame]
Hannah Williams85e3c772016-05-25 11:12:43 -07001/*
2 * This file is part of the coreboot project.
Hannah Williams1cdce27c2016-04-05 10:03:38 -07003 *
4 * Copyright (C) 2016 Intel Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16/* XHCI Controller 0:15.0 */
Hannah Williams85e3c772016-05-25 11:12:43 -070017Device (XHC1) {
18 Name (_ADR, 0x00150000) /* Device 21, Function 0 */
Hannah Williams1cdce27c2016-04-05 10:03:38 -070019
20 Name (_S3D, 3) /* D3 supported in S3 */
21 Name (_S0W, 3) /* D3 can wake device in S0 */
22 Name (_S3W, 3) /* D3 can wake system from S3 */
23
Hannah Williams85e3c772016-05-25 11:12:43 -070024 /* Declare XHCI GPE status and enable bits are bit 13 */
Hannah Williams1cdce27c2016-04-05 10:03:38 -070025 Name (_PRW, Package() { GPE0A_XHCI_PME_STS, 3 })
26
Hannah Williams85e3c772016-05-25 11:12:43 -070027 Method (_STA, 0)
Hannah Williams1cdce27c2016-04-05 10:03:38 -070028 {
29 Return (0xF)
30 }
Hannah Williams1cdce27c2016-04-05 10:03:38 -070031}