summaryrefslogtreecommitdiff
path: root/src/mainboard/google/brya/acpi/gpu_ec.asl
blob: 998d9c0e6a1decccc233e637db50f649a502e2f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0-only */

#define EC_D_NOTIFY_MASK	0x7

Scope (\_SB.PCI0.LPCB.EC0)
{
	/* EC has data for GPU in memmap */
	Method (_Q0C, 0, Serialized)
	{
		Local0 = ToInteger(GPUD) & EC_D_NOTIFY_MASK
		\_SB.PCI0.PEG0.PEGP.DNOT (Local0)
	}
}