tegra_gic.c 10.3 KB
Newer Older
1
2
3
/*
 * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
8
 */

#include <arch_helpers.h>
#include <assert.h>
9
#include <arm_gic.h>
10
11
12
13
14
15
16
17
18
#include <bl_common.h>
#include <debug.h>
#include <gic_v2.h>
#include <interrupt_mgmt.h>
#include <platform.h>
#include <stdint.h>
#include <tegra_private.h>
#include <tegra_def.h>

19
20
21
22
23
24
25
/* Value used to initialize Non-Secure IRQ priorities four at a time */
#define GICD_IPRIORITYR_DEF_VAL \
	(GIC_HIGHEST_NS_PRIORITY | \
	(GIC_HIGHEST_NS_PRIORITY << 8) | \
	(GIC_HIGHEST_NS_PRIORITY << 16) | \
	(GIC_HIGHEST_NS_PRIORITY << 24))

26
static const irq_sec_cfg_t *g_irq_sec_ptr;
Varun Wadekar's avatar
Varun Wadekar committed
27
static uint32_t g_num_irqs;
28

29
30
31
32
33
34
/*******************************************************************************
 * Place the cpu interface in a state where it can never make a cpu exit wfi as
 * as result of an asserted interrupt. This is critical for powering down a cpu
 ******************************************************************************/
void tegra_gic_cpuif_deactivate(void)
{
Varun Wadekar's avatar
Varun Wadekar committed
35
	uint32_t val;
36
37
38
39
40
41
42
43
44
45
46
47
48

	/* Disable secure, non-secure interrupts and disable their bypass */
	val = gicc_read_ctlr(TEGRA_GICC_BASE);
	val &= ~(ENABLE_GRP0 | ENABLE_GRP1);
	val |= FIQ_BYP_DIS_GRP1 | FIQ_BYP_DIS_GRP0;
	val |= IRQ_BYP_DIS_GRP0 | IRQ_BYP_DIS_GRP1;
	gicc_write_ctlr(TEGRA_GICC_BASE, val);
}

/*******************************************************************************
 * Enable secure interrupts and set the priority mask register to allow all
 * interrupts to trickle in.
 ******************************************************************************/
Varun Wadekar's avatar
Varun Wadekar committed
49
static void tegra_gic_cpuif_setup(uint32_t gicc_base)
50
{
Varun Wadekar's avatar
Varun Wadekar committed
51
	uint32_t val;
52
53
54
55
56

	val = ENABLE_GRP0 | ENABLE_GRP1 | FIQ_EN | FIQ_BYP_DIS_GRP0;
	val |= IRQ_BYP_DIS_GRP0 | FIQ_BYP_DIS_GRP1 | IRQ_BYP_DIS_GRP1;

	gicc_write_ctlr(gicc_base, val);
57
58
59
	gicc_write_pmr(gicc_base, GIC_PRI_MASK);
}

60
61
62
63
/*******************************************************************************
 * Per cpu gic distributor setup which will be done by all cpus after a cold
 * boot/hotplug. This marks out the secure interrupts & enables them.
 ******************************************************************************/
Varun Wadekar's avatar
Varun Wadekar committed
64
static void tegra_gic_pcpu_distif_setup(uint32_t gicd_base)
65
{
Varun Wadekar's avatar
Varun Wadekar committed
66
	uint32_t index, sec_ppi_sgi_mask = 0;
67

Varun Wadekar's avatar
Varun Wadekar committed
68
	assert(gicd_base != 0U);
69
70

	/* Setup PPI priorities doing four at a time */
Varun Wadekar's avatar
Varun Wadekar committed
71
	for (index = 0U; index < 32U; index += 4U) {
72
73
74
75
76
77
78
79
80
81
82
83
84
		gicd_write_ipriorityr(gicd_base, index,
				GICD_IPRIORITYR_DEF_VAL);
	}

	/*
	 * Invert the bitmask to create a mask for non-secure PPIs and
	 * SGIs. Program the GICD_IGROUPR0 with this bit mask. This write will
	 * update the GICR_IGROUPR0 as well in case we are running on a GICv3
	 * system. This is critical if GICD_CTLR.ARE_NS=1.
	 */
	gicd_write_igroupr(gicd_base, 0, ~sec_ppi_sgi_mask);
}

85
86
87
88
89
/*******************************************************************************
 * Global gic distributor setup which will be done by the primary cpu after a
 * cold boot. It marks out the non secure SPIs, PPIs & SGIs and enables them.
 * It then enables the secure GIC distributor interface.
 ******************************************************************************/
