blob: 09fa6786e1bb87955dbd04d06dd0da8b1815774a [file] [log] [blame]
Achin Gupta92712a52015-09-03 14:18:02 +01001/*
Alexei Fedorova6e6ae02020-04-06 16:27:54 +01002 * 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/gic_common.h>
14
Soby Mathew50f6fe42016-02-01 17:59:22 +000015#include "../common/gic_common_private.h"
Achin Gupta92712a52015-09-03 14:18:02 +010016#include "gicv3_private.h"
17
Achin Gupta92712a52015-09-03 14:18:02 +010018/******************************************************************************
19 * This function marks the core as awake in the re-distributor and
20 * ensures that the interface is active.
21 *****************************************************************************/
22void gicv3_rdistif_mark_core_awake(uintptr_t gicr_base)
23{
24 /*
25 * The WAKER_PS_BIT should be changed to 0
26 * only when WAKER_CA_BIT is 1.
27 */
Antonio Nino Diazca994e72018-08-21 10:02:33 +010028 assert((gicr_read_waker(gicr_base) & WAKER_CA_BIT) != 0U);
Achin Gupta92712a52015-09-03 14:18:02 +010029
30 /* Mark the connected core as awake */
31 gicr_write_waker(gicr_base, gicr_read_waker(gicr_base) & ~WAKER_PS_BIT);
32
33 /* Wait till the WAKER_CA_BIT changes to 0 */
Alexei Fedorova6e6ae02020-04-06 16:27:54 +010034 while ((gicr_read_waker(gicr_base) & WAKER_CA_BIT) != 0U) {
35 }
Achin Gupta92712a52015-09-03 14:18:02 +010036}
37
Achin Gupta92712a52015-09-03 14:18:02 +010038/******************************************************************************
39 * This function marks the core as asleep in the re-distributor and ensures
40 * that the interface is quiescent.
41 *****************************************************************************/
42void gicv3_rdistif_mark_core_asleep(uintptr_t gicr_base)
43{
44 /* Mark the connected core as asleep */
45 gicr_write_waker(gicr_base, gicr_read_waker(gicr_base) | WAKER_PS_BIT);
46
47 /* Wait till the WAKER_CA_BIT changes to 1 */
Alexei Fedorova6e6ae02020-04-06 16:27:54 +010048 while ((gicr_read_waker(gicr_base) & WAKER_CA_BIT) == 0U) {
49 }
Achin Gupta92712a52015-09-03 14:18:02 +010050}
51
Achin Gupta92712a52015-09-03 14:18:02 +010052/*******************************************************************************
53 * This function probes the Redistributor frames when the driver is initialised
54 * and saves their base addresses. These base addresses are used later to
55 * initialise each Redistributor interface.
56 ******************************************************************************/
57void gicv3_rdistif_base_addrs_probe(uintptr_t *rdistif_base_addrs,
58 unsigned int rdistif_num,
59 uintptr_t gicr_base,
60 mpidr_hash_fn mpidr_to_core_pos)
61{
Soby Mathewa0fedc42016-06-16 14:52:04 +010062 u_register_t mpidr;
Achin Gupta92712a52015-09-03 14:18:02 +010063 unsigned int proc_num;
Antonio Nino Diazca994e72018-08-21 10:02:33 +010064 uint64_t typer_val;
Achin Gupta92712a52015-09-03 14:18:02 +010065 uintptr_t rdistif_base = gicr_base;
66
Antonio Nino Diazca994e72018-08-21 10:02:33 +010067 assert(rdistif_base_addrs != NULL);
Achin Gupta92712a52015-09-03 14:18:02 +010068
69 /*
70 * Iterate over the Redistributor frames. Store the base address of each
71 * frame in the platform provided array. Use the "Processor Number"
72 * field to index into the array if the platform has not provided a hash
73 * function to convert an MPIDR (obtained from the "Affinity Value"
74 * field into a linear index.
75 */
76 do {
77 typer_val = gicr_read_typer(rdistif_base);
Antonio Nino Diazca994e72018-08-21 10:02:33 +010078 if (mpidr_to_core_pos != NULL) {
Achin Gupta92712a52015-09-03 14:18:02 +010079 mpidr = mpidr_from_gicr_typer(typer_val);
80 proc_num = mpidr_to_core_pos(mpidr);
81 } else {
82 proc_num = (typer_val >> TYPER_PROC_NUM_SHIFT) &
83 TYPER_PROC_NUM_MASK;
84 }
Soby Mathewd1463bd2019-01-17 14:57:54 +000085
Alexei Fedorova6e6ae02020-04-06 16:27:54 +010086 if (proc_num < rdistif_num) {
Soby Mathewd1463bd2019-01-17 14:57:54 +000087 rdistif_base_addrs[proc_num] = rdistif_base;
Alexei Fedorova6e6ae02020-04-06 16:27:54 +010088 }
Soby Mathewd1463bd2019-01-17 14:57:54 +000089
Antonio Nino Diazca994e72018-08-21 10:02:33 +010090 rdistif_base += (1U << GICR_PCPUBASE_SHIFT);
91 } while ((typer_val & TYPER_LAST_BIT) == 0U);
Achin Gupta92712a52015-09-03 14:18:02 +010092}
93
94/*******************************************************************************
Alexei Fedorova6e6ae02020-04-06 16:27:54 +010095 * Helper function to configure the default attributes of (E)SPIs.
Achin Gupta92712a52015-09-03 14:18:02 +010096 ******************************************************************************/
Daniel Boulby4e83abb2018-05-01 15:15:34 +010097void gicv3_spis_config_defaults(uintptr_t gicd_base)
Achin Gupta92712a52015-09-03 14:18:02 +010098{
Alexei Fedorova6e6ae02020-04-06 16:27:54 +010099 unsigned int i, num_ints;
100#if GIC_EXT_INTID
101 unsigned int num_eints;
102#endif
103 unsigned int typer_reg = gicd_read_typer(gicd_base);
Achin Gupta92712a52015-09-03 14:18:02 +0100104
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100105 /* Maximum SPI INTID is 32 * (GICD_TYPER.ITLinesNumber + 1) - 1 */
106 num_ints = ((typer_reg & TYPER_IT_LINES_NO_MASK) + 1U) << 5;
Achin Gupta92712a52015-09-03 14:18:02 +0100107
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100108 /* Treat all (E)SPIs as G1NS by default. We do 32 at a time. */
109 for (i = MIN_SPI_ID; i < num_ints; i += (1U << IGROUPR_SHIFT)) {
110 gicd_write_igroupr(gicd_base, i, ~0U);
111 }
Achin Gupta92712a52015-09-03 14:18:02 +0100112
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100113#if GIC_EXT_INTID
114 /* Check if extended SPI range is implemented */
115 if ((typer_reg & TYPER_ESPI) != 0U) {
116 /*
117 * Maximum ESPI INTID is 32 * (GICD_TYPER.ESPI_range + 1) + 4095
118 */
119 num_eints = ((((typer_reg >> TYPER_ESPI_RANGE_SHIFT) &
120 TYPER_ESPI_RANGE_MASK) + 1U) << 5) + MIN_ESPI_ID - 1;
Achin Gupta92712a52015-09-03 14:18:02 +0100121
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100122 for (i = MIN_ESPI_ID; i < num_eints;
123 i += (1U << IGROUPR_SHIFT)) {
124 gicd_write_igroupr(gicd_base, i, ~0U);
125 }
126 } else {
127 num_eints = 0U;
128 }
129#endif
130
131 /* Setup the default (E)SPI priorities doing four at a time */
132 for (i = MIN_SPI_ID; i < num_ints; i += (1U << IPRIORITYR_SHIFT)) {
133 gicd_write_ipriorityr(gicd_base, i, GICD_IPRIORITYR_DEF_VAL);
134 }
135
136#if GIC_EXT_INTID
137 for (i = MIN_ESPI_ID; i < num_eints;
138 i += (1U << IPRIORITYR_SHIFT)) {
139 gicd_write_ipriorityr(gicd_base, i, GICD_IPRIORITYR_DEF_VAL);
140 }
141#endif
Achin Gupta92712a52015-09-03 14:18:02 +0100142 /*
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100143 * Treat all (E)SPIs as level triggered by default, write 16 at a time
Achin Gupta92712a52015-09-03 14:18:02 +0100144 */
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100145 for (i = MIN_SPI_ID; i < num_ints; i += (1U << ICFGR_SHIFT)) {
146 gicd_write_icfgr(gicd_base, i, 0U);
147 }
148
149#if GIC_EXT_INTID
150 for (i = MIN_ESPI_ID; i < num_eints; i += (1U << ICFGR_SHIFT)) {
151 gicd_write_icfgr(gicd_base, i, 0U);
152 }
153#endif
Achin Gupta92712a52015-09-03 14:18:02 +0100154}
155
Achin Gupta92712a52015-09-03 14:18:02 +0100156/*******************************************************************************
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100157 * Helper function to configure properties of secure (E)SPIs
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100158 ******************************************************************************/
Daniel Boulby4e83abb2018-05-01 15:15:34 +0100159unsigned int gicv3_secure_spis_config_props(uintptr_t gicd_base,
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100160 const interrupt_prop_t *interrupt_props,
161 unsigned int interrupt_props_num)
162{
163 unsigned int i;
164 const interrupt_prop_t *current_prop;
165 unsigned long long gic_affinity_val;
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100166 unsigned int ctlr_enable = 0U;
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100167
168 /* Make sure there's a valid property array */
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100169 if (interrupt_props_num > 0U) {
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100170 assert(interrupt_props != NULL);
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100171 }
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100172
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100173 for (i = 0U; i < interrupt_props_num; i++) {
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100174 current_prop = &interrupt_props[i];
175
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100176 unsigned int intr_num = current_prop->intr_num;
177
178 /* Skip SGI, (E)PPI and LPI interrupts */
179 if (!IS_SPI(intr_num)) {
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100180 continue;
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100181 }
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100182
183 /* Configure this interrupt as a secure interrupt */
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100184 gicd_clr_igroupr(gicd_base, intr_num);
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100185
186 /* Configure this interrupt as G0 or a G1S interrupt */
187 assert((current_prop->intr_grp == INTR_GROUP0) ||
188 (current_prop->intr_grp == INTR_GROUP1S));
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100189
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100190 if (current_prop->intr_grp == INTR_GROUP1S) {
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100191 gicd_set_igrpmodr(gicd_base, intr_num);
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100192 ctlr_enable |= CTLR_ENABLE_G1S_BIT;
193 } else {
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100194 gicd_clr_igrpmodr(gicd_base, intr_num);
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100195 ctlr_enable |= CTLR_ENABLE_G0_BIT;
196 }
197
198 /* Set interrupt configuration */
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100199 gicd_set_icfgr(gicd_base, intr_num, current_prop->intr_cfg);
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100200
201 /* Set the priority of this interrupt */
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100202 gicd_set_ipriorityr(gicd_base, intr_num,
203 current_prop->intr_pri);
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100204
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100205 /* Target (E)SPIs to the primary CPU */
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100206 gic_affinity_val =
207 gicd_irouter_val_from_mpidr(read_mpidr(), 0U);
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100208 gicd_write_irouter(gicd_base, intr_num,
209 gic_affinity_val);
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100210
211 /* Enable this interrupt */
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100212 gicd_set_isenabler(gicd_base, intr_num);
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100213 }
214
215 return ctlr_enable;
216}
217
218/*******************************************************************************
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100219 * Helper function to configure the default attributes of (E)SPIs
Achin Gupta92712a52015-09-03 14:18:02 +0100220 ******************************************************************************/
Daniel Boulby4e83abb2018-05-01 15:15:34 +0100221void gicv3_ppi_sgi_config_defaults(uintptr_t gicr_base)
Achin Gupta92712a52015-09-03 14:18:02 +0100222{
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100223 unsigned int i, ppi_regs_num, regs_num;
Achin Gupta92712a52015-09-03 14:18:02 +0100224
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100225#if GIC_EXT_INTID
226 /* Calculate number of PPI registers */
227 ppi_regs_num = (unsigned int)((gicr_read_typer(gicr_base) >>
228 TYPER_PPI_NUM_SHIFT) & TYPER_PPI_NUM_MASK) + 1;
229 /* All other values except PPInum [0-2] are reserved */
230 if (ppi_regs_num > 3U) {
231 ppi_regs_num = 1U;
232 }
233#else
234 ppi_regs_num = 1U;
235#endif
Achin Gupta92712a52015-09-03 14:18:02 +0100236 /*
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100237 * Disable all SGIs (imp. def.)/(E)PPIs before configuring them.
238 * This is a more scalable approach as it avoids clearing
239 * the enable bits in the GICD_CTLR.
Achin Gupta92712a52015-09-03 14:18:02 +0100240 */
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100241 for (i = 0U; i < ppi_regs_num; ++i) {
242 gicr_write_icenabler(gicr_base, i, ~0U);
243 }
244
245 /* Wait for pending writes to GICR_ICENABLER */
Achin Gupta92712a52015-09-03 14:18:02 +0100246 gicr_wait_for_pending_write(gicr_base);
247
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100248 /* 32 interrupt IDs per GICR_IGROUPR register */
249 for (i = 0U; i < ppi_regs_num; ++i) {
250 /* Treat all SGIs/(E)PPIs as G1NS by default */
251 gicr_write_igroupr(gicr_base, i, ~0U);
252 }
Achin Gupta92712a52015-09-03 14:18:02 +0100253
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100254 /* 4 interrupt IDs per GICR_IPRIORITYR register */
255 regs_num = ppi_regs_num << 3;
256 for (i = 0U; i < regs_num; ++i) {
257 /* Setup the default (E)PPI/SGI priorities doing 4 at a time */
258 gicr_write_ipriorityr(gicr_base, i, GICD_IPRIORITYR_DEF_VAL);
259 }
Achin Gupta92712a52015-09-03 14:18:02 +0100260
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100261 /* 16 interrupt IDs per GICR_ICFGR register */
262 regs_num = ppi_regs_num << 1;
263 for (i = (MIN_PPI_ID >> ICFGR_SHIFT); i < regs_num; ++i) {
264 /* Configure all (E)PPIs as level triggered by default */
265 gicr_write_icfgr(gicr_base, i, 0U);
266 }
Achin Gupta92712a52015-09-03 14:18:02 +0100267}
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100268
269/*******************************************************************************
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100270 * Helper function to configure properties of secure G0 and G1S (E)PPIs and SGIs
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100271 ******************************************************************************/
Daniel Boulby4e83abb2018-05-01 15:15:34 +0100272unsigned int gicv3_secure_ppi_sgi_config_props(uintptr_t gicr_base,
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100273 const interrupt_prop_t *interrupt_props,
274 unsigned int interrupt_props_num)
275{
276 unsigned int i;
277 const interrupt_prop_t *current_prop;
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100278 unsigned int ctlr_enable = 0U;
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100279
280 /* Make sure there's a valid property array */
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100281 if (interrupt_props_num > 0U) {
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100282 assert(interrupt_props != NULL);
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100283 }
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100284
Antonio Nino Diazca994e72018-08-21 10:02:33 +0100285 for (i = 0U; i < interrupt_props_num; i++) {
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100286 current_prop = &interrupt_props[i];
287
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100288 unsigned int intr_num = current_prop->intr_num;
289
290 /* Skip (E)SPI interrupt */
291 if (!IS_SGI_PPI(intr_num)) {
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100292 continue;
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100293 }
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100294
295 /* Configure this interrupt as a secure interrupt */
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100296 gicr_clr_igroupr(gicr_base, intr_num);
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100297
298 /* Configure this interrupt as G0 or a G1S interrupt */
299 assert((current_prop->intr_grp == INTR_GROUP0) ||
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100300 (current_prop->intr_grp == INTR_GROUP1S));
301
Jeenu Viswambharan88d8f452017-11-07 08:38:23 +0000302 if (current_prop->intr_grp == INTR_GROUP1S) {
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100303 gicr_set_igrpmodr(gicr_base, intr_num);
Jeenu Viswambharan88d8f452017-11-07 08:38:23 +0000304 ctlr_enable |= CTLR_ENABLE_G1S_BIT;
305 } else {
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100306 gicr_clr_igrpmodr(gicr_base, intr_num);
Jeenu Viswambharan88d8f452017-11-07 08:38:23 +0000307 ctlr_enable |= CTLR_ENABLE_G0_BIT;
308 }
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100309
310 /* Set the priority of this interrupt */
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100311 gicr_set_ipriorityr(gicr_base, intr_num,
312 current_prop->intr_pri);
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100313
314 /*
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100315 * Set interrupt configuration for (E)PPIs.
316 * Configurations for SGIs 0-15 are ignored.
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100317 */
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100318 if (intr_num >= MIN_PPI_ID) {
319 gicr_set_icfgr(gicr_base, intr_num,
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100320 current_prop->intr_cfg);
321 }
322
323 /* Enable this interrupt */
Alexei Fedorova6e6ae02020-04-06 16:27:54 +0100324 gicr_set_isenabler(gicr_base, intr_num);
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100325 }
Jeenu Viswambharan88d8f452017-11-07 08:38:23 +0000326
327 return ctlr_enable;
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100328}