summaryrefslogtreecommitdiff
path: root/src/soc/amd/picasso/acpi/globalnvs.asl
blob: 6e63b8da5e403dffba574c32da77be36eb966557 (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
36
37
38
39
40
41
42
43
44
/* SPDX-License-Identifier: GPL-2.0-or-later */

/* Global variables */
Name (PMOD, Zero)	/* Interrupt Mode used by OS. Assume PIC. */

/*
 * NOTE: The layout of the GNVS structure below must match the layout in
 * soc/amd/picasso/include/soc/nvs.h !!!
 *
 */

External (NVSA)

OperationRegion (GNVS, SystemMemory, NVSA, 0x1000)
Field (GNVS, ByteAcc, NoLock, Preserve)
{
	/* Miscellaneous */
	Offset (0x00),
	PCNT,	8,	// 0x00 - Processor Count
	LIDS,	8,	// 0x01 - LID State
	PWRS,	8,	// 0x02 - AC Power State
	CBMC,	32,	// 0x03 - 0x06 - coreboot Memory Console
	PM1I,	64,	// 0x07 - 0x0e - System Wake Source - PM1 Index
	GPEI,	64,	// 0x0f - 0x16 - GPE Wake Source
	TMPS,	8,	// 0x17 - Temperature Sensor ID
	TCRT,	8,	// 0x18 - Critical Threshold
	TPSV,	8,	// 0x19 - Passive Threshold
	Offset (0x20),  // 0x20 - AOAC Device Enables
	, 7,
	IC2E,	1,	//        I2C2, 7
	IC3E,	1,	//        I2C3, 8
	IC4E,	1,	//        I2C4, 9
	, 1,
	UT0E,	1,	//        UART0, 11
	UT1E,	1,	//        UART1, 12
	, 3,
	UT2E,	1,	//        UART2, 16
	, 9,
	UT23,	1,	//        UART3, 26
	ESPI,	1,	//        ESPI, 27
	/* ChromeOS stuff (0x100 -> 0xfff, size 0xeff) */
	Offset (0x100),
	#include <vendorcode/google/chromeos/acpi/gnvs.asl>
}