gic_v2.c 9.92 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
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
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * Neither the name of ARM nor the names of its contributors may be used
 * to endorse or promote products derived from this software without specific
 * prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

31
#include <arch.h>
32
#include <assert.h>
Dan Handley's avatar
Dan Handley committed
33
#include <gic_v2.h>
34
#include <interrupt_mgmt.h>
35
36
37
#include <mmio.h>

/*******************************************************************************
38
 * GIC Distributor interface accessors for reading entire registers
39
40
 ******************************************************************************/

41
unsigned int gicd_read_igroupr(uintptr_t base, unsigned int id)
42
43
44
45
46
{
	unsigned n = id >> IGROUPR_SHIFT;
	return mmio_read_32(base + GICD_IGROUPR + (n << 2));
}

47
unsigned int gicd_read_isenabler(uintptr_t base, unsigned int id)
48
49
50
51
52
{
	unsigned n = id >> ISENABLER_SHIFT;
	return mmio_read_32(base + GICD_ISENABLER + (n << 2));
}

53
unsigned int gicd_read_icenabler(uintptr_t base, unsigned int id)
54
55
56
57
58
{
	unsigned n = id >> ICENABLER_SHIFT;
	return mmio_read_32(base + GICD_ICENABLER + (n << 2));
}

59
unsigned int gicd_read_ispendr(uintptr_t base, unsigned int id)
60
61
62
63
64
{
	unsigned n = id >> ISPENDR_SHIFT;
	return mmio_read_32(base + GICD_ISPENDR + (n << 2));
}

65
unsigned int gicd_read_icpendr(uintptr_t base, unsigned int id)
66
67
68
69
70
{
	unsigned n = id >> ICPENDR_SHIFT;
	return mmio_read_32(base + GICD_ICPENDR + (n << 2));
}

71
unsigned int gicd_read_isactiver(uintptr_t base, unsigned int id)
72
73
74
75
76
{
	unsigned n = id >> ISACTIVER_SHIFT;
	return mmio_read_32(base + GICD_ISACTIVER + (n << 2));
}

77
unsigned int gicd_read_icactiver(uintptr_t base, unsigned int id)
78
79
80
81
82
{
	unsigned n = id >> ICACTIVER_SHIFT;
	return mmio_read_32(base + GICD_ICACTIVER + (n << 2));
}

83
unsigned int gicd_read_ipriorityr(uintptr_t base, unsigned int id)
84
85
86
87
88
{
	unsigned n = id >> IPRIORITYR_SHIFT;
	return mmio_read_32(base + GICD_IPRIORITYR + (n << 2));
}

89
unsigned int gicd_read_itargetsr(uintptr_t base, unsigned int id)
90
91
92
93
94
{
	unsigned n = id >> ITARGETSR_SHIFT;
	return mmio_read_32(base + GICD_ITARGETSR + (n << 2));
}

95
unsigned int gicd_read_icfgr(uintptr_t base, unsigned int id)
96
97
98
99
100
{
	unsigned n = id >> ICFGR_SHIFT;
	return mmio_read_32(base + GICD_ICFGR + (n << 2));
}

101
unsigned int gicd_read_cpendsgir(uintptr_t base, unsigned int id)
102
103
104
105
106
{
	unsigned n = id >> CPENDSGIR_SHIFT;
	return mmio_read_32(base + GICD_CPENDSGIR + (n << 2));
}

107
unsigned int gicd_read_spendsgir(uintptr_t base, unsigned int id)
108
109
110
111
112
113
{
	unsigned n = id >> SPENDSGIR_SHIFT;
	return mmio_read_32(base + GICD_SPENDSGIR + (n << 2));
}

/*******************************************************************************
114
 * GIC Distributor interface accessors for writing entire registers
115
116
 ******************************************************************************/

117
void gicd_write_igroupr(uintptr_t base, unsigned int id, unsigned int val)
118
119
120
121
122
{
	unsigned n = id >> IGROUPR_SHIFT;
	mmio_write_32(base + GICD_IGROUPR + (n << 2), val);
}

123
void gicd_write_isenabler(uintptr_t base, unsigned int id, unsigned int val)
124
125
126
127
128
{
	unsigned n = id >> ISENABLER_SHIFT;
	mmio_write_32(base + GICD_ISENABLER + (n << 2), val);
}