Varun Wadekar's avatar
Varun Wadekar committed
90
static void tegra_gic_distif_setup(uint32_t gicd_base)
91
{
Varun Wadekar's avatar
Varun Wadekar committed
92
	uint32_t index, num_ints, irq_num;
93
94
	uint8_t target_cpus;
	uint32_t val;
95
96
97
98
99
100
101

	/*
	 * Mark out non-secure interrupts. Calculate number of
	 * IGROUPR registers to consider. Will be equal to the
	 * number of IT_LINES
	 */
	num_ints = gicd_read_typer(gicd_base) & IT_LINES_NO_MASK;
Varun Wadekar's avatar
Varun Wadekar committed
102
103
104
105
	num_ints = (num_ints + 1U) << 5;
	for (index = MIN_SPI_ID; index < num_ints; index += 32U) {
		gicd_write_igroupr(gicd_base, index, 0xFFFFFFFFU);
	}
106
107

	/* Setup SPI priorities doing four at a time */
Varun Wadekar's avatar
Varun Wadekar committed
108
	for (index = MIN_SPI_ID; index < num_ints; index += 4U) {
109
110
111
112
		gicd_write_ipriorityr(gicd_base, index,
				GICD_IPRIORITYR_DEF_VAL);
	}

113
	/* Configure SPI secure interrupts now */
Varun Wadekar's avatar
Varun Wadekar committed
114
	if (g_irq_sec_ptr != NULL) {
115

Varun Wadekar's avatar
Varun Wadekar committed
116
117
118
		for (index = 0U; index < g_num_irqs; index++) {
			irq_num = g_irq_sec_ptr[index].irq;
			target_cpus = (uint8_t)g_irq_sec_ptr[index].target_cpus;
119
120
121
122
123
124
125

			if (irq_num >= MIN_SPI_ID) {

				/* Configure as a secure interrupt */
				gicd_clr_igroupr(gicd_base, irq_num);

				/* Configure SPI priority */
Varun Wadekar's avatar
Varun Wadekar committed
126
127
128
				mmio_write_8((uint64_t)gicd_base +
					(uint64_t)GICD_IPRIORITYR +
					(uint64_t)irq_num,
129
130
131
132
133
					GIC_HIGHEST_SEC_PRIORITY &
					GIC_PRI_MASK);

				/* Configure as level triggered */
				val = gicd_read_icfgr(gicd_base, irq_num);
Varun Wadekar's avatar
Varun Wadekar committed
134
				val |= (3U << ((irq_num & 0xFU) << 1U));
135
136
137
138
139
140
141
142
143
144
145
146
				gicd_write_icfgr(gicd_base, irq_num, val);

				/* Route SPI to the target CPUs */
				gicd_set_itargetsr(gicd_base, irq_num,
					target_cpus);

				/* Enable this interrupt */
				gicd_set_isenabler(gicd_base, irq_num);
			}
		}
	}

147
148
149
150
151
152
	/*
	 * Configure the SGI and PPI. This is done in a separated function
	 * because each CPU is responsible for initializing its own private
	 * interrupts.
	 */
	tegra_gic_pcpu_distif_setup(gicd_base);
153
154
155
156
157

	/* enable distributor */
	gicd_write_ctlr(gicd_base, ENABLE_GRP0 | ENABLE_GRP1);
}

Varun Wadekar's avatar
Varun Wadekar committed
158
void tegra_gic_setup(const irq_sec_cfg_t *irq_sec_ptr, uint32_t num_irqs)
159
{
160
161
162
	g_irq_sec_ptr = irq_sec_ptr;
	g_num_irqs = num_irqs;

163
164
165
	tegra_gic_cpuif_setup(TEGRA_GICC_BASE);
	tegra_gic_distif_setup(TEGRA_GICD_BASE);
}
166
167
168
169
170
171
172
173
174
175
176

/*******************************************************************************
 * An ARM processor signals interrupt exceptions through the IRQ and FIQ pins.
 * The interrupt controller knows which pin/line it uses to signal a type of
 * interrupt. This function provides a common implementation of
 * plat_interrupt_type_to_line() in an ARM GIC environment for optional re-use
 * across platforms. It lets the interrupt management framework determine
 * for a type of interrupt and security state, which line should be used in the
 * SCR_EL3 to control its routing to EL3. The interrupt line is represented as
 * the bit position of the IRQ or FIQ bit in the SCR_EL3.
 ******************************************************************************/
Varun Wadekar's avatar
Varun Wadekar committed
177
static uint32_t tegra_gic_interrupt_type_to_line(uint32_t type,
178
179
				uint32_t security_state)
{
Varun Wadekar's avatar
Varun Wadekar committed
180
181
182
	assert((type == INTR_TYPE_S_EL1) ||
	       (type == INTR_TYPE_EL3) ||
	       (type == INTR_TYPE_NS));
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203

	assert(sec_state_is_valid(security_state));

	/*
	 * We ignore the security state parameter under the assumption that
	 * both normal and secure worlds are using ARM GICv2. This parameter
	 * will be used when the secure world starts using GICv3.
	 */
#if ARM_GIC_ARCH == 2
	return gicv2_interrupt_type_to_line(TEGRA_GICC_BASE, type);
#else
#error "Invalid ARM GIC architecture version specified for platform port"
#endif /* ARM_GIC_ARCH */
}

#if ARM_GIC_ARCH == 2
/*******************************************************************************
 * This function returns the type of the highest priority pending interrupt at
 * the GIC cpu interface. INTR_TYPE_INVAL is returned when there is no
 * interrupt pending.
 ******************************************************************************/
