blob: a672b18f324b9bb35b047b7fcaadf0a20dd03764 [file] [log] [blame]
Achin Gupta92712a52015-09-03 14:18:02 +01001/*
Louis Mayencourt1c819c32020-01-24 13:30:28 +00002 * Copyright (c) 2015-2020, 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;
Louis Mayencourt1c819c32020-01-24 13:30:28 +0000238 u_register_t scr_el3;
Achin Gupta92712a52015-09-03 14:18:02 +0100239 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
Louis Mayencourt1c819c32020-01-24 13:30:28 +0000261 scr_el3 = 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
Alexei Fedorov68f26882019-09-13 15:47:13 +0100643 /* Filter out special INTIDs 1020-1023 */
644 if (num_ints > (MAX_SPI_ID + 1U))
645 num_ints = MAX_SPI_ID + 1U;
Soby Mathew327548c2017-07-13 15:19:51 +0100646
647 /* Wait for pending write to complete */
648 gicd_wait_for_pending_write(gicd_base);
649
650 /* Save the GICD_CTLR */
651 dist_ctx->gicd_ctlr = gicd_read_ctlr(gicd_base);
652
Alexei Fedorov68f26882019-09-13 15:47:13 +0100653 /* Save GICD_IGROUPR for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100654 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, igroupr, IGROUPR);
655
Alexei Fedorov68f26882019-09-13 15:47:13 +0100656 /* Save GICD_ISENABLER for INT_IDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100657 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, isenabler, ISENABLER);
658
Alexei Fedorov68f26882019-09-13 15:47:13 +0100659 /* Save GICD_ISPENDR for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100660 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, ispendr, ISPENDR);
661
Alexei Fedorov68f26882019-09-13 15:47:13 +0100662 /* Save GICD_ISACTIVER for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100663 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, isactiver, ISACTIVER);
664
Alexei Fedorov68f26882019-09-13 15:47:13 +0100665 /* Save GICD_IPRIORITYR for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100666 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, ipriorityr, IPRIORITYR);
667
Alexei Fedorov68f26882019-09-13 15:47:13 +0100668 /* Save GICD_ICFGR for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100669 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, icfgr, ICFGR);
670
Alexei Fedorov68f26882019-09-13 15:47:13 +0100671 /* Save GICD_IGRPMODR for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100672 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, igrpmodr, IGRPMODR);
673
Alexei Fedorov68f26882019-09-13 15:47:13 +0100674 /* Save GICD_NSACR for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100675 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, nsacr, NSACR);
676
Alexei Fedorov68f26882019-09-13 15:47:13 +0100677 /* Save GICD_IROUTER for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100678 SAVE_GICD_REGS(gicd_base, dist_ctx, num_ints, irouter, IROUTER);
679
680 /*
681 * GICD_ITARGETSR<n> and GICD_SPENDSGIR<n> are RAZ/WI when
682 * GICD_CTLR.ARE_(S|NS) bits are set which is the case for our GICv3
683 * driver.
684 */
685}
686
687/*****************************************************************************
688 * Function to restore the GIC Distributor register context. We disable G0, G1S
689 * and G1NS interrupt groups before we start restore of the Distributor. This
690 * function must be invoked prior to Redistributor restore and CPU interface
691 * enable. The pending and active interrupts are restored after the interrupts
692 * are fully configured and enabled.
693 *****************************************************************************/
694void gicv3_distif_init_restore(const gicv3_dist_ctx_t * const dist_ctx)
695{
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100696 unsigned int num_ints = 0U;
Soby Mathew327548c2017-07-13 15:19:51 +0100697
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100698 assert(gicv3_driver_data != NULL);
699 assert(gicv3_driver_data->gicd_base != 0U);
Soby Mathew327548c2017-07-13 15:19:51 +0100700 assert(IS_IN_EL3());
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100701 assert(dist_ctx != NULL);
Soby Mathew327548c2017-07-13 15:19:51 +0100702
703 uintptr_t gicd_base = gicv3_driver_data->gicd_base;
704
705 /*
706 * Clear the "enable" bits for G0/G1S/G1NS interrupts before configuring
707 * the ARE_S bit. The Distributor might generate a system error
708 * otherwise.
709 */
710 gicd_clr_ctlr(gicd_base,
711 CTLR_ENABLE_G0_BIT |
712 CTLR_ENABLE_G1S_BIT |
713 CTLR_ENABLE_G1NS_BIT,
714 RWP_TRUE);
715
716 /* Set the ARE_S and ARE_NS bit now that interrupts have been disabled */
717 gicd_set_ctlr(gicd_base, CTLR_ARE_S_BIT | CTLR_ARE_NS_BIT, RWP_TRUE);
718
719 num_ints = gicd_read_typer(gicd_base);
720 num_ints &= TYPER_IT_LINES_NO_MASK;
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100721 num_ints = (num_ints + 1U) << 5;
Soby Mathew327548c2017-07-13 15:19:51 +0100722
Alexei Fedorov68f26882019-09-13 15:47:13 +0100723 /* Filter out special INTIDs 1020-1023 */
724 if (num_ints > (MAX_SPI_ID + 1U))
725 num_ints = MAX_SPI_ID + 1U;
Soby Mathew327548c2017-07-13 15:19:51 +0100726
Alexei Fedorov68f26882019-09-13 15:47:13 +0100727 /* Restore GICD_IGROUPR for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100728 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, igroupr, IGROUPR);
729
Alexei Fedorov68f26882019-09-13 15:47:13 +0100730 /* Restore GICD_IPRIORITYR for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100731 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, ipriorityr, IPRIORITYR);
732
Alexei Fedorov68f26882019-09-13 15:47:13 +0100733 /* Restore GICD_ICFGR for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100734 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, icfgr, ICFGR);
735
Alexei Fedorov68f26882019-09-13 15:47:13 +0100736 /* Restore GICD_IGRPMODR for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100737 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, igrpmodr, IGRPMODR);
738
Alexei Fedorov68f26882019-09-13 15:47:13 +0100739 /* Restore GICD_NSACR for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100740 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, nsacr, NSACR);
741
Alexei Fedorov68f26882019-09-13 15:47:13 +0100742 /* Restore GICD_IROUTER for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100743 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, irouter, IROUTER);
744
745 /*
746 * Restore ISENABLER, ISPENDR and ISACTIVER after the interrupts are
747 * configured.
748 */
749
Alexei Fedorov68f26882019-09-13 15:47:13 +0100750 /* Restore GICD_ISENABLER for INT_IDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100751 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, isenabler, ISENABLER);
752
Alexei Fedorov68f26882019-09-13 15:47:13 +0100753 /* Restore GICD_ISPENDR for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100754 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, ispendr, ISPENDR);
755
Alexei Fedorov68f26882019-09-13 15:47:13 +0100756 /* Restore GICD_ISACTIVER for INTIDs 32 - 1019 */
Soby Mathew327548c2017-07-13 15:19:51 +0100757 RESTORE_GICD_REGS(gicd_base, dist_ctx, num_ints, isactiver, ISACTIVER);
758
759 /* Restore the GICD_CTLR */
760 gicd_write_ctlr(gicd_base, dist_ctx->gicd_ctlr);
761 gicd_wait_for_pending_write(gicd_base);
762
763}
Jeenu Viswambharanb1e957e2017-09-22 08:32:09 +0100764
765/*******************************************************************************
766 * This function gets the priority of the interrupt the processor is currently
767 * servicing.
768 ******************************************************************************/
769unsigned int gicv3_get_running_priority(void)
770{
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100771 return (unsigned int)read_icc_rpr_el1();
Jeenu Viswambharanb1e957e2017-09-22 08:32:09 +0100772}
Jeenu Viswambharan24e70292017-09-22 08:32:09 +0100773
774/*******************************************************************************
775 * This function checks if the interrupt identified by id is active (whether the
776 * state is either active, or active and pending). The proc_num is used if the
777 * interrupt is SGI or PPI and programs the corresponding Redistributor
778 * interface.
779 ******************************************************************************/
780unsigned int gicv3_get_interrupt_active(unsigned int id, unsigned int proc_num)
781{
782 unsigned int value;
783
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100784 assert(gicv3_driver_data != NULL);
785 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharan24e70292017-09-22 08:32:09 +0100786 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100787 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Jeenu Viswambharan24e70292017-09-22 08:32:09 +0100788 assert(id <= MAX_SPI_ID);
789
790 if (id < MIN_SPI_ID) {
791 /* For SGIs and PPIs */
792 value = gicr_get_isactiver0(
793 gicv3_driver_data->rdistif_base_addrs[proc_num], id);
794 } else {
795 value = gicd_get_isactiver(gicv3_driver_data->gicd_base, id);
796 }
797
798 return value;
799}
Jeenu Viswambharan0fcdfff2017-09-22 08:32:09 +0100800
801/*******************************************************************************
802 * This function enables the interrupt identified by id. The proc_num
803 * is used if the interrupt is SGI or PPI, and programs the corresponding
804 * Redistributor interface.
805 ******************************************************************************/
806void gicv3_enable_interrupt(unsigned int id, unsigned int proc_num)
807{
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100808 assert(gicv3_driver_data != NULL);
809 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharan0fcdfff2017-09-22 08:32:09 +0100810 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100811 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Jeenu Viswambharan0fcdfff2017-09-22 08:32:09 +0100812 assert(id <= MAX_SPI_ID);
813
814 /*
815 * Ensure that any shared variable updates depending on out of band
816 * interrupt trigger are observed before enabling interrupt.
817 */
818 dsbishst();
819 if (id < MIN_SPI_ID) {
820 /* For SGIs and PPIs */
821 gicr_set_isenabler0(
822 gicv3_driver_data->rdistif_base_addrs[proc_num],
823 id);
824 } else {
825 gicd_set_isenabler(gicv3_driver_data->gicd_base, id);
826 }
827}
828
829/*******************************************************************************
830 * This function disables the interrupt identified by id. The proc_num
831 * is used if the interrupt is SGI or PPI, and programs the corresponding
832 * Redistributor interface.
833 ******************************************************************************/
834void gicv3_disable_interrupt(unsigned int id, unsigned int proc_num)
835{
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100836 assert(gicv3_driver_data != NULL);
837 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharan0fcdfff2017-09-22 08:32:09 +0100838 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100839 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Jeenu Viswambharan0fcdfff2017-09-22 08:32:09 +0100840 assert(id <= MAX_SPI_ID);
841
842 /*
843 * Disable interrupt, and ensure that any shared variable updates
844 * depending on out of band interrupt trigger are observed afterwards.
845 */
846 if (id < MIN_SPI_ID) {
847 /* For SGIs and PPIs */
848 gicr_set_icenabler0(
849 gicv3_driver_data->rdistif_base_addrs[proc_num],
850 id);
851
852 /* Write to clear enable requires waiting for pending writes */
853 gicr_wait_for_pending_write(
854 gicv3_driver_data->rdistif_base_addrs[proc_num]);
855 } else {
856 gicd_set_icenabler(gicv3_driver_data->gicd_base, id);
857
858 /* Write to clear enable requires waiting for pending writes */
859 gicd_wait_for_pending_write(gicv3_driver_data->gicd_base);
860 }
861
862 dsbishst();
863}
Jeenu Viswambharan447b89d2017-09-22 08:32:09 +0100864
865/*******************************************************************************
866 * This function sets the interrupt priority as supplied for the given interrupt
867 * id.
868 ******************************************************************************/
869void gicv3_set_interrupt_priority(unsigned int id, unsigned int proc_num,
870 unsigned int priority)
871{
872 uintptr_t gicr_base;
873
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100874 assert(gicv3_driver_data != NULL);
875 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharan447b89d2017-09-22 08:32:09 +0100876 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100877 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Jeenu Viswambharan447b89d2017-09-22 08:32:09 +0100878 assert(id <= MAX_SPI_ID);
879
880 if (id < MIN_SPI_ID) {
881 gicr_base = gicv3_driver_data->rdistif_base_addrs[proc_num];
882 gicr_set_ipriorityr(gicr_base, id, priority);
883 } else {
884 gicd_set_ipriorityr(gicv3_driver_data->gicd_base, id, priority);
885 }
886}
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100887
888/*******************************************************************************
889 * This function assigns group for the interrupt identified by id. The proc_num
890 * is used if the interrupt is SGI or PPI, and programs the corresponding
891 * Redistributor interface. The group can be any of GICV3_INTR_GROUP*
892 ******************************************************************************/
893void gicv3_set_interrupt_type(unsigned int id, unsigned int proc_num,
894 unsigned int type)
895{
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100896 bool igroup = false, grpmod = false;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100897 uintptr_t gicr_base;
898
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100899 assert(gicv3_driver_data != NULL);
900 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100901 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100902 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100903
904 switch (type) {
905 case INTR_GROUP1S:
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100906 igroup = false;
907 grpmod = true;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100908 break;
909 case INTR_GROUP0:
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100910 igroup = false;
911 grpmod = false;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100912 break;
913 case INTR_GROUP1NS:
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100914 igroup = true;
915 grpmod = false;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100916 break;
917 default:
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100918 assert(false);
Jonathan Wright39b42212018-03-13 15:24:29 +0000919 break;
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100920 }
921
922 if (id < MIN_SPI_ID) {
923 gicr_base = gicv3_driver_data->rdistif_base_addrs[proc_num];
924 if (igroup)
925 gicr_set_igroupr0(gicr_base, id);
926 else
927 gicr_clr_igroupr0(gicr_base, id);
928
929 if (grpmod)
930 gicr_set_igrpmodr0(gicr_base, id);
931 else
932 gicr_clr_igrpmodr0(gicr_base, id);
933 } else {
934 /* Serialize read-modify-write to Distributor registers */
935 spin_lock(&gic_lock);
936 if (igroup)
937 gicd_set_igroupr(gicv3_driver_data->gicd_base, id);
938 else
939 gicd_clr_igroupr(gicv3_driver_data->gicd_base, id);
940
941 if (grpmod)
942 gicd_set_igrpmodr(gicv3_driver_data->gicd_base, id);
943 else
944 gicd_clr_igrpmodr(gicv3_driver_data->gicd_base, id);
945 spin_unlock(&gic_lock);
946 }
947}
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +0100948
949/*******************************************************************************
950 * This function raises the specified Secure Group 0 SGI.
951 *
952 * The target parameter must be a valid MPIDR in the system.
953 ******************************************************************************/
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100954void gicv3_raise_secure_g0_sgi(unsigned int sgi_num, u_register_t target)
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +0100955{
956 unsigned int tgt, aff3, aff2, aff1, aff0;
957 uint64_t sgi_val;
958
959 /* Verify interrupt number is in the SGI range */
960 assert((sgi_num >= MIN_SGI_ID) && (sgi_num < MIN_PPI_ID));
961
962 /* Extract affinity fields from target */
963 aff0 = MPIDR_AFFLVL0_VAL(target);
964 aff1 = MPIDR_AFFLVL1_VAL(target);
965 aff2 = MPIDR_AFFLVL2_VAL(target);
966 aff3 = MPIDR_AFFLVL3_VAL(target);
967
968 /*
969 * Make target list from affinity 0, and ensure GICv3 SGI can target
970 * this PE.
971 */
972 assert(aff0 < GICV3_MAX_SGI_TARGETS);
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100973 tgt = BIT_32(aff0);
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +0100974
975 /* Raise SGI to PE specified by its affinity */
976 sgi_val = GICV3_SGIR_VALUE(aff3, aff2, aff1, sgi_num, SGIR_IRM_TO_AFF,
977 tgt);
978
979 /*
980 * Ensure that any shared variable updates depending on out of band
981 * interrupt trigger are observed before raising SGI.
982 */
983 dsbishst();
984 write_icc_sgi0r_el1(sgi_val);
985 isb();
986}
Jeenu Viswambharandce70b32017-09-22 08:32:09 +0100987
988/*******************************************************************************
989 * This function sets the interrupt routing for the given SPI interrupt id.
990 * The interrupt routing is specified in routing mode and mpidr.
991 *
992 * The routing mode can be either of:
993 * - GICV3_IRM_ANY
994 * - GICV3_IRM_PE
995 *
996 * The mpidr is the affinity of the PE to which the interrupt will be routed,
997 * and is ignored for routing mode GICV3_IRM_ANY.
998 ******************************************************************************/
999void gicv3_set_spi_routing(unsigned int id, unsigned int irm, u_register_t mpidr)
1000{
1001 unsigned long long aff;
1002 uint64_t router;
1003
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001004 assert(gicv3_driver_data != NULL);
1005 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharandce70b32017-09-22 08:32:09 +01001006
1007 assert((irm == GICV3_IRM_ANY) || (irm == GICV3_IRM_PE));
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001008 assert((id >= MIN_SPI_ID) && (id <= MAX_SPI_ID));
Jeenu Viswambharandce70b32017-09-22 08:32:09 +01001009
1010 aff = gicd_irouter_val_from_mpidr(mpidr, irm);
1011 gicd_write_irouter(gicv3_driver_data->gicd_base, id, aff);
1012
1013 /*
1014 * In implementations that do not require 1 of N distribution of SPIs,
1015 * IRM might be RAZ/WI. Read back and verify IRM bit.
1016 */
1017 if (irm == GICV3_IRM_ANY) {
1018 router = gicd_read_irouter(gicv3_driver_data->gicd_base, id);
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001019 if (((router >> IROUTER_IRM_SHIFT) & IROUTER_IRM_MASK) == 0U) {
Jeenu Viswambharandce70b32017-09-22 08:32:09 +01001020 ERROR("GICv3 implementation doesn't support routing ANY\n");
1021 panic();
1022 }
1023 }
1024}
Jeenu Viswambharaneb1c12c2017-09-22 08:32:09 +01001025
1026/*******************************************************************************
1027 * This function clears the pending status of an interrupt identified by id.
1028 * The proc_num is used if the interrupt is SGI or PPI, and programs the
1029 * corresponding Redistributor interface.
1030 ******************************************************************************/
1031void gicv3_clear_interrupt_pending(unsigned int id, unsigned int proc_num)
1032{
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001033 assert(gicv3_driver_data != NULL);
1034 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharaneb1c12c2017-09-22 08:32:09 +01001035 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001036 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Jeenu Viswambharaneb1c12c2017-09-22 08:32:09 +01001037
1038 /*
1039 * Clear pending interrupt, and ensure that any shared variable updates
1040 * depending on out of band interrupt trigger are observed afterwards.
1041 */
1042 if (id < MIN_SPI_ID) {
1043 /* For SGIs and PPIs */
1044 gicr_set_icpendr0(gicv3_driver_data->rdistif_base_addrs[proc_num],
1045 id);
1046 } else {
1047 gicd_set_icpendr(gicv3_driver_data->gicd_base, id);
1048 }
1049 dsbishst();
1050}
1051
1052/*******************************************************************************
1053 * This function sets the pending status of an interrupt identified by id.
1054 * The proc_num is used if the interrupt is SGI or PPI and programs the
1055 * corresponding Redistributor interface.
1056 ******************************************************************************/
1057void gicv3_set_interrupt_pending(unsigned int id, unsigned int proc_num)
1058{
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001059 assert(gicv3_driver_data != NULL);
1060 assert(gicv3_driver_data->gicd_base != 0U);
Jeenu Viswambharaneb1c12c2017-09-22 08:32:09 +01001061 assert(proc_num < gicv3_driver_data->rdistif_num);
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001062 assert(gicv3_driver_data->rdistif_base_addrs != NULL);
Jeenu Viswambharaneb1c12c2017-09-22 08:32:09 +01001063
1064 /*
1065 * Ensure that any shared variable updates depending on out of band
1066 * interrupt trigger are observed before setting interrupt pending.
1067 */
1068 dsbishst();
1069 if (id < MIN_SPI_ID) {
1070 /* For SGIs and PPIs */
1071 gicr_set_ispendr0(gicv3_driver_data->rdistif_base_addrs[proc_num],
1072 id);
1073 } else {
1074 gicd_set_ispendr(gicv3_driver_data->gicd_base, id);
1075 }
1076}
Jeenu Viswambharan62505072017-09-22 08:32:09 +01001077
1078/*******************************************************************************
1079 * This function sets the PMR register with the supplied value. Returns the
1080 * original PMR.
1081 ******************************************************************************/
1082unsigned int gicv3_set_pmr(unsigned int mask)
1083{
1084 unsigned int old_mask;
1085
Antonio Nino Diazca994e72018-08-21 10:02:33 +01001086 old_mask = (uint32_t) read_icc_pmr_el1();
Jeenu Viswambharan62505072017-09-22 08:32:09 +01001087
1088 /*
1089 * Order memory updates w.r.t. PMR write, and ensure they're visible
1090 * before potential out of band interrupt trigger because of PMR update.
1091 * PMR system register writes are self-synchronizing, so no ISB required
1092 * thereafter.
1093 */
1094 dsbishst();
1095 write_icc_pmr_el1(mask);
1096
1097 return old_mask;
1098}
Madhukar Pappireddy5fd1f9d2019-05-15 18:25:41 -05001099
1100/*******************************************************************************
1101 * This function delegates the responsibility of discovering the corresponding
1102 * Redistributor frames to each CPU itself. It is a modified version of
1103 * gicv3_rdistif_base_addrs_probe() and is executed by each CPU in the platform
1104 * unlike the previous way in which only the Primary CPU did the discovery of
1105 * all the Redistributor frames for every CPU. It also handles the scenario in
1106 * which the frames of various CPUs are not contiguous in physical memory.
1107 ******************************************************************************/
1108int gicv3_rdistif_probe(const uintptr_t gicr_frame)
1109{
1110 u_register_t mpidr;
1111 unsigned int proc_num, proc_self;
1112 uint64_t typer_val;
1113 uintptr_t rdistif_base;
1114 bool gicr_frame_found = false;
1115
1116 assert(gicv3_driver_data->gicr_base == 0U);
1117
1118 /* Ensure this function is called with Data Cache enabled */
1119#ifndef __aarch64__
1120 assert((read_sctlr() & SCTLR_C_BIT) != 0U);
1121#else
1122 assert((read_sctlr_el3() & SCTLR_C_BIT) != 0U);
1123#endif /* !__aarch64__ */
1124
1125 proc_self = gicv3_driver_data->mpidr_to_core_pos(read_mpidr_el1());
1126 rdistif_base = gicr_frame;
1127 do {
1128 typer_val = gicr_read_typer(rdistif_base);
1129 if (gicv3_driver_data->mpidr_to_core_pos != NULL) {
1130 mpidr = mpidr_from_gicr_typer(typer_val);
1131 proc_num = gicv3_driver_data->mpidr_to_core_pos(mpidr);
1132 } else {
1133 proc_num = (unsigned int)(typer_val >> TYPER_PROC_NUM_SHIFT) &
1134 TYPER_PROC_NUM_MASK;
1135 }
1136 if (proc_num == proc_self) {
1137 /* The base address doesn't need to be initialized on
1138 * every warm boot.
1139 */
1140 if (gicv3_driver_data->rdistif_base_addrs[proc_num] != 0U)
1141 return 0;
1142 gicv3_driver_data->rdistif_base_addrs[proc_num] =
1143 rdistif_base;
1144 gicr_frame_found = true;
1145 break;
1146 }
1147 rdistif_base += (uintptr_t)(ULL(1) << GICR_PCPUBASE_SHIFT);
1148 } while ((typer_val & TYPER_LAST_BIT) == 0U);
1149
1150 if (!gicr_frame_found)
1151 return -1;
1152
1153 /*
1154 * Flush the driver data to ensure coherency. This is
1155 * not required if platform has HW_ASSISTED_COHERENCY
1156 * enabled.
1157 */
1158#if !HW_ASSISTED_COHERENCY
1159 /*
1160 * Flush the rdistif_base_addrs[] contents linked to the GICv3 driver.
1161 */
1162 flush_dcache_range((uintptr_t)&(gicv3_driver_data->rdistif_base_addrs[proc_num]),
1163 sizeof(*(gicv3_driver_data->rdistif_base_addrs)));
1164#endif
1165 return 0; /* Found matching GICR frame */
1166}