129
void gicd_write_icenabler(uintptr_t base, unsigned int id, unsigned int val)
130
131
132
133
134
{
	unsigned n = id >> ICENABLER_SHIFT;
	mmio_write_32(base + GICD_ICENABLER + (n << 2), val);
}

135
void gicd_write_ispendr(uintptr_t base, unsigned int id, unsigned int val)
136
137
138
139
140
{
	unsigned n = id >> ISPENDR_SHIFT;
	mmio_write_32(base + GICD_ISPENDR + (n << 2), val);
}

141
void gicd_write_icpendr(uintptr_t base, unsigned int id, unsigned int val)
142
143
144
145
146
{
	unsigned n = id >> ICPENDR_SHIFT;
	mmio_write_32(base + GICD_ICPENDR + (n << 2), val);
}

147
void gicd_write_isactiver(uintptr_t base, unsigned int id, unsigned int val)
148
149
150
151
152
{
	unsigned n = id >> ISACTIVER_SHIFT;
	mmio_write_32(base + GICD_ISACTIVER + (n << 2), val);
}

153
void gicd_write_icactiver(uintptr_t base, unsigned int id, unsigned int val)
154
155
156
157
158
{
	unsigned n = id >> ICACTIVER_SHIFT;
	mmio_write_32(base + GICD_ICACTIVER + (n << 2), val);
}

159
void gicd_write_ipriorityr(uintptr_t base, unsigned int id, unsigned int val)
160
161
162
163
164
{
	unsigned n = id >> IPRIORITYR_SHIFT;
	mmio_write_32(base + GICD_IPRIORITYR + (n << 2), val);
}

165
void gicd_write_itargetsr(uintptr_t base, unsigned int id, unsigned int val)
166
167
168
169
170
{
	unsigned n = id >> ITARGETSR_SHIFT;
	mmio_write_32(base + GICD_ITARGETSR + (n << 2), val);
}

171
void gicd_write_icfgr(uintptr_t base, unsigned int id, unsigned int val)
172
173
174
175
176
{
	unsigned n = id >> ICFGR_SHIFT;
	mmio_write_32(base + GICD_ICFGR + (n << 2), val);
}

177
void gicd_write_cpendsgir(uintptr_t base, unsigned int id, unsigned int val)
178
179
180
181
182
{
	unsigned n = id >> CPENDSGIR_SHIFT;
	mmio_write_32(base + GICD_CPENDSGIR + (n << 2), val);
}

183
void gicd_write_spendsgir(uintptr_t base, unsigned int id, unsigned int val)
184
185
186
187
188
189
{
	unsigned n = id >> SPENDSGIR_SHIFT;
	mmio_write_32(base + GICD_SPENDSGIR + (n << 2), val);
}

/*******************************************************************************
190
 * GIC Distributor interface accessors for individual interrupt manipulation
191
 ******************************************************************************/
192
unsigned int gicd_get_igroupr(uintptr_t base, unsigned int id)
193
194
195
196
197
198
199
{
	unsigned bit_num = id & ((1 << IGROUPR_SHIFT) - 1);
	unsigned int reg_val = gicd_read_igroupr(base, id);

	return (reg_val >> bit_num) & 0x1;
}

200
void gicd_set_igroupr(uintptr_t base, unsigned int id)
201
202
203
204
205
206
207
{
	unsigned bit_num = id & ((1 << IGROUPR_SHIFT) - 1);
	unsigned int reg_val = gicd_read_igroupr(base, id);

	gicd_write_igroupr(base, id, reg_val | (1 << bit_num));
}

208
void gicd_clr_igroupr(uintptr_t base, unsigned int id)
209
210
211
212
213
214
215
{
	unsigned bit_num = id & ((1 << IGROUPR_SHIFT) - 1);
	unsigned int reg_val = gicd_read_igroupr(base, id);

	gicd_write_igroupr(base, id, reg_val & ~(1 << bit_num));
}

216
void gicd_set_isenabler(uintptr_t base, unsigned int id)
217
218
219
{
	unsigned bit_num = id & ((1 << ISENABLER_SHIFT) - 1);

220
	gicd_write_isenabler(base, id, (1 << bit_num));
221
222
}

