Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 1 | /* |
Heyi Guo | c5bd63c | 2020-05-19 14:01:49 +0800 | [diff] [blame] | 2 | * Copyright (c) 2015-2021, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 7 | #include <assert.h> |
| 8 | |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 9 | #include <arch.h> |
| 10 | #include <arch_helpers.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 11 | #include <common/debug.h> |
| 12 | #include <common/interrupt_props.h> |
| 13 | #include <drivers/arm/gic_common.h> |
| 14 | |
Soby Mathew | 50f6fe4 | 2016-02-01 17:59:22 +0000 | [diff] [blame] | 15 | #include "../common/gic_common_private.h" |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 16 | #include "gicv3_private.h" |
| 17 | |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 18 | /****************************************************************************** |
| 19 | * This function marks the core as awake in the re-distributor and |
| 20 | * ensures that the interface is active. |
| 21 | *****************************************************************************/ |
| 22 | void 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 Diaz | ca994e7 | 2018-08-21 10:02:33 +0100 | [diff] [blame] | 28 | assert((gicr_read_waker(gicr_base) & WAKER_CA_BIT) != 0U); |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 29 | |
| 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 Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 34 | while ((gicr_read_waker(gicr_base) & WAKER_CA_BIT) != 0U) { |
| 35 | } |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 36 | } |
| 37 | |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 38 | /****************************************************************************** |
| 39 | * This function marks the core as asleep in the re-distributor and ensures |
| 40 | * that the interface is quiescent. |
| 41 | *****************************************************************************/ |
| 42 | void 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 Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 48 | while ((gicr_read_waker(gicr_base) & WAKER_CA_BIT) == 0U) { |
| 49 | } |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 50 | } |
| 51 | |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 52 | /******************************************************************************* |
| 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 | ******************************************************************************/ |
| 57 | void 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 Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 62 | u_register_t mpidr; |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 63 | unsigned int proc_num; |
Antonio Nino Diaz | ca994e7 | 2018-08-21 10:02:33 +0100 | [diff] [blame] | 64 | uint64_t typer_val; |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 65 | uintptr_t rdistif_base = gicr_base; |
| 66 | |
Antonio Nino Diaz | ca994e7 | 2018-08-21 10:02:33 +0100 | [diff] [blame] | 67 | assert(rdistif_base_addrs != NULL); |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 68 | |
| 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 Diaz | ca994e7 | 2018-08-21 10:02:33 +0100 | [diff] [blame] | 78 | if (mpidr_to_core_pos != NULL) { |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 79 | 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 Mathew | d1463bd | 2019-01-17 14:57:54 +0000 | [diff] [blame] | 85 | |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 86 | if (proc_num < rdistif_num) { |
Soby Mathew | d1463bd | 2019-01-17 14:57:54 +0000 | [diff] [blame] | 87 | rdistif_base_addrs[proc_num] = rdistif_base; |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 88 | } |
Soby Mathew | d1463bd | 2019-01-17 14:57:54 +0000 | [diff] [blame] | 89 | |
Antonio Nino Diaz | ca994e7 | 2018-08-21 10:02:33 +0100 | [diff] [blame] | 90 | rdistif_base += (1U << GICR_PCPUBASE_SHIFT); |
| 91 | } while ((typer_val & TYPER_LAST_BIT) == 0U); |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | /******************************************************************************* |
Heyi Guo | 06f85b4 | 2021-01-20 18:50:16 +0800 | [diff] [blame] | 95 | * Helper function to get the maximum SPI INTID + 1. |
| 96 | ******************************************************************************/ |
| 97 | unsigned int gicv3_get_spi_limit(uintptr_t gicd_base) |
| 98 | { |
| 99 | unsigned int spi_limit; |
| 100 | unsigned int typer_reg = gicd_read_typer(gicd_base); |
| 101 | |
| 102 | /* (maximum SPI INTID + 1) is equal to 32 * (GICD_TYPER.ITLinesNumber+1) */ |
| 103 | spi_limit = ((typer_reg & TYPER_IT_LINES_NO_MASK) + 1U) << 5; |
| 104 | |
| 105 | /* Filter out special INTIDs 1020-1023 */ |
| 106 | if (spi_limit > (MAX_SPI_ID + 1U)) { |
| 107 | return MAX_SPI_ID + 1U; |
| 108 | } |
| 109 | |
| 110 | return spi_limit; |
| 111 | } |
| 112 | |
Heyi Guo | 60ce825 | 2021-01-20 18:50:16 +0800 | [diff] [blame] | 113 | #if GIC_EXT_INTID |
| 114 | /******************************************************************************* |
| 115 | * Helper function to get the maximum ESPI INTID + 1. |
| 116 | ******************************************************************************/ |
| 117 | unsigned int gicv3_get_espi_limit(uintptr_t gicd_base) |
| 118 | { |
| 119 | unsigned int typer_reg = gicd_read_typer(gicd_base); |
| 120 | |
| 121 | /* Check if extended SPI range is implemented */ |
| 122 | if ((typer_reg & TYPER_ESPI) != 0U) { |
| 123 | /* |
| 124 | * (maximum ESPI INTID + 1) is equal to |
| 125 | * 32 * (GICD_TYPER.ESPI_range + 1) + 4096 |
| 126 | */ |
| 127 | return ((((typer_reg >> TYPER_ESPI_RANGE_SHIFT) & |
| 128 | TYPER_ESPI_RANGE_MASK) + 1U) << 5) + MIN_ESPI_ID; |
| 129 | } |
| 130 | |
| 131 | return 0U; |
| 132 | } |
| 133 | #endif /* GIC_EXT_INTID */ |
| 134 | |
Heyi Guo | 06f85b4 | 2021-01-20 18:50:16 +0800 | [diff] [blame] | 135 | /******************************************************************************* |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 136 | * Helper function to configure the default attributes of (E)SPIs. |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 137 | ******************************************************************************/ |
Daniel Boulby | 4e83abb | 2018-05-01 15:15:34 +0100 | [diff] [blame] | 138 | void gicv3_spis_config_defaults(uintptr_t gicd_base) |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 139 | { |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 140 | unsigned int i, num_ints; |
| 141 | #if GIC_EXT_INTID |
| 142 | unsigned int num_eints; |
| 143 | #endif |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 144 | |
Heyi Guo | 79bc7a7 | 2021-01-20 19:05:51 +0800 | [diff] [blame^] | 145 | num_ints = gicv3_get_spi_limit(gicd_base); |
Heyi Guo | ce38025 | 2021-01-21 10:34:00 +0800 | [diff] [blame] | 146 | INFO("Maximum SPI INTID supported: %u\n", num_ints - 1); |
Heyi Guo | 0d5d24d | 2020-05-19 15:41:14 +0800 | [diff] [blame] | 147 | |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 148 | /* Treat all (E)SPIs as G1NS by default. We do 32 at a time. */ |
| 149 | for (i = MIN_SPI_ID; i < num_ints; i += (1U << IGROUPR_SHIFT)) { |
| 150 | gicd_write_igroupr(gicd_base, i, ~0U); |
| 151 | } |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 152 | |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 153 | #if GIC_EXT_INTID |
Heyi Guo | 79bc7a7 | 2021-01-20 19:05:51 +0800 | [diff] [blame^] | 154 | num_eints = gicv3_get_espi_limit(gicd_base); |
| 155 | if (num_eints != 0U) { |
Heyi Guo | ce38025 | 2021-01-21 10:34:00 +0800 | [diff] [blame] | 156 | INFO("Maximum ESPI INTID supported: %u\n", num_eints - 1); |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 157 | |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 158 | for (i = MIN_ESPI_ID; i < num_eints; |
| 159 | i += (1U << IGROUPR_SHIFT)) { |
| 160 | gicd_write_igroupr(gicd_base, i, ~0U); |
| 161 | } |
| 162 | } else { |
Heyi Guo | ce38025 | 2021-01-21 10:34:00 +0800 | [diff] [blame] | 163 | INFO("ESPI range is not implemented.\n"); |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 164 | } |
| 165 | #endif |
| 166 | |
| 167 | /* Setup the default (E)SPI priorities doing four at a time */ |
| 168 | for (i = MIN_SPI_ID; i < num_ints; i += (1U << IPRIORITYR_SHIFT)) { |
| 169 | gicd_write_ipriorityr(gicd_base, i, GICD_IPRIORITYR_DEF_VAL); |
| 170 | } |
| 171 | |
| 172 | #if GIC_EXT_INTID |
| 173 | for (i = MIN_ESPI_ID; i < num_eints; |
| 174 | i += (1U << IPRIORITYR_SHIFT)) { |
| 175 | gicd_write_ipriorityr(gicd_base, i, GICD_IPRIORITYR_DEF_VAL); |
| 176 | } |
| 177 | #endif |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 178 | /* |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 179 | * Treat all (E)SPIs as level triggered by default, write 16 at a time |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 180 | */ |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 181 | for (i = MIN_SPI_ID; i < num_ints; i += (1U << ICFGR_SHIFT)) { |
| 182 | gicd_write_icfgr(gicd_base, i, 0U); |
| 183 | } |
| 184 | |
| 185 | #if GIC_EXT_INTID |
| 186 | for (i = MIN_ESPI_ID; i < num_eints; i += (1U << ICFGR_SHIFT)) { |
| 187 | gicd_write_icfgr(gicd_base, i, 0U); |
| 188 | } |
| 189 | #endif |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 190 | } |
| 191 | |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 192 | /******************************************************************************* |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 193 | * Helper function to configure properties of secure (E)SPIs |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 194 | ******************************************************************************/ |
Daniel Boulby | 4e83abb | 2018-05-01 15:15:34 +0100 | [diff] [blame] | 195 | unsigned int gicv3_secure_spis_config_props(uintptr_t gicd_base, |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 196 | const interrupt_prop_t *interrupt_props, |
| 197 | unsigned int interrupt_props_num) |
| 198 | { |
| 199 | unsigned int i; |
| 200 | const interrupt_prop_t *current_prop; |
| 201 | unsigned long long gic_affinity_val; |
Antonio Nino Diaz | ca994e7 | 2018-08-21 10:02:33 +0100 | [diff] [blame] | 202 | unsigned int ctlr_enable = 0U; |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 203 | |
| 204 | /* Make sure there's a valid property array */ |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 205 | if (interrupt_props_num > 0U) { |
Antonio Nino Diaz | ca994e7 | 2018-08-21 10:02:33 +0100 | [diff] [blame] | 206 | assert(interrupt_props != NULL); |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 207 | } |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 208 | |
Antonio Nino Diaz | ca994e7 | 2018-08-21 10:02:33 +0100 | [diff] [blame] | 209 | for (i = 0U; i < interrupt_props_num; i++) { |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 210 | current_prop = &interrupt_props[i]; |
| 211 | |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 212 | unsigned int intr_num = current_prop->intr_num; |
| 213 | |
| 214 | /* Skip SGI, (E)PPI and LPI interrupts */ |
| 215 | if (!IS_SPI(intr_num)) { |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 216 | continue; |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 217 | } |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 218 | |
| 219 | /* Configure this interrupt as a secure interrupt */ |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 220 | gicd_clr_igroupr(gicd_base, intr_num); |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 221 | |
| 222 | /* Configure this interrupt as G0 or a G1S interrupt */ |
| 223 | assert((current_prop->intr_grp == INTR_GROUP0) || |
| 224 | (current_prop->intr_grp == INTR_GROUP1S)); |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 225 | |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 226 | if (current_prop->intr_grp == INTR_GROUP1S) { |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 227 | gicd_set_igrpmodr(gicd_base, intr_num); |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 228 | ctlr_enable |= CTLR_ENABLE_G1S_BIT; |
| 229 | } else { |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 230 | gicd_clr_igrpmodr(gicd_base, intr_num); |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 231 | ctlr_enable |= CTLR_ENABLE_G0_BIT; |
| 232 | } |
| 233 | |
| 234 | /* Set interrupt configuration */ |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 235 | gicd_set_icfgr(gicd_base, intr_num, current_prop->intr_cfg); |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 236 | |
| 237 | /* Set the priority of this interrupt */ |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 238 | gicd_set_ipriorityr(gicd_base, intr_num, |
| 239 | current_prop->intr_pri); |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 240 | |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 241 | /* Target (E)SPIs to the primary CPU */ |
Antonio Nino Diaz | ca994e7 | 2018-08-21 10:02:33 +0100 | [diff] [blame] | 242 | gic_affinity_val = |
| 243 | gicd_irouter_val_from_mpidr(read_mpidr(), 0U); |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 244 | gicd_write_irouter(gicd_base, intr_num, |
| 245 | gic_affinity_val); |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 246 | |
| 247 | /* Enable this interrupt */ |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 248 | gicd_set_isenabler(gicd_base, intr_num); |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | return ctlr_enable; |
| 252 | } |
| 253 | |
| 254 | /******************************************************************************* |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 255 | * Helper function to configure the default attributes of (E)SPIs |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 256 | ******************************************************************************/ |
Daniel Boulby | 4e83abb | 2018-05-01 15:15:34 +0100 | [diff] [blame] | 257 | void gicv3_ppi_sgi_config_defaults(uintptr_t gicr_base) |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 258 | { |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 259 | unsigned int i, ppi_regs_num, regs_num; |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 260 | |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 261 | #if GIC_EXT_INTID |
| 262 | /* Calculate number of PPI registers */ |
| 263 | ppi_regs_num = (unsigned int)((gicr_read_typer(gicr_base) >> |
| 264 | TYPER_PPI_NUM_SHIFT) & TYPER_PPI_NUM_MASK) + 1; |
| 265 | /* All other values except PPInum [0-2] are reserved */ |
| 266 | if (ppi_regs_num > 3U) { |
| 267 | ppi_regs_num = 1U; |
| 268 | } |
| 269 | #else |
| 270 | ppi_regs_num = 1U; |
| 271 | #endif |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 272 | /* |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 273 | * Disable all SGIs (imp. def.)/(E)PPIs before configuring them. |
| 274 | * This is a more scalable approach as it avoids clearing |
| 275 | * the enable bits in the GICD_CTLR. |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 276 | */ |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 277 | for (i = 0U; i < ppi_regs_num; ++i) { |
| 278 | gicr_write_icenabler(gicr_base, i, ~0U); |
| 279 | } |
| 280 | |
| 281 | /* Wait for pending writes to GICR_ICENABLER */ |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 282 | gicr_wait_for_pending_write(gicr_base); |
| 283 | |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 284 | /* 32 interrupt IDs per GICR_IGROUPR register */ |
| 285 | for (i = 0U; i < ppi_regs_num; ++i) { |
| 286 | /* Treat all SGIs/(E)PPIs as G1NS by default */ |
| 287 | gicr_write_igroupr(gicr_base, i, ~0U); |
| 288 | } |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 289 | |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 290 | /* 4 interrupt IDs per GICR_IPRIORITYR register */ |
| 291 | regs_num = ppi_regs_num << 3; |
| 292 | for (i = 0U; i < regs_num; ++i) { |
| 293 | /* Setup the default (E)PPI/SGI priorities doing 4 at a time */ |
| 294 | gicr_write_ipriorityr(gicr_base, i, GICD_IPRIORITYR_DEF_VAL); |
| 295 | } |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 296 | |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 297 | /* 16 interrupt IDs per GICR_ICFGR register */ |
| 298 | regs_num = ppi_regs_num << 1; |
| 299 | for (i = (MIN_PPI_ID >> ICFGR_SHIFT); i < regs_num; ++i) { |
| 300 | /* Configure all (E)PPIs as level triggered by default */ |
| 301 | gicr_write_icfgr(gicr_base, i, 0U); |
| 302 | } |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 303 | } |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 304 | |
| 305 | /******************************************************************************* |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 306 | * Helper function to configure properties of secure G0 and G1S (E)PPIs and SGIs |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 307 | ******************************************************************************/ |
Daniel Boulby | 4e83abb | 2018-05-01 15:15:34 +0100 | [diff] [blame] | 308 | unsigned int gicv3_secure_ppi_sgi_config_props(uintptr_t gicr_base, |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 309 | const interrupt_prop_t *interrupt_props, |
| 310 | unsigned int interrupt_props_num) |
| 311 | { |
| 312 | unsigned int i; |
| 313 | const interrupt_prop_t *current_prop; |
Antonio Nino Diaz | ca994e7 | 2018-08-21 10:02:33 +0100 | [diff] [blame] | 314 | unsigned int ctlr_enable = 0U; |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 315 | |
| 316 | /* Make sure there's a valid property array */ |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 317 | if (interrupt_props_num > 0U) { |
Antonio Nino Diaz | ca994e7 | 2018-08-21 10:02:33 +0100 | [diff] [blame] | 318 | assert(interrupt_props != NULL); |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 319 | } |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 320 | |
Antonio Nino Diaz | ca994e7 | 2018-08-21 10:02:33 +0100 | [diff] [blame] | 321 | for (i = 0U; i < interrupt_props_num; i++) { |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 322 | current_prop = &interrupt_props[i]; |
| 323 | |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 324 | unsigned int intr_num = current_prop->intr_num; |
| 325 | |
| 326 | /* Skip (E)SPI interrupt */ |
| 327 | if (!IS_SGI_PPI(intr_num)) { |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 328 | continue; |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 329 | } |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 330 | |
| 331 | /* Configure this interrupt as a secure interrupt */ |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 332 | gicr_clr_igroupr(gicr_base, intr_num); |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 333 | |
| 334 | /* Configure this interrupt as G0 or a G1S interrupt */ |
| 335 | assert((current_prop->intr_grp == INTR_GROUP0) || |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 336 | (current_prop->intr_grp == INTR_GROUP1S)); |
| 337 | |
Jeenu Viswambharan | 88d8f45 | 2017-11-07 08:38:23 +0000 | [diff] [blame] | 338 | if (current_prop->intr_grp == INTR_GROUP1S) { |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 339 | gicr_set_igrpmodr(gicr_base, intr_num); |
Jeenu Viswambharan | 88d8f45 | 2017-11-07 08:38:23 +0000 | [diff] [blame] | 340 | ctlr_enable |= CTLR_ENABLE_G1S_BIT; |
| 341 | } else { |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 342 | gicr_clr_igrpmodr(gicr_base, intr_num); |
Jeenu Viswambharan | 88d8f45 | 2017-11-07 08:38:23 +0000 | [diff] [blame] | 343 | ctlr_enable |= CTLR_ENABLE_G0_BIT; |
| 344 | } |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 345 | |
| 346 | /* Set the priority of this interrupt */ |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 347 | gicr_set_ipriorityr(gicr_base, intr_num, |
| 348 | current_prop->intr_pri); |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 349 | |
| 350 | /* |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 351 | * Set interrupt configuration for (E)PPIs. |
| 352 | * Configurations for SGIs 0-15 are ignored. |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 353 | */ |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 354 | if (intr_num >= MIN_PPI_ID) { |
| 355 | gicr_set_icfgr(gicr_base, intr_num, |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 356 | current_prop->intr_cfg); |
| 357 | } |
| 358 | |
| 359 | /* Enable this interrupt */ |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 360 | gicr_set_isenabler(gicr_base, intr_num); |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 361 | } |
Jeenu Viswambharan | 88d8f45 | 2017-11-07 08:38:23 +0000 | [diff] [blame] | 362 | |
| 363 | return ctlr_enable; |
Jeenu Viswambharan | aeb267c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 364 | } |
Andre Przywara | 95581b4 | 2020-09-07 14:53:58 +0100 | [diff] [blame] | 365 | |
| 366 | /** |
| 367 | * gicv3_rdistif_get_number_frames() - determine size of GICv3 GICR region |
| 368 | * @gicr_frame: base address of the GICR region to check |
| 369 | * |
| 370 | * This iterates over the GICR_TYPER registers of multiple GICR frames in |
| 371 | * a GICR region, to find the instance which has the LAST bit set. For most |
| 372 | * systems this corresponds to the number of cores handled by a redistributor, |
| 373 | * but there could be disabled cores among them. |
| 374 | * It assumes that each GICR region is fully accessible (till the LAST bit |
| 375 | * marks the end of the region). |
| 376 | * If a platform has multiple GICR regions, this function would need to be |
| 377 | * called multiple times, providing the respective GICR base address each time. |
| 378 | * |
| 379 | * Return: number of valid GICR frames (at least 1, up to PLATFORM_CORE_COUNT) |
| 380 | ******************************************************************************/ |
| 381 | unsigned int gicv3_rdistif_get_number_frames(const uintptr_t gicr_frame) |
| 382 | { |
| 383 | uintptr_t rdistif_base = gicr_frame; |
| 384 | unsigned int count; |
| 385 | |
| 386 | for (count = 1; count < PLATFORM_CORE_COUNT; count++) { |
| 387 | if ((gicr_read_typer(rdistif_base) & TYPER_LAST_BIT) != 0U) { |
| 388 | break; |
| 389 | } |
| 390 | rdistif_base += (1U << GICR_PCPUBASE_SHIFT); |
| 391 | } |
| 392 | |
| 393 | return count; |
| 394 | } |