blob: 2c3a0673050438ce66b92ae6e8f7a16c95e87d74 [file] [log] [blame]
Soby Mathew12012dd2015-10-26 14:01:53 +00001/*
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +01002 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Florian Lugoud4e25032021-09-08 12:40:24 +02003 * Portions copyright (c) 2021-2022, ProvenRun S.A.S. All rights reserved.
Soby Mathew12012dd2015-10-26 14:01:53 +00004 *
dp-armfa3cf0b2017-05-03 09:38:09 +01005 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathew12012dd2015-10-26 14:01:53 +00006 */
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007
Soby Mathew12012dd2015-10-26 14:01:53 +00008#include <assert.h>
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +01009#include <stdbool.h>
Soby Mathew12012dd2015-10-26 14:01:53 +000010
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011#include <arch_helpers.h>
12#include <common/bl_common.h>
13#include <bl31/interrupt_mgmt.h>
14#include <drivers/arm/gic_common.h>
15#include <drivers/arm/gicv3.h>
16#include <lib/cassert.h>
17#include <plat/common/platform.h>
18
Masahiro Yamada441bfdd2016-12-25 23:36:24 +090019#ifdef IMAGE_BL31
Soby Mathew12012dd2015-10-26 14:01:53 +000020
21/*
22 * The following platform GIC functions are weakly defined. They
23 * provide typical implementations that may be re-used by multiple
24 * platforms but may also be overridden by a platform if required.
25 */
26#pragma weak plat_ic_get_pending_interrupt_id
27#pragma weak plat_ic_get_pending_interrupt_type
28#pragma weak plat_ic_acknowledge_interrupt
29#pragma weak plat_ic_get_interrupt_type
30#pragma weak plat_ic_end_of_interrupt
31#pragma weak plat_interrupt_type_to_line
32
Jeenu Viswambharanb1e957e2017-09-22 08:32:09 +010033#pragma weak plat_ic_get_running_priority
Jeenu Viswambharan522a4652017-09-22 08:32:09 +010034#pragma weak plat_ic_is_spi
35#pragma weak plat_ic_is_ppi
36#pragma weak plat_ic_is_sgi
Jeenu Viswambharan24e70292017-09-22 08:32:09 +010037#pragma weak plat_ic_get_interrupt_active
Jeenu Viswambharan0fcdfff2017-09-22 08:32:09 +010038#pragma weak plat_ic_enable_interrupt
39#pragma weak plat_ic_disable_interrupt
Jeenu Viswambharan447b89d2017-09-22 08:32:09 +010040#pragma weak plat_ic_set_interrupt_priority
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +010041#pragma weak plat_ic_set_interrupt_type
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +010042#pragma weak plat_ic_raise_el3_sgi
Florian Lugoud4e25032021-09-08 12:40:24 +020043#pragma weak plat_ic_raise_ns_sgi
44#pragma weak plat_ic_raise_s_el1_sgi
Jeenu Viswambharandce70b32017-09-22 08:32:09 +010045#pragma weak plat_ic_set_spi_routing
Jeenu Viswambharaneb1c12c2017-09-22 08:32:09 +010046#pragma weak plat_ic_set_interrupt_pending
47#pragma weak plat_ic_clear_interrupt_pending
Jeenu Viswambharanb1e957e2017-09-22 08:32:09 +010048
Soby Mathew12012dd2015-10-26 14:01:53 +000049CASSERT((INTR_TYPE_S_EL1 == INTR_GROUP1S) &&
50 (INTR_TYPE_NS == INTR_GROUP1NS) &&
51 (INTR_TYPE_EL3 == INTR_GROUP0), assert_interrupt_type_mismatch);
52
53/*
54 * This function returns the highest priority pending interrupt at
55 * the Interrupt controller
56 */
57uint32_t plat_ic_get_pending_interrupt_id(void)
58{
59 unsigned int irqnr;
60
61 assert(IS_IN_EL3());
62 irqnr = gicv3_get_pending_interrupt_id();
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +010063 return gicv3_is_intr_id_special_identifier(irqnr) ?
Soby Mathew12012dd2015-10-26 14:01:53 +000064 INTR_ID_UNAVAILABLE : irqnr;
65}
66
67/*
68 * This function returns the type of the highest priority pending interrupt
69 * at the Interrupt controller. In the case of GICv3, the Highest Priority
70 * Pending interrupt system register (`ICC_HPPIR0_EL1`) is read to determine
71 * the id of the pending interrupt. The type of interrupt depends upon the
72 * id value as follows.
73 * 1. id = PENDING_G1S_INTID (1020) is reported as a S-EL1 interrupt
74 * 2. id = PENDING_G1NS_INTID (1021) is reported as a Non-secure interrupt.
75 * 3. id = GIC_SPURIOUS_INTERRUPT (1023) is reported as an invalid interrupt
76 * type.
77 * 4. All other interrupt id's are reported as EL3 interrupt.
78 */
79uint32_t plat_ic_get_pending_interrupt_type(void)
80{
81 unsigned int irqnr;
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +010082 uint32_t type;
Soby Mathew12012dd2015-10-26 14:01:53 +000083
84 assert(IS_IN_EL3());
85 irqnr = gicv3_get_pending_interrupt_type();
86
87 switch (irqnr) {
88 case PENDING_G1S_INTID:
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +010089 type = INTR_TYPE_S_EL1;
90 break;
Soby Mathew12012dd2015-10-26 14:01:53 +000091 case PENDING_G1NS_INTID:
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +010092 type = INTR_TYPE_NS;
93 break;
Soby Mathew12012dd2015-10-26 14:01:53 +000094 case GIC_SPURIOUS_INTERRUPT:
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +010095 type = INTR_TYPE_INVAL;
96 break;
Soby Mathew12012dd2015-10-26 14:01:53 +000097 default:
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +010098 type = INTR_TYPE_EL3;
99 break;
Soby Mathew12012dd2015-10-26 14:01:53 +0000100 }
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +0100101
102 return type;
Soby Mathew12012dd2015-10-26 14:01:53 +0000103}
104
105/*
106 * This function returns the highest priority pending interrupt at
107 * the Interrupt controller and indicates to the Interrupt controller
108 * that the interrupt processing has started.
109 */
110uint32_t plat_ic_acknowledge_interrupt(void)
111{
112 assert(IS_IN_EL3());
113 return gicv3_acknowledge_interrupt();
114}
115
116/*
117 * This function returns the type of the interrupt `id`, depending on how
118 * the interrupt has been configured in the interrupt controller
119 */
120uint32_t plat_ic_get_interrupt_type(uint32_t id)
121{
122 assert(IS_IN_EL3());
123 return gicv3_get_interrupt_type(id, plat_my_core_pos());
124}
125
126/*
127 * This functions is used to indicate to the interrupt controller that
128 * the processing of the interrupt corresponding to the `id` has
129 * finished.
130 */
131void plat_ic_end_of_interrupt(uint32_t id)
132{
133 assert(IS_IN_EL3());
134 gicv3_end_of_interrupt(id);
135}
136
137/*
138 * An ARM processor signals interrupt exceptions through the IRQ and FIQ pins.
139 * The interrupt controller knows which pin/line it uses to signal a type of
140 * interrupt. It lets the interrupt management framework determine for a type of
141 * interrupt and security state, which line should be used in the SCR_EL3 to
142 * control its routing to EL3. The interrupt line is represented as the bit
143 * position of the IRQ or FIQ bit in the SCR_EL3.
144 */
145uint32_t plat_interrupt_type_to_line(uint32_t type,
146 uint32_t security_state)
147{
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +0100148 assert((type == INTR_TYPE_S_EL1) ||
149 (type == INTR_TYPE_EL3) ||
150 (type == INTR_TYPE_NS));
Soby Mathew12012dd2015-10-26 14:01:53 +0000151
152 assert(sec_state_is_valid(security_state));
153 assert(IS_IN_EL3());
154
155 switch (type) {
156 case INTR_TYPE_S_EL1:
157 /*
158 * The S-EL1 interrupts are signaled as IRQ in S-EL0/1 contexts
159 * and as FIQ in the NS-EL0/1/2 contexts
160 */
161 if (security_state == SECURE)
162 return __builtin_ctz(SCR_IRQ_BIT);
163 else
164 return __builtin_ctz(SCR_FIQ_BIT);
Daniel Boulby8942a1b2018-06-22 14:16:03 +0100165 assert(0); /* Unreachable */
Soby Mathew12012dd2015-10-26 14:01:53 +0000166 case INTR_TYPE_NS:
167 /*
168 * The Non secure interrupts will be signaled as FIQ in S-EL0/1
169 * contexts and as IRQ in the NS-EL0/1/2 contexts.
170 */
171 if (security_state == SECURE)
172 return __builtin_ctz(SCR_FIQ_BIT);
173 else
174 return __builtin_ctz(SCR_IRQ_BIT);
Daniel Boulby8942a1b2018-06-22 14:16:03 +0100175 assert(0); /* Unreachable */
Soby Mathew12012dd2015-10-26 14:01:53 +0000176 case INTR_TYPE_EL3:
177 /*
178 * The EL3 interrupts are signaled as FIQ in both S-EL0/1 and
179 * NS-EL0/1/2 contexts
180 */
181 return __builtin_ctz(SCR_FIQ_BIT);
Jonathan Wrightb669ca72018-03-14 17:55:32 +0000182 default:
183 panic();
Soby Mathew12012dd2015-10-26 14:01:53 +0000184 }
185}
Jeenu Viswambharanb1e957e2017-09-22 08:32:09 +0100186
187unsigned int plat_ic_get_running_priority(void)
188{
189 return gicv3_get_running_priority();
190}
191
Jeenu Viswambharan522a4652017-09-22 08:32:09 +0100192int plat_ic_is_spi(unsigned int id)
193{
194 return (id >= MIN_SPI_ID) && (id <= MAX_SPI_ID);
195}
196
197int plat_ic_is_ppi(unsigned int id)
198{
199 return (id >= MIN_PPI_ID) && (id < MIN_SPI_ID);
200}
201
202int plat_ic_is_sgi(unsigned int id)
203{
204 return (id >= MIN_SGI_ID) && (id < MIN_PPI_ID);
205}
Jeenu Viswambharan24e70292017-09-22 08:32:09 +0100206
207unsigned int plat_ic_get_interrupt_active(unsigned int id)
208{
209 return gicv3_get_interrupt_active(id, plat_my_core_pos());
210}
Jeenu Viswambharan0fcdfff2017-09-22 08:32:09 +0100211
212void plat_ic_enable_interrupt(unsigned int id)
213{
214 gicv3_enable_interrupt(id, plat_my_core_pos());
215}
216
217void plat_ic_disable_interrupt(unsigned int id)
218{
219 gicv3_disable_interrupt(id, plat_my_core_pos());
220}
Jeenu Viswambharan447b89d2017-09-22 08:32:09 +0100221
222void plat_ic_set_interrupt_priority(unsigned int id, unsigned int priority)
223{
224 gicv3_set_interrupt_priority(id, plat_my_core_pos(), priority);
225}
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100226
227int plat_ic_has_interrupt_type(unsigned int type)
228{
229 assert((type == INTR_TYPE_EL3) || (type == INTR_TYPE_S_EL1) ||
230 (type == INTR_TYPE_NS));
231 return 1;
232}
233
234void plat_ic_set_interrupt_type(unsigned int id, unsigned int type)
235{
236 gicv3_set_interrupt_type(id, plat_my_core_pos(), type);
237}
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +0100238
239void plat_ic_raise_el3_sgi(int sgi_num, u_register_t target)
240{
241 /* Target must be a valid MPIDR in the system */
242 assert(plat_core_pos_by_mpidr(target) >= 0);
243
244 /* Verify that this is a secure EL3 SGI */
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +0100245 assert(plat_ic_get_interrupt_type((unsigned int)sgi_num) ==
246 INTR_TYPE_EL3);
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +0100247
Florian Lugoud4e25032021-09-08 12:40:24 +0200248 gicv3_raise_sgi((unsigned int)sgi_num, GICV3_G0, target);
249}
250
251void plat_ic_raise_ns_sgi(int sgi_num, u_register_t target)
252{
253 /* Target must be a valid MPIDR in the system */
254 assert(plat_core_pos_by_mpidr(target) >= 0);
255
256 /* Verify that this is a non-secure SGI */
257 assert(plat_ic_get_interrupt_type((unsigned int)sgi_num) ==
258 INTR_TYPE_NS);
259
260 gicv3_raise_sgi((unsigned int)sgi_num, GICV3_G1NS, target);
261}
262
263void plat_ic_raise_s_el1_sgi(int sgi_num, u_register_t target)
264{
265 /* Target must be a valid MPIDR in the system */
266 assert(plat_core_pos_by_mpidr(target) >= 0);
267
268 /* Verify that this is a secure EL1 SGI */
269 assert(plat_ic_get_interrupt_type((unsigned int)sgi_num) ==
270 INTR_TYPE_S_EL1);
271
272 gicv3_raise_sgi((unsigned int)sgi_num, GICV3_G1S, target);
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +0100273}
Jeenu Viswambharandce70b32017-09-22 08:32:09 +0100274
275void plat_ic_set_spi_routing(unsigned int id, unsigned int routing_mode,
276 u_register_t mpidr)
277{
278 unsigned int irm = 0;
279
280 switch (routing_mode) {
281 case INTR_ROUTING_MODE_PE:
282 assert(plat_core_pos_by_mpidr(mpidr) >= 0);
283 irm = GICV3_IRM_PE;
284 break;
285 case INTR_ROUTING_MODE_ANY:
286 irm = GICV3_IRM_ANY;
287 break;
288 default:
Daniel Boulby8942a1b2018-06-22 14:16:03 +0100289 assert(0); /* Unreachable */
Jonathan Wrightff957ed2018-03-14 15:24:00 +0000290 break;
Jeenu Viswambharandce70b32017-09-22 08:32:09 +0100291 }
292
293 gicv3_set_spi_routing(id, irm, mpidr);
294}
Jeenu Viswambharaneb1c12c2017-09-22 08:32:09 +0100295
296void plat_ic_set_interrupt_pending(unsigned int id)
297{
298 /* Disallow setting SGIs pending */
299 assert(id >= MIN_PPI_ID);
300 gicv3_set_interrupt_pending(id, plat_my_core_pos());
301}
302
303void plat_ic_clear_interrupt_pending(unsigned int id)
304{
305 /* Disallow setting SGIs pending */
306 assert(id >= MIN_PPI_ID);
307 gicv3_clear_interrupt_pending(id, plat_my_core_pos());
308}
Jeenu Viswambharan62505072017-09-22 08:32:09 +0100309
310unsigned int plat_ic_set_priority_mask(unsigned int mask)
311{
312 return gicv3_set_pmr(mask);
313}
Jeenu Viswambharan055af4b2017-10-24 15:13:59 +0100314
315unsigned int plat_ic_get_interrupt_id(unsigned int raw)
316{
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +0100317 unsigned int id = raw & INT_ID_MASK;
Jeenu Viswambharan055af4b2017-10-24 15:13:59 +0100318
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +0100319 return gicv3_is_intr_id_special_identifier(id) ?
320 INTR_ID_UNAVAILABLE : id;
Jeenu Viswambharan055af4b2017-10-24 15:13:59 +0100321}
Soby Mathew12012dd2015-10-26 14:01:53 +0000322#endif
Masahiro Yamada441bfdd2016-12-25 23:36:24 +0900323#ifdef IMAGE_BL32
Soby Mathew12012dd2015-10-26 14:01:53 +0000324
325#pragma weak plat_ic_get_pending_interrupt_id
326#pragma weak plat_ic_acknowledge_interrupt
327#pragma weak plat_ic_end_of_interrupt
328
Soby Mathew0d268dc2016-07-11 14:13:56 +0100329/* In AArch32, the secure group1 interrupts are targeted to Secure PL1 */
Julius Werner8e0ef0f2019-07-09 14:02:43 -0700330#ifndef __aarch64__
Soby Mathew0d268dc2016-07-11 14:13:56 +0100331#define IS_IN_EL1() IS_IN_SECURE()
332#endif
333
Soby Mathew12012dd2015-10-26 14:01:53 +0000334/*
335 * This function returns the highest priority pending interrupt at
336 * the Interrupt controller
337 */
338uint32_t plat_ic_get_pending_interrupt_id(void)
339{
340 unsigned int irqnr;
341
342 assert(IS_IN_EL1());
343 irqnr = gicv3_get_pending_interrupt_id_sel1();
344 return (irqnr == GIC_SPURIOUS_INTERRUPT) ?
345 INTR_ID_UNAVAILABLE : irqnr;
346}
347
348/*
349 * This function returns the highest priority pending interrupt at
350 * the Interrupt controller and indicates to the Interrupt controller
351 * that the interrupt processing has started.
352 */
353uint32_t plat_ic_acknowledge_interrupt(void)
354{
355 assert(IS_IN_EL1());
356 return gicv3_acknowledge_interrupt_sel1();
357}
358
359/*
360 * This functions is used to indicate to the interrupt controller that
361 * the processing of the interrupt corresponding to the `id` has
362 * finished.
363 */
364void plat_ic_end_of_interrupt(uint32_t id)
365{
366 assert(IS_IN_EL1());
367 gicv3_end_of_interrupt_sel1(id);
368}
369#endif