blob: 9f8503341dc259c7351cd4328da98f9e8c24fec8 [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 */
Karthikeyan Ramasubramanian50e060e2019-01-29 14:37:38 -070017Device (XHCI) {
Hannah Williams85e3c772016-05-25 11:12:43 -070018 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 }
Duncan Lauriebf713b02018-05-07 15:33:18 -070031
32 Device (RHUB)
33 {
34 /* Root Hub */
35 Name (_ADR, Zero)
36
37 /* USB2 */
38 Device (HS01) { Name (_ADR, 1) }
39 Device (HS02) { Name (_ADR, 2) }
40 Device (HS03) { Name (_ADR, 3) }
41 Device (HS04) { Name (_ADR, 4) }
42 Device (HS05) { Name (_ADR, 5) }
43 Device (HS06) { Name (_ADR, 6) }
44 Device (HS07) { Name (_ADR, 7) }
45 Device (HS08) { Name (_ADR, 8) }
46
47 /* USB3 */
48 Device (SS01) { Name (_ADR, 9) }
49 Device (SS02) { Name (_ADR, 10) }
50 Device (SS03) { Name (_ADR, 11) }
51 Device (SS04) { Name (_ADR, 12) }
52 Device (SS05) { Name (_ADR, 13) }
53 Device (SS06) { Name (_ADR, 14) }
54 }
Hannah Williams1cdce27c2016-04-05 10:03:38 -070055}