aboutsummaryrefslogtreecommitdiff
path: root/src/ec/google/chromeec/acpi/tbmc.asl
blob: 15fbabd2cb6e6a750f7400bb1e71eaac45318119 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

Device (TBMC)
{
	Name (_HID, "GOOG0006")
	Name (_UID, 1)
	Name (_DDN, "Tablet Motion Control")
	Method (TBMC)
	{
		If (LEqual (^^RCTM, One)) {
			Return (0x1)
		} Else {
			Return (0x0)
		}
	}
	Method(_STA, 0)
	{
		Return (0xB)
	}
}