aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/tigerlake/acpi/gpio.asl
blob: 9bf0c6032f333d9a6afb4cdc4a24de8e6759ca01 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
 * This file is part of the coreboot project.
 *
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */
#include <soc/gpio_defs.h>
#include <soc/irq.h>
#include <soc/pcr_ids.h>
#include <intelblocks/gpio.h>
#include "gpio_op.asl"

Device (GCM0)
{
	Name (_HID, CROS_GPIO_NAME)
	Name (_UID, 0)
	Name (_DDN, "GPIO Controller Community 0")

	Name (RBUF, ResourceTemplate()
	{
		Memory32Fixed (ReadWrite, 0, GPIO_BASE_SIZE, COM0)
		Interrupt (ResourceConsumer, Level, ActiveLow, Shared,,, GIRQ)
			{ GPIO_IRQ14 }
	})
	Method (_CRS, 0, NotSerialized)
	{
		CreateDWordField (^RBUF, ^COM0._BAS, BAS0)
		BAS0 = ^^PCRB (PID_GPIOCOM0)
		Return (^RBUF)
	}
	Method (_STA)
	{
		Return (0xF)
	}
}

Device (GCM1)
{
	Name (_HID, CROS_GPIO_NAME)
	Name (_UID, 1)
	Name (_DDN, "GPIO Controller Community 1")

	Name (RBUF, ResourceTemplate()
	{
		Memory32Fixed (ReadWrite, 0, GPIO_BASE_SIZE, COM1)
		Interrupt (ResourceConsumer, Level, ActiveLow, Shared,,, GIRQ)
			{ GPIO_IRQ14 }
	})
	Method (_CRS, 0, NotSerialized)
	{
		CreateDWordField (^RBUF, ^COM1._BAS, BAS1)
		BAS1 = ^^PCRB (PID_GPIOCOM1)
		Return (^RBUF)
	}
	Method (_STA)
	{
		Return (0xF)
	}
}

Device (GCM4)
{
	Name (_HID, CROS_GPIO_NAME)
	Name (_UID, 4)
	Name (_DDN, "GPIO Controller Community 4")

	Name (RBUF, ResourceTemplate()
	{
		Memory32Fixed (ReadWrite, 0, GPIO_BASE_SIZE, COM4)
		Interrupt (ResourceConsumer, Level, ActiveLow, Shared,,, GIRQ)
			{ GPIO_IRQ14 }
	})
	Method (_CRS, 0, NotSerialized)
	{
		CreateDWordField (^RBUF, ^COM4._BAS, BAS4)
		BAS4 = ^^PCRB (PID_GPIOCOM4)
		Return (^RBUF)
	}
	Method (_STA)
	{
		Return (0xF)
	}
}

Device (GCM5)
{
	Name (_HID, CROS_GPIO_NAME)
	Name (_UID, 5)
	Name (_DDN, "GPIO Controller Community 5")

	Name (RBUF, ResourceTemplate()
	{
		Memory32Fixed (ReadWrite, 0, GPIO_BASE_SIZE, COM5)
		Interrupt (ResourceConsumer, Level, ActiveLow, Shared,,, GIRQ)
		{ GPIO_IRQ14 }
	})
	Method (_CRS, 0, NotSerialized)
	{
		CreateDWordField (^RBUF, ^COM5._BAS, BAS5)
		BAS5 = ^^PCRB (PID_GPIOCOM5)
		Return (^RBUF)
	}
	Method (_STA)
	{
		Return (0xF)
	}
}

/*
 * Get GPIO DW0 Address
 * Arg0 - GPIO Number
 */
Method (GADD, 1, NotSerialized)
{
	/* GPIO Community 0 */
	If (Arg0 >= GPIO_COM0_START && Arg0 <= GPIO_COM0_END)
	{
		Local0 = PID_GPIOCOM0
		Local1 = Arg0 - GPIO_COM0_START
	}
	/* GPIO Community 1 */
	If (Arg0 >= GPIO_COM1_START && Arg0 <= GPIO_COM1_END)
	{
		Local0 = PID_GPIOCOM1
		Local1 = Arg0 - GPIO_COM1_START
	}
	/* GPIO Community 2 */
	If (Arg0 >= GPIO_COM2_START && Arg0 <= GPIO_COM2_END)
	{
		Local0 = PID_GPIOCOM2
		Local1 = Arg0 - GPIO_COM2_START
	}
	/* GPIO Community 4 */
	If (Arg0 >= GPIO_COM4_START && Arg0 <= GPIO_COM4_END)
	{
		Local0 = PID_GPIOCOM4
		Local1 = Arg0 - GPIO_COM4_START
	}
	/* GPIO Community 05*/
	If (Arg0 >= GPIO_COM5_START && Arg0 <= GPIO_COM5_END)
	{
		Local0 = PID_GPIOCOM5
		Local1 = Arg0 - GPIO_COM5_START
	}

	Local2 = PCRB(Local0) + PAD_CFG_BASE + (Local1 * 16)
	Return (Local2)
}