Varun Wadekar's avatar
Varun Wadekar committed
204
static uint32_t tegra_gic_get_pending_interrupt_type(void)
205
206
{
	uint32_t id;
Varun Wadekar's avatar
Varun Wadekar committed
207
208
	uint32_t index;
	uint32_t ret = INTR_TYPE_NS;
209
210
211

	id = gicc_read_hppir(TEGRA_GICC_BASE) & INT_ID_MASK;

212
	/* get the interrupt type */
Varun Wadekar's avatar
Varun Wadekar committed
213
214
215
216
217
218
219
220
221
222
	if (id < 1022U) {
		for (index = 0U; index < g_num_irqs; index++) {
			if (id == g_irq_sec_ptr[index].irq) {
				ret = g_irq_sec_ptr[index].type;
				break;
			}
		}
	} else {
		 if (id == GIC_SPURIOUS_INTERRUPT) {
			ret = INTR_TYPE_INVAL;
223
224
		}
	}
225

Varun Wadekar's avatar
Varun Wadekar committed
226
	return ret;
227
228
229
230
231
232
233
}

/*******************************************************************************
 * This function returns the id of the highest priority pending interrupt at
 * the GIC cpu interface. INTR_ID_UNAVAILABLE is returned when there is no
 * interrupt pending.
 ******************************************************************************/
Varun Wadekar's avatar
Varun Wadekar committed
234
static uint32_t tegra_gic_get_pending_interrupt_id(void)
235
{
Varun Wadekar's avatar
Varun Wadekar committed
236
	uint32_t id, ret;
237
238
239

	id = gicc_read_hppir(TEGRA_GICC_BASE) & INT_ID_MASK;

Varun Wadekar's avatar
Varun Wadekar committed
240
241
242
243
244
245
246
247
248
249
250
	if (id < 1022UL) {
		ret = id;
	} else if (id == 1023UL) {
		ret = 0xFFFFFFFFUL; /* INTR_ID_UNAVAILABLE */
	} else {
		/*
		 * Find out which non-secure interrupt it is under the assumption that
		 * the GICC_CTLR.AckCtl bit is 0.
		 */
		ret = gicc_read_ahppir(TEGRA_GICC_BASE) & INT_ID_MASK;
	}
251

Varun Wadekar's avatar
Varun Wadekar committed
252
	return ret;
253
254
255
256
257
258
}

/*******************************************************************************
 * This functions reads the GIC cpu interface Interrupt Acknowledge register
 * to start handling the pending interrupt. It returns the contents of the IAR.
 ******************************************************************************/
Varun Wadekar's avatar
Varun Wadekar committed
259
static uint32_t tegra_gic_acknowledge_interrupt(void)
260
261
262
263
264
265
266
267
{
	return gicc_read_IAR(TEGRA_GICC_BASE);
}

/*******************************************************************************
 * This functions writes the GIC cpu interface End Of Interrupt register with
 * the passed value to finish handling the active interrupt
 ******************************************************************************/
Varun Wadekar's avatar
Varun Wadekar committed
268
static void tegra_gic_end_of_interrupt(uint32_t id)
269
270
271
272
273
274
275
276
277
{
	gicc_write_EOIR(TEGRA_GICC_BASE, id);
}

/*******************************************************************************
 * This function returns the type of the interrupt id depending upon the group
 * this interrupt has been configured under by the interrupt controller i.e.
 * group0 or group1.
 ******************************************************************************/
Varun Wadekar's avatar
Varun Wadekar committed
278
static uint32_t tegra_gic_get_interrupt_type(uint32_t id)
279
280
{
	uint32_t group;
Varun Wadekar's avatar
Varun Wadekar committed
281
282
	uint32_t index;
	uint32_t ret = INTR_TYPE_NS;
283
284
285

	group = gicd_get_igroupr(TEGRA_GICD_BASE, id);

286
287
	/* get the interrupt type */
	if (group == GRP0) {
Varun Wadekar's avatar
Varun Wadekar committed
288
289
290
291
292
		for (index = 0U; index < g_num_irqs; index++) {
			if (id == g_irq_sec_ptr[index].irq) {
				ret = g_irq_sec_ptr[index].type;
				break;
			}
293
294
295
		}
	}

Varun Wadekar's avatar
Varun Wadekar committed
296
	return ret;
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
}

#else
#error "Invalid ARM GIC architecture version specified for platform port"
#endif /* ARM_GIC_ARCH */

uint32_t plat_ic_get_pending_interrupt_id(void)
{
	return tegra_gic_get_pending_interrupt_id();
}

uint32_t plat_ic_get_pending_interrupt_type(void)
{
	return tegra_gic_get_pending_interrupt_type();
}

uint32_t plat_ic_acknowledge_interrupt(void)
{
	return tegra_gic_acknowledge_interrupt();
}

uint32_t plat_ic_get_interrupt_type(uint32_t id)
{
	return tegra_gic_get_interrupt_type(id);
}

void plat_ic_end_of_interrupt(uint32_t id)
{
	tegra_gic_end_of_interrupt(id);
}

uint32_t plat_interrupt_type_to_line(uint32_t type,
				uint32_t security_state)
{
	return tegra_gic_interrupt_type_to_line(type, security_state);
}