Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 1 | /* |
Marc Zyngier | 0edc23e | 2016-12-19 17:01:52 +0000 | [diff] [blame] | 2 | * Copyright (C) 2013-2017 ARM Limited, All Rights Reserved. |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 3 | * Author: Marc Zyngier <marc.zyngier@arm.com> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ |
| 17 | |
Julien Grall | 68628bb | 2016-04-11 16:32:55 +0100 | [diff] [blame] | 18 | #define pr_fmt(fmt) "GICv3: " fmt |
| 19 | |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 20 | #include <linux/acpi.h> |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 21 | #include <linux/cpu.h> |
Sudeep Holla | 3708d52 | 2014-08-26 16:03:35 +0100 | [diff] [blame] | 22 | #include <linux/cpu_pm.h> |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 23 | #include <linux/delay.h> |
| 24 | #include <linux/interrupt.h> |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 25 | #include <linux/irqdomain.h> |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 26 | #include <linux/of.h> |
| 27 | #include <linux/of_address.h> |
| 28 | #include <linux/of_irq.h> |
| 29 | #include <linux/percpu.h> |
| 30 | #include <linux/slab.h> |
| 31 | |
Joel Porquet | 41a83e06 | 2015-07-07 17:11:46 -0400 | [diff] [blame] | 32 | #include <linux/irqchip.h> |
Julien Grall | 1839e57 | 2016-04-11 16:32:57 +0100 | [diff] [blame] | 33 | #include <linux/irqchip/arm-gic-common.h> |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 34 | #include <linux/irqchip/arm-gic-v3.h> |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 35 | #include <linux/irqchip/irq-partition-percpu.h> |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 36 | |
| 37 | #include <asm/cputype.h> |
| 38 | #include <asm/exception.h> |
| 39 | #include <asm/smp_plat.h> |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 40 | #include <asm/virt.h> |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 41 | |
| 42 | #include "irq-gic-common.h" |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 43 | |
Marc Zyngier | f5c1434 | 2014-11-24 14:35:10 +0000 | [diff] [blame] | 44 | struct redist_region { |
| 45 | void __iomem *redist_base; |
| 46 | phys_addr_t phys_base; |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 47 | bool single_redist; |
Marc Zyngier | f5c1434 | 2014-11-24 14:35:10 +0000 | [diff] [blame] | 48 | }; |
| 49 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 50 | struct gic_chip_data { |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 51 | struct fwnode_handle *fwnode; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 52 | void __iomem *dist_base; |
Marc Zyngier | f5c1434 | 2014-11-24 14:35:10 +0000 | [diff] [blame] | 53 | struct redist_region *redist_regions; |
| 54 | struct rdists rdists; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 55 | struct irq_domain *domain; |
| 56 | u64 redist_stride; |
Marc Zyngier | f5c1434 | 2014-11-24 14:35:10 +0000 | [diff] [blame] | 57 | u32 nr_redist_regions; |
Shanker Donthineni | eda0d04 | 2017-10-06 10:24:00 -0500 | [diff] [blame] | 58 | bool has_rss; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 59 | unsigned int irq_nr; |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 60 | struct partition_desc *ppi_descs[16]; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 61 | }; |
| 62 | |
| 63 | static struct gic_chip_data gic_data __read_mostly; |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 64 | static struct static_key supports_deactivate = STATIC_KEY_INIT_TRUE; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 65 | |
Julien Grall | 1839e57 | 2016-04-11 16:32:57 +0100 | [diff] [blame] | 66 | static struct gic_kvm_info gic_v3_kvm_info; |
Shanker Donthineni | eda0d04 | 2017-10-06 10:24:00 -0500 | [diff] [blame] | 67 | static DEFINE_PER_CPU(bool, has_rss); |
Julien Grall | 1839e57 | 2016-04-11 16:32:57 +0100 | [diff] [blame] | 68 | |
Shanker Donthineni | eda0d04 | 2017-10-06 10:24:00 -0500 | [diff] [blame] | 69 | #define MPIDR_RS(mpidr) (((mpidr) & 0xF0UL) >> 4) |
Marc Zyngier | f5c1434 | 2014-11-24 14:35:10 +0000 | [diff] [blame] | 70 | #define gic_data_rdist() (this_cpu_ptr(gic_data.rdists.rdist)) |
| 71 | #define gic_data_rdist_rd_base() (gic_data_rdist()->rd_base) |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 72 | #define gic_data_rdist_sgi_base() (gic_data_rdist_rd_base() + SZ_64K) |
| 73 | |
| 74 | /* Our default, arbitrary priority value. Linux only uses one anyway. */ |
| 75 | #define DEFAULT_PMR_VALUE 0xf0 |
| 76 | |
| 77 | static inline unsigned int gic_irq(struct irq_data *d) |
| 78 | { |
| 79 | return d->hwirq; |
| 80 | } |
| 81 | |
| 82 | static inline int gic_irq_in_rdist(struct irq_data *d) |
| 83 | { |
| 84 | return gic_irq(d) < 32; |
| 85 | } |
| 86 | |
| 87 | static inline void __iomem *gic_dist_base(struct irq_data *d) |
| 88 | { |
| 89 | if (gic_irq_in_rdist(d)) /* SGI+PPI -> SGI_base for this CPU */ |
| 90 | return gic_data_rdist_sgi_base(); |
| 91 | |
| 92 | if (d->hwirq <= 1023) /* SPI -> dist_base */ |
| 93 | return gic_data.dist_base; |
| 94 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 95 | return NULL; |
| 96 | } |
| 97 | |
| 98 | static void gic_do_wait_for_rwp(void __iomem *base) |
| 99 | { |
| 100 | u32 count = 1000000; /* 1s! */ |
| 101 | |
| 102 | while (readl_relaxed(base + GICD_CTLR) & GICD_CTLR_RWP) { |
| 103 | count--; |
| 104 | if (!count) { |
| 105 | pr_err_ratelimited("RWP timeout, gone fishing\n"); |
| 106 | return; |
| 107 | } |
| 108 | cpu_relax(); |
| 109 | udelay(1); |
| 110 | }; |
| 111 | } |
| 112 | |
| 113 | /* Wait for completion of a distributor change */ |
| 114 | static void gic_dist_wait_for_rwp(void) |
| 115 | { |
| 116 | gic_do_wait_for_rwp(gic_data.dist_base); |
| 117 | } |
| 118 | |
| 119 | /* Wait for completion of a redistributor change */ |
| 120 | static void gic_redist_wait_for_rwp(void) |
| 121 | { |
| 122 | gic_do_wait_for_rwp(gic_data_rdist_rd_base()); |
| 123 | } |
| 124 | |
Jean-Philippe Brucker | 7936e91 | 2015-10-01 13:47:14 +0100 | [diff] [blame] | 125 | #ifdef CONFIG_ARM64 |
Robert Richter | 6d4e11c | 2015-09-21 22:58:35 +0200 | [diff] [blame] | 126 | |
| 127 | static u64 __maybe_unused gic_read_iar(void) |
| 128 | { |
Suzuki K Poulose | a4023f68 | 2016-11-08 13:56:20 +0000 | [diff] [blame] | 129 | if (cpus_have_const_cap(ARM64_WORKAROUND_CAVIUM_23154)) |
Robert Richter | 6d4e11c | 2015-09-21 22:58:35 +0200 | [diff] [blame] | 130 | return gic_read_iar_cavium_thunderx(); |
| 131 | else |
| 132 | return gic_read_iar_common(); |
| 133 | } |
Jean-Philippe Brucker | 7936e91 | 2015-10-01 13:47:14 +0100 | [diff] [blame] | 134 | #endif |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 135 | |
Sudeep Holla | a2c2251 | 2014-08-26 16:03:34 +0100 | [diff] [blame] | 136 | static void gic_enable_redist(bool enable) |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 137 | { |
| 138 | void __iomem *rbase; |
| 139 | u32 count = 1000000; /* 1s! */ |
| 140 | u32 val; |
| 141 | |
| 142 | rbase = gic_data_rdist_rd_base(); |
| 143 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 144 | val = readl_relaxed(rbase + GICR_WAKER); |
Sudeep Holla | a2c2251 | 2014-08-26 16:03:34 +0100 | [diff] [blame] | 145 | if (enable) |
| 146 | /* Wake up this CPU redistributor */ |
| 147 | val &= ~GICR_WAKER_ProcessorSleep; |
| 148 | else |
| 149 | val |= GICR_WAKER_ProcessorSleep; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 150 | writel_relaxed(val, rbase + GICR_WAKER); |
| 151 | |
Sudeep Holla | a2c2251 | 2014-08-26 16:03:34 +0100 | [diff] [blame] | 152 | if (!enable) { /* Check that GICR_WAKER is writeable */ |
| 153 | val = readl_relaxed(rbase + GICR_WAKER); |
| 154 | if (!(val & GICR_WAKER_ProcessorSleep)) |
| 155 | return; /* No PM support in this redistributor */ |
| 156 | } |
| 157 | |
Dan Carpenter | d102eb5 | 2016-10-14 10:26:21 +0300 | [diff] [blame] | 158 | while (--count) { |
Sudeep Holla | a2c2251 | 2014-08-26 16:03:34 +0100 | [diff] [blame] | 159 | val = readl_relaxed(rbase + GICR_WAKER); |
Andrew Jones | cf1d9d1 | 2016-05-11 21:23:17 +0200 | [diff] [blame] | 160 | if (enable ^ (bool)(val & GICR_WAKER_ChildrenAsleep)) |
Sudeep Holla | a2c2251 | 2014-08-26 16:03:34 +0100 | [diff] [blame] | 161 | break; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 162 | cpu_relax(); |
| 163 | udelay(1); |
| 164 | }; |
Sudeep Holla | a2c2251 | 2014-08-26 16:03:34 +0100 | [diff] [blame] | 165 | if (!count) |
| 166 | pr_err_ratelimited("redistributor failed to %s...\n", |
| 167 | enable ? "wakeup" : "sleep"); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | /* |
| 171 | * Routines to disable, enable, EOI and route interrupts |
| 172 | */ |
Marc Zyngier | b594c6e | 2015-03-18 11:01:24 +0000 | [diff] [blame] | 173 | static int gic_peek_irq(struct irq_data *d, u32 offset) |
| 174 | { |
| 175 | u32 mask = 1 << (gic_irq(d) % 32); |
| 176 | void __iomem *base; |
| 177 | |
| 178 | if (gic_irq_in_rdist(d)) |
| 179 | base = gic_data_rdist_sgi_base(); |
| 180 | else |
| 181 | base = gic_data.dist_base; |
| 182 | |
| 183 | return !!(readl_relaxed(base + offset + (gic_irq(d) / 32) * 4) & mask); |
| 184 | } |
| 185 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 186 | static void gic_poke_irq(struct irq_data *d, u32 offset) |
| 187 | { |
| 188 | u32 mask = 1 << (gic_irq(d) % 32); |
| 189 | void (*rwp_wait)(void); |
| 190 | void __iomem *base; |
| 191 | |
| 192 | if (gic_irq_in_rdist(d)) { |
| 193 | base = gic_data_rdist_sgi_base(); |
| 194 | rwp_wait = gic_redist_wait_for_rwp; |
| 195 | } else { |
| 196 | base = gic_data.dist_base; |
| 197 | rwp_wait = gic_dist_wait_for_rwp; |
| 198 | } |
| 199 | |
| 200 | writel_relaxed(mask, base + offset + (gic_irq(d) / 32) * 4); |
| 201 | rwp_wait(); |
| 202 | } |
| 203 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 204 | static void gic_mask_irq(struct irq_data *d) |
| 205 | { |
| 206 | gic_poke_irq(d, GICD_ICENABLER); |
| 207 | } |
| 208 | |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 209 | static void gic_eoimode1_mask_irq(struct irq_data *d) |
| 210 | { |
| 211 | gic_mask_irq(d); |
Marc Zyngier | 530bf35 | 2015-08-26 17:00:43 +0100 | [diff] [blame] | 212 | /* |
| 213 | * When masking a forwarded interrupt, make sure it is |
| 214 | * deactivated as well. |
| 215 | * |
| 216 | * This ensures that an interrupt that is getting |
| 217 | * disabled/masked will not get "stuck", because there is |
| 218 | * noone to deactivate it (guest is being terminated). |
| 219 | */ |
Thomas Gleixner | 4df7f54 | 2015-09-15 13:19:16 +0200 | [diff] [blame] | 220 | if (irqd_is_forwarded_to_vcpu(d)) |
Marc Zyngier | 530bf35 | 2015-08-26 17:00:43 +0100 | [diff] [blame] | 221 | gic_poke_irq(d, GICD_ICACTIVER); |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 222 | } |
| 223 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 224 | static void gic_unmask_irq(struct irq_data *d) |
| 225 | { |
| 226 | gic_poke_irq(d, GICD_ISENABLER); |
| 227 | } |
| 228 | |
Marc Zyngier | b594c6e | 2015-03-18 11:01:24 +0000 | [diff] [blame] | 229 | static int gic_irq_set_irqchip_state(struct irq_data *d, |
| 230 | enum irqchip_irq_state which, bool val) |
| 231 | { |
| 232 | u32 reg; |
| 233 | |
| 234 | if (d->hwirq >= gic_data.irq_nr) /* PPI/SPI only */ |
| 235 | return -EINVAL; |
| 236 | |
| 237 | switch (which) { |
| 238 | case IRQCHIP_STATE_PENDING: |
| 239 | reg = val ? GICD_ISPENDR : GICD_ICPENDR; |
| 240 | break; |
| 241 | |
| 242 | case IRQCHIP_STATE_ACTIVE: |
| 243 | reg = val ? GICD_ISACTIVER : GICD_ICACTIVER; |
| 244 | break; |
| 245 | |
| 246 | case IRQCHIP_STATE_MASKED: |
| 247 | reg = val ? GICD_ICENABLER : GICD_ISENABLER; |
| 248 | break; |
| 249 | |
| 250 | default: |
| 251 | return -EINVAL; |
| 252 | } |
| 253 | |
| 254 | gic_poke_irq(d, reg); |
| 255 | return 0; |
| 256 | } |
| 257 | |
| 258 | static int gic_irq_get_irqchip_state(struct irq_data *d, |
| 259 | enum irqchip_irq_state which, bool *val) |
| 260 | { |
| 261 | if (d->hwirq >= gic_data.irq_nr) /* PPI/SPI only */ |
| 262 | return -EINVAL; |
| 263 | |
| 264 | switch (which) { |
| 265 | case IRQCHIP_STATE_PENDING: |
| 266 | *val = gic_peek_irq(d, GICD_ISPENDR); |
| 267 | break; |
| 268 | |
| 269 | case IRQCHIP_STATE_ACTIVE: |
| 270 | *val = gic_peek_irq(d, GICD_ISACTIVER); |
| 271 | break; |
| 272 | |
| 273 | case IRQCHIP_STATE_MASKED: |
| 274 | *val = !gic_peek_irq(d, GICD_ISENABLER); |
| 275 | break; |
| 276 | |
| 277 | default: |
| 278 | return -EINVAL; |
| 279 | } |
| 280 | |
| 281 | return 0; |
| 282 | } |
| 283 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 284 | static void gic_eoi_irq(struct irq_data *d) |
| 285 | { |
| 286 | gic_write_eoir(gic_irq(d)); |
| 287 | } |
| 288 | |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 289 | static void gic_eoimode1_eoi_irq(struct irq_data *d) |
| 290 | { |
| 291 | /* |
Marc Zyngier | 530bf35 | 2015-08-26 17:00:43 +0100 | [diff] [blame] | 292 | * No need to deactivate an LPI, or an interrupt that |
| 293 | * is is getting forwarded to a vcpu. |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 294 | */ |
Thomas Gleixner | 4df7f54 | 2015-09-15 13:19:16 +0200 | [diff] [blame] | 295 | if (gic_irq(d) >= 8192 || irqd_is_forwarded_to_vcpu(d)) |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 296 | return; |
| 297 | gic_write_dir(gic_irq(d)); |
| 298 | } |
| 299 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 300 | static int gic_set_type(struct irq_data *d, unsigned int type) |
| 301 | { |
| 302 | unsigned int irq = gic_irq(d); |
| 303 | void (*rwp_wait)(void); |
| 304 | void __iomem *base; |
| 305 | |
| 306 | /* Interrupt configuration for SGIs can't be changed */ |
| 307 | if (irq < 16) |
| 308 | return -EINVAL; |
| 309 | |
Liviu Dudau | fb7e7de | 2015-01-20 16:52:59 +0000 | [diff] [blame] | 310 | /* SPIs have restrictions on the supported types */ |
| 311 | if (irq >= 32 && type != IRQ_TYPE_LEVEL_HIGH && |
| 312 | type != IRQ_TYPE_EDGE_RISING) |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 313 | return -EINVAL; |
| 314 | |
| 315 | if (gic_irq_in_rdist(d)) { |
| 316 | base = gic_data_rdist_sgi_base(); |
| 317 | rwp_wait = gic_redist_wait_for_rwp; |
| 318 | } else { |
| 319 | base = gic_data.dist_base; |
| 320 | rwp_wait = gic_dist_wait_for_rwp; |
| 321 | } |
| 322 | |
Liviu Dudau | fb7e7de | 2015-01-20 16:52:59 +0000 | [diff] [blame] | 323 | return gic_configure_irq(irq, type, base, rwp_wait); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 324 | } |
| 325 | |
Marc Zyngier | 530bf35 | 2015-08-26 17:00:43 +0100 | [diff] [blame] | 326 | static int gic_irq_set_vcpu_affinity(struct irq_data *d, void *vcpu) |
| 327 | { |
Thomas Gleixner | 4df7f54 | 2015-09-15 13:19:16 +0200 | [diff] [blame] | 328 | if (vcpu) |
| 329 | irqd_set_forwarded_to_vcpu(d); |
| 330 | else |
| 331 | irqd_clr_forwarded_to_vcpu(d); |
Marc Zyngier | 530bf35 | 2015-08-26 17:00:43 +0100 | [diff] [blame] | 332 | return 0; |
| 333 | } |
| 334 | |
Jean-Philippe Brucker | f6c86a4 | 2015-10-01 13:47:15 +0100 | [diff] [blame] | 335 | static u64 gic_mpidr_to_affinity(unsigned long mpidr) |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 336 | { |
| 337 | u64 aff; |
| 338 | |
Jean-Philippe Brucker | f6c86a4 | 2015-10-01 13:47:15 +0100 | [diff] [blame] | 339 | aff = ((u64)MPIDR_AFFINITY_LEVEL(mpidr, 3) << 32 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 340 | MPIDR_AFFINITY_LEVEL(mpidr, 2) << 16 | |
| 341 | MPIDR_AFFINITY_LEVEL(mpidr, 1) << 8 | |
| 342 | MPIDR_AFFINITY_LEVEL(mpidr, 0)); |
| 343 | |
| 344 | return aff; |
| 345 | } |
| 346 | |
| 347 | static asmlinkage void __exception_irq_entry gic_handle_irq(struct pt_regs *regs) |
| 348 | { |
Jean-Philippe Brucker | f6c86a4 | 2015-10-01 13:47:15 +0100 | [diff] [blame] | 349 | u32 irqnr; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 350 | |
| 351 | do { |
| 352 | irqnr = gic_read_iar(); |
| 353 | |
Marc Zyngier | da33f31 | 2014-11-24 14:35:18 +0000 | [diff] [blame] | 354 | if (likely(irqnr > 15 && irqnr < 1020) || irqnr >= 8192) { |
Marc Zyngier | ebc6de0 | 2014-08-26 11:03:33 +0100 | [diff] [blame] | 355 | int err; |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 356 | |
| 357 | if (static_key_true(&supports_deactivate)) |
| 358 | gic_write_eoir(irqnr); |
Will Deacon | 39a06b6 | 2017-07-18 18:37:55 +0100 | [diff] [blame] | 359 | else |
| 360 | isb(); |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 361 | |
Marc Zyngier | ebc6de0 | 2014-08-26 11:03:33 +0100 | [diff] [blame] | 362 | err = handle_domain_irq(gic_data.domain, irqnr, regs); |
| 363 | if (err) { |
Marc Zyngier | da33f31 | 2014-11-24 14:35:18 +0000 | [diff] [blame] | 364 | WARN_ONCE(true, "Unexpected interrupt received!\n"); |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 365 | if (static_key_true(&supports_deactivate)) { |
| 366 | if (irqnr < 8192) |
| 367 | gic_write_dir(irqnr); |
| 368 | } else { |
| 369 | gic_write_eoir(irqnr); |
| 370 | } |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 371 | } |
Marc Zyngier | ebc6de0 | 2014-08-26 11:03:33 +0100 | [diff] [blame] | 372 | continue; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 373 | } |
| 374 | if (irqnr < 16) { |
| 375 | gic_write_eoir(irqnr); |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 376 | if (static_key_true(&supports_deactivate)) |
| 377 | gic_write_dir(irqnr); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 378 | #ifdef CONFIG_SMP |
Will Deacon | f86c4fb | 2016-04-26 12:00:00 +0100 | [diff] [blame] | 379 | /* |
| 380 | * Unlike GICv2, we don't need an smp_rmb() here. |
| 381 | * The control dependency from gic_read_iar to |
| 382 | * the ISB in gic_write_eoir is enough to ensure |
| 383 | * that any shared data read by handle_IPI will |
| 384 | * be read after the ACK. |
| 385 | */ |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 386 | handle_IPI(irqnr, regs); |
| 387 | #else |
| 388 | WARN_ONCE(true, "Unexpected SGI received!\n"); |
| 389 | #endif |
| 390 | continue; |
| 391 | } |
| 392 | } while (irqnr != ICC_IAR1_EL1_SPURIOUS); |
| 393 | } |
| 394 | |
| 395 | static void __init gic_dist_init(void) |
| 396 | { |
| 397 | unsigned int i; |
| 398 | u64 affinity; |
| 399 | void __iomem *base = gic_data.dist_base; |
| 400 | |
| 401 | /* Disable the distributor */ |
| 402 | writel_relaxed(0, base + GICD_CTLR); |
| 403 | gic_dist_wait_for_rwp(); |
| 404 | |
Marc Zyngier | 7c9b973 | 2016-05-06 19:41:56 +0100 | [diff] [blame] | 405 | /* |
| 406 | * Configure SPIs as non-secure Group-1. This will only matter |
| 407 | * if the GIC only has a single security state. This will not |
| 408 | * do the right thing if the kernel is running in secure mode, |
| 409 | * but that's not the intended use case anyway. |
| 410 | */ |
| 411 | for (i = 32; i < gic_data.irq_nr; i += 32) |
| 412 | writel_relaxed(~0, base + GICD_IGROUPR + i / 8); |
| 413 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 414 | gic_dist_config(base, gic_data.irq_nr, gic_dist_wait_for_rwp); |
| 415 | |
| 416 | /* Enable distributor with ARE, Group1 */ |
| 417 | writel_relaxed(GICD_CTLR_ARE_NS | GICD_CTLR_ENABLE_G1A | GICD_CTLR_ENABLE_G1, |
| 418 | base + GICD_CTLR); |
| 419 | |
| 420 | /* |
| 421 | * Set all global interrupts to the boot CPU only. ARE must be |
| 422 | * enabled. |
| 423 | */ |
| 424 | affinity = gic_mpidr_to_affinity(cpu_logical_map(smp_processor_id())); |
| 425 | for (i = 32; i < gic_data.irq_nr; i++) |
Jean-Philippe Brucker | 72c9712 | 2015-10-01 13:47:16 +0100 | [diff] [blame] | 426 | gic_write_irouter(affinity, base + GICD_IROUTER + i * 8); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 427 | } |
| 428 | |
Marc Zyngier | 0d94ded | 2016-12-19 17:00:38 +0000 | [diff] [blame] | 429 | static int gic_iterate_rdists(int (*fn)(struct redist_region *, void __iomem *)) |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 430 | { |
Marc Zyngier | 0d94ded | 2016-12-19 17:00:38 +0000 | [diff] [blame] | 431 | int ret = -ENODEV; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 432 | int i; |
| 433 | |
Marc Zyngier | f5c1434 | 2014-11-24 14:35:10 +0000 | [diff] [blame] | 434 | for (i = 0; i < gic_data.nr_redist_regions; i++) { |
| 435 | void __iomem *ptr = gic_data.redist_regions[i].redist_base; |
Marc Zyngier | 0d94ded | 2016-12-19 17:00:38 +0000 | [diff] [blame] | 436 | u64 typer; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 437 | u32 reg; |
| 438 | |
| 439 | reg = readl_relaxed(ptr + GICR_PIDR2) & GIC_PIDR2_ARCH_MASK; |
| 440 | if (reg != GIC_PIDR2_ARCH_GICv3 && |
| 441 | reg != GIC_PIDR2_ARCH_GICv4) { /* We're in trouble... */ |
| 442 | pr_warn("No redistributor present @%p\n", ptr); |
| 443 | break; |
| 444 | } |
| 445 | |
| 446 | do { |
Jean-Philippe Brucker | 72c9712 | 2015-10-01 13:47:16 +0100 | [diff] [blame] | 447 | typer = gic_read_typer(ptr + GICR_TYPER); |
Marc Zyngier | 0d94ded | 2016-12-19 17:00:38 +0000 | [diff] [blame] | 448 | ret = fn(gic_data.redist_regions + i, ptr); |
| 449 | if (!ret) |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 450 | return 0; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 451 | |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 452 | if (gic_data.redist_regions[i].single_redist) |
| 453 | break; |
| 454 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 455 | if (gic_data.redist_stride) { |
| 456 | ptr += gic_data.redist_stride; |
| 457 | } else { |
| 458 | ptr += SZ_64K * 2; /* Skip RD_base + SGI_base */ |
| 459 | if (typer & GICR_TYPER_VLPIS) |
| 460 | ptr += SZ_64K * 2; /* Skip VLPI_base + reserved page */ |
| 461 | } |
| 462 | } while (!(typer & GICR_TYPER_LAST)); |
| 463 | } |
| 464 | |
Marc Zyngier | 0d94ded | 2016-12-19 17:00:38 +0000 | [diff] [blame] | 465 | return ret ? -ENODEV : 0; |
| 466 | } |
| 467 | |
| 468 | static int __gic_populate_rdist(struct redist_region *region, void __iomem *ptr) |
| 469 | { |
| 470 | unsigned long mpidr = cpu_logical_map(smp_processor_id()); |
| 471 | u64 typer; |
| 472 | u32 aff; |
| 473 | |
| 474 | /* |
| 475 | * Convert affinity to a 32bit value that can be matched to |
| 476 | * GICR_TYPER bits [63:32]. |
| 477 | */ |
| 478 | aff = (MPIDR_AFFINITY_LEVEL(mpidr, 3) << 24 | |
| 479 | MPIDR_AFFINITY_LEVEL(mpidr, 2) << 16 | |
| 480 | MPIDR_AFFINITY_LEVEL(mpidr, 1) << 8 | |
| 481 | MPIDR_AFFINITY_LEVEL(mpidr, 0)); |
| 482 | |
| 483 | typer = gic_read_typer(ptr + GICR_TYPER); |
| 484 | if ((typer >> 32) == aff) { |
| 485 | u64 offset = ptr - region->redist_base; |
| 486 | gic_data_rdist_rd_base() = ptr; |
| 487 | gic_data_rdist()->phys_base = region->phys_base + offset; |
| 488 | |
| 489 | pr_info("CPU%d: found redistributor %lx region %d:%pa\n", |
| 490 | smp_processor_id(), mpidr, |
| 491 | (int)(region - gic_data.redist_regions), |
| 492 | &gic_data_rdist()->phys_base); |
| 493 | return 0; |
| 494 | } |
| 495 | |
| 496 | /* Try next one */ |
| 497 | return 1; |
| 498 | } |
| 499 | |
| 500 | static int gic_populate_rdist(void) |
| 501 | { |
| 502 | if (gic_iterate_rdists(__gic_populate_rdist) == 0) |
| 503 | return 0; |
| 504 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 505 | /* We couldn't even deal with ourselves... */ |
Jean-Philippe Brucker | f6c86a4 | 2015-10-01 13:47:15 +0100 | [diff] [blame] | 506 | WARN(true, "CPU%d: mpidr %lx has no re-distributor!\n", |
Marc Zyngier | 0d94ded | 2016-12-19 17:00:38 +0000 | [diff] [blame] | 507 | smp_processor_id(), |
| 508 | (unsigned long)cpu_logical_map(smp_processor_id())); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 509 | return -ENODEV; |
| 510 | } |
| 511 | |
Marc Zyngier | 0edc23e | 2016-12-19 17:01:52 +0000 | [diff] [blame] | 512 | static int __gic_update_vlpi_properties(struct redist_region *region, |
| 513 | void __iomem *ptr) |
| 514 | { |
| 515 | u64 typer = gic_read_typer(ptr + GICR_TYPER); |
| 516 | gic_data.rdists.has_vlpis &= !!(typer & GICR_TYPER_VLPIS); |
| 517 | gic_data.rdists.has_direct_lpi &= !!(typer & GICR_TYPER_DirectLPIS); |
| 518 | |
| 519 | return 1; |
| 520 | } |
| 521 | |
| 522 | static void gic_update_vlpi_properties(void) |
| 523 | { |
| 524 | gic_iterate_rdists(__gic_update_vlpi_properties); |
| 525 | pr_info("%sVLPI support, %sdirect LPI support\n", |
| 526 | !gic_data.rdists.has_vlpis ? "no " : "", |
| 527 | !gic_data.rdists.has_direct_lpi ? "no " : ""); |
| 528 | } |
| 529 | |
Sudeep Holla | 3708d52 | 2014-08-26 16:03:35 +0100 | [diff] [blame] | 530 | static void gic_cpu_sys_reg_init(void) |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 531 | { |
Shanker Donthineni | eda0d04 | 2017-10-06 10:24:00 -0500 | [diff] [blame] | 532 | int i, cpu = smp_processor_id(); |
| 533 | u64 mpidr = cpu_logical_map(cpu); |
| 534 | u64 need_rss = MPIDR_RS(mpidr); |
Marc Zyngier | d6062a6 | 2018-03-09 14:53:19 +0000 | [diff] [blame] | 535 | u32 val; |
Shanker Donthineni | eda0d04 | 2017-10-06 10:24:00 -0500 | [diff] [blame] | 536 | |
Marc Zyngier | 7cabd00 | 2015-09-30 11:48:01 +0100 | [diff] [blame] | 537 | /* |
| 538 | * Need to check that the SRE bit has actually been set. If |
| 539 | * not, it means that SRE is disabled at EL2. We're going to |
| 540 | * die painfully, and there is nothing we can do about it. |
| 541 | * |
| 542 | * Kindly inform the luser. |
| 543 | */ |
| 544 | if (!gic_enable_sre()) |
| 545 | pr_err("GIC: unable to set SRE (disabled at EL2), panic ahead\n"); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 546 | |
| 547 | /* Set priority mask register */ |
| 548 | gic_write_pmr(DEFAULT_PMR_VALUE); |
| 549 | |
Daniel Thompson | 91ef844 | 2016-08-19 17:13:09 +0100 | [diff] [blame] | 550 | /* |
| 551 | * Some firmwares hand over to the kernel with the BPR changed from |
| 552 | * its reset value (and with a value large enough to prevent |
| 553 | * any pre-emptive interrupts from working at all). Writing a zero |
| 554 | * to BPR restores is reset value. |
| 555 | */ |
| 556 | gic_write_bpr1(0); |
| 557 | |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 558 | if (static_key_true(&supports_deactivate)) { |
| 559 | /* EOI drops priority only (mode 1) */ |
| 560 | gic_write_ctlr(ICC_CTLR_EL1_EOImode_drop); |
| 561 | } else { |
| 562 | /* EOI deactivates interrupt too (mode 0) */ |
| 563 | gic_write_ctlr(ICC_CTLR_EL1_EOImode_drop_dir); |
| 564 | } |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 565 | |
Marc Zyngier | d6062a6 | 2018-03-09 14:53:19 +0000 | [diff] [blame] | 566 | val = gic_read_ctlr(); |
| 567 | val &= ICC_CTLR_EL1_PRI_BITS_MASK; |
| 568 | val >>= ICC_CTLR_EL1_PRI_BITS_SHIFT; |
| 569 | |
| 570 | switch(val + 1) { |
| 571 | case 8: |
| 572 | case 7: |
| 573 | write_gicreg(0, ICC_AP0R3_EL1); |
| 574 | write_gicreg(0, ICC_AP1R3_EL1); |
| 575 | write_gicreg(0, ICC_AP0R2_EL1); |
| 576 | write_gicreg(0, ICC_AP1R2_EL1); |
| 577 | case 6: |
| 578 | write_gicreg(0, ICC_AP0R1_EL1); |
| 579 | write_gicreg(0, ICC_AP1R1_EL1); |
| 580 | case 5: |
| 581 | case 4: |
| 582 | write_gicreg(0, ICC_AP0R0_EL1); |
| 583 | write_gicreg(0, ICC_AP1R0_EL1); |
| 584 | } |
| 585 | |
| 586 | isb(); |
| 587 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 588 | /* ... and let's hit the road... */ |
| 589 | gic_write_grpen1(1); |
Shanker Donthineni | eda0d04 | 2017-10-06 10:24:00 -0500 | [diff] [blame] | 590 | |
| 591 | /* Keep the RSS capability status in per_cpu variable */ |
| 592 | per_cpu(has_rss, cpu) = !!(gic_read_ctlr() & ICC_CTLR_EL1_RSS); |
| 593 | |
| 594 | /* Check all the CPUs have capable of sending SGIs to other CPUs */ |
| 595 | for_each_online_cpu(i) { |
| 596 | bool have_rss = per_cpu(has_rss, i) && per_cpu(has_rss, cpu); |
| 597 | |
| 598 | need_rss |= MPIDR_RS(cpu_logical_map(i)); |
| 599 | if (need_rss && (!have_rss)) |
| 600 | pr_crit("CPU%d (%lx) can't SGI CPU%d (%lx), no RSS\n", |
| 601 | cpu, (unsigned long)mpidr, |
| 602 | i, (unsigned long)cpu_logical_map(i)); |
| 603 | } |
| 604 | |
| 605 | /** |
| 606 | * GIC spec says, when ICC_CTLR_EL1.RSS==1 and GICD_TYPER.RSS==0, |
| 607 | * writing ICC_ASGI1R_EL1 register with RS != 0 is a CONSTRAINED |
| 608 | * UNPREDICTABLE choice of : |
| 609 | * - The write is ignored. |
| 610 | * - The RS field is treated as 0. |
| 611 | */ |
| 612 | if (need_rss && (!gic_data.has_rss)) |
| 613 | pr_crit_once("RSS is required but GICD doesn't support it\n"); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 614 | } |
| 615 | |
Marc Zyngier | f736d65 | 2018-02-25 11:27:04 +0000 | [diff] [blame] | 616 | static bool gicv3_nolpi; |
| 617 | |
| 618 | static int __init gicv3_nolpi_cfg(char *buf) |
| 619 | { |
| 620 | return strtobool(buf, &gicv3_nolpi); |
| 621 | } |
| 622 | early_param("irqchip.gicv3_nolpi", gicv3_nolpi_cfg); |
| 623 | |
Marc Zyngier | da33f31 | 2014-11-24 14:35:18 +0000 | [diff] [blame] | 624 | static int gic_dist_supports_lpis(void) |
| 625 | { |
Marc Zyngier | f736d65 | 2018-02-25 11:27:04 +0000 | [diff] [blame] | 626 | return !!(readl_relaxed(gic_data.dist_base + GICD_TYPER) & GICD_TYPER_LPIS) && !gicv3_nolpi; |
Marc Zyngier | da33f31 | 2014-11-24 14:35:18 +0000 | [diff] [blame] | 627 | } |
| 628 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 629 | static void gic_cpu_init(void) |
| 630 | { |
| 631 | void __iomem *rbase; |
| 632 | |
| 633 | /* Register ourselves with the rest of the world */ |
| 634 | if (gic_populate_rdist()) |
| 635 | return; |
| 636 | |
Sudeep Holla | a2c2251 | 2014-08-26 16:03:34 +0100 | [diff] [blame] | 637 | gic_enable_redist(true); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 638 | |
| 639 | rbase = gic_data_rdist_sgi_base(); |
| 640 | |
Marc Zyngier | 7c9b973 | 2016-05-06 19:41:56 +0100 | [diff] [blame] | 641 | /* Configure SGIs/PPIs as non-secure Group-1 */ |
| 642 | writel_relaxed(~0, rbase + GICR_IGROUPR0); |
| 643 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 644 | gic_cpu_config(rbase, gic_redist_wait_for_rwp); |
| 645 | |
Marc Zyngier | da33f31 | 2014-11-24 14:35:18 +0000 | [diff] [blame] | 646 | /* Give LPIs a spin */ |
| 647 | if (IS_ENABLED(CONFIG_ARM_GIC_V3_ITS) && gic_dist_supports_lpis()) |
| 648 | its_cpu_init(); |
| 649 | |
Sudeep Holla | 3708d52 | 2014-08-26 16:03:35 +0100 | [diff] [blame] | 650 | /* initialise system registers */ |
| 651 | gic_cpu_sys_reg_init(); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 652 | } |
| 653 | |
| 654 | #ifdef CONFIG_SMP |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 655 | |
Shanker Donthineni | eda0d04 | 2017-10-06 10:24:00 -0500 | [diff] [blame] | 656 | #define MPIDR_TO_SGI_RS(mpidr) (MPIDR_RS(mpidr) << ICC_SGI1R_RS_SHIFT) |
| 657 | #define MPIDR_TO_SGI_CLUSTER_ID(mpidr) ((mpidr) & ~0xFUL) |
| 658 | |
Richard Cochran | 6670a6d | 2016-07-13 17:16:05 +0000 | [diff] [blame] | 659 | static int gic_starting_cpu(unsigned int cpu) |
| 660 | { |
| 661 | gic_cpu_init(); |
| 662 | return 0; |
| 663 | } |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 664 | |
| 665 | static u16 gic_compute_target_list(int *base_cpu, const struct cpumask *mask, |
Jean-Philippe Brucker | f6c86a4 | 2015-10-01 13:47:15 +0100 | [diff] [blame] | 666 | unsigned long cluster_id) |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 667 | { |
James Morse | 727653d | 2016-09-19 18:29:15 +0100 | [diff] [blame] | 668 | int next_cpu, cpu = *base_cpu; |
Jean-Philippe Brucker | f6c86a4 | 2015-10-01 13:47:15 +0100 | [diff] [blame] | 669 | unsigned long mpidr = cpu_logical_map(cpu); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 670 | u16 tlist = 0; |
| 671 | |
| 672 | while (cpu < nr_cpu_ids) { |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 673 | tlist |= 1 << (mpidr & 0xf); |
| 674 | |
James Morse | 727653d | 2016-09-19 18:29:15 +0100 | [diff] [blame] | 675 | next_cpu = cpumask_next(cpu, mask); |
| 676 | if (next_cpu >= nr_cpu_ids) |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 677 | goto out; |
James Morse | 727653d | 2016-09-19 18:29:15 +0100 | [diff] [blame] | 678 | cpu = next_cpu; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 679 | |
| 680 | mpidr = cpu_logical_map(cpu); |
| 681 | |
Shanker Donthineni | eda0d04 | 2017-10-06 10:24:00 -0500 | [diff] [blame] | 682 | if (cluster_id != MPIDR_TO_SGI_CLUSTER_ID(mpidr)) { |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 683 | cpu--; |
| 684 | goto out; |
| 685 | } |
| 686 | } |
| 687 | out: |
| 688 | *base_cpu = cpu; |
| 689 | return tlist; |
| 690 | } |
| 691 | |
Andre Przywara | 7e58027 | 2014-11-12 13:46:06 +0000 | [diff] [blame] | 692 | #define MPIDR_TO_SGI_AFFINITY(cluster_id, level) \ |
| 693 | (MPIDR_AFFINITY_LEVEL(cluster_id, level) \ |
| 694 | << ICC_SGI1R_AFFINITY_## level ##_SHIFT) |
| 695 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 696 | static void gic_send_sgi(u64 cluster_id, u16 tlist, unsigned int irq) |
| 697 | { |
| 698 | u64 val; |
| 699 | |
Andre Przywara | 7e58027 | 2014-11-12 13:46:06 +0000 | [diff] [blame] | 700 | val = (MPIDR_TO_SGI_AFFINITY(cluster_id, 3) | |
| 701 | MPIDR_TO_SGI_AFFINITY(cluster_id, 2) | |
| 702 | irq << ICC_SGI1R_SGI_ID_SHIFT | |
| 703 | MPIDR_TO_SGI_AFFINITY(cluster_id, 1) | |
Shanker Donthineni | eda0d04 | 2017-10-06 10:24:00 -0500 | [diff] [blame] | 704 | MPIDR_TO_SGI_RS(cluster_id) | |
Andre Przywara | 7e58027 | 2014-11-12 13:46:06 +0000 | [diff] [blame] | 705 | tlist << ICC_SGI1R_TARGET_LIST_SHIFT); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 706 | |
Mark Salter | b6dd4d8 | 2018-02-02 09:20:29 -0500 | [diff] [blame] | 707 | pr_devel("CPU%d: ICC_SGI1R_EL1 %llx\n", smp_processor_id(), val); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 708 | gic_write_sgi1r(val); |
| 709 | } |
| 710 | |
| 711 | static void gic_raise_softirq(const struct cpumask *mask, unsigned int irq) |
| 712 | { |
| 713 | int cpu; |
| 714 | |
| 715 | if (WARN_ON(irq >= 16)) |
| 716 | return; |
| 717 | |
| 718 | /* |
| 719 | * Ensure that stores to Normal memory are visible to the |
| 720 | * other CPUs before issuing the IPI. |
| 721 | */ |
Shanker Donthineni | 21ec30c | 2018-01-31 18:03:42 -0600 | [diff] [blame] | 722 | wmb(); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 723 | |
Rusty Russell | f9b531f | 2015-03-05 10:49:16 +1030 | [diff] [blame] | 724 | for_each_cpu(cpu, mask) { |
Shanker Donthineni | eda0d04 | 2017-10-06 10:24:00 -0500 | [diff] [blame] | 725 | u64 cluster_id = MPIDR_TO_SGI_CLUSTER_ID(cpu_logical_map(cpu)); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 726 | u16 tlist; |
| 727 | |
| 728 | tlist = gic_compute_target_list(&cpu, mask, cluster_id); |
| 729 | gic_send_sgi(cluster_id, tlist, irq); |
| 730 | } |
| 731 | |
| 732 | /* Force the above writes to ICC_SGI1R_EL1 to be executed */ |
| 733 | isb(); |
| 734 | } |
| 735 | |
| 736 | static void gic_smp_init(void) |
| 737 | { |
| 738 | set_smp_cross_call(gic_raise_softirq); |
Thomas Gleixner | 6896bcd | 2016-12-21 20:19:56 +0100 | [diff] [blame] | 739 | cpuhp_setup_state_nocalls(CPUHP_AP_IRQ_GIC_STARTING, |
Thomas Gleixner | 73c1b41 | 2016-12-21 20:19:54 +0100 | [diff] [blame] | 740 | "irqchip/arm/gicv3:starting", |
| 741 | gic_starting_cpu, NULL); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 742 | } |
| 743 | |
| 744 | static int gic_set_affinity(struct irq_data *d, const struct cpumask *mask_val, |
| 745 | bool force) |
| 746 | { |
Suzuki K Poulose | 65a30f8 | 2017-07-04 10:56:35 +0100 | [diff] [blame] | 747 | unsigned int cpu; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 748 | void __iomem *reg; |
| 749 | int enabled; |
| 750 | u64 val; |
| 751 | |
Suzuki K Poulose | 65a30f8 | 2017-07-04 10:56:35 +0100 | [diff] [blame] | 752 | if (force) |
| 753 | cpu = cpumask_first(mask_val); |
| 754 | else |
| 755 | cpu = cpumask_any_and(mask_val, cpu_online_mask); |
| 756 | |
Suzuki K Poulose | 866d7c1 | 2017-06-30 10:58:28 +0100 | [diff] [blame] | 757 | if (cpu >= nr_cpu_ids) |
| 758 | return -EINVAL; |
| 759 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 760 | if (gic_irq_in_rdist(d)) |
| 761 | return -EINVAL; |
| 762 | |
| 763 | /* If interrupt was enabled, disable it first */ |
| 764 | enabled = gic_peek_irq(d, GICD_ISENABLER); |
| 765 | if (enabled) |
| 766 | gic_mask_irq(d); |
| 767 | |
| 768 | reg = gic_dist_base(d) + GICD_IROUTER + (gic_irq(d) * 8); |
| 769 | val = gic_mpidr_to_affinity(cpu_logical_map(cpu)); |
| 770 | |
Jean-Philippe Brucker | 72c9712 | 2015-10-01 13:47:16 +0100 | [diff] [blame] | 771 | gic_write_irouter(val, reg); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 772 | |
| 773 | /* |
| 774 | * If the interrupt was enabled, enabled it again. Otherwise, |
| 775 | * just wait for the distributor to have digested our changes. |
| 776 | */ |
| 777 | if (enabled) |
| 778 | gic_unmask_irq(d); |
| 779 | else |
| 780 | gic_dist_wait_for_rwp(); |
| 781 | |
Marc Zyngier | 956ae91 | 2017-08-18 09:39:17 +0100 | [diff] [blame] | 782 | irq_data_update_effective_affinity(d, cpumask_of(cpu)); |
| 783 | |
Antoine Tenart | 0fc6fa2 | 2016-02-19 16:22:43 +0100 | [diff] [blame] | 784 | return IRQ_SET_MASK_OK_DONE; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 785 | } |
| 786 | #else |
| 787 | #define gic_set_affinity NULL |
| 788 | #define gic_smp_init() do { } while(0) |
| 789 | #endif |
| 790 | |
Sudeep Holla | 3708d52 | 2014-08-26 16:03:35 +0100 | [diff] [blame] | 791 | #ifdef CONFIG_CPU_PM |
Sudeep Holla | ccd9432 | 2016-08-17 13:49:19 +0100 | [diff] [blame] | 792 | /* Check whether it's single security state view */ |
| 793 | static bool gic_dist_security_disabled(void) |
| 794 | { |
| 795 | return readl_relaxed(gic_data.dist_base + GICD_CTLR) & GICD_CTLR_DS; |
| 796 | } |
| 797 | |
Sudeep Holla | 3708d52 | 2014-08-26 16:03:35 +0100 | [diff] [blame] | 798 | static int gic_cpu_pm_notifier(struct notifier_block *self, |
| 799 | unsigned long cmd, void *v) |
| 800 | { |
| 801 | if (cmd == CPU_PM_EXIT) { |
Sudeep Holla | ccd9432 | 2016-08-17 13:49:19 +0100 | [diff] [blame] | 802 | if (gic_dist_security_disabled()) |
| 803 | gic_enable_redist(true); |
Sudeep Holla | 3708d52 | 2014-08-26 16:03:35 +0100 | [diff] [blame] | 804 | gic_cpu_sys_reg_init(); |
Sudeep Holla | ccd9432 | 2016-08-17 13:49:19 +0100 | [diff] [blame] | 805 | } else if (cmd == CPU_PM_ENTER && gic_dist_security_disabled()) { |
Sudeep Holla | 3708d52 | 2014-08-26 16:03:35 +0100 | [diff] [blame] | 806 | gic_write_grpen1(0); |
| 807 | gic_enable_redist(false); |
| 808 | } |
| 809 | return NOTIFY_OK; |
| 810 | } |
| 811 | |
| 812 | static struct notifier_block gic_cpu_pm_notifier_block = { |
| 813 | .notifier_call = gic_cpu_pm_notifier, |
| 814 | }; |
| 815 | |
| 816 | static void gic_cpu_pm_init(void) |
| 817 | { |
| 818 | cpu_pm_register_notifier(&gic_cpu_pm_notifier_block); |
| 819 | } |
| 820 | |
| 821 | #else |
| 822 | static inline void gic_cpu_pm_init(void) { } |
| 823 | #endif /* CONFIG_CPU_PM */ |
| 824 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 825 | static struct irq_chip gic_chip = { |
| 826 | .name = "GICv3", |
| 827 | .irq_mask = gic_mask_irq, |
| 828 | .irq_unmask = gic_unmask_irq, |
| 829 | .irq_eoi = gic_eoi_irq, |
| 830 | .irq_set_type = gic_set_type, |
| 831 | .irq_set_affinity = gic_set_affinity, |
Marc Zyngier | b594c6e | 2015-03-18 11:01:24 +0000 | [diff] [blame] | 832 | .irq_get_irqchip_state = gic_irq_get_irqchip_state, |
| 833 | .irq_set_irqchip_state = gic_irq_set_irqchip_state, |
Sudeep Holla | 55963c9 | 2015-06-05 11:59:57 +0100 | [diff] [blame] | 834 | .flags = IRQCHIP_SET_TYPE_MASKED, |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 835 | }; |
| 836 | |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 837 | static struct irq_chip gic_eoimode1_chip = { |
| 838 | .name = "GICv3", |
| 839 | .irq_mask = gic_eoimode1_mask_irq, |
| 840 | .irq_unmask = gic_unmask_irq, |
| 841 | .irq_eoi = gic_eoimode1_eoi_irq, |
| 842 | .irq_set_type = gic_set_type, |
| 843 | .irq_set_affinity = gic_set_affinity, |
| 844 | .irq_get_irqchip_state = gic_irq_get_irqchip_state, |
| 845 | .irq_set_irqchip_state = gic_irq_set_irqchip_state, |
Marc Zyngier | 530bf35 | 2015-08-26 17:00:43 +0100 | [diff] [blame] | 846 | .irq_set_vcpu_affinity = gic_irq_set_vcpu_affinity, |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 847 | .flags = IRQCHIP_SET_TYPE_MASKED, |
| 848 | }; |
| 849 | |
Marc Zyngier | da33f31 | 2014-11-24 14:35:18 +0000 | [diff] [blame] | 850 | #define GIC_ID_NR (1U << gic_data.rdists.id_bits) |
| 851 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 852 | static int gic_irq_domain_map(struct irq_domain *d, unsigned int irq, |
| 853 | irq_hw_number_t hw) |
| 854 | { |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 855 | struct irq_chip *chip = &gic_chip; |
| 856 | |
| 857 | if (static_key_true(&supports_deactivate)) |
| 858 | chip = &gic_eoimode1_chip; |
| 859 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 860 | /* SGIs are private to the core kernel */ |
| 861 | if (hw < 16) |
| 862 | return -EPERM; |
Marc Zyngier | da33f31 | 2014-11-24 14:35:18 +0000 | [diff] [blame] | 863 | /* Nothing here */ |
| 864 | if (hw >= gic_data.irq_nr && hw < 8192) |
| 865 | return -EPERM; |
| 866 | /* Off limits */ |
| 867 | if (hw >= GIC_ID_NR) |
| 868 | return -EPERM; |
| 869 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 870 | /* PPIs */ |
| 871 | if (hw < 32) { |
| 872 | irq_set_percpu_devid(irq); |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 873 | irq_domain_set_info(d, irq, hw, chip, d->host_data, |
Marc Zyngier | 443acc4 | 2014-11-24 14:35:09 +0000 | [diff] [blame] | 874 | handle_percpu_devid_irq, NULL, NULL); |
Rob Herring | d17cab4 | 2015-08-29 18:01:22 -0500 | [diff] [blame] | 875 | irq_set_status_flags(irq, IRQ_NOAUTOEN); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 876 | } |
| 877 | /* SPIs */ |
| 878 | if (hw >= 32 && hw < gic_data.irq_nr) { |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 879 | irq_domain_set_info(d, irq, hw, chip, d->host_data, |
Marc Zyngier | 443acc4 | 2014-11-24 14:35:09 +0000 | [diff] [blame] | 880 | handle_fasteoi_irq, NULL, NULL); |
Rob Herring | d17cab4 | 2015-08-29 18:01:22 -0500 | [diff] [blame] | 881 | irq_set_probe(irq); |
Marc Zyngier | 956ae91 | 2017-08-18 09:39:17 +0100 | [diff] [blame] | 882 | irqd_set_single_target(irq_desc_get_irq_data(irq_to_desc(irq))); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 883 | } |
Marc Zyngier | da33f31 | 2014-11-24 14:35:18 +0000 | [diff] [blame] | 884 | /* LPIs */ |
| 885 | if (hw >= 8192 && hw < GIC_ID_NR) { |
| 886 | if (!gic_dist_supports_lpis()) |
| 887 | return -EPERM; |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 888 | irq_domain_set_info(d, irq, hw, chip, d->host_data, |
Marc Zyngier | da33f31 | 2014-11-24 14:35:18 +0000 | [diff] [blame] | 889 | handle_fasteoi_irq, NULL, NULL); |
Marc Zyngier | da33f31 | 2014-11-24 14:35:18 +0000 | [diff] [blame] | 890 | } |
| 891 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 892 | return 0; |
| 893 | } |
| 894 | |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 895 | static int gic_irq_domain_translate(struct irq_domain *d, |
| 896 | struct irq_fwspec *fwspec, |
| 897 | unsigned long *hwirq, |
| 898 | unsigned int *type) |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 899 | { |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 900 | if (is_of_node(fwspec->fwnode)) { |
| 901 | if (fwspec->param_count < 3) |
| 902 | return -EINVAL; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 903 | |
Marc Zyngier | db8c70e | 2015-10-14 12:27:16 +0100 | [diff] [blame] | 904 | switch (fwspec->param[0]) { |
| 905 | case 0: /* SPI */ |
| 906 | *hwirq = fwspec->param[1] + 32; |
| 907 | break; |
| 908 | case 1: /* PPI */ |
| 909 | *hwirq = fwspec->param[1] + 16; |
| 910 | break; |
| 911 | case GIC_IRQ_TYPE_LPI: /* LPI */ |
| 912 | *hwirq = fwspec->param[1]; |
| 913 | break; |
| 914 | default: |
| 915 | return -EINVAL; |
| 916 | } |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 917 | |
| 918 | *type = fwspec->param[2] & IRQ_TYPE_SENSE_MASK; |
Marc Zyngier | 6ef6386 | 2018-03-16 14:35:17 +0000 | [diff] [blame^] | 919 | |
| 920 | /* Make it clear that broken DTs are... broken */ |
| 921 | WARN_ON(*type == IRQ_TYPE_NONE); |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 922 | return 0; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 923 | } |
| 924 | |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 925 | if (is_fwnode_irqchip(fwspec->fwnode)) { |
| 926 | if(fwspec->param_count != 2) |
| 927 | return -EINVAL; |
| 928 | |
| 929 | *hwirq = fwspec->param[0]; |
| 930 | *type = fwspec->param[1]; |
Marc Zyngier | 6ef6386 | 2018-03-16 14:35:17 +0000 | [diff] [blame^] | 931 | |
| 932 | WARN_ON(*type == IRQ_TYPE_NONE); |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 933 | return 0; |
| 934 | } |
| 935 | |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 936 | return -EINVAL; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 937 | } |
| 938 | |
Marc Zyngier | 443acc4 | 2014-11-24 14:35:09 +0000 | [diff] [blame] | 939 | static int gic_irq_domain_alloc(struct irq_domain *domain, unsigned int virq, |
| 940 | unsigned int nr_irqs, void *arg) |
| 941 | { |
| 942 | int i, ret; |
| 943 | irq_hw_number_t hwirq; |
| 944 | unsigned int type = IRQ_TYPE_NONE; |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 945 | struct irq_fwspec *fwspec = arg; |
Marc Zyngier | 443acc4 | 2014-11-24 14:35:09 +0000 | [diff] [blame] | 946 | |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 947 | ret = gic_irq_domain_translate(domain, fwspec, &hwirq, &type); |
Marc Zyngier | 443acc4 | 2014-11-24 14:35:09 +0000 | [diff] [blame] | 948 | if (ret) |
| 949 | return ret; |
| 950 | |
Suzuki K Poulose | 63c16c6 | 2017-07-04 10:56:33 +0100 | [diff] [blame] | 951 | for (i = 0; i < nr_irqs; i++) { |
| 952 | ret = gic_irq_domain_map(domain, virq + i, hwirq + i); |
| 953 | if (ret) |
| 954 | return ret; |
| 955 | } |
Marc Zyngier | 443acc4 | 2014-11-24 14:35:09 +0000 | [diff] [blame] | 956 | |
| 957 | return 0; |
| 958 | } |
| 959 | |
| 960 | static void gic_irq_domain_free(struct irq_domain *domain, unsigned int virq, |
| 961 | unsigned int nr_irqs) |
| 962 | { |
| 963 | int i; |
| 964 | |
| 965 | for (i = 0; i < nr_irqs; i++) { |
| 966 | struct irq_data *d = irq_domain_get_irq_data(domain, virq + i); |
| 967 | irq_set_handler(virq + i, NULL); |
| 968 | irq_domain_reset_irq_data(d); |
| 969 | } |
| 970 | } |
| 971 | |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 972 | static int gic_irq_domain_select(struct irq_domain *d, |
| 973 | struct irq_fwspec *fwspec, |
| 974 | enum irq_domain_bus_token bus_token) |
| 975 | { |
| 976 | /* Not for us */ |
| 977 | if (fwspec->fwnode != d->fwnode) |
| 978 | return 0; |
| 979 | |
| 980 | /* If this is not DT, then we have a single domain */ |
| 981 | if (!is_of_node(fwspec->fwnode)) |
| 982 | return 1; |
| 983 | |
| 984 | /* |
| 985 | * If this is a PPI and we have a 4th (non-null) parameter, |
| 986 | * then we need to match the partition domain. |
| 987 | */ |
| 988 | if (fwspec->param_count >= 4 && |
| 989 | fwspec->param[0] == 1 && fwspec->param[3] != 0) |
| 990 | return d == partition_get_domain(gic_data.ppi_descs[fwspec->param[1]]); |
| 991 | |
| 992 | return d == gic_data.domain; |
| 993 | } |
| 994 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 995 | static const struct irq_domain_ops gic_irq_domain_ops = { |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 996 | .translate = gic_irq_domain_translate, |
Marc Zyngier | 443acc4 | 2014-11-24 14:35:09 +0000 | [diff] [blame] | 997 | .alloc = gic_irq_domain_alloc, |
| 998 | .free = gic_irq_domain_free, |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 999 | .select = gic_irq_domain_select, |
| 1000 | }; |
| 1001 | |
| 1002 | static int partition_domain_translate(struct irq_domain *d, |
| 1003 | struct irq_fwspec *fwspec, |
| 1004 | unsigned long *hwirq, |
| 1005 | unsigned int *type) |
| 1006 | { |
| 1007 | struct device_node *np; |
| 1008 | int ret; |
| 1009 | |
| 1010 | np = of_find_node_by_phandle(fwspec->param[3]); |
| 1011 | if (WARN_ON(!np)) |
| 1012 | return -EINVAL; |
| 1013 | |
| 1014 | ret = partition_translate_id(gic_data.ppi_descs[fwspec->param[1]], |
| 1015 | of_node_to_fwnode(np)); |
| 1016 | if (ret < 0) |
| 1017 | return ret; |
| 1018 | |
| 1019 | *hwirq = ret; |
| 1020 | *type = fwspec->param[2] & IRQ_TYPE_SENSE_MASK; |
| 1021 | |
| 1022 | return 0; |
| 1023 | } |
| 1024 | |
| 1025 | static const struct irq_domain_ops partition_domain_ops = { |
| 1026 | .translate = partition_domain_translate, |
| 1027 | .select = gic_irq_domain_select, |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 1028 | }; |
| 1029 | |
Tomasz Nowicki | db57d74 | 2016-01-19 14:11:14 +0100 | [diff] [blame] | 1030 | static int __init gic_init_bases(void __iomem *dist_base, |
| 1031 | struct redist_region *rdist_regs, |
| 1032 | u32 nr_redist_regions, |
| 1033 | u64 redist_stride, |
| 1034 | struct fwnode_handle *handle) |
| 1035 | { |
Tomasz Nowicki | db57d74 | 2016-01-19 14:11:14 +0100 | [diff] [blame] | 1036 | u32 typer; |
| 1037 | int gic_irqs; |
| 1038 | int err; |
| 1039 | |
| 1040 | if (!is_hyp_mode_available()) |
| 1041 | static_key_slow_dec(&supports_deactivate); |
| 1042 | |
| 1043 | if (static_key_true(&supports_deactivate)) |
| 1044 | pr_info("GIC: Using split EOI/Deactivate mode\n"); |
| 1045 | |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 1046 | gic_data.fwnode = handle; |
Tomasz Nowicki | db57d74 | 2016-01-19 14:11:14 +0100 | [diff] [blame] | 1047 | gic_data.dist_base = dist_base; |
| 1048 | gic_data.redist_regions = rdist_regs; |
| 1049 | gic_data.nr_redist_regions = nr_redist_regions; |
| 1050 | gic_data.redist_stride = redist_stride; |
| 1051 | |
Tomasz Nowicki | db57d74 | 2016-01-19 14:11:14 +0100 | [diff] [blame] | 1052 | /* |
| 1053 | * Find out how many interrupts are supported. |
| 1054 | * The GIC only supports up to 1020 interrupt sources (SGI+PPI+SPI) |
| 1055 | */ |
| 1056 | typer = readl_relaxed(gic_data.dist_base + GICD_TYPER); |
| 1057 | gic_data.rdists.id_bits = GICD_TYPER_ID_BITS(typer); |
| 1058 | gic_irqs = GICD_TYPER_IRQS(typer); |
| 1059 | if (gic_irqs > 1020) |
| 1060 | gic_irqs = 1020; |
| 1061 | gic_data.irq_nr = gic_irqs; |
| 1062 | |
| 1063 | gic_data.domain = irq_domain_create_tree(handle, &gic_irq_domain_ops, |
| 1064 | &gic_data); |
| 1065 | gic_data.rdists.rdist = alloc_percpu(typeof(*gic_data.rdists.rdist)); |
Marc Zyngier | 0edc23e | 2016-12-19 17:01:52 +0000 | [diff] [blame] | 1066 | gic_data.rdists.has_vlpis = true; |
| 1067 | gic_data.rdists.has_direct_lpi = true; |
Tomasz Nowicki | db57d74 | 2016-01-19 14:11:14 +0100 | [diff] [blame] | 1068 | |
| 1069 | if (WARN_ON(!gic_data.domain) || WARN_ON(!gic_data.rdists.rdist)) { |
| 1070 | err = -ENOMEM; |
| 1071 | goto out_free; |
| 1072 | } |
| 1073 | |
Shanker Donthineni | eda0d04 | 2017-10-06 10:24:00 -0500 | [diff] [blame] | 1074 | gic_data.has_rss = !!(typer & GICD_TYPER_RSS); |
| 1075 | pr_info("Distributor has %sRange Selector support\n", |
| 1076 | gic_data.has_rss ? "" : "no "); |
| 1077 | |
Tomasz Nowicki | db57d74 | 2016-01-19 14:11:14 +0100 | [diff] [blame] | 1078 | set_handle_irq(gic_handle_irq); |
| 1079 | |
Marc Zyngier | 0edc23e | 2016-12-19 17:01:52 +0000 | [diff] [blame] | 1080 | gic_update_vlpi_properties(); |
| 1081 | |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 1082 | if (IS_ENABLED(CONFIG_ARM_GIC_V3_ITS) && gic_dist_supports_lpis()) |
| 1083 | its_init(handle, &gic_data.rdists, gic_data.domain); |
Tomasz Nowicki | db57d74 | 2016-01-19 14:11:14 +0100 | [diff] [blame] | 1084 | |
| 1085 | gic_smp_init(); |
| 1086 | gic_dist_init(); |
| 1087 | gic_cpu_init(); |
| 1088 | gic_cpu_pm_init(); |
| 1089 | |
| 1090 | return 0; |
| 1091 | |
| 1092 | out_free: |
| 1093 | if (gic_data.domain) |
| 1094 | irq_domain_remove(gic_data.domain); |
| 1095 | free_percpu(gic_data.rdists.rdist); |
| 1096 | return err; |
| 1097 | } |
| 1098 | |
| 1099 | static int __init gic_validate_dist_version(void __iomem *dist_base) |
| 1100 | { |
| 1101 | u32 reg = readl_relaxed(dist_base + GICD_PIDR2) & GIC_PIDR2_ARCH_MASK; |
| 1102 | |
| 1103 | if (reg != GIC_PIDR2_ARCH_GICv3 && reg != GIC_PIDR2_ARCH_GICv4) |
| 1104 | return -ENODEV; |
| 1105 | |
| 1106 | return 0; |
| 1107 | } |
| 1108 | |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 1109 | /* Create all possible partitions at boot time */ |
Linus Torvalds | 7beaa24 | 2016-05-19 11:27:09 -0700 | [diff] [blame] | 1110 | static void __init gic_populate_ppi_partitions(struct device_node *gic_node) |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 1111 | { |
| 1112 | struct device_node *parts_node, *child_part; |
| 1113 | int part_idx = 0, i; |
| 1114 | int nr_parts; |
| 1115 | struct partition_affinity *parts; |
| 1116 | |
Johan Hovold | 00ee9a1 | 2017-11-11 17:51:25 +0100 | [diff] [blame] | 1117 | parts_node = of_get_child_by_name(gic_node, "ppi-partitions"); |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 1118 | if (!parts_node) |
| 1119 | return; |
| 1120 | |
| 1121 | nr_parts = of_get_child_count(parts_node); |
| 1122 | |
| 1123 | if (!nr_parts) |
Johan Hovold | 00ee9a1 | 2017-11-11 17:51:25 +0100 | [diff] [blame] | 1124 | goto out_put_node; |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 1125 | |
| 1126 | parts = kzalloc(sizeof(*parts) * nr_parts, GFP_KERNEL); |
| 1127 | if (WARN_ON(!parts)) |
Johan Hovold | 00ee9a1 | 2017-11-11 17:51:25 +0100 | [diff] [blame] | 1128 | goto out_put_node; |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 1129 | |
| 1130 | for_each_child_of_node(parts_node, child_part) { |
| 1131 | struct partition_affinity *part; |
| 1132 | int n; |
| 1133 | |
| 1134 | part = &parts[part_idx]; |
| 1135 | |
| 1136 | part->partition_id = of_node_to_fwnode(child_part); |
| 1137 | |
| 1138 | pr_info("GIC: PPI partition %s[%d] { ", |
| 1139 | child_part->name, part_idx); |
| 1140 | |
| 1141 | n = of_property_count_elems_of_size(child_part, "affinity", |
| 1142 | sizeof(u32)); |
| 1143 | WARN_ON(n <= 0); |
| 1144 | |
| 1145 | for (i = 0; i < n; i++) { |
| 1146 | int err, cpu; |
| 1147 | u32 cpu_phandle; |
| 1148 | struct device_node *cpu_node; |
| 1149 | |
| 1150 | err = of_property_read_u32_index(child_part, "affinity", |
| 1151 | i, &cpu_phandle); |
| 1152 | if (WARN_ON(err)) |
| 1153 | continue; |
| 1154 | |
| 1155 | cpu_node = of_find_node_by_phandle(cpu_phandle); |
| 1156 | if (WARN_ON(!cpu_node)) |
| 1157 | continue; |
| 1158 | |
Suzuki K Poulose | c08ec7d | 2018-01-02 11:25:29 +0000 | [diff] [blame] | 1159 | cpu = of_cpu_node_to_id(cpu_node); |
| 1160 | if (WARN_ON(cpu < 0)) |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 1161 | continue; |
| 1162 | |
Rob Herring | e81f54c | 2017-07-18 16:43:10 -0500 | [diff] [blame] | 1163 | pr_cont("%pOF[%d] ", cpu_node, cpu); |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 1164 | |
| 1165 | cpumask_set_cpu(cpu, &part->mask); |
| 1166 | } |
| 1167 | |
| 1168 | pr_cont("}\n"); |
| 1169 | part_idx++; |
| 1170 | } |
| 1171 | |
| 1172 | for (i = 0; i < 16; i++) { |
| 1173 | unsigned int irq; |
| 1174 | struct partition_desc *desc; |
| 1175 | struct irq_fwspec ppi_fwspec = { |
| 1176 | .fwnode = gic_data.fwnode, |
| 1177 | .param_count = 3, |
| 1178 | .param = { |
| 1179 | [0] = 1, |
| 1180 | [1] = i, |
| 1181 | [2] = IRQ_TYPE_NONE, |
| 1182 | }, |
| 1183 | }; |
| 1184 | |
| 1185 | irq = irq_create_fwspec_mapping(&ppi_fwspec); |
| 1186 | if (WARN_ON(!irq)) |
| 1187 | continue; |
| 1188 | desc = partition_create_desc(gic_data.fwnode, parts, nr_parts, |
| 1189 | irq, &partition_domain_ops); |
| 1190 | if (WARN_ON(!desc)) |
| 1191 | continue; |
| 1192 | |
| 1193 | gic_data.ppi_descs[i] = desc; |
| 1194 | } |
Johan Hovold | 00ee9a1 | 2017-11-11 17:51:25 +0100 | [diff] [blame] | 1195 | |
| 1196 | out_put_node: |
| 1197 | of_node_put(parts_node); |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 1198 | } |
| 1199 | |
Julien Grall | 1839e57 | 2016-04-11 16:32:57 +0100 | [diff] [blame] | 1200 | static void __init gic_of_setup_kvm_info(struct device_node *node) |
| 1201 | { |
| 1202 | int ret; |
| 1203 | struct resource r; |
| 1204 | u32 gicv_idx; |
| 1205 | |
| 1206 | gic_v3_kvm_info.type = GIC_V3; |
| 1207 | |
| 1208 | gic_v3_kvm_info.maint_irq = irq_of_parse_and_map(node, 0); |
| 1209 | if (!gic_v3_kvm_info.maint_irq) |
| 1210 | return; |
| 1211 | |
| 1212 | if (of_property_read_u32(node, "#redistributor-regions", |
| 1213 | &gicv_idx)) |
| 1214 | gicv_idx = 1; |
| 1215 | |
| 1216 | gicv_idx += 3; /* Also skip GICD, GICC, GICH */ |
| 1217 | ret = of_address_to_resource(node, gicv_idx, &r); |
| 1218 | if (!ret) |
| 1219 | gic_v3_kvm_info.vcpu = r; |
| 1220 | |
Marc Zyngier | 4bdf502 | 2017-06-25 14:10:46 +0100 | [diff] [blame] | 1221 | gic_v3_kvm_info.has_v4 = gic_data.rdists.has_vlpis; |
Julien Grall | 1839e57 | 2016-04-11 16:32:57 +0100 | [diff] [blame] | 1222 | gic_set_kvm_info(&gic_v3_kvm_info); |
| 1223 | } |
| 1224 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 1225 | static int __init gic_of_init(struct device_node *node, struct device_node *parent) |
| 1226 | { |
| 1227 | void __iomem *dist_base; |
Marc Zyngier | f5c1434 | 2014-11-24 14:35:10 +0000 | [diff] [blame] | 1228 | struct redist_region *rdist_regs; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 1229 | u64 redist_stride; |
Marc Zyngier | f5c1434 | 2014-11-24 14:35:10 +0000 | [diff] [blame] | 1230 | u32 nr_redist_regions; |
Tomasz Nowicki | db57d74 | 2016-01-19 14:11:14 +0100 | [diff] [blame] | 1231 | int err, i; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 1232 | |
| 1233 | dist_base = of_iomap(node, 0); |
| 1234 | if (!dist_base) { |
Rob Herring | e81f54c | 2017-07-18 16:43:10 -0500 | [diff] [blame] | 1235 | pr_err("%pOF: unable to map gic dist registers\n", node); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 1236 | return -ENXIO; |
| 1237 | } |
| 1238 | |
Tomasz Nowicki | db57d74 | 2016-01-19 14:11:14 +0100 | [diff] [blame] | 1239 | err = gic_validate_dist_version(dist_base); |
| 1240 | if (err) { |
Rob Herring | e81f54c | 2017-07-18 16:43:10 -0500 | [diff] [blame] | 1241 | pr_err("%pOF: no distributor detected, giving up\n", node); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 1242 | goto out_unmap_dist; |
| 1243 | } |
| 1244 | |
Marc Zyngier | f5c1434 | 2014-11-24 14:35:10 +0000 | [diff] [blame] | 1245 | if (of_property_read_u32(node, "#redistributor-regions", &nr_redist_regions)) |
| 1246 | nr_redist_regions = 1; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 1247 | |
Marc Zyngier | f5c1434 | 2014-11-24 14:35:10 +0000 | [diff] [blame] | 1248 | rdist_regs = kzalloc(sizeof(*rdist_regs) * nr_redist_regions, GFP_KERNEL); |
| 1249 | if (!rdist_regs) { |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 1250 | err = -ENOMEM; |
| 1251 | goto out_unmap_dist; |
| 1252 | } |
| 1253 | |
Marc Zyngier | f5c1434 | 2014-11-24 14:35:10 +0000 | [diff] [blame] | 1254 | for (i = 0; i < nr_redist_regions; i++) { |
| 1255 | struct resource res; |
| 1256 | int ret; |
| 1257 | |
| 1258 | ret = of_address_to_resource(node, 1 + i, &res); |
| 1259 | rdist_regs[i].redist_base = of_iomap(node, 1 + i); |
| 1260 | if (ret || !rdist_regs[i].redist_base) { |
Rob Herring | e81f54c | 2017-07-18 16:43:10 -0500 | [diff] [blame] | 1261 | pr_err("%pOF: couldn't map region %d\n", node, i); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 1262 | err = -ENODEV; |
| 1263 | goto out_unmap_rdist; |
| 1264 | } |
Marc Zyngier | f5c1434 | 2014-11-24 14:35:10 +0000 | [diff] [blame] | 1265 | rdist_regs[i].phys_base = res.start; |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 1266 | } |
| 1267 | |
| 1268 | if (of_property_read_u64(node, "redistributor-stride", &redist_stride)) |
| 1269 | redist_stride = 0; |
| 1270 | |
Tomasz Nowicki | db57d74 | 2016-01-19 14:11:14 +0100 | [diff] [blame] | 1271 | err = gic_init_bases(dist_base, rdist_regs, nr_redist_regions, |
| 1272 | redist_stride, &node->fwnode); |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 1273 | if (err) |
| 1274 | goto out_unmap_rdist; |
| 1275 | |
| 1276 | gic_populate_ppi_partitions(node); |
Christoffer Dall | d33a3c8 | 2016-12-06 22:00:52 +0100 | [diff] [blame] | 1277 | |
| 1278 | if (static_key_true(&supports_deactivate)) |
| 1279 | gic_of_setup_kvm_info(node); |
Marc Zyngier | e3825ba | 2016-04-11 09:57:54 +0100 | [diff] [blame] | 1280 | return 0; |
Marc Zyngier | 0b6a3da | 2015-08-26 17:00:42 +0100 | [diff] [blame] | 1281 | |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 1282 | out_unmap_rdist: |
Marc Zyngier | f5c1434 | 2014-11-24 14:35:10 +0000 | [diff] [blame] | 1283 | for (i = 0; i < nr_redist_regions; i++) |
| 1284 | if (rdist_regs[i].redist_base) |
| 1285 | iounmap(rdist_regs[i].redist_base); |
| 1286 | kfree(rdist_regs); |
Marc Zyngier | 021f653 | 2014-06-30 16:01:31 +0100 | [diff] [blame] | 1287 | out_unmap_dist: |
| 1288 | iounmap(dist_base); |
| 1289 | return err; |
| 1290 | } |
| 1291 | |
| 1292 | IRQCHIP_DECLARE(gic_v3, "arm,gic-v3", gic_of_init); |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1293 | |
| 1294 | #ifdef CONFIG_ACPI |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1295 | static struct |
| 1296 | { |
| 1297 | void __iomem *dist_base; |
| 1298 | struct redist_region *redist_regs; |
| 1299 | u32 nr_redist_regions; |
| 1300 | bool single_redist; |
Julien Grall | 1839e57 | 2016-04-11 16:32:57 +0100 | [diff] [blame] | 1301 | u32 maint_irq; |
| 1302 | int maint_irq_mode; |
| 1303 | phys_addr_t vcpu_base; |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1304 | } acpi_data __initdata; |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 1305 | |
| 1306 | static void __init |
| 1307 | gic_acpi_register_redist(phys_addr_t phys_base, void __iomem *redist_base) |
| 1308 | { |
| 1309 | static int count = 0; |
| 1310 | |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1311 | acpi_data.redist_regs[count].phys_base = phys_base; |
| 1312 | acpi_data.redist_regs[count].redist_base = redist_base; |
| 1313 | acpi_data.redist_regs[count].single_redist = acpi_data.single_redist; |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 1314 | count++; |
| 1315 | } |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1316 | |
| 1317 | static int __init |
| 1318 | gic_acpi_parse_madt_redist(struct acpi_subtable_header *header, |
| 1319 | const unsigned long end) |
| 1320 | { |
| 1321 | struct acpi_madt_generic_redistributor *redist = |
| 1322 | (struct acpi_madt_generic_redistributor *)header; |
| 1323 | void __iomem *redist_base; |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1324 | |
| 1325 | redist_base = ioremap(redist->base_address, redist->length); |
| 1326 | if (!redist_base) { |
| 1327 | pr_err("Couldn't map GICR region @%llx\n", redist->base_address); |
| 1328 | return -ENOMEM; |
| 1329 | } |
| 1330 | |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 1331 | gic_acpi_register_redist(redist->base_address, redist_base); |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1332 | return 0; |
| 1333 | } |
| 1334 | |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 1335 | static int __init |
| 1336 | gic_acpi_parse_madt_gicc(struct acpi_subtable_header *header, |
| 1337 | const unsigned long end) |
| 1338 | { |
| 1339 | struct acpi_madt_generic_interrupt *gicc = |
| 1340 | (struct acpi_madt_generic_interrupt *)header; |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1341 | u32 reg = readl_relaxed(acpi_data.dist_base + GICD_PIDR2) & GIC_PIDR2_ARCH_MASK; |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 1342 | u32 size = reg == GIC_PIDR2_ARCH_GICv4 ? SZ_64K * 4 : SZ_64K * 2; |
| 1343 | void __iomem *redist_base; |
| 1344 | |
Shanker Donthineni | ebe2f87 | 2017-12-05 13:16:21 -0600 | [diff] [blame] | 1345 | /* GICC entry which has !ACPI_MADT_ENABLED is not unusable so skip */ |
| 1346 | if (!(gicc->flags & ACPI_MADT_ENABLED)) |
| 1347 | return 0; |
| 1348 | |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 1349 | redist_base = ioremap(gicc->gicr_base_address, size); |
| 1350 | if (!redist_base) |
| 1351 | return -ENOMEM; |
| 1352 | |
| 1353 | gic_acpi_register_redist(gicc->gicr_base_address, redist_base); |
| 1354 | return 0; |
| 1355 | } |
| 1356 | |
| 1357 | static int __init gic_acpi_collect_gicr_base(void) |
| 1358 | { |
| 1359 | acpi_tbl_entry_handler redist_parser; |
| 1360 | enum acpi_madt_type type; |
| 1361 | |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1362 | if (acpi_data.single_redist) { |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 1363 | type = ACPI_MADT_TYPE_GENERIC_INTERRUPT; |
| 1364 | redist_parser = gic_acpi_parse_madt_gicc; |
| 1365 | } else { |
| 1366 | type = ACPI_MADT_TYPE_GENERIC_REDISTRIBUTOR; |
| 1367 | redist_parser = gic_acpi_parse_madt_redist; |
| 1368 | } |
| 1369 | |
| 1370 | /* Collect redistributor base addresses in GICR entries */ |
| 1371 | if (acpi_table_parse_madt(type, redist_parser, 0) > 0) |
| 1372 | return 0; |
| 1373 | |
| 1374 | pr_info("No valid GICR entries exist\n"); |
| 1375 | return -ENODEV; |
| 1376 | } |
| 1377 | |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1378 | static int __init gic_acpi_match_gicr(struct acpi_subtable_header *header, |
| 1379 | const unsigned long end) |
| 1380 | { |
| 1381 | /* Subtable presence means that redist exists, that's it */ |
| 1382 | return 0; |
| 1383 | } |
| 1384 | |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 1385 | static int __init gic_acpi_match_gicc(struct acpi_subtable_header *header, |
| 1386 | const unsigned long end) |
| 1387 | { |
| 1388 | struct acpi_madt_generic_interrupt *gicc = |
| 1389 | (struct acpi_madt_generic_interrupt *)header; |
| 1390 | |
| 1391 | /* |
| 1392 | * If GICC is enabled and has valid gicr base address, then it means |
| 1393 | * GICR base is presented via GICC |
| 1394 | */ |
| 1395 | if ((gicc->flags & ACPI_MADT_ENABLED) && gicc->gicr_base_address) |
| 1396 | return 0; |
| 1397 | |
Shanker Donthineni | ebe2f87 | 2017-12-05 13:16:21 -0600 | [diff] [blame] | 1398 | /* |
| 1399 | * It's perfectly valid firmware can pass disabled GICC entry, driver |
| 1400 | * should not treat as errors, skip the entry instead of probe fail. |
| 1401 | */ |
| 1402 | if (!(gicc->flags & ACPI_MADT_ENABLED)) |
| 1403 | return 0; |
| 1404 | |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 1405 | return -ENODEV; |
| 1406 | } |
| 1407 | |
| 1408 | static int __init gic_acpi_count_gicr_regions(void) |
| 1409 | { |
| 1410 | int count; |
| 1411 | |
| 1412 | /* |
| 1413 | * Count how many redistributor regions we have. It is not allowed |
| 1414 | * to mix redistributor description, GICR and GICC subtables have to be |
| 1415 | * mutually exclusive. |
| 1416 | */ |
| 1417 | count = acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_REDISTRIBUTOR, |
| 1418 | gic_acpi_match_gicr, 0); |
| 1419 | if (count > 0) { |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1420 | acpi_data.single_redist = false; |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 1421 | return count; |
| 1422 | } |
| 1423 | |
| 1424 | count = acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_INTERRUPT, |
| 1425 | gic_acpi_match_gicc, 0); |
| 1426 | if (count > 0) |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1427 | acpi_data.single_redist = true; |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 1428 | |
| 1429 | return count; |
| 1430 | } |
| 1431 | |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1432 | static bool __init acpi_validate_gic_table(struct acpi_subtable_header *header, |
| 1433 | struct acpi_probe_entry *ape) |
| 1434 | { |
| 1435 | struct acpi_madt_generic_distributor *dist; |
| 1436 | int count; |
| 1437 | |
| 1438 | dist = (struct acpi_madt_generic_distributor *)header; |
| 1439 | if (dist->version != ape->driver_data) |
| 1440 | return false; |
| 1441 | |
| 1442 | /* We need to do that exercise anyway, the sooner the better */ |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 1443 | count = gic_acpi_count_gicr_regions(); |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1444 | if (count <= 0) |
| 1445 | return false; |
| 1446 | |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1447 | acpi_data.nr_redist_regions = count; |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1448 | return true; |
| 1449 | } |
| 1450 | |
Julien Grall | 1839e57 | 2016-04-11 16:32:57 +0100 | [diff] [blame] | 1451 | static int __init gic_acpi_parse_virt_madt_gicc(struct acpi_subtable_header *header, |
| 1452 | const unsigned long end) |
| 1453 | { |
| 1454 | struct acpi_madt_generic_interrupt *gicc = |
| 1455 | (struct acpi_madt_generic_interrupt *)header; |
| 1456 | int maint_irq_mode; |
| 1457 | static int first_madt = true; |
| 1458 | |
| 1459 | /* Skip unusable CPUs */ |
| 1460 | if (!(gicc->flags & ACPI_MADT_ENABLED)) |
| 1461 | return 0; |
| 1462 | |
| 1463 | maint_irq_mode = (gicc->flags & ACPI_MADT_VGIC_IRQ_MODE) ? |
| 1464 | ACPI_EDGE_SENSITIVE : ACPI_LEVEL_SENSITIVE; |
| 1465 | |
| 1466 | if (first_madt) { |
| 1467 | first_madt = false; |
| 1468 | |
| 1469 | acpi_data.maint_irq = gicc->vgic_interrupt; |
| 1470 | acpi_data.maint_irq_mode = maint_irq_mode; |
| 1471 | acpi_data.vcpu_base = gicc->gicv_base_address; |
| 1472 | |
| 1473 | return 0; |
| 1474 | } |
| 1475 | |
| 1476 | /* |
| 1477 | * The maintenance interrupt and GICV should be the same for every CPU |
| 1478 | */ |
| 1479 | if ((acpi_data.maint_irq != gicc->vgic_interrupt) || |
| 1480 | (acpi_data.maint_irq_mode != maint_irq_mode) || |
| 1481 | (acpi_data.vcpu_base != gicc->gicv_base_address)) |
| 1482 | return -EINVAL; |
| 1483 | |
| 1484 | return 0; |
| 1485 | } |
| 1486 | |
| 1487 | static bool __init gic_acpi_collect_virt_info(void) |
| 1488 | { |
| 1489 | int count; |
| 1490 | |
| 1491 | count = acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_INTERRUPT, |
| 1492 | gic_acpi_parse_virt_madt_gicc, 0); |
| 1493 | |
| 1494 | return (count > 0); |
| 1495 | } |
| 1496 | |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1497 | #define ACPI_GICV3_DIST_MEM_SIZE (SZ_64K) |
Julien Grall | 1839e57 | 2016-04-11 16:32:57 +0100 | [diff] [blame] | 1498 | #define ACPI_GICV2_VCTRL_MEM_SIZE (SZ_4K) |
| 1499 | #define ACPI_GICV2_VCPU_MEM_SIZE (SZ_8K) |
| 1500 | |
| 1501 | static void __init gic_acpi_setup_kvm_info(void) |
| 1502 | { |
| 1503 | int irq; |
| 1504 | |
| 1505 | if (!gic_acpi_collect_virt_info()) { |
| 1506 | pr_warn("Unable to get hardware information used for virtualization\n"); |
| 1507 | return; |
| 1508 | } |
| 1509 | |
| 1510 | gic_v3_kvm_info.type = GIC_V3; |
| 1511 | |
| 1512 | irq = acpi_register_gsi(NULL, acpi_data.maint_irq, |
| 1513 | acpi_data.maint_irq_mode, |
| 1514 | ACPI_ACTIVE_HIGH); |
| 1515 | if (irq <= 0) |
| 1516 | return; |
| 1517 | |
| 1518 | gic_v3_kvm_info.maint_irq = irq; |
| 1519 | |
| 1520 | if (acpi_data.vcpu_base) { |
| 1521 | struct resource *vcpu = &gic_v3_kvm_info.vcpu; |
| 1522 | |
| 1523 | vcpu->flags = IORESOURCE_MEM; |
| 1524 | vcpu->start = acpi_data.vcpu_base; |
| 1525 | vcpu->end = vcpu->start + ACPI_GICV2_VCPU_MEM_SIZE - 1; |
| 1526 | } |
| 1527 | |
Marc Zyngier | 4bdf502 | 2017-06-25 14:10:46 +0100 | [diff] [blame] | 1528 | gic_v3_kvm_info.has_v4 = gic_data.rdists.has_vlpis; |
Julien Grall | 1839e57 | 2016-04-11 16:32:57 +0100 | [diff] [blame] | 1529 | gic_set_kvm_info(&gic_v3_kvm_info); |
| 1530 | } |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1531 | |
| 1532 | static int __init |
| 1533 | gic_acpi_init(struct acpi_subtable_header *header, const unsigned long end) |
| 1534 | { |
| 1535 | struct acpi_madt_generic_distributor *dist; |
| 1536 | struct fwnode_handle *domain_handle; |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1537 | size_t size; |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 1538 | int i, err; |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1539 | |
| 1540 | /* Get distributor base address */ |
| 1541 | dist = (struct acpi_madt_generic_distributor *)header; |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1542 | acpi_data.dist_base = ioremap(dist->base_address, |
| 1543 | ACPI_GICV3_DIST_MEM_SIZE); |
| 1544 | if (!acpi_data.dist_base) { |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1545 | pr_err("Unable to map GICD registers\n"); |
| 1546 | return -ENOMEM; |
| 1547 | } |
| 1548 | |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1549 | err = gic_validate_dist_version(acpi_data.dist_base); |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1550 | if (err) { |
Arvind Yadav | 71192a68 | 2017-11-13 19:23:49 +0530 | [diff] [blame] | 1551 | pr_err("No distributor detected at @%p, giving up\n", |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1552 | acpi_data.dist_base); |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1553 | goto out_dist_unmap; |
| 1554 | } |
| 1555 | |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1556 | size = sizeof(*acpi_data.redist_regs) * acpi_data.nr_redist_regions; |
| 1557 | acpi_data.redist_regs = kzalloc(size, GFP_KERNEL); |
| 1558 | if (!acpi_data.redist_regs) { |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1559 | err = -ENOMEM; |
| 1560 | goto out_dist_unmap; |
| 1561 | } |
| 1562 | |
Tomasz Nowicki | b70fb7a | 2016-01-19 14:11:16 +0100 | [diff] [blame] | 1563 | err = gic_acpi_collect_gicr_base(); |
| 1564 | if (err) |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1565 | goto out_redist_unmap; |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1566 | |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1567 | domain_handle = irq_domain_alloc_fwnode(acpi_data.dist_base); |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1568 | if (!domain_handle) { |
| 1569 | err = -ENOMEM; |
| 1570 | goto out_redist_unmap; |
| 1571 | } |
| 1572 | |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1573 | err = gic_init_bases(acpi_data.dist_base, acpi_data.redist_regs, |
| 1574 | acpi_data.nr_redist_regions, 0, domain_handle); |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1575 | if (err) |
| 1576 | goto out_fwhandle_free; |
| 1577 | |
| 1578 | acpi_set_irq_model(ACPI_IRQ_MODEL_GIC, domain_handle); |
Christoffer Dall | d33a3c8 | 2016-12-06 22:00:52 +0100 | [diff] [blame] | 1579 | |
| 1580 | if (static_key_true(&supports_deactivate)) |
| 1581 | gic_acpi_setup_kvm_info(); |
Julien Grall | 1839e57 | 2016-04-11 16:32:57 +0100 | [diff] [blame] | 1582 | |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1583 | return 0; |
| 1584 | |
| 1585 | out_fwhandle_free: |
| 1586 | irq_domain_free_fwnode(domain_handle); |
| 1587 | out_redist_unmap: |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1588 | for (i = 0; i < acpi_data.nr_redist_regions; i++) |
| 1589 | if (acpi_data.redist_regs[i].redist_base) |
| 1590 | iounmap(acpi_data.redist_regs[i].redist_base); |
| 1591 | kfree(acpi_data.redist_regs); |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1592 | out_dist_unmap: |
Julien Grall | 611f039 | 2016-04-11 16:32:56 +0100 | [diff] [blame] | 1593 | iounmap(acpi_data.dist_base); |
Tomasz Nowicki | ffa7d61 | 2016-01-19 14:11:15 +0100 | [diff] [blame] | 1594 | return err; |
| 1595 | } |
| 1596 | IRQCHIP_ACPI_DECLARE(gic_v3, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR, |
| 1597 | acpi_validate_gic_table, ACPI_MADT_GIC_VERSION_V3, |
| 1598 | gic_acpi_init); |
| 1599 | IRQCHIP_ACPI_DECLARE(gic_v4, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR, |
| 1600 | acpi_validate_gic_table, ACPI_MADT_GIC_VERSION_V4, |
| 1601 | gic_acpi_init); |
| 1602 | IRQCHIP_ACPI_DECLARE(gic_v3_or_v4, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR, |
| 1603 | acpi_validate_gic_table, ACPI_MADT_GIC_VERSION_NONE, |
| 1604 | gic_acpi_init); |
| 1605 | #endif |