blob: 4c76f1bd15d2f832b3e3f46dee63873a6b7a03a3 [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.
Soby Mathew12012dd2015-10-26 14:01:53 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathew12012dd2015-10-26 14:01:53 +00005 */
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00006
Soby Mathew12012dd2015-10-26 14:01:53 +00007#include <assert.h>
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +01008#include <stdbool.h>
Soby Mathew12012dd2015-10-26 14:01:53 +00009
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <bl31/interrupt_mgmt.h>
11#include <drivers/arm/gic_common.h>
12#include <drivers/arm/gicv2.h>
13#include <plat/common/platform.h>
14
Soby Mathew12012dd2015-10-26 14:01:53 +000015/*
16 * The following platform GIC functions are weakly defined. They
17 * provide typical implementations that may be re-used by multiple
18 * platforms but may also be overridden by a platform if required.
19 */
20#pragma weak plat_ic_get_pending_interrupt_id
21#pragma weak plat_ic_get_pending_interrupt_type
22#pragma weak plat_ic_acknowledge_interrupt
23#pragma weak plat_ic_get_interrupt_type
24#pragma weak plat_ic_end_of_interrupt
25#pragma weak plat_interrupt_type_to_line
26
Jeenu Viswambharanb1e957e2017-09-22 08:32:09 +010027#pragma weak plat_ic_get_running_priority
Jeenu Viswambharan522a4652017-09-22 08:32:09 +010028#pragma weak plat_ic_is_spi
29#pragma weak plat_ic_is_ppi
30#pragma weak plat_ic_is_sgi
Jeenu Viswambharan24e70292017-09-22 08:32:09 +010031#pragma weak plat_ic_get_interrupt_active
Jeenu Viswambharan0fcdfff2017-09-22 08:32:09 +010032#pragma weak plat_ic_enable_interrupt
33#pragma weak plat_ic_disable_interrupt
Jeenu Viswambharan447b89d2017-09-22 08:32:09 +010034#pragma weak plat_ic_set_interrupt_priority
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +010035#pragma weak plat_ic_set_interrupt_type
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +010036#pragma weak plat_ic_raise_el3_sgi
Jeenu Viswambharandce70b32017-09-22 08:32:09 +010037#pragma weak plat_ic_set_spi_routing
Jeenu Viswambharanb1e957e2017-09-22 08:32:09 +010038
Soby Mathew12012dd2015-10-26 14:01:53 +000039/*
40 * This function returns the highest priority pending interrupt at
41 * the Interrupt controller
42 */
43uint32_t plat_ic_get_pending_interrupt_id(void)
44{
45 unsigned int id;
46
47 id = gicv2_get_pending_interrupt_id();
48 if (id == GIC_SPURIOUS_INTERRUPT)
49 return INTR_ID_UNAVAILABLE;
50
51 return id;
52}
53
54/*
55 * This function returns the type of the highest priority pending interrupt
56 * at the Interrupt controller. In the case of GICv2, the Highest Priority
57 * Pending interrupt register (`GICC_HPPIR`) is read to determine the id of
58 * the pending interrupt. The type of interrupt depends upon the id value
59 * as follows.
60 * 1. id < PENDING_G1_INTID (1022) is reported as a S-EL1 interrupt
61 * 2. id = PENDING_G1_INTID (1022) is reported as a Non-secure interrupt.
62 * 3. id = GIC_SPURIOUS_INTERRUPT (1023) is reported as an invalid interrupt
63 * type.
64 */
65uint32_t plat_ic_get_pending_interrupt_type(void)
66{
67 unsigned int id;
68
69 id = gicv2_get_pending_interrupt_type();
70
71 /* Assume that all secure interrupts are S-EL1 interrupts */
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +010072 if (id < PENDING_G1_INTID) {
73#if GICV2_G0_FOR_EL3
74 return INTR_TYPE_EL3;
75#else
Soby Mathew12012dd2015-10-26 14:01:53 +000076 return INTR_TYPE_S_EL1;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +010077#endif
78 }
Soby Mathew12012dd2015-10-26 14:01:53 +000079
80 if (id == GIC_SPURIOUS_INTERRUPT)
81 return INTR_TYPE_INVAL;
82
83 return INTR_TYPE_NS;
84}
85
86/*
87 * This function returns the highest priority pending interrupt at
88 * the Interrupt controller and indicates to the Interrupt controller
89 * that the interrupt processing has started.
90 */
91uint32_t plat_ic_acknowledge_interrupt(void)
92{
93 return gicv2_acknowledge_interrupt();
94}
95
96/*
97 * This function returns the type of the interrupt `id`, depending on how
98 * the interrupt has been configured in the interrupt controller
99 */
100uint32_t plat_ic_get_interrupt_type(uint32_t id)
101{
102 unsigned int type;
103
104 type = gicv2_get_interrupt_group(id);
105
106 /* Assume that all secure interrupts are S-EL1 interrupts */
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +0100107 return (type == GICV2_INTR_GROUP1) ? INTR_TYPE_NS :
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100108#if GICV2_G0_FOR_EL3
109 INTR_TYPE_EL3;
110#else
111 INTR_TYPE_S_EL1;
112#endif
Soby Mathew12012dd2015-10-26 14:01:53 +0000113}
114
115/*
116 * This functions is used to indicate to the interrupt controller that
117 * the processing of the interrupt corresponding to the `id` has
118 * finished.
119 */
120void plat_ic_end_of_interrupt(uint32_t id)
121{
122 gicv2_end_of_interrupt(id);
123}
124
125/*
126 * An ARM processor signals interrupt exceptions through the IRQ and FIQ pins.
127 * The interrupt controller knows which pin/line it uses to signal a type of
128 * interrupt. It lets the interrupt management framework determine
129 * for a type of interrupt and security state, which line should be used in the
130 * SCR_EL3 to control its routing to EL3. The interrupt line is represented
131 * as the bit position of the IRQ or FIQ bit in the SCR_EL3.
132 */
133uint32_t plat_interrupt_type_to_line(uint32_t type,
134 uint32_t security_state)
135{
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +0100136 assert((type == INTR_TYPE_S_EL1) || (type == INTR_TYPE_EL3) ||
137 (type == INTR_TYPE_NS));
Soby Mathew12012dd2015-10-26 14:01:53 +0000138
Santeri Salko4ed23382018-02-08 22:01:26 +0200139 assert(sec_state_is_valid(security_state));
140
Soby Mathew12012dd2015-10-26 14:01:53 +0000141 /* Non-secure interrupts are signaled on the IRQ line always */
142 if (type == INTR_TYPE_NS)
143 return __builtin_ctz(SCR_IRQ_BIT);
144
145 /*
146 * Secure interrupts are signaled using the IRQ line if the FIQ is
147 * not enabled else they are signaled using the FIQ line.
148 */
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +0100149 return ((gicv2_is_fiq_enabled() != 0U) ? __builtin_ctz(SCR_FIQ_BIT) :
150 __builtin_ctz(SCR_IRQ_BIT));
Soby Mathew12012dd2015-10-26 14:01:53 +0000151}
Jeenu Viswambharanb1e957e2017-09-22 08:32:09 +0100152
153unsigned int plat_ic_get_running_priority(void)
154{
155 return gicv2_get_running_priority();
156}
Jeenu Viswambharan522a4652017-09-22 08:32:09 +0100157
158int plat_ic_is_spi(unsigned int id)
159{
160 return (id >= MIN_SPI_ID) && (id <= MAX_SPI_ID);
161}
162
163int plat_ic_is_ppi(unsigned int id)
164{
165 return (id >= MIN_PPI_ID) && (id < MIN_SPI_ID);
166}
167
168int plat_ic_is_sgi(unsigned int id)
169{
170 return (id >= MIN_SGI_ID) && (id < MIN_PPI_ID);
171}
Jeenu Viswambharan24e70292017-09-22 08:32:09 +0100172
173unsigned int plat_ic_get_interrupt_active(unsigned int id)
174{
175 return gicv2_get_interrupt_active(id);
176}
Jeenu Viswambharan0fcdfff2017-09-22 08:32:09 +0100177
178void plat_ic_enable_interrupt(unsigned int id)
179{
180 gicv2_enable_interrupt(id);
181}
182
183void plat_ic_disable_interrupt(unsigned int id)
184{
185 gicv2_disable_interrupt(id);
186}
Jeenu Viswambharan447b89d2017-09-22 08:32:09 +0100187
188void plat_ic_set_interrupt_priority(unsigned int id, unsigned int priority)
189{
190 gicv2_set_interrupt_priority(id, priority);
191}
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100192
193int plat_ic_has_interrupt_type(unsigned int type)
194{
Jonathan Wrightff957ed2018-03-14 15:24:00 +0000195 int has_interrupt_type = 0;
196
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100197 switch (type) {
198#if GICV2_G0_FOR_EL3
199 case INTR_TYPE_EL3:
200#else
201 case INTR_TYPE_S_EL1:
202#endif
203 case INTR_TYPE_NS:
Jonathan Wrightff957ed2018-03-14 15:24:00 +0000204 has_interrupt_type = 1;
205 break;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100206 default:
Jonathan Wrightff957ed2018-03-14 15:24:00 +0000207 /* Do nothing in default case */
208 break;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100209 }
Jonathan Wrightff957ed2018-03-14 15:24:00 +0000210
211 return has_interrupt_type;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100212}
213
214void plat_ic_set_interrupt_type(unsigned int id, unsigned int type)
215{
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +0100216 unsigned int gicv2_type = 0U;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100217
218 /* Map canonical interrupt type to GICv2 type */
219 switch (type) {
220#if GICV2_G0_FOR_EL3
221 case INTR_TYPE_EL3:
222#else
223 case INTR_TYPE_S_EL1:
224#endif
225 gicv2_type = GICV2_INTR_GROUP0;
226 break;
227 case INTR_TYPE_NS:
228 gicv2_type = GICV2_INTR_GROUP1;
229 break;
230 default:
Daniel Boulby8942a1b2018-06-22 14:16:03 +0100231 assert(0); /* Unreachable */
Jonathan Wrightff957ed2018-03-14 15:24:00 +0000232 break;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100233 }
234
235 gicv2_set_interrupt_type(id, gicv2_type);
236}
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +0100237
238void plat_ic_raise_el3_sgi(int sgi_num, u_register_t target)
239{
240#if GICV2_G0_FOR_EL3
241 int id;
242
243 /* Target must be a valid MPIDR in the system */
244 id = plat_core_pos_by_mpidr(target);
245 assert(id >= 0);
246
247 /* Verify that this is a secure SGI */
248 assert(plat_ic_get_interrupt_type(sgi_num) == INTR_TYPE_EL3);
249
250 gicv2_raise_sgi(sgi_num, id);
251#else
Antonio Nino Diaza4210cb2018-08-21 09:44:43 +0100252 assert(false);
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +0100253#endif
254}
Jeenu Viswambharandce70b32017-09-22 08:32:09 +0100255
256void plat_ic_set_spi_routing(unsigned int id, unsigned int routing_mode,
257 u_register_t mpidr)
258{
259 int proc_num = 0;
260
261 switch (routing_mode) {
262 case INTR_ROUTING_MODE_PE:
263 proc_num = plat_core_pos_by_mpidr(mpidr);
264 assert(proc_num >= 0);
265 break;
266 case INTR_ROUTING_MODE_ANY:
267 /* Bit mask selecting all 8 CPUs as candidates */
268 proc_num = -1;
269 break;
270 default:
Daniel Boulby8942a1b2018-06-22 14:16:03 +0100271 assert(0); /* Unreachable */
Jonathan Wrightff957ed2018-03-14 15:24:00 +0000272 break;
Jeenu Viswambharandce70b32017-09-22 08:32:09 +0100273 }
274
275 gicv2_set_spi_routing(id, proc_num);
276}
Jeenu Viswambharaneb1c12c2017-09-22 08:32:09 +0100277
278void plat_ic_set_interrupt_pending(unsigned int id)
279{
280 gicv2_set_interrupt_pending(id);
281}
282
283void plat_ic_clear_interrupt_pending(unsigned int id)
284{
285 gicv2_clear_interrupt_pending(id);
286}
Jeenu Viswambharan62505072017-09-22 08:32:09 +0100287
288unsigned int plat_ic_set_priority_mask(unsigned int mask)
289{
290 return gicv2_set_pmr(mask);
291}
Jeenu Viswambharan055af4b2017-10-24 15:13:59 +0100292
293unsigned int plat_ic_get_interrupt_id(unsigned int raw)
294{
295 unsigned int id = (raw & INT_ID_MASK);
296
297 if (id == GIC_SPURIOUS_INTERRUPT)
298 id = INTR_ID_UNAVAILABLE;
299
300 return id;
301}