drivers/usb/acpi: Don't add GPIOs to _CRS for Intel Bluetooth
[coreboot2.git] / src / soc / amd / common / acpi / platform.asl
blob23ab7ac7136de799d15e90888f5fa5ec4bfadcbf
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 /* Callback methods to be implemented by mainboard */
4 External(\_SB.MPTS, MethodObj)
5 External(\_SB.MWAK, MethodObj)
6 External(\_SB.MINI, MethodObj)
8 Scope (\_SB){
9         /* Platform initialization methods */
10         Method (_INI, 0, NotSerialized)
11         {
12                 If (CondRefOf (\_SB.MINI)) {
13                         \_SB.MINI()
14                 }
15         }
18 /* Platform-wide wake methods */
19 Method (\_WAK, 1, NotSerialized)
21         PNOT ()
23         If (CondRefOf (\_SB.MWAK)) {
24                 \_SB.MWAK()
25         }
26         Return (Package (){ 0, 0 })
29 /* Platform-wide Put To Sleep (suspend) methods */
30 Method (\_PTS, 1, NotSerialized)
32         If (CondRefOf (\_SB.MPTS)) {
33                 \_SB.MPTS()
34         }