soc: Remove copyright notices
[coreboot.git] / src / soc / intel / broadwell / acpi / ehci.asl
blobd5651e608422dc8e0ad3b780f35dfffad6eb5549
1 /*
2  * This file is part of the coreboot project.
3  *
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; version 2 of the License.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
15 // EHCI Controller 0:1d.0
17 Device (EHCI)
19         Name(_ADR, 0x001d0000)
20         Name (_PRW, Package(){ 0x6d, 3 })
22         // Leave USB ports on for to allow Wake from USB
24         Method(_S3D,0)  // Highest D State in S3 State
25         {
26                 Return (2)
27         }
29         Method(_S4D,0)  // Highest D State in S4 State
30         {
31                 Return (2)
32         }
34         Device (HUB7)
35         {
36                 Name (_ADR, 0x00000000)
38                 // How many are there?
39                 Device (PRT1) { Name (_ADR, 1) } // USB Port 0
40                 Device (PRT2) { Name (_ADR, 2) } // USB Port 1
41                 Device (PRT3) { Name (_ADR, 3) } // USB Port 2
42                 Device (PRT4) { Name (_ADR, 4) } // USB Port 3
43                 Device (PRT5) { Name (_ADR, 5) } // USB Port 4
44                 Device (PRT6) { Name (_ADR, 6) } // USB Port 5
45         }