223
void gicd_set_icenabler(uintptr_t base, unsigned int id)
224
225
226
{
	unsigned bit_num = id & ((1 << ICENABLER_SHIFT) - 1);

227
	gicd_write_icenabler(base, id, (1 << bit_num));
228
229
}

230
void gicd_set_ispendr(uintptr_t base, unsigned int id)
231
232
233
{
	unsigned bit_num = id & ((1 << ISPENDR_SHIFT) - 1);

234
	gicd_write_ispendr(base, id, (1 << bit_num));
235
236
}

237
void gicd_set_icpendr(uintptr_t base, unsigned int id)
238
239
240
{
	unsigned bit_num = id & ((1 << ICPENDR_SHIFT) - 1);

241
	gicd_write_icpendr(base, id, (1 << bit_num));
242
243
}

244
void gicd_set_isactiver(uintptr_t base, unsigned int id)
245
246
247
{
	unsigned bit_num = id & ((1 << ISACTIVER_SHIFT) - 1);

248
	gicd_write_isactiver(base, id, (1 << bit_num));
249
250
}

251
void gicd_set_icactiver(uintptr_t base, unsigned int id)
252
253
254
{
	unsigned bit_num = id & ((1 << ICACTIVER_SHIFT) - 1);

255
	gicd_write_icactiver(base, id, (1 << bit_num));
256
257
258
259
260
261
}

/*
 * Make sure that the interrupt's group is set before expecting
 * this function to do its job correctly.
 */
262
void gicd_set_ipriorityr(uintptr_t base, unsigned int id, unsigned int pri)
263
{
264
265
266
	unsigned int reg = base + GICD_IPRIORITYR + (id & ~3);
	unsigned int shift = (id & 3) << 3;
	unsigned int reg_val = mmio_read_32(reg);
267
268
269
270

	/*
	 * Enforce ARM recommendation to manage priority values such
	 * that group1 interrupts always have a lower priority than
271
272
273
	 * group0 interrupts.
	 * Note, lower numerical values are higher priorities so the comparison
	 * checks below are reversed from what might be expected.
274
	 */
275
276
277
278
279
280
281
282
283
	assert(gicd_get_igroupr(base, id) == GRP1 ?
		pri >= GIC_HIGHEST_NS_PRIORITY &&
			pri <= GIC_LOWEST_NS_PRIORITY :
		pri >= GIC_HIGHEST_SEC_PRIORITY &&
			pri <= GIC_LOWEST_SEC_PRIORITY);

	reg_val &= ~(GIC_PRI_MASK << shift);
	reg_val |= (pri & GIC_PRI_MASK) << shift;
	mmio_write_32(reg, reg_val);
284
285
}

286
void gicd_set_itargetsr(uintptr_t base, unsigned int id, unsigned int target)
287
288
289
290
{
	unsigned byte_off = id & ((1 << ITARGETSR_SHIFT) - 1);
	unsigned int reg_val = gicd_read_itargetsr(base, id);

Juan Castillo's avatar
Juan Castillo committed
291
	gicd_write_itargetsr(base, id, reg_val | (target << (byte_off << 3)));
292
293
}

294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
/*******************************************************************************
 * This function allows the interrupt management framework to determine (through
 * the platform) which interrupt line (IRQ/FIQ) to use for an interrupt type to
 * route it to EL3. The interrupt line is represented as the bit position of the
 * IRQ or FIQ bit in the SCR_EL3.
 ******************************************************************************/
uint32_t gicv2_interrupt_type_to_line(uint32_t cpuif_base, uint32_t type)
{
	uint32_t gicc_ctlr;

	/* Non-secure interrupts are signalled on the IRQ line always */
	if (type == INTR_TYPE_NS)
		return __builtin_ctz(SCR_IRQ_BIT);

	/*
	 * Secure interrupts are signalled using the IRQ line if the FIQ_EN
	 * bit is not set else they are signalled using the FIQ line.
	 */
	gicc_ctlr = gicc_read_ctlr(cpuif_base);
	if (gicc_ctlr & FIQ_EN)
		return __builtin_ctz(SCR_FIQ_BIT);
	else
		return __builtin_ctz(SCR_IRQ_BIT);
}