summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/auron/acpi/mainboard.asl
blob: e6ddedc71fa930a668e9a97373560d37dd5f59ce (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
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <variant/onboard.h>

/*
 * WLAN on Buddy connected to RP4, becomes RP2 after coalesce
 */
#if CONFIG(BOARD_GOOGLE_BUDDY)
Scope (\_SB.PCI0.RP02)
#else
Scope (\_SB.PCI0.RP01)
#endif
{
	Device (WLAN)
	{
		Name (_ADR, 0x00000000)

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

		Method (_DSW, 3, NotSerialized)
		{
			Store (BOARD_WLAN_WAKE_GPIO, Local0)
			If (LEqual (Arg0, 1)) {
				// Enable GPIO as wake source
				\_SB.PCI0.LPCB.GPIO.GWAK (Local0)
			}
		}
	}
}

#include <variant/acpi/mainboard.asl>

/* USB port entries */
#include <variant/acpi/usb.asl>