blob: f371330968c2d718262670273707c1b4735191a0 [file] [log] [blame]
Achin Gupta92712a52015-09-03 14:18:02 +01001/*
James kung05403eb2019-05-31 15:40:05 +08002 * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
Achin Gupta92712a52015-09-03 14:18:02 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta92712a52015-09-03 14:18:02 +01005 */
6
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <assert.h>
8
Achin Gupta92712a52015-09-03 14:18:02 +01009#include <arch.h>
10#include <arch_helpers.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011#include <common/debug.h>
12#include <common/interrupt_props.h>
13#include <drivers/arm/gicv3.h>
14#include <lib/spinlock.h>
15
Achin Gupta92712a52015-09-03 14:18:02 +010016#include "gicv3_private.h"
17
Jeenu Viswambharand7a901e2016-12-06 16:15:22 +000018const gicv3_driver_data_t *gicv3_driver_data;
Achin Gupta92712a52015-09-03 14:18:02 +010019
Jeenu Viswambharan76647d52016-12-09 11:03:15 +000020/*
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +010021 * Spinlock to guard registers needing read-modify-write. APIs protected by this
22 * spinlock are used either at boot time (when only a single CPU is active), or
23 * when the system is fully coherent.
24 */
Roberto Vargas2ca18d92018-02-12 12:36:17 +000025static spinlock_t gic_lock;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +010026
27/*
Jeenu Viswambharan76647d52016-12-09 11:03:15 +000028 * Redistributor power operations are weakly bound so that they can be
29 * overridden
30 */
31#pragma weak gicv3_rdistif_off
32#pragma weak gicv3_rdistif_on
33
Soby Mathew327548c2017-07-13 15:19:51 +010034
35/* Helper macros to save and restore GICD registers to and from the context */
36#define RESTORE_GICD_REGS(base, ctx, intr_num, reg, REG) \
37 do { \
Antonio Nino Diazca994e72018-08-21 10:02:33 +010038 for (unsigned int int_id = MIN_SPI_ID; int_id < (intr_num); \
39 int_id += (1U << REG##_SHIFT)) { \
Soby Mathew327548c2017-07-13 15:19:51 +010040 gicd_write_##reg(base, int_id, \
41 ctx->gicd_##reg[(int_id - MIN_SPI_ID) >> REG##_SHIFT]); \
42 } \
Antonio Nino Diazca994e72018-08-21 10:02:33 +010043 } while (false)
Soby Mathew327548c2017-07-13 15:19:51 +010044
45#define SAVE_GICD_REGS(base, ctx, intr_num, reg, REG) \
46 do { \
Antonio Nino Diazca994e72018-08-21 10:02:33 +010047 for (unsigned int int_id = MIN_SPI_ID; int_id < (intr_num); \
48 int_id += (1U << REG##_SHIFT)) { \
Soby Mathew327548c2017-07-13 15:19:51 +010049 ctx->gicd_##reg[(int_id - MIN_SPI_ID) >> REG##_SHIFT] =\
50 gicd_read_##reg(base, int_id); \
51 } \
Antonio Nino Diazca994e72018-08-21 10:02:33 +010052 } while (false)
Soby Mathew327548c2017-07-13 15:19:51 +010053
54
Achin Gupta92712a52015-09-03 14:18:02 +010055/*******************************************************************************
56 * This function initialises the ARM GICv3 driver in EL3 with provided platform
57 * inputs.
58 ******************************************************************************/
Daniel Boulby844b4872018-09-18 13:36:39 +010059void __init gicv3_driver_init(const gicv3_driver_data_t *plat_driver_data)
Achin Gupta92712a52015-09-03 14:18:02 +010060{
61 unsigned int gic_version;
Madhukar Pappireddy5fd1f9d2019-05-15 18:25:41 -050062 unsigned int gicv2_compat;
Achin Gupta92712a52015-09-03 14:18:02 +010063
Antonio Nino Diazca994e72018-08-21 10:02:33 +010064 assert(plat_driver_data != NULL);
65 assert(plat_driver_data->gicd_base != 0U);
Antonio Nino Diazca994e72018-08-21 10:02:33 +010066 assert(plat_driver_data->rdistif_num != 0U);
67 assert(plat_driver_data->rdistif_base_addrs != NULL);
Achin Gupta92712a52015-09-03 14:18:02 +010068
69 assert(IS_IN_EL3());
70
Madhukar Pappireddy5fd1f9d2019-05-15 18:25:41 -050071 assert((plat_driver_data->interrupt_props_num != 0U) ?
72 (plat_driver_data->interrupt_props != NULL) : 1);
Achin Gupta92712a52015-09-03 14:18:02 +010073
74 /* Check for system register support */
Madhukar Pappireddy5fd1f9d2019-05-15 18:25:41 -050075#ifndef __aarch64__
76 assert((read_id_pfr1() &
77 (ID_PFR1_GIC_MASK << ID_PFR1_GIC_SHIFT)) != 0U);
78#else
Antonio Nino Diazca994e72018-08-21 10:02:33 +010079 assert((read_id_aa64pfr0_el1() &
80 (ID_AA64PFR0_GIC_MASK << ID_AA64PFR0_GIC_SHIFT)) != 0U);
Madhukar Pappireddy5fd1f9d2019-05-15 18:25:41 -050081#endif /* !__aarch64__ */
Achin Gupta92712a52015-09-03 14:18:02 +010082
83 /* The GIC version should be 3.0 */
84 gic_version = gicd_read_pidr2(plat_driver_data->gicd_base);
Madhukar Pappireddy5fd1f9d2019-05-15 18:25:41 -050085 gic_version >>= PIDR2_ARCH_REV_SHIFT;
Achin Gupta92712a52015-09-03 14:18:02 +010086 gic_version &= PIDR2_ARCH_REV_MASK;
87 assert(gic_version == ARCH_REV_GICV3);
88
89 /*
Madhukar Pappireddy5fd1f9d2019-05-15 18:25:41 -050090 * Find out whether the GIC supports the GICv2 compatibility mode.
91 * The ARE_S bit resets to 0 if supported
Achin Gupta92712a52015-09-03 14:18:02 +010092 */
93 gicv2_compat = gicd_read_ctlr(plat_driver_data->gicd_base);
94 gicv2_compat >>= CTLR_ARE_S_SHIFT;
Madhukar Pappireddy5fd1f9d2019-05-15 18:25:41 -050095 gicv2_compat = gicv2_compat & CTLR_ARE_S_MASK;
Achin Gupta92712a52015-09-03 14:18:02 +010096
Madhukar Pappireddy5fd1f9d2019-05-15 18:25:41 -050097 if (plat_driver_data->gicr_base != 0U) {
98 /*
99 * Find the base address of each implemented Redistributor interface.
100 * The number of interfaces should be equal to the number of CPUs in the
101 * system. The memory for saving these addresses has to be allocated by
102 * the platform port
103 */
104 gicv3_rdistif_base_addrs_probe(plat_driver_data->rdistif_base_addrs,
105 plat_driver_data->rdistif_num,
106 plat_driver_data->gicr_base,
107 plat_driver_data->mpidr_to_core_pos);
108#if !HW_ASSISTED_COHERENCY
109 /*
110 * Flush the rdistif_base_addrs[] contents linked to the GICv3 driver.
111 */
112 flush_dcache_range((uintptr_t)(plat_driver_data->rdistif_base_addrs),
113 plat_driver_data->rdistif_num *
114 sizeof(*(plat_driver_data->rdistif_base_addrs)));
115#endif
116 }
Jeenu Viswambharand7a901e2016-12-06 16:15:22 +0000117 gicv3_driver_data = plat_driver_data;
Achin Gupta92712a52015-09-03 14:18:02 +0100118
Soby Mathew72645132017-02-14 10:11:52 +0000119 /*
120 * The GIC driver data is initialized by the primary CPU with caches
121 * enabled. When the secondary CPU boots up, it initializes the
122 * GICC/GICR interface with the caches disabled. Hence flush the
Jeenu Viswambharand7a901e2016-12-06 16:15:22 +0000123 * driver data to ensure coherency. This is not required if the
Madhukar Pappireddy5fd1f9d2019-05-15 18:25:41 -0500124 * platform has HW_ASSISTED_COHERENCY enabled.
Soby Mathew72645132017-02-14 10:11:52 +0000125 */
Madhukar Pappireddy5fd1f9d2019-05-15 18:25:41 -0500126#if !HW_ASSISTED_COHERENCY
127 flush_dcache_range((uintptr_t)&gicv3_driver_data,
128 sizeof(gicv3_driver_data));
129 flush_dcache_range((uintptr_t)gicv3_driver_data,
130 sizeof(*gicv3_driver_data));
Soby Mathew72645132017-02-14 10:11:52 +0000131#endif
132
Madhukar Pappireddy5fd1f9d2019-05-15 18:25:41 -0500133 INFO("GICv3 with%s legacy support detected."
134 " ARM GICv3 driver initialized in EL3\n",
135 (gicv2_compat == 0U) ? "" : "out");
136
Achin Gupta92712a52015-09-03 14:18:02 +0100137}
138
139/*******************************************************************************
140 * This function initialises the GIC distributor interface based upon the data
141 * provided by the platform while initialising the driver.
142 ******************************************************************************/
Daniel Boulby844b4872018-09-18 13:36:39 +0100143void __init gicv3_distif_init(void)
Achin Gupta92712a52015-09-03 14:18:02 +0100144{
Yatharth Kochar3f00a892016-09-06 11:48:05 +0100145 unsigned int bitmap = 0;
146
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100147 assert(gicv3_driver_data != NULL);
148 assert(gicv3_driver_data->gicd_base != 0U);
Achin Gupta92712a52015-09-03 14:18:02 +0100149
150 assert(IS_IN_EL3());
151
152 /*
153 * Clear the "enable" bits for G0/G1S/G1NS interrupts before configuring
154 * the ARE_S bit. The Distributor might generate a system error
155 * otherwise.
156 */
Jeenu Viswambharand7a901e2016-12-06 16:15:22 +0000157 gicd_clr_ctlr(gicv3_driver_data->gicd_base,
Achin Gupta92712a52015-09-03 14:18:02 +0100158 CTLR_ENABLE_G0_BIT |
159 CTLR_ENABLE_G1S_BIT |
160 CTLR_ENABLE_G1NS_BIT,
161 RWP_TRUE);
162
163 /* Set the ARE_S and ARE_NS bit now that interrupts have been disabled */
Jeenu Viswambharand7a901e2016-12-06 16:15:22 +0000164 gicd_set_ctlr(gicv3_driver_data->gicd_base,
Achin Gupta92712a52015-09-03 14:18:02 +0100165 CTLR_ARE_S_BIT | CTLR_ARE_NS_BIT, RWP_TRUE);
166
167 /* Set the default attribute of all SPIs */
Daniel Boulby4e83abb2018-05-01 15:15:34 +0100168 gicv3_spis_config_defaults(gicv3_driver_data->gicd_base);
Achin Gupta92712a52015-09-03 14:18:02 +0100169
Antonio Nino Diaz29b9f5b2018-09-24 17:23:24 +0100170 bitmap = gicv3_secure_spis_config_props(
171 gicv3_driver_data->gicd_base,
172 gicv3_driver_data->interrupt_props,
173 gicv3_driver_data->interrupt_props_num);
Achin Gupta92712a52015-09-03 14:18:02 +0100174
175 /* Enable the secure SPIs now that they have been configured */
Jeenu Viswambharand7a901e2016-12-06 16:15:22 +0000176 gicd_set_ctlr(gicv3_driver_data->gicd_base, bitmap, RWP_TRUE);
Achin Gupta92712a52015-09-03 14:18:02 +0100177}
178
179/*******************************************************************************
180 * This function initialises the GIC Redistributor interface of the calling CPU
181 * (identified by the 'proc_num' parameter) based upon the data provided by the
182 * platform while initialising the driver.
183 ******************************************************************************/
184void gicv3_rdistif_init(unsigned int proc_num)
185{
186 uintptr_t gicr_base;
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100187 unsigned int bitmap = 0U;
Jeenu Viswambharan88d8f452017-11-07 08:38:23 +0000188 uint32_t ctlr;
Achin Gupta92712a52015-09-03 14:18:02 +0100189
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100190 assert(gicv3_driver_data != NULL);
Jeenu Viswambharand7a901e2016-12-06 16:15:22 +0000191 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100192 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
193 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharan88d8f452017-11-07 08:38:23 +0000194
195 ctlr = gicd_read_ctlr(gicv3_driver_data->gicd_base);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100196 assert((ctlr & CTLR_ARE_S_BIT) != 0U);
Achin Gupta92712a52015-09-03 14:18:02 +0100197
198 assert(IS_IN_EL3());
199
Jeenu Viswambharan76647d52016-12-09 11:03:15 +0000200 /* Power on redistributor */
201 gicv3_rdistif_on(proc_num);
202
Jeenu Viswambharand7a901e2016-12-06 16:15:22 +0000203 gicr_base = gicv3_driver_data->rdistif_base_addrs[proc_num];
Madhukar Pappireddy5fd1f9d2019-05-15 18:25:41 -0500204 assert(gicr_base != 0U);
Achin Gupta92712a52015-09-03 14:18:02 +0100205
206 /* Set the default attribute of all SGIs and PPIs */
Daniel Boulby4e83abb2018-05-01 15:15:34 +0100207 gicv3_ppi_sgi_config_defaults(gicr_base);
Achin Gupta92712a52015-09-03 14:18:02 +0100208
Antonio Nino Diaz29b9f5b2018-09-24 17:23:24 +0100209 bitmap = gicv3_secure_ppi_sgi_config_props(gicr_base,
210 gicv3_driver_data->interrupt_props,
211 gicv3_driver_data->interrupt_props_num);
Jeenu Viswambharan88d8f452017-11-07 08:38:23 +0000212
213 /* Enable interrupt groups as required, if not already */
214 if ((ctlr & bitmap) != bitmap)
215 gicd_set_ctlr(gicv3_driver_data->gicd_base, bitmap, RWP_TRUE);
Achin Gupta92712a52015-09-03 14:18:02 +0100216}
217
218/*******************************************************************************
Jeenu Viswambharan76647d52016-12-09 11:03:15 +0000219 * Functions to perform power operations on GIC Redistributor
220 ******************************************************************************/
221void gicv3_rdistif_off(unsigned int proc_num)
222{
223 return;
224}
225
226void gicv3_rdistif_on(unsigned int proc_num)
227{
228 return;
229}
230
231/*******************************************************************************
Achin Gupta92712a52015-09-03 14:18:02 +0100232 * This function enables the GIC CPU interface of the calling CPU using only
233 * system register accesses.
234 ******************************************************************************/
235void gicv3_cpuif_enable(unsigned int proc_num)
236{
237 uintptr_t gicr_base;
238 unsigned int scr_el3;
239 unsigned int icc_sre_el3;
240
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100241 assert(gicv3_driver_data != NULL);
Jeenu Viswambharand7a901e2016-12-06 16:15:22 +0000242 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100243 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Achin Gupta92712a52015-09-03 14:18:02 +0100244 assert(IS_IN_EL3());
245
246 /* Mark the connected core as awake */
Jeenu Viswambharand7a901e2016-12-06 16:15:22 +0000247 gicr_base = gicv3_driver_data->rdistif_base_addrs[proc_num];
Achin Gupta92712a52015-09-03 14:18:02 +0100248 gicv3_rdistif_mark_core_awake(gicr_base);
249
250 /* Disable the legacy interrupt bypass */
251 icc_sre_el3 = ICC_SRE_DIB_BIT | ICC_SRE_DFB_BIT;
252
253 /*
254 * Enable system register access for EL3 and allow lower exception
255 * levels to configure the same for themselves. If the legacy mode is
256 * not supported, the SRE bit is RAO/WI
257 */
258 icc_sre_el3 |= (ICC_SRE_EN_BIT | ICC_SRE_SRE_BIT);
259 write_icc_sre_el3(read_icc_sre_el3() | icc_sre_el3);
260
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100261 scr_el3 = (uint32_t) read_scr_el3();
Achin Gupta92712a52015-09-03 14:18:02 +0100262
263 /*
264 * Switch to NS state to write Non secure ICC_SRE_EL1 and
265 * ICC_SRE_EL2 registers.
266 */
267 write_scr_el3(scr_el3 | SCR_NS_BIT);
268 isb();
269
270 write_icc_sre_el2(read_icc_sre_el2() | icc_sre_el3);
271 write_icc_sre_el1(ICC_SRE_SRE_BIT);
272 isb();
273
274 /* Switch to secure state. */
275 write_scr_el3(scr_el3 & (~SCR_NS_BIT));
276 isb();
277
James kung05403eb2019-05-31 15:40:05 +0800278 /* Write the secure ICC_SRE_EL1 register */
279 write_icc_sre_el1(ICC_SRE_SRE_BIT);
280 isb();
281
Achin Gupta92712a52015-09-03 14:18:02 +0100282 /* Program the idle priority in the PMR */
283 write_icc_pmr_el1(GIC_PRI_MASK);
284
285 /* Enable Group0 interrupts */
286 write_icc_igrpen0_el1(IGRPEN1_EL1_ENABLE_G0_BIT);
287
288 /* Enable Group1 Secure interrupts */
289 write_icc_igrpen1_el3(read_icc_igrpen1_el3() |
290 IGRPEN1_EL3_ENABLE_G1S_BIT);
Achin Gupta92712a52015-09-03 14:18:02 +0100291 isb();
292}
293
294/*******************************************************************************
295 * This function disables the GIC CPU interface of the calling CPU using
296 * only system register accesses.
297 ******************************************************************************/
298void gicv3_cpuif_disable(unsigned int proc_num)
299{
300 uintptr_t gicr_base;
301
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100302 assert(gicv3_driver_data != NULL);
Jeenu Viswambharand7a901e2016-12-06 16:15:22 +0000303 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100304 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Achin Gupta92712a52015-09-03 14:18:02 +0100305
306 assert(IS_IN_EL3());
307
308 /* Disable legacy interrupt bypass */
309 write_icc_sre_el3(read_icc_sre_el3() |
310 (ICC_SRE_DIB_BIT | ICC_SRE_DFB_BIT));
311
312 /* Disable Group0 interrupts */
313 write_icc_igrpen0_el1(read_icc_igrpen0_el1() &
314 ~IGRPEN1_EL1_ENABLE_G0_BIT);
315
Sudeep Holla869e3db2016-08-04 16:14:50 +0100316 /* Disable Group1 Secure and Non-Secure interrupts */
Achin Gupta92712a52015-09-03 14:18:02 +0100317 write_icc_igrpen1_el3(read_icc_igrpen1_el3() &
Sudeep Holla869e3db2016-08-04 16:14:50 +0100318 ~(IGRPEN1_EL3_ENABLE_G1NS_BIT |
319 IGRPEN1_EL3_ENABLE_G1S_BIT));
Achin Gupta92712a52015-09-03 14:18:02 +0100320
321 /* Synchronise accesses to group enable registers */
322 isb();
323
324 /* Mark the connected core as asleep */
Jeenu Viswambharand7a901e2016-12-06 16:15:22 +0000325 gicr_base = gicv3_driver_data->rdistif_base_addrs[proc_num];
Madhukar Pappireddy5fd1f9d2019-05-15 18:25:41 -0500326 assert(gicr_base != 0U);
Achin Gupta92712a52015-09-03 14:18:02 +0100327 gicv3_rdistif_mark_core_asleep(gicr_base);
328}
329
330/*******************************************************************************
331 * This function returns the id of the highest priority pending interrupt at
332 * the GIC cpu interface.
333 ******************************************************************************/
334unsigned int gicv3_get_pending_interrupt_id(void)
335{
336 unsigned int id;
337
338 assert(IS_IN_EL3());
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100339 id = (uint32_t)read_icc_hppir0_el1() & HPPIR0_EL1_INTID_MASK;
Achin Gupta92712a52015-09-03 14:18:02 +0100340
341 /*
342 * If the ID is special identifier corresponding to G1S or G1NS
343 * interrupt, then read the highest pending group 1 interrupt.
344 */
345 if ((id == PENDING_G1S_INTID) || (id == PENDING_G1NS_INTID))
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100346 return (uint32_t)read_icc_hppir1_el1() & HPPIR1_EL1_INTID_MASK;
Achin Gupta92712a52015-09-03 14:18:02 +0100347
348 return id;
349}
350
351/*******************************************************************************
352 * This function returns the type of the highest priority pending interrupt at
353 * the GIC cpu interface. The return values can be one of the following :
354 * PENDING_G1S_INTID : The interrupt type is secure Group 1.
355 * PENDING_G1NS_INTID : The interrupt type is non secure Group 1.
356 * 0 - 1019 : The interrupt type is secure Group 0.
357 * GIC_SPURIOUS_INTERRUPT : there is no pending interrupt with
358 * sufficient priority to be signaled
359 ******************************************************************************/
360unsigned int gicv3_get_pending_interrupt_type(void)
361{
362 assert(IS_IN_EL3());
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100363 return (uint32_t)read_icc_hppir0_el1() & HPPIR0_EL1_INTID_MASK;
Achin Gupta92712a52015-09-03 14:18:02 +0100364}
365
366/*******************************************************************************
367 * This function returns the type of the interrupt id depending upon the group
368 * this interrupt has been configured under by the interrupt controller i.e.
369 * group0 or group1 Secure / Non Secure. The return value can be one of the
370 * following :
Soby Mathew5c5c36b2015-12-03 14:12:54 +0000371 * INTR_GROUP0 : The interrupt type is a Secure Group 0 interrupt
372 * INTR_GROUP1S : The interrupt type is a Secure Group 1 secure interrupt
373 * INTR_GROUP1NS: The interrupt type is a Secure Group 1 non secure
Achin Gupta92712a52015-09-03 14:18:02 +0100374 * interrupt.
375 ******************************************************************************/
376unsigned int gicv3_get_interrupt_type(unsigned int id,
377 unsigned int proc_num)
378{
379 unsigned int igroup, grpmodr;
380 uintptr_t gicr_base;
381
382 assert(IS_IN_EL3());
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100383 assert(gicv3_driver_data != NULL);
Achin Gupta92712a52015-09-03 14:18:02 +0100384
385 /* Ensure the parameters are valid */
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100386 assert((id < PENDING_G1S_INTID) || (id >= MIN_LPI_ID));
Jeenu Viswambharand7a901e2016-12-06 16:15:22 +0000387 assert(proc_num < gicv3_driver_data->rdistif_num);
Achin Gupta92712a52015-09-03 14:18:02 +0100388
389 /* All LPI interrupts are Group 1 non secure */
390 if (id >= MIN_LPI_ID)
Soby Mathew5c5c36b2015-12-03 14:12:54 +0000391 return INTR_GROUP1NS;
Achin Gupta92712a52015-09-03 14:18:02 +0100392
393 if (id < MIN_SPI_ID) {
Andrew F. Davis25a17a22018-08-30 14:30:54 -0500394 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Jeenu Viswambharand7a901e2016-12-06 16:15:22 +0000395 gicr_base = gicv3_driver_data->rdistif_base_addrs[proc_num];
Achin Gupta92712a52015-09-03 14:18:02 +0100396 igroup = gicr_get_igroupr0(gicr_base, id);
397 grpmodr = gicr_get_igrpmodr0(gicr_base, id);
398 } else {
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100399 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharand7a901e2016-12-06 16:15:22 +0000400 igroup = gicd_get_igroupr(gicv3_driver_data->gicd_base, id);
401 grpmodr = gicd_get_igrpmodr(gicv3_driver_data->gicd_base, id);
Achin Gupta92712a52015-09-03 14:18:02 +0100402 }
403
404 /*
405 * If the IGROUP bit is set, then it is a Group 1 Non secure
406 * interrupt
407 */
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100408 if (igroup != 0U)
Soby Mathew5c5c36b2015-12-03 14:12:54 +0000409 return INTR_GROUP1NS;
Achin Gupta92712a52015-09-03 14:18:02 +0100410
411 /* If the GRPMOD bit is set, then it is a Group 1 Secure interrupt */
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100412 if (grpmodr != 0U)
Soby Mathew5c5c36b2015-12-03 14:12:54 +0000413 return INTR_GROUP1S;
Achin Gupta92712a52015-09-03 14:18:02 +0100414
415 /* Else it is a Group 0 Secure interrupt */
Soby Mathew5c5c36b2015-12-03 14:12:54 +0000416 return INTR_GROUP0;
Achin Gupta92712a52015-09-03 14:18:02 +0100417}
Soby Mathew327548c2017-07-13 15:19:51 +0100418
419/*****************************************************************************
Soby Mathewf6f1a322017-07-18 16:12:45 +0100420 * Function to save and disable the GIC ITS register context. The power
421 * management of GIC ITS is implementation-defined and this function doesn't
422 * save any memory structures required to support ITS. As the sequence to save
423 * this state is implementation defined, it should be executed in platform
424 * specific code. Calling this function alone and then powering down the GIC and
425 * ITS without implementing the aforementioned platform specific code will
426 * corrupt the ITS state.
427 *
428 * This function must be invoked after the GIC CPU interface is disabled.
429 *****************************************************************************/
430void gicv3_its_save_disable(uintptr_t gits_base, gicv3_its_ctx_t * const its_ctx)
431{
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100432 unsigned int i;
Soby Mathewf6f1a322017-07-18 16:12:45 +0100433
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100434 assert(gicv3_driver_data != NULL);
Soby Mathewf6f1a322017-07-18 16:12:45 +0100435 assert(IS_IN_EL3());
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100436 assert(its_ctx != NULL);
437 assert(gits_base != 0U);
Soby Mathewf6f1a322017-07-18 16:12:45 +0100438
439 its_ctx->gits_ctlr = gits_read_ctlr(gits_base);
440
441 /* Disable the ITS */
442 gits_write_ctlr(gits_base, its_ctx->gits_ctlr &
443 (~GITS_CTLR_ENABLED_BIT));
444
445 /* Wait for quiescent state */
446 gits_wait_for_quiescent_bit(gits_base);
447
448 its_ctx->gits_cbaser = gits_read_cbaser(gits_base);
449 its_ctx->gits_cwriter = gits_read_cwriter(gits_base);
450
451 for (i = 0; i < ARRAY_SIZE(its_ctx->gits_baser); i++)
452 its_ctx->gits_baser[i] = gits_read_baser(gits_base, i);
453}
454
455/*****************************************************************************
456 * Function to restore the GIC ITS register context. The power
457 * management of GIC ITS is implementation defined and this function doesn't
458 * restore any memory structures required to support ITS. The assumption is
459 * that these structures are in memory and are retained during system suspend.
460 *
461 * This must be invoked before the GIC CPU interface is enabled.
462 *****************************************************************************/
463void gicv3_its_restore(uintptr_t gits_base, const gicv3_its_ctx_t * const its_ctx)
464{
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100465 unsigned int i;
Soby Mathewf6f1a322017-07-18 16:12:45 +0100466
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100467 assert(gicv3_driver_data != NULL);
Soby Mathewf6f1a322017-07-18 16:12:45 +0100468 assert(IS_IN_EL3());
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100469 assert(its_ctx != NULL);
470 assert(gits_base != 0U);
Soby Mathewf6f1a322017-07-18 16:12:45 +0100471
472 /* Assert that the GITS is disabled and quiescent */
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100473 assert((gits_read_ctlr(gits_base) & GITS_CTLR_ENABLED_BIT) == 0U);
474 assert((gits_read_ctlr(gits_base) & GITS_CTLR_QUIESCENT_BIT) != 0U);
Soby Mathewf6f1a322017-07-18 16:12:45 +0100475
476 gits_write_cbaser(gits_base, its_ctx->gits_cbaser);
477 gits_write_cwriter(gits_base, its_ctx->gits_cwriter);
478
479 for (i = 0; i < ARRAY_SIZE(its_ctx->gits_baser); i++)
480 gits_write_baser(gits_base, i, its_ctx->gits_baser[i]);
481
482 /* Restore the ITS CTLR but leave the ITS disabled */
483 gits_write_ctlr(gits_base, its_ctx->gits_ctlr &
484 (~GITS_CTLR_ENABLED_BIT));
485}
486
487/*****************************************************************************
Soby Mathew327548c2017-07-13 15:19:51 +0100488 * Function to save the GIC Redistributor register context. This function
489 * must be invoked after CPU interface disable and prior to Distributor save.
490 *****************************************************************************/
491void gicv3_rdistif_save(unsigned int proc_num, gicv3_redist_ctx_t * const rdist_ctx)
492{
493 uintptr_t gicr_base;
494 unsigned int int_id;
495
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100496 assert(gicv3_driver_data != NULL);
Soby Mathew327548c2017-07-13 15:19:51 +0100497 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100498 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Soby Mathew327548c2017-07-13 15:19:51 +0100499 assert(IS_IN_EL3());
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100500 assert(rdist_ctx != NULL);
Soby Mathew327548c2017-07-13 15:19:51 +0100501
502 gicr_base = gicv3_driver_data->rdistif_base_addrs[proc_num];
503
504 /*
505 * Wait for any write to GICR_CTLR to complete before trying to save any
506 * state.
507 */
508 gicr_wait_for_pending_write(gicr_base);
509
510 rdist_ctx->gicr_ctlr = gicr_read_ctlr(gicr_base);
511
512 rdist_ctx->gicr_propbaser = gicr_read_propbaser(gicr_base);
513 rdist_ctx->gicr_pendbaser = gicr_read_pendbaser(gicr_base);
514
515 rdist_ctx->gicr_igroupr0 = gicr_read_igroupr0(gicr_base);
516 rdist_ctx->gicr_isenabler0 = gicr_read_isenabler0(gicr_base);
517 rdist_ctx->gicr_ispendr0 = gicr_read_ispendr0(gicr_base);
518 rdist_ctx->gicr_isactiver0 = gicr_read_isactiver0(gicr_base);
519 rdist_ctx->gicr_icfgr0 = gicr_read_icfgr0(gicr_base);
520 rdist_ctx->gicr_icfgr1 = gicr_read_icfgr1(gicr_base);
521 rdist_ctx->gicr_igrpmodr0 = gicr_read_igrpmodr0(gicr_base);
522 rdist_ctx->gicr_nsacr = gicr_read_nsacr(gicr_base);
523 for (int_id = MIN_SGI_ID; int_id < TOTAL_PCPU_INTR_NUM;
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100524 int_id += (1U << IPRIORITYR_SHIFT)) {
Soby Mathew327548c2017-07-13 15:19:51 +0100525 rdist_ctx->gicr_ipriorityr[(int_id - MIN_SGI_ID) >> IPRIORITYR_SHIFT] =
526 gicr_read_ipriorityr(gicr_base, int_id);
527 }
528
529
530 /*
531 * Call the pre-save hook that implements the IMP DEF sequence that may
532 * be required on some GIC implementations. As this may need to access
533 * the Redistributor registers, we pass it proc_num.
534 */
535 gicv3_distif_pre_save(proc_num);
536}
537
538/*****************************************************************************
539 * Function to restore the GIC Redistributor register context. We disable
540 * LPI and per-cpu interrupts before we start restore of the Redistributor.
541 * This function must be invoked after Distributor restore but prior to
542 * CPU interface enable. The pending and active interrupts are restored
543 * after the interrupts are fully configured and enabled.
544 *****************************************************************************/
545void gicv3_rdistif_init_restore(unsigned int proc_num,
546 const gicv3_redist_ctx_t * const rdist_ctx)
547{
548 uintptr_t gicr_base;
549 unsigned int int_id;
550
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100551 assert(gicv3_driver_data != NULL);
Soby Mathew327548c2017-07-13 15:19:51 +0100552 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100553 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Soby Mathew327548c2017-07-13 15:19:51 +0100554 assert(IS_IN_EL3());
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100555 assert(rdist_ctx != NULL);
Soby Mathew327548c2017-07-13 15:19:51 +0100556
557 gicr_base = gicv3_driver_data->rdistif_base_addrs[proc_num];
558
559 /* Power on redistributor */
560 gicv3_rdistif_on(proc_num);
561
562 /*
563 * Call the post-restore hook that implements the IMP DEF sequence that
564 * may be required on some GIC implementations. As this may need to
565 * access the Redistributor registers, we pass it proc_num.
566 */
567 gicv3_distif_post_restore(proc_num);
568
569 /*
570 * Disable all SGIs (imp. def.)/PPIs before configuring them. This is a
571 * more scalable approach as it avoids clearing the enable bits in the
572 * GICD_CTLR
573 */
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100574 gicr_write_icenabler0(gicr_base, ~0U);
Soby Mathew327548c2017-07-13 15:19:51 +0100575 /* Wait for pending writes to GICR_ICENABLER */
576 gicr_wait_for_pending_write(gicr_base);
577
578 /*
579 * Disable the LPIs to avoid unpredictable behavior when writing to
580 * GICR_PROPBASER and GICR_PENDBASER.
581 */
582 gicr_write_ctlr(gicr_base,
583 rdist_ctx->gicr_ctlr & ~(GICR_CTLR_EN_LPIS_BIT));
584
585 /* Restore registers' content */
586 gicr_write_propbaser(gicr_base, rdist_ctx->gicr_propbaser);
587 gicr_write_pendbaser(gicr_base, rdist_ctx->gicr_pendbaser);
588
589 gicr_write_igroupr0(gicr_base, rdist_ctx->gicr_igroupr0);
590
591 for (int_id = MIN_SGI_ID; int_id < TOTAL_PCPU_INTR_NUM;
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100592 int_id += (1U << IPRIORITYR_SHIFT)) {
Soby Mathew327548c2017-07-13 15:19:51 +0100593 gicr_write_ipriorityr(gicr_base, int_id,
594 rdist_ctx->gicr_ipriorityr[
595 (int_id - MIN_SGI_ID) >> IPRIORITYR_SHIFT]);
596 }
597
598 gicr_write_icfgr0(gicr_base, rdist_ctx->gicr_icfgr0);
599 gicr_write_icfgr1(gicr_base, rdist_ctx->gicr_icfgr1);
600 gicr_write_igrpmodr0(gicr_base, rdist_ctx->gicr_igrpmodr0);
601 gicr_write_nsacr(gicr_base, rdist_ctx->gicr_nsacr);
602
603 /* Restore after group and priorities are set */
604 gicr_write_ispendr0(gicr_base, rdist_ctx->gicr_ispendr0);
605 gicr_write_isactiver0(gicr_base, rdist_ctx->gicr_isactiver0);
606
607 /*
608 * Wait for all writes to the Distributor to complete before enabling
609 * the SGI and PPIs.
610 */
611 gicr_wait_for_upstream_pending_write(gicr_base);
612 gicr_write_isenabler0(gicr_base, rdist_ctx->gicr_isenabler0);
613
614 /*
615 * Restore GICR_CTLR.Enable_LPIs bit and wait for pending writes in case
616 * the first write to GICR_CTLR was still in flight (this write only
617 * restores GICR_CTLR.Enable_LPIs and no waiting is required for this
618 * bit).
619 */
620 gicr_write_ctlr(gicr_base, rdist_ctx->gicr_ctlr);
621 gicr_wait_for_pending_write(gicr_base);
622}
623
624/*****************************************************************************
625 * Function to save the GIC Distributor register context. This function
626 * must be invoked after CPU interface disable and Redistributor save.
627 *****************************************************************************/
628void gicv3_distif_save(gicv3_dist_ctx_t * const dist_ctx)
629{
630 unsigned int num_ints;
631
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100632 assert(gicv3_driver_data != NULL);
633 assert(gicv3_driver_data->gicd_base != 0U);
Soby Mathew327548c2017-07-13 15:19:51 +0100634 assert(IS_IN_EL3());
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100635 assert(dist_ctx != NULL);
Soby Mathew327548c2017-07-13 15:19:51 +0100636
637 uintptr_t gicd_base = gicv3_driver_data->gicd_base;
638
639 num_ints = gicd_read_typer(gicd_base);
640 num_ints &= TYPER_IT_LINES_NO_MASK;
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100641 num_ints = (num_ints + 1U) << 5;
Soby Mathew327548c2017-07-13 15:19:51 +0100642
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100643 assert(num_ints <= (MAX_SPI_ID + 1U));
Soby Mathew327548c2017-07-13 15:19:51 +0100644
645 /* Wait for pending write to complete */
646 gicd_wait_for_pending_write(gicd_base);
647
648 /* Save the GICD_CTLR */
649 dist_ctx->gicd_ctlr = gicd_read_ctlr(gicd_base);
650
651 /* Save GICD_IGROUPR for INTIDs 32 - 1020 */
652 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, igroupr, IGROUPR);
653
654 /* Save GICD_ISENABLER for INT_IDs 32 - 1020 */
655 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, isenabler, ISENABLER);
656
657 /* Save GICD_ISPENDR for INTIDs 32 - 1020 */
658 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, ispendr, ISPENDR);
659
660 /* Save GICD_ISACTIVER for INTIDs 32 - 1020 */
661 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, isactiver, ISACTIVER);
662
663 /* Save GICD_IPRIORITYR for INTIDs 32 - 1020 */
664 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, ipriorityr, IPRIORITYR);
665
666 /* Save GICD_ICFGR for INTIDs 32 - 1020 */
667 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, icfgr, ICFGR);
668
669 /* Save GICD_IGRPMODR for INTIDs 32 - 1020 */
670 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, igrpmodr, IGRPMODR);
671
672 /* Save GICD_NSACR for INTIDs 32 - 1020 */
673 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, nsacr, NSACR);
674
675 /* Save GICD_IROUTER for INTIDs 32 - 1024 */
676 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, irouter, IROUTER);
677
678 /*
679 * GICD_ITARGETSR<n> and GICD_SPENDSGIR<n> are RAZ/WI when
680 * GICD_CTLR.ARE_(S|NS) bits are set which is the case for our GICv3
681 * driver.
682 */
683}
684
685/*****************************************************************************
686 * Function to restore the GIC Distributor register context. We disable G0, G1S
687 * and G1NS interrupt groups before we start restore of the Distributor. This
688 * function must be invoked prior to Redistributor restore and CPU interface
689 * enable. The pending and active interrupts are restored after the interrupts
690 * are fully configured and enabled.
691 *****************************************************************************/
692void gicv3_distif_init_restore(const gicv3_dist_ctx_t * const dist_ctx)
693{
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100694 unsigned int num_ints = 0U;
Soby Mathew327548c2017-07-13 15:19:51 +0100695
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100696 assert(gicv3_driver_data != NULL);
697 assert(gicv3_driver_data->gicd_base != 0U);
Soby Mathew327548c2017-07-13 15:19:51 +0100698 assert(IS_IN_EL3());
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100699 assert(dist_ctx != NULL);
Soby Mathew327548c2017-07-13 15:19:51 +0100700
701 uintptr_t gicd_base = gicv3_driver_data->gicd_base;
702
703 /*
704 * Clear the "enable" bits for G0/G1S/G1NS interrupts before configuring
705 * the ARE_S bit. The Distributor might generate a system error
706 * otherwise.
707 */
708 gicd_clr_ctlr(gicd_base,
709 CTLR_ENABLE_G0_BIT |
710 CTLR_ENABLE_G1S_BIT |
711 CTLR_ENABLE_G1NS_BIT,
712 RWP_TRUE);
713
714 /* Set the ARE_S and ARE_NS bit now that interrupts have been disabled */
715 gicd_set_ctlr(gicd_base, CTLR_ARE_S_BIT | CTLR_ARE_NS_BIT, RWP_TRUE);
716
717 num_ints = gicd_read_typer(gicd_base);
718 num_ints &= TYPER_IT_LINES_NO_MASK;
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100719 num_ints = (num_ints + 1U) << 5;
Soby Mathew327548c2017-07-13 15:19:51 +0100720
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100721 assert(num_ints <= (MAX_SPI_ID + 1U));
Soby Mathew327548c2017-07-13 15:19:51 +0100722
723 /* Restore GICD_IGROUPR for INTIDs 32 - 1020 */
724 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, igroupr, IGROUPR);
725
726 /* Restore GICD_IPRIORITYR for INTIDs 32 - 1020 */
727 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, ipriorityr, IPRIORITYR);
728
729 /* Restore GICD_ICFGR for INTIDs 32 - 1020 */
730 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, icfgr, ICFGR);
731
732 /* Restore GICD_IGRPMODR for INTIDs 32 - 1020 */
733 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, igrpmodr, IGRPMODR);
734
735 /* Restore GICD_NSACR for INTIDs 32 - 1020 */
736 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, nsacr, NSACR);
737
738 /* Restore GICD_IROUTER for INTIDs 32 - 1020 */
739 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, irouter, IROUTER);
740
741 /*
742 * Restore ISENABLER, ISPENDR and ISACTIVER after the interrupts are
743 * configured.
744 */
745
746 /* Restore GICD_ISENABLER for INT_IDs 32 - 1020 */
747 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, isenabler, ISENABLER);
748
749 /* Restore GICD_ISPENDR for INTIDs 32 - 1020 */
750 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, ispendr, ISPENDR);
751
752 /* Restore GICD_ISACTIVER for INTIDs 32 - 1020 */
753 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, isactiver, ISACTIVER);
754
755 /* Restore the GICD_CTLR */
756 gicd_write_ctlr(gicd_base, dist_ctx->gicd_ctlr);
757 gicd_wait_for_pending_write(gicd_base);
758
759}
Jeenu Viswambharanb1e957e2017-09-22 08:32:09 +0100760
761/*******************************************************************************
762 * This function gets the priority of the interrupt the processor is currently
763 * servicing.
764 ******************************************************************************/
765unsigned int gicv3_get_running_priority(void)
766{
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100767 return (unsigned int)read_icc_rpr_el1();
Jeenu Viswambharanb1e957e2017-09-22 08:32:09 +0100768}
Jeenu Viswambharan24e70292017-09-22 08:32:09 +0100769
770/*******************************************************************************
771 * This function checks if the interrupt identified by id is active (whether the
772 * state is either active, or active and pending). The proc_num is used if the
773 * interrupt is SGI or PPI and programs the corresponding Redistributor
774 * interface.
775 ******************************************************************************/
776unsigned int gicv3_get_interrupt_active(unsigned int id, unsigned int proc_num)
777{
778 unsigned int value;
779
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100780 assert(gicv3_driver_data != NULL);
781 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharan24e70292017-09-22 08:32:09 +0100782 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100783 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Jeenu Viswambharan24e70292017-09-22 08:32:09 +0100784 assert(id <= MAX_SPI_ID);
785
786 if (id < MIN_SPI_ID) {
787 /* For SGIs and PPIs */
788 value = gicr_get_isactiver0(
789 gicv3_driver_data->rdistif_base_addrs[proc_num], id);
790 } else {
791 value = gicd_get_isactiver(gicv3_driver_data->gicd_base, id);
792 }
793
794 return value;
795}
Jeenu Viswambharan0fcdfff2017-09-22 08:32:09 +0100796
797/*******************************************************************************
798 * This function enables the interrupt identified by id. The proc_num
799 * is used if the interrupt is SGI or PPI, and programs the corresponding
800 * Redistributor interface.
801 ******************************************************************************/
802void gicv3_enable_interrupt(unsigned int id, unsigned int proc_num)
803{
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100804 assert(gicv3_driver_data != NULL);
805 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharan0fcdfff2017-09-22 08:32:09 +0100806 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100807 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Jeenu Viswambharan0fcdfff2017-09-22 08:32:09 +0100808 assert(id <= MAX_SPI_ID);
809
810 /*
811 * Ensure that any shared variable updates depending on out of band
812 * interrupt trigger are observed before enabling interrupt.
813 */
814 dsbishst();
815 if (id < MIN_SPI_ID) {
816 /* For SGIs and PPIs */
817 gicr_set_isenabler0(
818 gicv3_driver_data->rdistif_base_addrs[proc_num],
819 id);
820 } else {
821 gicd_set_isenabler(gicv3_driver_data->gicd_base, id);
822 }
823}
824
825/*******************************************************************************
826 * This function disables the interrupt identified by id. The proc_num
827 * is used if the interrupt is SGI or PPI, and programs the corresponding
828 * Redistributor interface.
829 ******************************************************************************/
830void gicv3_disable_interrupt(unsigned int id, unsigned int proc_num)
831{
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100832 assert(gicv3_driver_data != NULL);
833 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharan0fcdfff2017-09-22 08:32:09 +0100834 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100835 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Jeenu Viswambharan0fcdfff2017-09-22 08:32:09 +0100836 assert(id <= MAX_SPI_ID);
837
838 /*
839 * Disable interrupt, and ensure that any shared variable updates
840 * depending on out of band interrupt trigger are observed afterwards.
841 */
842 if (id < MIN_SPI_ID) {
843 /* For SGIs and PPIs */
844 gicr_set_icenabler0(
845 gicv3_driver_data->rdistif_base_addrs[proc_num],
846 id);
847
848 /* Write to clear enable requires waiting for pending writes */
849 gicr_wait_for_pending_write(
850 gicv3_driver_data->rdistif_base_addrs[proc_num]);
851 } else {
852 gicd_set_icenabler(gicv3_driver_data->gicd_base, id);
853
854 /* Write to clear enable requires waiting for pending writes */
855 gicd_wait_for_pending_write(gicv3_driver_data->gicd_base);
856 }
857
858 dsbishst();
859}
Jeenu Viswambharan447b89d2017-09-22 08:32:09 +0100860
861/*******************************************************************************
862 * This function sets the interrupt priority as supplied for the given interrupt
863 * id.
864 ******************************************************************************/
865void gicv3_set_interrupt_priority(unsigned int id, unsigned int proc_num,
866 unsigned int priority)
867{
868 uintptr_t gicr_base;
869
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100870 assert(gicv3_driver_data != NULL);
871 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharan447b89d2017-09-22 08:32:09 +0100872 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100873 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Jeenu Viswambharan447b89d2017-09-22 08:32:09 +0100874 assert(id <= MAX_SPI_ID);
875
876 if (id < MIN_SPI_ID) {
877 gicr_base = gicv3_driver_data->rdistif_base_addrs[proc_num];
878 gicr_set_ipriorityr(gicr_base, id, priority);
879 } else {
880 gicd_set_ipriorityr(gicv3_driver_data->gicd_base, id, priority);
881 }
882}
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100883
884/*******************************************************************************
885 * This function assigns group for the interrupt identified by id. The proc_num
886 * is used if the interrupt is SGI or PPI, and programs the corresponding
887 * Redistributor interface. The group can be any of GICV3_INTR_GROUP*
888 ******************************************************************************/
889void gicv3_set_interrupt_type(unsigned int id, unsigned int proc_num,
890 unsigned int type)
891{
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100892 bool igroup = false, grpmod = false;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100893 uintptr_t gicr_base;
894
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100895 assert(gicv3_driver_data != NULL);
896 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100897 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100898 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100899
900 switch (type) {
901 case INTR_GROUP1S:
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100902 igroup = false;
903 grpmod = true;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100904 break;
905 case INTR_GROUP0:
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100906 igroup = false;
907 grpmod = false;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100908 break;
909 case INTR_GROUP1NS:
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100910 igroup = true;
911 grpmod = false;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100912 break;
913 default:
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100914 assert(false);
Jonathan Wright39b42212018-03-13 15:24:29 +0000915 break;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100916 }
917
918 if (id < MIN_SPI_ID) {
919 gicr_base = gicv3_driver_data->rdistif_base_addrs[proc_num];
920 if (igroup)
921 gicr_set_igroupr0(gicr_base, id);
922 else
923 gicr_clr_igroupr0(gicr_base, id);
924
925 if (grpmod)
926 gicr_set_igrpmodr0(gicr_base, id);
927 else
928 gicr_clr_igrpmodr0(gicr_base, id);
929 } else {
930 /* Serialize read-modify-write to Distributor registers */
931 spin_lock(&gic_lock);
932 if (igroup)
933 gicd_set_igroupr(gicv3_driver_data->gicd_base, id);
934 else
935 gicd_clr_igroupr(gicv3_driver_data->gicd_base, id);
936
937 if (grpmod)
938 gicd_set_igrpmodr(gicv3_driver_data->gicd_base, id);
939 else
940 gicd_clr_igrpmodr(gicv3_driver_data->gicd_base, id);
941 spin_unlock(&gic_lock);
942 }
943}
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +0100944
945/*******************************************************************************
946 * This function raises the specified Secure Group 0 SGI.
947 *
948 * The target parameter must be a valid MPIDR in the system.
949 ******************************************************************************/
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100950void gicv3_raise_secure_g0_sgi(unsigned int sgi_num, u_register_t target)
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +0100951{
952 unsigned int tgt, aff3, aff2, aff1, aff0;
953 uint64_t sgi_val;
954
955 /* Verify interrupt number is in the SGI range */
956 assert((sgi_num >= MIN_SGI_ID) && (sgi_num < MIN_PPI_ID));
957
958 /* Extract affinity fields from target */
959 aff0 = MPIDR_AFFLVL0_VAL(target);
960 aff1 = MPIDR_AFFLVL1_VAL(target);
961 aff2 = MPIDR_AFFLVL2_VAL(target);
962 aff3 = MPIDR_AFFLVL3_VAL(target);
963
964 /*
965 * Make target list from affinity 0, and ensure GICv3 SGI can target
966 * this PE.
967 */
968 assert(aff0 < GICV3_MAX_SGI_TARGETS);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100969 tgt = BIT_32(aff0);
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +0100970
971 /* Raise SGI to PE specified by its affinity */
972 sgi_val = GICV3_SGIR_VALUE(aff3, aff2, aff1, sgi_num, SGIR_IRM_TO_AFF,
973 tgt);
974
975 /*
976 * Ensure that any shared variable updates depending on out of band
977 * interrupt trigger are observed before raising SGI.
978 */
979 dsbishst();
980 write_icc_sgi0r_el1(sgi_val);
981 isb();
982}
Jeenu Viswambharandce70b32017-09-22 08:32:09 +0100983
984/*******************************************************************************
985 * This function sets the interrupt routing for the given SPI interrupt id.
986 * The interrupt routing is specified in routing mode and mpidr.
987 *
988 * The routing mode can be either of:
989 * - GICV3_IRM_ANY
990 * - GICV3_IRM_PE
991 *
992 * The mpidr is the affinity of the PE to which the interrupt will be routed,
993 * and is ignored for routing mode GICV3_IRM_ANY.
994 ******************************************************************************/
995void gicv3_set_spi_routing(unsigned int id, unsigned int irm, u_register_t mpidr)
996{
997 unsigned long long aff;
998 uint64_t router;
999
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001000 assert(gicv3_driver_data != NULL);
1001 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharandce70b32017-09-22 08:32:09 +01001002
1003 assert((irm == GICV3_IRM_ANY) || (irm == GICV3_IRM_PE));
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001004 assert((id >= MIN_SPI_ID) && (id <= MAX_SPI_ID));
Jeenu Viswambharandce70b32017-09-22 08:32:09 +01001005
1006 aff = gicd_irouter_val_from_mpidr(mpidr, irm);
1007 gicd_write_irouter(gicv3_driver_data->gicd_base, id, aff);
1008
1009 /*
1010 * In implementations that do not require 1 of N distribution of SPIs,
1011 * IRM might be RAZ/WI. Read back and verify IRM bit.
1012 */
1013 if (irm == GICV3_IRM_ANY) {
1014 router = gicd_read_irouter(gicv3_driver_data->gicd_base, id);
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001015 if (((router >> IROUTER_IRM_SHIFT) & IROUTER_IRM_MASK) == 0U) {
Jeenu Viswambharandce70b32017-09-22 08:32:09 +01001016 ERROR("GICv3 implementation doesn't support routing ANY\n");
1017 panic();
1018 }
1019 }
1020}
Jeenu Viswambharaneb1c12c2017-09-22 08:32:09 +01001021
1022/*******************************************************************************
1023 * This function clears the pending status of an interrupt identified by id.
1024 * The proc_num is used if the interrupt is SGI or PPI, and programs the
1025 * corresponding Redistributor interface.
1026 ******************************************************************************/
1027void gicv3_clear_interrupt_pending(unsigned int id, unsigned int proc_num)
1028{
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001029 assert(gicv3_driver_data != NULL);
1030 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharaneb1c12c2017-09-22 08:32:09 +01001031 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001032 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Jeenu Viswambharaneb1c12c2017-09-22 08:32:09 +01001033
1034 /*
1035 * Clear pending interrupt, and ensure that any shared variable updates
1036 * depending on out of band interrupt trigger are observed afterwards.
1037 */
1038 if (id < MIN_SPI_ID) {
1039 /* For SGIs and PPIs */
1040 gicr_set_icpendr0(gicv3_driver_data->rdistif_base_addrs[proc_num],
1041 id);
1042 } else {
1043 gicd_set_icpendr(gicv3_driver_data->gicd_base, id);
1044 }
1045 dsbishst();
1046}
1047
1048/*******************************************************************************
1049 * This function sets the pending status of an interrupt identified by id.
1050 * The proc_num is used if the interrupt is SGI or PPI and programs the
1051 * corresponding Redistributor interface.
1052 ******************************************************************************/
1053void gicv3_set_interrupt_pending(unsigned int id, unsigned int proc_num)
1054{
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001055 assert(gicv3_driver_data != NULL);
1056 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharaneb1c12c2017-09-22 08:32:09 +01001057 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001058 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Jeenu Viswambharaneb1c12c2017-09-22 08:32:09 +01001059
1060 /*
1061 * Ensure that any shared variable updates depending on out of band
1062 * interrupt trigger are observed before setting interrupt pending.
1063 */
1064 dsbishst();
1065 if (id < MIN_SPI_ID) {
1066 /* For SGIs and PPIs */
1067 gicr_set_ispendr0(gicv3_driver_data->rdistif_base_addrs[proc_num],
1068 id);
1069 } else {
1070 gicd_set_ispendr(gicv3_driver_data->gicd_base, id);
1071 }
1072}
Jeenu Viswambharan62505072017-09-22 08:32:09 +01001073
1074/*******************************************************************************
1075 * This function sets the PMR register with the supplied value. Returns the
1076 * original PMR.
1077 ******************************************************************************/
1078unsigned int gicv3_set_pmr(unsigned int mask)
1079{
1080 unsigned int old_mask;
1081
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001082 old_mask = (uint32_t) read_icc_pmr_el1();
Jeenu Viswambharan62505072017-09-22 08:32:09 +01001083
1084 /*
1085 * Order memory updates w.r.t. PMR write, and ensure they're visible
1086 * before potential out of band interrupt trigger because of PMR update.
1087 * PMR system register writes are self-synchronizing, so no ISB required
1088 * thereafter.
1089 */
1090 dsbishst();
1091 write_icc_pmr_el1(mask);
1092
1093 return old_mask;
1094}
Madhukar Pappireddy5fd1f9d2019-05-15 18:25:41 -05001095
1096/*******************************************************************************
1097 * This function delegates the responsibility of discovering the corresponding
1098 * Redistributor frames to each CPU itself. It is a modified version of
1099 * gicv3_rdistif_base_addrs_probe() and is executed by each CPU in the platform
1100 * unlike the previous way in which only the Primary CPU did the discovery of
1101 * all the Redistributor frames for every CPU. It also handles the scenario in
1102 * which the frames of various CPUs are not contiguous in physical memory.
1103 ******************************************************************************/
1104int gicv3_rdistif_probe(const uintptr_t gicr_frame)
1105{
1106 u_register_t mpidr;
1107 unsigned int proc_num, proc_self;
1108 uint64_t typer_val;
1109 uintptr_t rdistif_base;
1110 bool gicr_frame_found = false;
1111
1112 assert(gicv3_driver_data->gicr_base == 0U);
1113
1114 /* Ensure this function is called with Data Cache enabled */
1115#ifndef __aarch64__
1116 assert((read_sctlr() & SCTLR_C_BIT) != 0U);
1117#else
1118 assert((read_sctlr_el3() & SCTLR_C_BIT) != 0U);
1119#endif /* !__aarch64__ */
1120
1121 proc_self = gicv3_driver_data->mpidr_to_core_pos(read_mpidr_el1());
1122 rdistif_base = gicr_frame;
1123 do {
1124 typer_val = gicr_read_typer(rdistif_base);
1125 if (gicv3_driver_data->mpidr_to_core_pos != NULL) {
1126 mpidr = mpidr_from_gicr_typer(typer_val);
1127 proc_num = gicv3_driver_data->mpidr_to_core_pos(mpidr);
1128 } else {
1129 proc_num = (unsigned int)(typer_val >> TYPER_PROC_NUM_SHIFT) &
1130 TYPER_PROC_NUM_MASK;
1131 }
1132 if (proc_num == proc_self) {
1133 /* The base address doesn't need to be initialized on
1134 * every warm boot.
1135 */
1136 if (gicv3_driver_data->rdistif_base_addrs[proc_num] != 0U)
1137 return 0;
1138 gicv3_driver_data->rdistif_base_addrs[proc_num] =
1139 rdistif_base;
1140 gicr_frame_found = true;
1141 break;
1142 }
1143 rdistif_base += (uintptr_t)(ULL(1) << GICR_PCPUBASE_SHIFT);
1144 } while ((typer_val & TYPER_LAST_BIT) == 0U);
1145
1146 if (!gicr_frame_found)
1147 return -1;
1148
1149 /*
1150 * Flush the driver data to ensure coherency. This is
1151 * not required if platform has HW_ASSISTED_COHERENCY
1152 * enabled.
1153 */
1154#if !HW_ASSISTED_COHERENCY
1155 /*
1156 * Flush the rdistif_base_addrs[] contents linked to the GICv3 driver.
1157 */
1158 flush_dcache_range((uintptr_t)&(gicv3_driver_data->rdistif_base_addrs[proc_num]),
1159 sizeof(*(gicv3_driver_data->rdistif_base_addrs)));
1160#endif
1161 return 0; /* Found matching GICR frame */
1162}