aboutsummaryrefslogtreecommitdiff
path: root/src/ec/lenovo/h8/acpi/ac.asl
blob: ec7b7fc89f16c2a9e8bf7c308e72e7704810c875 (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
/* SPDX-License-Identifier: GPL-2.0-only */

Field(ERAM, ByteAcc, NoLock, Preserve)
{
		Offset (0x46),
				, 4,
			    HPAC, 1
}

Device(AC)
{
	Name(_HID, "ACPI0003")
	Name(_UID, 0x00)
	Name(_PCL, Package() { \_SB } )

	Method(_PSR, 0, NotSerialized)
	{
		Store(HPAC, Local0)
		Store(Local0, \PWRS)
		\PNOT()
		return (Local0)
	}

	Method(_STA, 0, NotSerialized)
	{
		Return (0x0f)
	}
}