aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/dell/optiplex_9010/acpi/platform.asl
blob: f890b5af5418a7e5e66d2e2bce4eb305ed20772c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* SPDX-License-Identifier: GPL-2.0-only */

Method(_WAK,1)
{
	\_SB.PCI0.LPCB.SIO1.SIOW (Arg0)

	Return(Package(){0,0})
}

Method(_PTS,1)
{
	\_SB.PCI0.LPCB.SIO1.SIOS (Arg0)
}

Scope (\_SB)
{
	Device (PWRB)
	{
		Name (_HID, EisaId ("PNP0C0C"))
		Name (_UID, 0xAA)
		Name (_STA, 0x0B)

		Name (_PRW, Package() { 8, 3})
	}
}

Scope (\_GPE)
{
	Method (_L08, 0, NotSerialized)
	{
		\_SB.PCI0.LPCB.SIO1.SIOH ()
		Notify (\_SB.PWRB, 0x02)
	}

	Method (_L0D, 0, NotSerialized)
	{
		Notify (\_SB.PCI0.EHC1, 0x02)
		Notify (\_SB.PCI0.EHC2, 0x02)
		Notify (\_SB.PCI0.GLAN, 0x02)
	}

	Method (_L09, 0, NotSerialized)
	{
		Notify (\_SB.PCI0.RP01, 0x02)
		Notify (\_SB.PCI0.RP02, 0x02)
		Notify (\_SB.PCI0.RP03, 0x02)
		Notify (\_SB.PCI0.RP04, 0x02)
		Notify (\_SB.PCI0.RP05, 0x02)
		Notify (\_SB.PCI0.RP06, 0x02)
		Notify (\_SB.PCI0.RP07, 0x02)
		Notify (\_SB.PCI0.RP08, 0x02)
		Notify (\_SB.PCI0.PEGP, 0x02)
	}
}