blob: 58fbc89a7f3c5446bdaa05a711a9e2673654b2d0 [file] [log] [blame]
Ian Spray84687392014-01-02 16:57:12 +00001/*
Dan Handleyfb42b122014-06-20 09:43:15 +01002 * Copyright (c) 2014, ARM Limited and Contributors. All rights reserved.
Ian Spray84687392014-01-02 16:57:12 +00003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
Dan Handleyfb42b122014-06-20 09:43:15 +010031#include <arch.h>
Ian Spray84687392014-01-02 16:57:12 +000032#include <arch_helpers.h>
Dan Handleyfb42b122014-06-20 09:43:15 +010033#include <arm_gic.h>
Achin Gupta191e86e2014-05-09 10:03:15 +010034#include <assert.h>
35#include <bl_common.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010036#include <debug.h>
Dan Handley930ee2e2014-04-17 17:48:52 +010037#include <gic_v2.h>
38#include <gic_v3.h>
Achin Gupta191e86e2014-05-09 10:03:15 +010039#include <interrupt_mgmt.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010040#include <platform.h>
41#include <stdint.h>
Dan Handleyfb42b122014-06-20 09:43:15 +010042
Juan Castillo82312952014-10-20 12:27:28 +010043/* Value used to initialize Non-Secure IRQ priorities four at a time */
44#define GICD_IPRIORITYR_DEF_VAL \
45 (GIC_HIGHEST_NS_PRIORITY | \
46 (GIC_HIGHEST_NS_PRIORITY << 8) | \
47 (GIC_HIGHEST_NS_PRIORITY << 16) | \
48 (GIC_HIGHEST_NS_PRIORITY << 24))
Dan Handleyfb42b122014-06-20 09:43:15 +010049
50static unsigned int g_gicc_base;
51static unsigned int g_gicd_base;
52static unsigned long g_gicr_base;
53static const unsigned int *g_irq_sec_ptr;
54static unsigned int g_num_irqs;
55
Ian Spray84687392014-01-02 16:57:12 +000056
Ian Spray84687392014-01-02 16:57:12 +000057/*******************************************************************************
58 * This function does some minimal GICv3 configuration. The Firmware itself does
59 * not fully support GICv3 at this time and relies on GICv2 emulation as
60 * provided by GICv3. This function allows software (like Linux) in later stages
61 * to use full GICv3 features.
62 ******************************************************************************/
Dan Handleyfb42b122014-06-20 09:43:15 +010063static void gicv3_cpuif_setup(void)
Ian Spray84687392014-01-02 16:57:12 +000064{
Harry Liebeleaec5902013-12-12 13:00:29 +000065 unsigned int scr_val, val;
66 uintptr_t base;
Ian Spray84687392014-01-02 16:57:12 +000067
68 /*
69 * When CPUs come out of reset they have their GICR_WAKER.ProcessorSleep
70 * bit set. In order to allow interrupts to get routed to the CPU we
71 * need to clear this bit if set and wait for GICR_WAKER.ChildrenAsleep
72 * to clear (GICv3 Architecture specification 5.4.23).
73 * GICR_WAKER is NOT banked per CPU, compute the correct base address
74 * per CPU.
Ian Spray84687392014-01-02 16:57:12 +000075 */
Dan Handleyfb42b122014-06-20 09:43:15 +010076 assert(g_gicr_base);
77 base = gicv3_get_rdist(g_gicr_base, read_mpidr());
Harry Liebeleaec5902013-12-12 13:00:29 +000078 if (base == (uintptr_t)NULL) {
79 /* No re-distributor base address. This interface cannot be
80 * configured.
81 */
82 panic();
83 }
84
Ian Spray84687392014-01-02 16:57:12 +000085 val = gicr_read_waker(base);
86
87 val &= ~WAKER_PS;
88 gicr_write_waker(base, val);
89 dsb();
90
91 /* We need to wait for ChildrenAsleep to clear. */
92 val = gicr_read_waker(base);
Dan Handleyfb42b122014-06-20 09:43:15 +010093 while (val & WAKER_CA)
Ian Spray84687392014-01-02 16:57:12 +000094 val = gicr_read_waker(base);
Ian Spray84687392014-01-02 16:57:12 +000095
96 /*
97 * We need to set SCR_EL3.NS in order to see GICv3 non-secure state.
98 * Restore SCR_EL3.NS again before exit.
99 */
100 scr_val = read_scr();
101 write_scr(scr_val | SCR_NS_BIT);
Andrew Thoelke42e75a72014-04-28 12:28:39 +0100102 isb(); /* ensure NS=1 takes effect before accessing ICC_SRE_EL2 */
Ian Spray84687392014-01-02 16:57:12 +0000103
104 /*
105 * By default EL2 and NS-EL1 software should be able to enable GICv3
106 * System register access without any configuration at EL3. But it turns
107 * out that GICC PMR as set in GICv2 mode does not affect GICv3 mode. So
108 * we need to set it here again. In order to do that we need to enable
109 * register access. We leave it enabled as it should be fine and might
110 * prevent problems with later software trying to access GIC System
111 * Registers.
112 */
113 val = read_icc_sre_el3();
114 write_icc_sre_el3(val | ICC_SRE_EN | ICC_SRE_SRE);
115
116 val = read_icc_sre_el2();
117 write_icc_sre_el2(val | ICC_SRE_EN | ICC_SRE_SRE);
118
Jon Medhurstd0212c22014-02-11 14:48:56 +0000119 write_icc_pmr_el1(GIC_PRI_MASK);
Dan Handleyfb42b122014-06-20 09:43:15 +0100120 isb(); /* commit ICC_* changes before setting NS=0 */
Ian Spray84687392014-01-02 16:57:12 +0000121
122 /* Restore SCR_EL3 */
123 write_scr(scr_val);
Andrew Thoelke42e75a72014-04-28 12:28:39 +0100124 isb(); /* ensure NS=0 takes effect immediately */
Ian Spray84687392014-01-02 16:57:12 +0000125}
126
127/*******************************************************************************
128 * This function does some minimal GICv3 configuration when cores go
129 * down.
130 ******************************************************************************/
Dan Handleyfb42b122014-06-20 09:43:15 +0100131static void gicv3_cpuif_deactivate(void)
Ian Spray84687392014-01-02 16:57:12 +0000132{
Harry Liebeleaec5902013-12-12 13:00:29 +0000133 unsigned int val;
134 uintptr_t base;
Ian Spray84687392014-01-02 16:57:12 +0000135
136 /*
137 * When taking CPUs down we need to set GICR_WAKER.ProcessorSleep and
138 * wait for GICR_WAKER.ChildrenAsleep to get set.
139 * (GICv3 Architecture specification 5.4.23).
140 * GICR_WAKER is NOT banked per CPU, compute the correct base address
141 * per CPU.
Ian Spray84687392014-01-02 16:57:12 +0000142 */
Dan Handleyfb42b122014-06-20 09:43:15 +0100143 assert(g_gicr_base);
144 base = gicv3_get_rdist(g_gicr_base, read_mpidr());
Harry Liebeleaec5902013-12-12 13:00:29 +0000145 if (base == (uintptr_t)NULL) {
146 /* No re-distributor base address. This interface cannot be
147 * configured.
148 */
149 panic();
150 }
151
Ian Spray84687392014-01-02 16:57:12 +0000152 val = gicr_read_waker(base);
153 val |= WAKER_PS;
154 gicr_write_waker(base, val);
155 dsb();
156
157 /* We need to wait for ChildrenAsleep to set. */
158 val = gicr_read_waker(base);
Dan Handleyfb42b122014-06-20 09:43:15 +0100159 while ((val & WAKER_CA) == 0)
Ian Spray84687392014-01-02 16:57:12 +0000160 val = gicr_read_waker(base);
Ian Spray84687392014-01-02 16:57:12 +0000161}
162
163
164/*******************************************************************************
165 * Enable secure interrupts and use FIQs to route them. Disable legacy bypass
166 * and set the priority mask register to allow all interrupts to trickle in.
167 ******************************************************************************/
Dan Handleyfb42b122014-06-20 09:43:15 +0100168void arm_gic_cpuif_setup(void)
Ian Spray84687392014-01-02 16:57:12 +0000169{
170 unsigned int val;
171
Dan Handleyfb42b122014-06-20 09:43:15 +0100172 assert(g_gicc_base);
173 val = gicc_read_iidr(g_gicc_base);
Ian Spray84687392014-01-02 16:57:12 +0000174
175 /*
176 * If GICv3 we need to do a bit of additional setup. We want to
177 * allow default GICv2 behaviour but allow the next stage to
178 * enable full gicv3 features.
179 */
Dan Handleyfb42b122014-06-20 09:43:15 +0100180 if (((val >> GICC_IIDR_ARCH_SHIFT) & GICC_IIDR_ARCH_MASK) >= 3)
Ian Spray84687392014-01-02 16:57:12 +0000181 gicv3_cpuif_setup();
Ian Spray84687392014-01-02 16:57:12 +0000182
183 val = ENABLE_GRP0 | FIQ_EN | FIQ_BYP_DIS_GRP0;
184 val |= IRQ_BYP_DIS_GRP0 | FIQ_BYP_DIS_GRP1 | IRQ_BYP_DIS_GRP1;
185
Dan Handleyfb42b122014-06-20 09:43:15 +0100186 gicc_write_pmr(g_gicc_base, GIC_PRI_MASK);
187 gicc_write_ctlr(g_gicc_base, val);
Ian Spray84687392014-01-02 16:57:12 +0000188}
189
190/*******************************************************************************
191 * Place the cpu interface in a state where it can never make a cpu exit wfi as
192 * as result of an asserted interrupt. This is critical for powering down a cpu
193 ******************************************************************************/
Dan Handleyfb42b122014-06-20 09:43:15 +0100194void arm_gic_cpuif_deactivate(void)
Ian Spray84687392014-01-02 16:57:12 +0000195{
196 unsigned int val;
197
198 /* Disable secure, non-secure interrupts and disable their bypass */
Dan Handleyfb42b122014-06-20 09:43:15 +0100199 assert(g_gicc_base);
200 val = gicc_read_ctlr(g_gicc_base);
Ian Spray84687392014-01-02 16:57:12 +0000201 val &= ~(ENABLE_GRP0 | ENABLE_GRP1);
202 val |= FIQ_BYP_DIS_GRP1 | FIQ_BYP_DIS_GRP0;
203 val |= IRQ_BYP_DIS_GRP0 | IRQ_BYP_DIS_GRP1;
Dan Handleyfb42b122014-06-20 09:43:15 +0100204 gicc_write_ctlr(g_gicc_base, val);
Ian Spray84687392014-01-02 16:57:12 +0000205
Dan Handleyfb42b122014-06-20 09:43:15 +0100206 val = gicc_read_iidr(g_gicc_base);
Ian Spray84687392014-01-02 16:57:12 +0000207
208 /*
209 * If GICv3 we need to do a bit of additional setup. Make sure the
210 * RDIST is put to sleep.
211 */
Dan Handleyfb42b122014-06-20 09:43:15 +0100212 if (((val >> GICC_IIDR_ARCH_SHIFT) & GICC_IIDR_ARCH_MASK) >= 3)
Ian Spray84687392014-01-02 16:57:12 +0000213 gicv3_cpuif_deactivate();
Ian Spray84687392014-01-02 16:57:12 +0000214}
215
216/*******************************************************************************
217 * Per cpu gic distributor setup which will be done by all cpus after a cold
218 * boot/hotplug. This marks out the secure interrupts & enables them.
219 ******************************************************************************/
Dan Handleyfb42b122014-06-20 09:43:15 +0100220void arm_gic_pcpu_distif_setup(void)
Ian Spray84687392014-01-02 16:57:12 +0000221{
Dan Handleyfb42b122014-06-20 09:43:15 +0100222 unsigned int index, irq_num;
Ian Spray84687392014-01-02 16:57:12 +0000223
Dan Handleyfb42b122014-06-20 09:43:15 +0100224 assert(g_gicd_base);
Juan Castillo82312952014-10-20 12:27:28 +0100225
226 /* Mark all 32 SGI+PPI interrupts as Group 1 (non-secure) */
Dan Handleyfb42b122014-06-20 09:43:15 +0100227 gicd_write_igroupr(g_gicd_base, 0, ~0);
Ian Spray84687392014-01-02 16:57:12 +0000228
Juan Castillo82312952014-10-20 12:27:28 +0100229 /* Setup PPI priorities doing four at a time */
230 for (index = 0; index < 32; index += 4) {
231 gicd_write_ipriorityr(g_gicd_base, index,
232 GICD_IPRIORITYR_DEF_VAL);
233 }
234
Dan Handleyfb42b122014-06-20 09:43:15 +0100235 assert(g_irq_sec_ptr);
236 for (index = 0; index < g_num_irqs; index++) {
237 irq_num = g_irq_sec_ptr[index];
238 if (irq_num < MIN_SPI_ID) {
239 /* We have an SGI or a PPI */
240 gicd_clr_igroupr(g_gicd_base, irq_num);
241 gicd_set_ipriorityr(g_gicd_base, irq_num,
242 GIC_HIGHEST_SEC_PRIORITY);
243 gicd_set_isenabler(g_gicd_base, irq_num);
244 }
245 }
Ian Spray84687392014-01-02 16:57:12 +0000246}
247
248/*******************************************************************************
Juan Castillo82312952014-10-20 12:27:28 +0100249 * Get the current CPU bit mask from GICD_ITARGETSR0
250 ******************************************************************************/
251static unsigned int arm_gic_get_cpuif_id(void)
252{
253 unsigned int val;
254
255 val = gicd_read_itargetsr(g_gicd_base, 0);
256 return val & GIC_TARGET_CPU_MASK;
257}
258
259/*******************************************************************************
Ian Spray84687392014-01-02 16:57:12 +0000260 * Global gic distributor setup which will be done by the primary cpu after a
261 * cold boot. It marks out the secure SPIs, PPIs & SGIs and enables them. It
262 * then enables the secure GIC distributor interface.
263 ******************************************************************************/
Dan Handleyfb42b122014-06-20 09:43:15 +0100264static void arm_gic_distif_setup(void)
Ian Spray84687392014-01-02 16:57:12 +0000265{
Dan Handleyfb42b122014-06-20 09:43:15 +0100266 unsigned int num_ints, ctlr, index, irq_num;
Juan Castillo82312952014-10-20 12:27:28 +0100267 uint8_t target_cpu;
Ian Spray84687392014-01-02 16:57:12 +0000268
269 /* Disable the distributor before going further */
Dan Handleyfb42b122014-06-20 09:43:15 +0100270 assert(g_gicd_base);
271 ctlr = gicd_read_ctlr(g_gicd_base);
Ian Spray84687392014-01-02 16:57:12 +0000272 ctlr &= ~(ENABLE_GRP0 | ENABLE_GRP1);
Dan Handleyfb42b122014-06-20 09:43:15 +0100273 gicd_write_ctlr(g_gicd_base, ctlr);
Ian Spray84687392014-01-02 16:57:12 +0000274
275 /*
Juan Castillo82312952014-10-20 12:27:28 +0100276 * Mark out non-secure SPI interrupts. The number of interrupts is
277 * calculated as 32 * (IT_LINES + 1). We do 32 at a time.
Ian Spray84687392014-01-02 16:57:12 +0000278 */
Dan Handleyfb42b122014-06-20 09:43:15 +0100279 num_ints = gicd_read_typer(g_gicd_base) & IT_LINES_NO_MASK;
Juan Castillo82312952014-10-20 12:27:28 +0100280 num_ints = (num_ints + 1) << 5;
281 for (index = MIN_SPI_ID; index < num_ints; index += 32)
282 gicd_write_igroupr(g_gicd_base, index, ~0);
283
284 /* Setup SPI priorities doing four at a time */
285 for (index = MIN_SPI_ID; index < num_ints; index += 4) {
286 gicd_write_ipriorityr(g_gicd_base, index,
287 GICD_IPRIORITYR_DEF_VAL);
288 }
Ian Spray84687392014-01-02 16:57:12 +0000289
Juan Castillo82312952014-10-20 12:27:28 +0100290 /* Read the target CPU mask */
291 target_cpu = arm_gic_get_cpuif_id();
292
293 /* Configure SPI secure interrupts now */
Dan Handleyfb42b122014-06-20 09:43:15 +0100294 assert(g_irq_sec_ptr);
295 for (index = 0; index < g_num_irqs; index++) {
296 irq_num = g_irq_sec_ptr[index];
297 if (irq_num >= MIN_SPI_ID) {
298 /* We have an SPI */
299 gicd_clr_igroupr(g_gicd_base, irq_num);
300 gicd_set_ipriorityr(g_gicd_base, irq_num,
301 GIC_HIGHEST_SEC_PRIORITY);
Juan Castillo82312952014-10-20 12:27:28 +0100302 gicd_set_itargetsr(g_gicd_base, irq_num, target_cpu);
Dan Handleyfb42b122014-06-20 09:43:15 +0100303 gicd_set_isenabler(g_gicd_base, irq_num);
304 }
305 }
Juan Castillo82312952014-10-20 12:27:28 +0100306
307 /*
308 * Configure the SGI and PPI. This is done in a separated function
309 * because each CPU is responsible for initializing its own private
310 * interrupts.
311 */
Dan Handleyfb42b122014-06-20 09:43:15 +0100312 arm_gic_pcpu_distif_setup();
313
314 gicd_write_ctlr(g_gicd_base, ctlr | ENABLE_GRP0);
315}
Ian Spray84687392014-01-02 16:57:12 +0000316
Dan Handleyfb42b122014-06-20 09:43:15 +0100317/*******************************************************************************
318 * Initialize the ARM GIC driver with the provided platform inputs
319******************************************************************************/
320void arm_gic_init(unsigned int gicc_base,
321 unsigned int gicd_base,
322 unsigned long gicr_base,
323 const unsigned int *irq_sec_ptr,
324 unsigned int num_irqs
325 )
326{
Juan Castillo82312952014-10-20 12:27:28 +0100327 unsigned int val;
328
Dan Handleyfb42b122014-06-20 09:43:15 +0100329 assert(gicc_base);
330 assert(gicd_base);
Dan Handleyfb42b122014-06-20 09:43:15 +0100331 assert(irq_sec_ptr);
Juan Castillo82312952014-10-20 12:27:28 +0100332
Dan Handleyfb42b122014-06-20 09:43:15 +0100333 g_gicc_base = gicc_base;
334 g_gicd_base = gicd_base;
Juan Castillo82312952014-10-20 12:27:28 +0100335
336 val = gicc_read_iidr(g_gicc_base);
337
338 if (((val >> GICC_IIDR_ARCH_SHIFT) & GICC_IIDR_ARCH_MASK) >= 3) {
339 assert(gicr_base);
340 g_gicr_base = gicr_base;
341 }
342
Dan Handleyfb42b122014-06-20 09:43:15 +0100343 g_irq_sec_ptr = irq_sec_ptr;
344 g_num_irqs = num_irqs;
Ian Spray84687392014-01-02 16:57:12 +0000345}
346
Dan Handleyfb42b122014-06-20 09:43:15 +0100347/*******************************************************************************
348 * Setup the ARM GIC CPU and distributor interfaces.
349******************************************************************************/
350void arm_gic_setup(void)
Ian Spray84687392014-01-02 16:57:12 +0000351{
Dan Handleyfb42b122014-06-20 09:43:15 +0100352 arm_gic_cpuif_setup();
353 arm_gic_distif_setup();
Ian Spray84687392014-01-02 16:57:12 +0000354}
Achin Gupta191e86e2014-05-09 10:03:15 +0100355
356/*******************************************************************************
357 * An ARM processor signals interrupt exceptions through the IRQ and FIQ pins.
358 * The interrupt controller knows which pin/line it uses to signal a type of
Dan Handleyfb42b122014-06-20 09:43:15 +0100359 * interrupt. This function provides a common implementation of
360 * plat_interrupt_type_to_line() in an ARM GIC environment for optional re-use
361 * across platforms. It lets the interrupt management framework determine
362 * for a type of interrupt and security state, which line should be used in the
363 * SCR_EL3 to control its routing to EL3. The interrupt line is represented as
364 * the bit position of the IRQ or FIQ bit in the SCR_EL3.
Achin Gupta191e86e2014-05-09 10:03:15 +0100365 ******************************************************************************/
Dan Handleyfb42b122014-06-20 09:43:15 +0100366uint32_t arm_gic_interrupt_type_to_line(uint32_t type,
367 uint32_t security_state)
Achin Gupta191e86e2014-05-09 10:03:15 +0100368{
Achin Gupta191e86e2014-05-09 10:03:15 +0100369 assert(type == INTR_TYPE_S_EL1 ||
370 type == INTR_TYPE_EL3 ||
371 type == INTR_TYPE_NS);
372
Juan Castillof558cac2014-06-05 09:45:36 +0100373 assert(sec_state_is_valid(security_state));
Achin Gupta191e86e2014-05-09 10:03:15 +0100374
375 /*
376 * We ignore the security state parameter under the assumption that
377 * both normal and secure worlds are using ARM GICv2. This parameter
378 * will be used when the secure world starts using GICv3.
379 */
Dan Handleyfb42b122014-06-20 09:43:15 +0100380#if ARM_GIC_ARCH == 2
381 return gicv2_interrupt_type_to_line(g_gicc_base, type);
Achin Gupta191e86e2014-05-09 10:03:15 +0100382#else
Dan Handleyfb42b122014-06-20 09:43:15 +0100383#error "Invalid ARM GIC architecture version specified for platform port"
384#endif /* ARM_GIC_ARCH */
Achin Gupta191e86e2014-05-09 10:03:15 +0100385}
386
Dan Handleyfb42b122014-06-20 09:43:15 +0100387#if ARM_GIC_ARCH == 2
Achin Gupta02d36282014-05-04 19:02:52 +0100388/*******************************************************************************
389 * This function returns the type of the highest priority pending interrupt at
390 * the GIC cpu interface. INTR_TYPE_INVAL is returned when there is no
391 * interrupt pending.
392 ******************************************************************************/
Dan Handleyfb42b122014-06-20 09:43:15 +0100393uint32_t arm_gic_get_pending_interrupt_type(void)
Achin Gupta02d36282014-05-04 19:02:52 +0100394{
Dan Handley1c54d972014-06-20 12:02:01 +0100395 uint32_t id;
Achin Gupta02d36282014-05-04 19:02:52 +0100396
Dan Handleyfb42b122014-06-20 09:43:15 +0100397 assert(g_gicc_base);
398 id = gicc_read_hppir(g_gicc_base);
Achin Gupta02d36282014-05-04 19:02:52 +0100399
400 /* Assume that all secure interrupts are S-EL1 interrupts */
401 if (id < 1022)
402 return INTR_TYPE_S_EL1;
403
404 if (id == GIC_SPURIOUS_INTERRUPT)
405 return INTR_TYPE_INVAL;
406
407 return INTR_TYPE_NS;
408}
409
410/*******************************************************************************
411 * This function returns the id of the highest priority pending interrupt at
412 * the GIC cpu interface. INTR_ID_UNAVAILABLE is returned when there is no
413 * interrupt pending.
414 ******************************************************************************/
Dan Handleyfb42b122014-06-20 09:43:15 +0100415uint32_t arm_gic_get_pending_interrupt_id(void)
Achin Gupta02d36282014-05-04 19:02:52 +0100416{
Dan Handleyfb42b122014-06-20 09:43:15 +0100417 uint32_t id;
Achin Gupta02d36282014-05-04 19:02:52 +0100418
Dan Handleyfb42b122014-06-20 09:43:15 +0100419 assert(g_gicc_base);
420 id = gicc_read_hppir(g_gicc_base);
Achin Gupta02d36282014-05-04 19:02:52 +0100421
422 if (id < 1022)
423 return id;
424
425 if (id == 1023)
426 return INTR_ID_UNAVAILABLE;
427
428 /*
429 * Find out which non-secure interrupt it is under the assumption that
430 * the GICC_CTLR.AckCtl bit is 0.
431 */
Dan Handleyfb42b122014-06-20 09:43:15 +0100432 return gicc_read_ahppir(g_gicc_base);
Achin Gupta02d36282014-05-04 19:02:52 +0100433}
434
435/*******************************************************************************
436 * This functions reads the GIC cpu interface Interrupt Acknowledge register
437 * to start handling the pending interrupt. It returns the contents of the IAR.
438 ******************************************************************************/
Dan Handleyfb42b122014-06-20 09:43:15 +0100439uint32_t arm_gic_acknowledge_interrupt(void)
Achin Gupta02d36282014-05-04 19:02:52 +0100440{
Dan Handleyfb42b122014-06-20 09:43:15 +0100441 assert(g_gicc_base);
442 return gicc_read_IAR(g_gicc_base);
Achin Gupta02d36282014-05-04 19:02:52 +0100443}
444
445/*******************************************************************************
446 * This functions writes the GIC cpu interface End Of Interrupt register with
447 * the passed value to finish handling the active interrupt
448 ******************************************************************************/
Dan Handleyfb42b122014-06-20 09:43:15 +0100449void arm_gic_end_of_interrupt(uint32_t id)
Achin Gupta02d36282014-05-04 19:02:52 +0100450{
Dan Handleyfb42b122014-06-20 09:43:15 +0100451 assert(g_gicc_base);
452 gicc_write_EOIR(g_gicc_base, id);
Achin Gupta02d36282014-05-04 19:02:52 +0100453}
454
455/*******************************************************************************
456 * This function returns the type of the interrupt id depending upon the group
457 * this interrupt has been configured under by the interrupt controller i.e.
458 * group0 or group1.
459 ******************************************************************************/
Dan Handleyfb42b122014-06-20 09:43:15 +0100460uint32_t arm_gic_get_interrupt_type(uint32_t id)
Achin Gupta02d36282014-05-04 19:02:52 +0100461{
462 uint32_t group;
463
Dan Handleyfb42b122014-06-20 09:43:15 +0100464 assert(g_gicd_base);
465 group = gicd_get_igroupr(g_gicd_base, id);
Achin Gupta02d36282014-05-04 19:02:52 +0100466
467 /* Assume that all secure interrupts are S-EL1 interrupts */
468 if (group == GRP0)
469 return INTR_TYPE_S_EL1;
470 else
471 return INTR_TYPE_NS;
472}
473
474#else
Dan Handleyfb42b122014-06-20 09:43:15 +0100475#error "Invalid ARM GIC architecture version specified for platform port"
476#endif /* ARM_GIC_ARCH */