summaryrefslogtreecommitdiffstats
path: root/src/ec/lenovo/h8/acpi/ac.asl
blob: 5e9cc30f3deee477d99a96c30731022c6642c04d (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
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

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)
	}
}